#grid-vis {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  margin: auto;
  z-index: 100000;
  pointer-events: none;
  border-left: 1px solid #9bffff;
  border-right: 1px solid #9bffff;
  opacity: 0.5;
}
#grid-vis:before,
#grid-vis:after {
  content: '';
  position: absolute;
  top: 0px;
  bottom: 0px;
  background-color: rgba(155,255,255,0.3);
  width: calc(10px - 1px);
  display: block;
}
#grid-vis:before {
  left: 0px;
  border-right: 1px solid #9bffff;
}
#grid-vis:after {
  right: 0px;
  border-left: 1px solid #9bffff;
}
#grid-vis .center {
  border-left: 1px solid rgba(155,255,255,0.4);
  border-right: 1px solid rgba(155,255,255,0.4);
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}
html {
  margin: 0px;
  padding: 0px;
}
body {
  margin: 0px auto;
  padding: 0px 0px 0px 0px;
  width: 100%;
  min-height: 100%;
  min-width: 720px;
  max-width: 2000px;
  box-shadow: 0px 0px 50px 0px rgba(0,0,0,0.5);
  font-size: 14px;
  overflow-y: scroll;
  font-family: 'Raleway';
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'lnum' 1;
  -o-font-feature-settings: 'lnum' 1;
  -ms-font-feature-settings: 'lnum' 1;
  -moz-font-feature-settings: 'lnum' 1;
  -webkit-font-feature-settings: 'lnum' 1;
  text-size-adjust: none;
  -o-text-size-adjust: none;
  -ms-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
}
body * {
  line-height: 100%;
}
body *::selection {
  color: #fff;
  background-color: rgba(225,35,41,0.95);
}
a {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
a,
input,
select,
button,
textarea {
  outline: none;
  font-family: 'Raleway';
  font-feature-settings: 'lnum' 1;
  -o-font-feature-settings: 'lnum' 1;
  -ms-font-feature-settings: 'lnum' 1;
  -moz-font-feature-settings: 'lnum' 1;
  -webkit-font-feature-settings: 'lnum' 1;
  appearance: unset;
  -o-appearance: unset;
  -ms-appearance: unset;
  -moz-appearance: unset;
  -webkit-appearance: unset;
  border-radius: 0px;
}
button {
  cursor: pointer;
  border-radius: 0px;
  appearance: unset;
  -o-appearance: unset;
  -ms-appearance: unset;
  -moz-appearance: unset;
  -webkit-appearance: unset;
}
ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}
img {
  vertical-align: middle;
  border: 0px;
  max-width: 100%;
}
[data-action] {
  cursor: pointer;
}
input.error,
textarea.error {
  animation: error-inp 2s 2;
}
/* @import includes/aligning.styl */
ul.self-left,
ol.self-left,
img.self-left,
table.self-left {
  float: left;
}
ul.self-right,
ol.self-right,
img.self-right,
table.self-right {
  float: right;
}
ul.self-center,
ol.self-center,
img.self-center,
table.self-center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
ul.self-full,
ol.self-full,
img.self-full,
table.self-full {
  width: 100%;
}
img[data-video-src] {
  width: 300px;
  border: 3px solid danger_color_border;
}
img[data-video-src].self-left,
img[data-video-src].self-right {
  float: none;
}
img[data-video-src].self-center {
  display: initial;
  margin-left: initial;
  margin-right: initial;
}
img[data-video-src].self-full {
  width: auto;
}
p.self-left,
h1.self-left,
h2.self-left,
h3.self-left,
h4.self-left,
h5.self-left,
h6.self-left,
td.self-left,
th.self-left,
li.self-left,
div.self-left {
  text-align: left;
}
p.self-right,
h1.self-right,
h2.self-right,
h3.self-right,
h4.self-right,
h5.self-right,
h6.self-right,
td.self-right,
th.self-right,
li.self-right,
div.self-right {
  text-align: right;
}
p.self-center,
h1.self-center,
h2.self-center,
h3.self-center,
h4.self-center,
h5.self-center,
h6.self-center,
td.self-center,
th.self-center,
li.self-center,
div.self-center {
  text-align: center;
}
p.self-full,
h1.self-full,
h2.self-full,
h3.self-full,
h4.self-full,
h5.self-full,
h6.self-full,
td.self-full,
th.self-full,
li.self-full,
div.self-full {
  text-align: justify;
}
/* @import includes/grid-20c.styl */
* {
  box-sizing: border-box;
}
*:before,
*:after {
  box-sizing: border-box;
}
.wrapper {
  padding-right: 10px;
  padding-left: 10px;
  margin-right: auto;
  margin-left: auto;
  transition: width 0.2s linear;
  -o-transition: width 0.2s linear;
  -ms-transition: width 0.2s linear;
  -moz-transition: width 0.2s linear;
  -webkit-transition: width 0.2s linear;
  min-width: 710px;
}
.row {
  margin-left: -10px;
  margin-right: -10px;
}
.row.ro {
  margin-left: 0px;
}
.row.lo {
  margin-right: 0px;
}
@media only screen and (min-width: 768px) {
  .wrapper {
    width: 710px;
  }
}
@media only screen and (min-width: 992px) {
  .wrapper {
    width: 935px;
  }
}
@media only screen and (min-width: 1200px) {
  .wrapper {
    width: 1170px;
  }
}
.col-xs-1,
.col-sm-1,
.col-md-1,
.col-lg-1,
.col-xs-2,
.col-sm-2,
.col-md-2,
.col-lg-2,
.col-xs-3,
.col-sm-3,
.col-md-3,
.col-lg-3,
.col-xs-4,
.col-sm-4,
.col-md-4,
.col-lg-4,
.col-xs-5,
.col-sm-5,
.col-md-5,
.col-lg-5,
.col-xs-6,
.col-sm-6,
.col-md-6,
.col-lg-6,
.col-xs-7,
.col-sm-7,
.col-md-7,
.col-lg-7,
.col-xs-8,
.col-sm-8,
.col-md-8,
.col-lg-8,
.col-xs-9,
.col-sm-9,
.col-md-9,
.col-lg-9,
.col-xs-10,
.col-sm-10,
.col-md-10,
.col-lg-10,
.col-xs-11,
.col-sm-11,
.col-md-11,
.col-lg-11,
.col-xs-12,
.col-sm-12,
.col-md-12,
.col-lg-12,
.col-xs-13,
.col-sm-13,
.col-md-13,
.col-lg-13,
.col-xs-14,
.col-sm-14,
.col-md-14,
.col-lg-14,
.col-xs-15,
.col-sm-15,
.col-md-15,
.col-lg-15,
.col-xs-16,
.col-sm-16,
.col-md-16,
.col-lg-16,
.col-xs-17,
.col-sm-17,
.col-md-17,
.col-lg-17,
.col-xs-18,
.col-sm-18,
.col-md-18,
.col-lg-18,
.col-xs-19,
.col-sm-19,
.col-md-19,
.col-lg-19,
.col-xs-20,
.col-sm-20,
.col-md-20,
.col-lg-20 {
  position: relative;
  padding-right: 10px;
  padding-left: 10px;
}
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-13,
.col-xs-14,
.col-xs-15,
.col-xs-16,
.col-xs-17,
.col-xs-18,
.col-xs-19,
.col-xs-20 {
  float: left;
}
.col-xs-20 {
  width: 100%;
}
.col-xs-19 {
  width: 95%;
}
.col-xs-18 {
  width: 90%;
}
.col-xs-17 {
  width: 85%;
}
.col-xs-16 {
  width: 80%;
}
.col-xs-15 {
  width: 75%;
}
.col-xs-14 {
  width: 70%;
}
.col-xs-13 {
  width: 65%;
}
.col-xs-12 {
  width: 60%;
}
.col-xs-11 {
  width: 55%;
}
.col-xs-10 {
  width: 50%;
}
.col-xs-9 {
  width: 45%;
}
.col-xs-8 {
  width: 40%;
}
.col-xs-7 {
  width: 35%;
}
.col-xs-6 {
  width: 30%;
}
.col-xs-5 {
  width: 25%;
}
.col-xs-4 {
  width: 20%;
}
.col-xs-3 {
  width: 15%;
}
.col-xs-2 {
  width: 10%;
}
.col-xs-1 {
  width: 5%;
}
.col-xs-pull-20 {
  margin-right: 100%;
}
.col-xs-pull-19 {
  margin-right: 95%;
}
.col-xs-pull-18 {
  margin-right: 90%;
}
.col-xs-pull-17 {
  margin-right: 85%;
}
.col-xs-pull-16 {
  margin-right: 80%;
}
.col-xs-pull-15 {
  margin-right: 75%;
}
.col-xs-pull-14 {
  margin-right: 70%;
}
.col-xs-pull-13 {
  margin-right: 65%;
}
.col-xs-pull-12 {
  margin-right: 60%;
}
.col-xs-pull-11 {
  margin-right: 55%;
}
.col-xs-pull-10 {
  margin-right: 45%;
}
.col-xs-pull-9 {
  margin-right: 40%;
}
.col-xs-pull-8 {
  margin-right: 40%;
}
.col-xs-pull-7 {
  margin-right: 35%;
}
.col-xs-pull-6 {
  margin-right: 30%;
}
.col-xs-pull-5 {
  margin-right: 25%;
}
.col-xs-pull-4 {
  margin-right: 20%;
}
.col-xs-pull-3 {
  margin-right: 15%;
}
.col-xs-pull-2 {
  margin-right: 10%;
}
.col-xs-pull-1 {
  margin-right: 5%;
}
.col-xs-pull-0 {
  margin-right: auto;
}
.col-xs-push-20 {
  margin-left: 100%;
}
.col-xs-push-19 {
  margin-left: 95%;
}
.col-xs-push-18 {
  margin-left: 90%;
}
.col-xs-push-17 {
  margin-left: 85%;
}
.col-xs-push-16 {
  margin-left: 80%;
}
.col-xs-push-15 {
  margin-left: 75%;
}
.col-xs-push-14 {
  margin-left: 70%;
}
.col-xs-push-13 {
  margin-left: 65%;
}
.col-xs-push-12 {
  margin-left: 60%;
}
.col-xs-push-11 {
  margin-left: 55%;
}
.col-xs-push-10 {
  margin-left: 50%;
}
.col-xs-push-9 {
  margin-left: 45%;
}
.col-xs-push-8 {
  margin-left: 40%;
}
.col-xs-push-7 {
  margin-left: 35%;
}
.col-xs-push-6 {
  margin-left: 30%;
}
.col-xs-push-5 {
  margin-left: 25%;
}
.col-xs-push-4 {
  margin-left: 20%;
}
.col-xs-push-3 {
  margin-left: 15%;
}
.col-xs-push-2 {
  margin-left: 10%;
}
.col-xs-push-1 {
  margin-left: 5%;
}
.col-xs-push-0 {
  margin-left: auto;
}
@media (min-width: 768px) {
  .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-13,
  .col-sm-14,
  .col-sm-15,
  .col-sm-16,
  .col-sm-17,
  .col-sm-18,
  .col-sm-19,
  .col-sm-20 {
    float: left;
  }
  .col-sm-20 {
    width: 100%;
  }
  .col-sm-19 {
    width: 95%;
  }
  .col-sm-18 {
    width: 90%;
  }
  .col-sm-17 {
    width: 85%;
  }
  .col-sm-16 {
    width: 90%;
  }
  .col-sm-15 {
    width: 75%;
  }
  .col-sm-14 {
    width: 70%;
  }
  .col-sm-13 {
    width: 65%;
  }
  .col-sm-12 {
    width: 60%;
  }
  .col-sm-11 {
    width: 55%;
  }
  .col-sm-10 {
    width: 50%;
  }
  .col-sm-9 {
    width: 45%;
  }
  .col-sm-8 {
    width: 40%;
  }
  .col-sm-7 {
    width: 35%;
  }
  .col-sm-6 {
    width: 30%;
  }
  .col-sm-5 {
    width: 25%;
  }
  .col-sm-4 {
    width: 20%;
  }
  .col-sm-3 {
    width: 15%;
  }
  .col-sm-2 {
    width: 10%;
  }
  .col-sm-1 {
    width: 5%;
  }
  .col-sm-pull-20 {
    margin-right: 100%;
  }
  .col-sm-pull-19 {
    margin-right: 95%;
  }
  .col-sm-pull-18 {
    margin-right: 90%;
  }
  .col-sm-pull-17 {
    margin-right: 85%;
  }
  .col-sm-pull-16 {
    margin-right: 80%;
  }
  .col-sm-pull-15 {
    margin-right: 75%;
  }
  .col-sm-pull-14 {
    margin-right: 70%;
  }
  .col-sm-pull-13 {
    margin-right: 65%;
  }
  .col-sm-pull-12 {
    margin-right: 60%;
  }
  .col-sm-pull-11 {
    margin-right: 55%;
  }
  .col-sm-pull-10 {
    margin-right: 50%;
  }
  .col-sm-pull-9 {
    margin-right: 45%;
  }
  .col-sm-pull-8 {
    margin-right: 40%;
  }
  .col-sm-pull-7 {
    margin-right: 35%;
  }
  .col-sm-pull-6 {
    margin-right: 30%;
  }
  .col-sm-pull-5 {
    margin-right: 25%;
  }
  .col-sm-pull-4 {
    margin-right: 20%;
  }
  .col-sm-pull-3 {
    margin-right: 15%;
  }
  .col-sm-pull-2 {
    margin-right: 10%;
  }
  .col-sm-pull-1 {
    margin-right: 5%;
  }
  .col-sm-pull-0 {
    margin-right: auto;
  }
  .col-sm-push-20 {
    margin-left: 100%;
  }
  .col-sm-push-19 {
    margin-left: 95%;
  }
  .col-sm-push-18 {
    margin-left: 90%;
  }
  .col-sm-push-17 {
    margin-left: 85%;
  }
  .col-sm-push-16 {
    margin-left: 80%;
  }
  .col-sm-push-15 {
    margin-left: 75%;
  }
  .col-sm-push-14 {
    margin-left: 70%;
  }
  .col-sm-push-13 {
    margin-left: 65%;
  }
  .col-sm-push-12 {
    margin-left: 60%;
  }
  .col-sm-push-11 {
    margin-left: 55%;
  }
  .col-sm-push-10 {
    margin-left: 50%;
  }
  .col-sm-push-9 {
    margin-left: 45%;
  }
  .col-sm-push-8 {
    margin-left: 40%;
  }
  .col-sm-push-7 {
    margin-left: 35%;
  }
  .col-sm-push-6 {
    margin-left: 30%;
  }
  .col-sm-push-5 {
    margin-left: 25%;
  }
  .col-sm-push-4 {
    margin-left: 20%;
  }
  .col-sm-push-3 {
    margin-left: 15%;
  }
  .col-sm-push-2 {
    margin-left: 10%;
  }
  .col-sm-push-1 {
    margin-left: 5%;
  }
  .col-sm-push-0 {
    margin-left: auto;
  }
}
@media (min-width: 992px) {
  .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-13,
  .col-md-14,
  .col-md-15,
  .col-md-16,
  .col-md-17,
  .col-md-18,
  .col-md-19,
  .col-md-20 {
    float: left;
  }
  .col-md-20 {
    width: 100%;
  }
  .col-md-19 {
    width: 95%;
  }
  .col-md-18 {
    width: 90%;
  }
  .col-md-17 {
    width: 85%;
  }
  .col-md-16 {
    width: 80%;
  }
  .col-md-15 {
    width: 75%;
  }
  .col-md-14 {
    width: 70%;
  }
  .col-md-13 {
    width: 65%;
  }
  .col-md-12 {
    width: 60%;
  }
  .col-md-11 {
    width: 55%;
  }
  .col-md-10 {
    width: 50%;
  }
  .col-md-9 {
    width: 45%;
  }
  .col-md-8 {
    width: 40%;
  }
  .col-md-7 {
    width: 35%;
  }
  .col-md-6 {
    width: 30%;
  }
  .col-md-5 {
    width: 25%;
  }
  .col-md-4 {
    width: 20%;
  }
  .col-md-3 {
    width: 15%;
  }
  .col-md-2 {
    width: 10%;
  }
  .col-md-1 {
    width: 5%;
  }
  .col-md-pull-20 {
    margin-right: 100%;
  }
  .col-md-pull-19 {
    margin-right: 95%;
  }
  .col-md-pull-18 {
    margin-right: 90%;
  }
  .col-md-pull-17 {
    margin-right: 85%;
  }
  .col-md-pull-16 {
    margin-right: 80%;
  }
  .col-md-pull-15 {
    margin-right: 75%;
  }
  .col-md-pull-14 {
    margin-right: 70%;
  }
  .col-md-pull-13 {
    margin-right: 65%;
  }
  .col-md-pull-12 {
    margin-right: 60%;
  }
  .col-md-pull-11 {
    margin-right: 55%;
  }
  .col-md-pull-10 {
    margin-right: 50%;
  }
  .col-md-pull-9 {
    margin-right: 45%;
  }
  .col-md-pull-8 {
    margin-right: 40%;
  }
  .col-md-pull-7 {
    margin-right: 35%;
  }
  .col-md-pull-6 {
    margin-right: 30%;
  }
  .col-md-pull-5 {
    margin-right: 25%;
  }
  .col-md-pull-4 {
    margin-right: 20%;
  }
  .col-md-pull-3 {
    margin-right: 15%;
  }
  .col-md-pull-2 {
    margin-right: 10%;
  }
  .col-md-pull-1 {
    margin-right: 5%;
  }
  .col-md-pull-0 {
    margin-right: auto;
  }
  .col-md-push-20 {
    margin-left: 100%;
  }
  .col-md-push-19 {
    margin-left: 95%;
  }
  .col-md-push-18 {
    margin-left: 90%;
  }
  .col-md-push-17 {
    margin-left: 85%;
  }
  .col-md-push-16 {
    margin-left: 80%;
  }
  .col-md-push-15 {
    margin-left: 75%;
  }
  .col-md-push-14 {
    margin-left: 70%;
  }
  .col-md-push-13 {
    margin-left: 65%;
  }
  .col-md-push-12 {
    margin-left: 60%;
  }
  .col-md-push-11 {
    margin-left: 55%;
  }
  .col-md-push-10 {
    margin-left: 50%;
  }
  .col-md-push-9 {
    margin-left: 45%;
  }
  .col-md-push-8 {
    margin-left: 40%;
  }
  .col-md-push-7 {
    margin-left: 35%;
  }
  .col-md-push-6 {
    margin-left: 30%;
  }
  .col-md-push-5 {
    margin-left: 25%;
  }
  .col-md-push-4 {
    margin-left: 20%;
  }
  .col-md-push-3 {
    margin-left: 15%;
  }
  .col-md-push-2 {
    margin-left: 10%;
  }
  .col-md-push-1 {
    margin-left: 5%;
  }
  .col-md-push-0 {
    margin-left: auto;
  }
}
@media (min-width: 1200px) {
  .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-13,
  .col-lg-14,
  .col-lg-15,
  .col-lg-16,
  .col-lg-17,
  .col-lg-18,
  .col-lg-19,
  .col-lg-20 {
    float: left;
  }
  .col-lg-20 {
    width: 100%;
  }
  .col-lg-19 {
    width: 95%;
  }
  .col-lg-18 {
    width: 90%;
  }
  .col-lg-17 {
    width: 85%;
  }
  .col-lg-16 {
    width: 80%;
  }
  .col-lg-15 {
    width: 75%;
  }
  .col-lg-14 {
    width: 70%;
  }
  .col-lg-13 {
    width: 65%;
  }
  .col-lg-12 {
    width: 60%;
  }
  .col-lg-11 {
    width: 55%;
  }
  .col-lg-10 {
    width: 50%;
  }
  .col-lg-9 {
    width: 45%;
  }
  .col-lg-8 {
    width: 40%;
  }
  .col-lg-7 {
    width: 35%;
  }
  .col-lg-6 {
    width: 30%;
  }
  .col-lg-5 {
    width: 25%;
  }
  .col-lg-4 {
    width: 20%;
  }
  .col-lg-3 {
    width: 15%;
  }
  .col-lg-2 {
    width: 10%;
  }
  .col-lg-1 {
    width: 5%;
  }
  .col-lg-pull-20 {
    margin-right: 100%;
  }
  .col-lg-pull-19 {
    margin-right: 95%;
  }
  .col-lg-pull-18 {
    margin-right: 90%;
  }
  .col-lg-pull-17 {
    margin-right: 85%;
  }
  .col-lg-pull-16 {
    margin-right: 80%;
  }
  .col-lg-pull-15 {
    margin-right: 75%;
  }
  .col-lg-pull-14 {
    margin-right: 70%;
  }
  .col-lg-pull-13 {
    margin-right: 65%;
  }
  .col-lg-pull-12 {
    margin-right: 60%;
  }
  .col-lg-pull-11 {
    margin-right: 55%;
  }
  .col-lg-pull-10 {
    margin-right: 50%;
  }
  .col-lg-pull-9 {
    margin-right: 45%;
  }
  .col-lg-pull-8 {
    margin-right: 40%;
  }
  .col-lg-pull-7 {
    margin-right: 35%;
  }
  .col-lg-pull-6 {
    margin-right: 30%;
  }
  .col-lg-pull-5 {
    margin-right: 25%;
  }
  .col-lg-pull-4 {
    margin-right: 20%;
  }
  .col-lg-pull-3 {
    margin-right: 15%;
  }
  .col-lg-pull-2 {
    margin-right: 10%;
  }
  .col-lg-pull-1 {
    margin-right: 5%;
  }
  .col-lg-pull-0 {
    margin-right: auto;
  }
  .col-lg-push-20 {
    margin-left: 100%;
  }
  .col-lg-push-19 {
    margin-left: 95%;
  }
  .col-lg-push-18 {
    margin-left: 90%;
  }
  .col-lg-push-17 {
    margin-left: 85%;
  }
  .col-lg-push-16 {
    margin-left: 80%;
  }
  .col-lg-push-15 {
    margin-left: 75%;
  }
  .col-lg-push-14 {
    margin-left: 70%;
  }
  .col-lg-push-13 {
    margin-left: 65%;
  }
  .col-lg-push-12 {
    margin-left: 60%;
  }
  .col-lg-push-11 {
    margin-left: 55%;
  }
  .col-lg-push-10 {
    margin-left: 50%;
  }
  .col-lg-push-9 {
    margin-left: 45%;
  }
  .col-lg-push-8 {
    margin-left: 40%;
  }
  .col-lg-push-7 {
    margin-left: 35%;
  }
  .col-lg-push-6 {
    margin-left: 30%;
  }
  .col-lg-push-5 {
    margin-left: 25%;
  }
  .col-lg-push-4 {
    margin-left: 20%;
  }
  .col-lg-push-3 {
    margin-left: 15%;
  }
  .col-lg-push-2 {
    margin-left: 10%;
  }
  .col-lg-push-1 {
    margin-left: 5%;
  }
  .col-lg-push-0 {
    margin-left: auto;
  }
}
.pull-left {
  float: left !important;
}
.pull-right {
  float: right !important;
}
.wrapper:before,
.row:before,
.wrapper:after,
.row:after {
  display: table;
  content: " ";
}
.wrapper:after,
.row:after {
  clear: both;
}
/* @import includes/_header.styl */
#header {
  padding-top: 10px;
  box-shadow: 0px 10px 15px 0px rgba(0,0,0,0.1);
/* @import includes/1200+/_header.styl */
/* @import includes/992-1200/_header.styl */
/* @import includes/768-991/_header.styl */
/* @import includes/768-/_header.styl */
}
#header .logo {
  float: left;
  margin-left: 10px;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#header .logo a {
  display: block;
}
#header .top-line,
#header .mobile-social,
#header .bottom-line {
  text-align: right;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#header .top-line {
  float: right;
}
#header .top-line .divider {
  display: none;
}
#header .top-line .address {
  color: #828282;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#header .top-line .phone {
  color: #000;
  font-weight: 500;
  border: 2px solid #e12329;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#header .top-line .phone:before {
  content: '';
  background-image: url("images/header-call.png");
  width: 14px;
  height: 21px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
#header .mobile-social {
  display: none;
}
#header .bottom-line {
  float: right;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  position: relative;
  z-index: 5;
}
#header .bottom-line ul {
  position: relative;
  display: inline-block;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#header .bottom-line ul li {
  display: inline-block;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#header .bottom-line ul li a {
  display: inline-block;
  color: #000;
  text-transform: uppercase;
}
#header .bottom-line ul li.has-childs {
  position: relative;
  z-index: 1;
}
#header .bottom-line ul li.has-childs > ul {
  display: none;
  position: absolute;
  z-index: 2;
  top: 100%;
  right: 0px;
  min-width: 200px;
  background-color: #fff;
  box-shadow: 0px 10px 15px 0px rgba(0,0,0,0.1);
  transform: translateX(40%);
  -o-transform: translateX(40%);
  -ms-transform: translateX(40%);
  -moz-transform: translateX(40%);
  -webkit-transform: translateX(40%);
}
#header .bottom-line ul li.has-childs > ul li {
  display: block;
  text-align: center;
}
#header .bottom-line ul li.has-childs > ul li a:hover {
  color: #e12329;
}
#header .bottom-line ul li.has-childs > ul li.active a {
  color: #e12329;
}
#header .bottom-line ul li.has-childs:hover > ul {
  display: block;
}
#header .bottom-line ul .indicator {
  position: absolute;
  left: 0px;
  top: calc(100% - 3px);
  width: 0px;
  height: 0px;
  background-color: #e12329;
  transition-delay: 0.2s;
  z-index: -1;
}
#header .bottom-line ul .indicator.visible {
  height: 3px;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  transition-delay: 0s;
}
#header .bottom-line ul .indicator.visible:before {
  transition-delay: 0.2s;
  border-width: 0px 6px 3px 0px;
}
#header .bottom-line ul .indicator.visible:after {
  transition-delay: 0.2s;
  border-width: 3px 6px 0px 0px;
}
#header #width-indicator {
  position: fixed;
  top: 50px;
  left: 0px;
  text-align: center;
  z-index: 10000;
  pointer-events: none;
}
#header #width-indicator .indic {
  display: none;
  padding: 15px;
  background-color: #fff;
  border: 3px solid #e12329;
  color: #e12329;
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
}
/* @import includes/1200+/_header.styl */
@media screen and (min-width: 1200px) {
  #header .logo {
    width: 360px;
  }
  #header .top-line,
  #header .bottom-line {
    text-align: right;
  }
  #header .top-line {
    width: calc(100% - 380px);
    margin-right: 10px;
  }
  #header .top-line .address,
  #header .top-line .phone {
    display: inline-block;
  }
  #header .top-line .address {
    color: #828282;
    font-size: 16px;
    margin-right: 35px;
    margin-top: 10px;
  }
  #header .top-line .phone {
    font-size: 16px;
    line-height: 21px;
    padding: 5px 10px;
  }
  #header .bottom-line {
    width: calc(100% - 380px);
    padding-top: 10px;
    margin-right: 10px;
  }
  #header .bottom-line ul li a {
    padding: 10px 5px;
    font-size: 14px;
  }
  #header .bottom-line ul li + li {
    margin-left: 10px;
  }
  #header #width-indicator .w1200p {
    display: inline-block;
  }
}
/* @import includes/992-1200/_header.styl */
@media screen and (min-width: 992px) and (max-width: 1199px) {
  #header .logo {
    padding-top: 0px;
    width: 300px;
  }
  #header .top-line,
  #header .bottom-line {
    text-align: right;
  }
  #header .top-line {
    padding-top: 10px;
    margin-right: 10px;
    width: calc(100% - 320px);
  }
  #header .top-line .address,
  #header .top-line .phone {
    display: inline-block;
  }
  #header .top-line .address {
    color: #828282;
    font-size: 16px;
    margin-right: 35px;
    margin-top: 5px;
    max-width: 350px;
  }
  #header .top-line .phone {
    font-size: 16px;
    line-height: 21px;
    padding: 5px 10px;
  }
  #header .bottom-line {
    width: calc(100% - 20px);
    padding-top: 10px;
    text-align: center;
    margin-left: 10px;
    margin-right: 10px;
  }
  #header .bottom-line ul {
    display: table;
    width: 100%;
  }
  #header .bottom-line ul li {
    display: table-cell;
  }
  #header .bottom-line ul li a {
    padding: 10px;
    font-size: 14px;
  }
  #header .bottom-line ul li + li {
    margin-left: 15px;
  }
  #header #width-indicator .w992-1199 {
    display: inline-block;
  }
}
/* @import includes/768-991/_header.styl */
@media screen and (max-width: 991px) {
  #header {
    padding-bottom: 10px;
  }
  #header .logo {
    width: calc(50% - 10px);
    padding-right: 10px;
    padding-top: 10px;
  }
  #header .top-line,
  #header .bottom-line {
    text-align: right;
  }
  #header .top-line {
    width: calc(50% - 10px);
    margin-right: 10px;
    padding-left: 10px;
  }
  #header .top-line .address,
  #header .top-line .phone {
    display: inline-block;
  }
  #header .top-line .address {
    color: #828282;
    font-size: 16px;
    margin-right: 0px;
    margin-top: 10px;
  }
  #header .top-line .phone {
    font-size: 16px;
    line-height: 21px;
    padding: 5px 10px;
  }
  #header .mobile-social {
    display: block;
    text-align: center;
    width: 100%;
    float: left;
    padding-top: 20px;
    padding-bottom: 10px;
  }
  #header .mobile-social .circle {
    display: inline-block;
    vertical-align: middle;
  }
  #header .mobile-social .circle img {
    width: 40px;
  }
  #header .mobile-social .circle + .circle {
    margin-left: 30px;
  }
  #header .bottom-line {
    position: fixed;
    z-index: 99;
    top: 0px;
    left: 0px;
    right: 0px;
    max-width: 600px;
    margin: 0px auto;
    transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    transform: translateY(-100%) translateZ(0);
    -o-transform: translateY(-100%) translateZ(0);
    -ms-transform: translateY(-100%) translateZ(0);
    -moz-transform: translateY(-100%) translateZ(0);
    -webkit-transform: translateY(-100%) translateZ(0);
    text-align: left;
    padding: 30px 0px;
    background-color: #fff;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
  }
  #header .bottom-line ul {
    display: block;
  }
  #header .bottom-line ul li {
    display: block;
  }
  #header .bottom-line ul li a {
    display: block;
    padding: 20px 40px;
    transition: box-shadow 0.3s ease-out;
    -o-transition: box-shadow 0.3s ease-out;
    -ms-transition: box-shadow 0.3s ease-out;
    -moz-transition: box-shadow 0.3s ease-out;
    -webkit-transition: box-shadow 0.3s ease-out;
    box-shadow: inset 0px 0px 0px 0px #e12329, inset 0px 0px 0px 0px #e12329;
  }
  #header .bottom-line ul li a:hover {
    box-shadow: inset 10px 0px 0px 0px #e12329, inset -10px 0px 0px 0px #e12329;
  }
  #header .bottom-line ul li.has-childs ul {
    display: none;
  }
  #header .bottom-line ul li.has-childs:hover ul {
    display: none;
  }
  #header .bottom-line ul .indicator {
    display: none;
  }
  #header .bottom-line .mobile-menu {
    position: absolute;
    bottom: -35px;
    left: calc(50% - 31px);
    width: 62px;
    height: 35px;
    background-color: #fff;
    z-index: 100;
    box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.1);
    cursor: pointer;
  }
  #header .bottom-line .mobile-menu:after {
    content: '';
    position: absolute;
    top: -30px;
    left: -60px;
    right: -60px;
    height: 30px;
    background-color: #fff;
  }
  #header .bottom-line .mobile-menu:before {
    content: '';
    display: block;
    width: 32px;
    height: 20px;
    background-image: url("images/mobile-menu.png?v=2");
    background-size: contain;
    background-repeat: no-repeat;
    margin: 6px auto 0px auto;
    pointer-events: none;
  }
  #header .bottom-line.open {
    transform: translateY(0%) translateZ(0);
    -o-transform: translateY(0%) translateZ(0);
    -ms-transform: translateY(0%) translateZ(0);
    -moz-transform: translateY(0%) translateZ(0);
    -webkit-transform: translateY(0%) translateZ(0);
    box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.3);
  }
  #header .bottom-line.open .mobile-menu {
    box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.3);
  }
}
/* @import includes/768-/_header.styl */
@media screen and (max-width: 767px) {
  #header {
    padding-top: 80px;
    padding-bottom: 10px;
  }
  #header .logo {
    width: calc(100% - 10px);
    padding-right: 10px;
    padding-top: 10px;
    text-align: center;
    margin-bottom: 30px;
  }
  #header .logo img {
    width: 70%;
  }
  #header .top-line,
  #header .bottom-line {
    text-align: center;
  }
  #header .top-line {
    width: calc(100% - 10px);
    margin-right: 10px;
    padding-left: 10px;
  }
  #header .top-line .address,
  #header .top-line .phone {
    display: inline-block;
    float: none !important;
  }
  #header .top-line .divider {
    display: block;
  }
  #header .top-line .address {
    color: #828282;
    font-size: 28px;
    margin-right: 0px;
    margin-top: 30px;
  }
  #header .top-line .phone {
    font-size: 28px;
    line-height: 30px;
    padding: 10px 10px;
  }
  #header .mobile-social .circle img {
    width: 64px;
  }
  #header .bottom-line {
    position: fixed;
    z-index: 99;
    top: 0px;
    left: 0px;
    right: 0px;
    max-width: 710px;
    margin: 0px auto;
    transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    transform: translateY(-100%) translateZ(0);
    -o-transform: translateY(-100%) translateZ(0);
    -ms-transform: translateY(-100%) translateZ(0);
    -moz-transform: translateY(-100%) translateZ(0);
    -webkit-transform: translateY(-100%) translateZ(0);
    text-align: left;
    padding: 30px 0px;
    background-color: #fff;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
  }
  #header .bottom-line ul {
    display: block;
  }
  #header .bottom-line ul li {
    display: block;
  }
  #header .bottom-line ul li a {
    display: block;
    padding: 20px 40px;
    font-size: 26px;
    transition: box-shadow 0.3s ease-out;
    -o-transition: box-shadow 0.3s ease-out;
    -ms-transition: box-shadow 0.3s ease-out;
    -moz-transition: box-shadow 0.3s ease-out;
    -webkit-transition: box-shadow 0.3s ease-out;
    box-shadow: inset 0px 0px 0px 0px #e12329, inset 0px 0px 0px 0px #e12329;
  }
  #header .bottom-line ul li a:hover {
    box-shadow: inset 10px 0px 0px 0px #e12329, inset -10px 0px 0px 0px #e12329;
  }
  #header .bottom-line ul .indicator {
    display: none;
  }
  #header .bottom-line .mobile-menu {
    position: absolute;
    bottom: -70px;
    left: calc(50% - 62px);
    width: 124px;
    height: 70px;
    background-color: #fff;
    z-index: 100;
    box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.1);
    cursor: pointer;
  }
  #header .bottom-line .mobile-menu:after {
    content: '';
    position: absolute;
    top: -30px;
    left: -60px;
    right: -60px;
    height: 30px;
    background-color: #fff;
  }
  #header .bottom-line .mobile-menu:before {
    content: '';
    display: block;
    width: 64px;
    height: 40px;
    background-image: url("images/mobile-menu.png?v=2");
    background-size: contain;
    background-repeat: no-repeat;
    margin: 12px auto 0px auto;
    pointer-events: none;
  }
  #header .bottom-line.open {
    transform: translateY(0%) translateZ(0);
    -o-transform: translateY(0%) translateZ(0);
    -ms-transform: translateY(0%) translateZ(0);
    -moz-transform: translateY(0%) translateZ(0);
    -webkit-transform: translateY(0%) translateZ(0);
    box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.3);
  }
  #header .bottom-line.open .mobile-menu {
    box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.3);
  }
}
/* @import includes/_footer.styl */
#footer {
  background-position: top center;
  background-image: url("images/footer-bg.jpg");
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
/* @import includes/1200+/_footer.styl */
/* @import includes/992-1200/_footer.styl */
/* @import includes/768-991/_footer.styl */
/* @import includes/768-/_footer.styl */
}
#footer .not-found-something {
  background-color: #fff;
  padding-top: 40px;
  padding-bottom: 20px;
}
#footer .not-found-something .wrapper {
  max-width: 1000px;
}
#footer .not-found-something .block-title {
  font-size: 20px;
  line-height: 28px;
}
#footer .not-found-something h3 {
  color: #e12329;
  margin: 20px 0px 10px 0px;
  font-size: 20px;
  line-height: 28px;
}
#footer .not-found-something p {
  margin: 10px 0px 10px 0px;
  font-size: 18px;
  line-height: 28px;
}
#footer .not-found-something a[href^="tel:"],
#footer .not-found-something a[href^="form:"],
#footer .not-found-something a[href^="callto:"] {
  padding: 15px 20px;
  display: inline-block;
  background-color: #e12329;
  color: #fff;
  border: none;
  font-weight: bold;
  text-transform: uppercase;
  box-shadow: 9px 11px 30px 0px rgba(0,0,0,0.6);
  margin: 10px 10px 10px 10px;
}
#footer .not-found-something {
  margin: 0px auto;
  padding: 50px 0px;
}
#footer .map-block {
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#footer .map-block #map {
  width: 100%;
  height: inherit;
  background-color: #ececec;
  display: flex;
  align-items: center;
  justify-content: center;
}
#footer .map-block #map:before {
  display: inline-flex;
  content: '';
  color: rgba(0,0,0,0.2);
  font-size: 90px;
  font-weight: bold;
  line-height: 90px;
}
#footer .map-block.hidden {
  height: 0px !important;
}
#footer .column-label {
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#footer .contacts-info .phone {
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#footer .contacts-info .phone a {
  color: #fff;
  font-weight: 600;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#footer .contacts-info .address a{
  color: #fff;
  font-weight: 300;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#footer .contacts-info .email a {
  color: #fff;
  font-weight: 300;
  text-decoration: underline;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#footer .circles {
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#footer .circles p {
  color: #fff;
  font-weight: bold;
}
#footer .circles .circle {
  display: inline-block;
  border-radius: 50%;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  background-color: #ff1e25;
  font-size: 0px;
  text-align: center;
}
#footer .circles .circle:before {
  content: '';
  height: inherit;
  width: 0px;
  display: inline-block;
  vertical-align: middle;
}
#footer .menu-s-column ul li {
  display: block;
  color: #fff;
}
#footer .menu-s-column ul li a {
  color: inherit;
  font-weight: 300;
  text-transform: uppercase;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#footer .menu-s-column ul li.active,
#footer .menu-s-column ul li:hover {
  color: #e12329;
}
#footer .scroll-to-top {
  position: fixed;
  z-index: 350;
  right: 10px;
  bottom: 10px;
  cursor: pointer;
  background-color: #e12329;
  background-image: url("images/totop-arrow.png");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  width: 50px;
  height: 50px;
  transition: background 0.2s ease-in-out;
  -o-transition: background 0.2s ease-in-out;
  -ms-transition: background 0.2s ease-in-out;
  -moz-transition: background 0.2s ease-in-out;
  -webkit-transition: background 0.2s ease-in-out;
}
#footer .scroll-to-top:hover {
  background-position: 50% calc(50% - 5px);
}
#footer .creator {
  text-align: center;
}
#footer .creator p {
  color: #fff;
  font-size: 14px;
}
#footer .creator p a {
  display: inline-block;
  margin-left: 5px;
  font-size: 18px;
  vertical-align: baseline;
}
#footer .creator p img {
  height: 18px;
}
/* @import includes/1200+/_footer.styl */
@media screen and (min-width: 1200px) {
  #footer {
    padding-bottom: 60px;
  }
  #footer .map-block {
    margin-bottom: 90px;
    height: 340px;
  }
  #footer .column-label {
    font-size: 24px;
    margin: 0px 0px 40px 0px;
  }
  #footer .contacts-info .phone {
    margin: 0px 0px 40px 0px;
  }
  #footer .contacts-info .phone a {
    font-size: 30px;
  }
  #footer .contacts-info .address {
    margin: 0px 0px 40px 0px;
    font-size: 24px;
    line-height: 40px;
  }
  #footer .contacts-info .email a {
    font-size: 24px;
  }
  #footer .circles {
    margin-top: 60px;
  }
  #footer .circles p {
    font-size: 24px;
  }
  #footer .circles .circle {
    width: 50px;
    height: 50px;
  }
  #footer .circles .circle + .circle {
    margin-left: 25px;
  }
  #footer .menu-s-column ul li {
    margin: 0px 0px 25px 0px;
  }
  #footer .menu-s-column ul li a {
    font-size: 16px;
  }
}
/* @import includes/992-1200/_footer.styl */
@media screen and (min-width: 992px) and (max-width: 1199px) {
  #footer {
    padding-bottom: 60px;
  }
  #footer .map-block {
    margin-bottom: 70px;
    height: 340px;
  }
  #footer .column-label {
    font-size: 20px;
    margin: 0px 0px 30px 0px;
  }
  #footer .contacts-info .phone {
    margin: 0px 0px 30px 0px;
  }
  #footer .contacts-info .phone a {
    font-size: 26px;
  }
  #footer .contacts-info .address {
    margin: 0px 0px 30px 0px;
    font-size: 20px;
    line-height: 36px;
  }
  #footer .contacts-info .email a {
    font-size: 20px;
  }
  #footer .circles {
    margin-top: 40px;
  }
  #footer .circles p {
    font-size: 20px;
  }
  #footer .circles .circle {
    width: 40px;
    height: 40px;
  }
  #footer .circles .circle + .circle {
    margin-left: 20px;
  }
  #footer .menu-s-column ul li {
    margin: 0px 0px 25px 0px;
  }
  #footer .menu-s-column ul li a {
    font-size: 14px;
  }
}
/* @import includes/768-991/_footer.styl */
@media screen and (max-width: 991px) {
  #footer {
    padding-bottom: 60px;
  }
  #footer .map-block {
    margin-bottom: 70px;
    height: 340px;
  }
  #footer .column-label {
    font-size: 18px;
    margin: 0px 0px 20px 0px;
  }
  #footer .contacts-info .phone {
    margin: 0px 0px 20px 0px;
  }
  #footer .contacts-info .phone a {
    font-size: 22px;
  }
  #footer .contacts-info .address {
    margin: 0px 0px 20px 0px;
    font-size: 16px;
    line-height: 36px;
  }
  #footer .contacts-info .email a {
    font-size: 16px;
  }
  #footer .circles {
    margin-top: 40px;
  }
  #footer .circles p {
    font-size: 18px;
  }
  #footer .circles .circle {
    width: 40px;
    height: 40px;
  }
  #footer .circles .circle + .circle {
    margin-left: 20px;
  }
  #footer .menu-s-column ul li {
    margin: 0px 0px 15px 0px;
  }
  #footer .menu-s-column ul li a {
    font-size: 12px;
  }
}
/* @import includes/768-/_footer.styl */
@media screen and (max-width: 767px) {
  #footer {
    padding-bottom: 60px;
  }
  #footer .map-block {
    margin-bottom: 70px;
    height: 340px;
  }
  #footer .column-label {
    font-size: 32px;
    margin: 0px 0px 20px 0px;
  }
  #footer .contacts-info .phone {
    margin: 0px 0px 20px 0px;
  }
  #footer .contacts-info .phone a {
    font-size: 28px;
  }
  #footer .contacts-info .address {
    margin: 0px 0px 20px 0px;
    font-size: 28px;
    line-height: 36px;
  }
  #footer .contacts-info .email a {
    font-size: 28px;
  }
  #footer .circles {
    margin-top: 40px;
    text-align: center;
  }
  #footer .circles p {
    font-size: 24px;
  }
  #footer .circles .circle {
    width: 90px;
    height: 90px;
  }
  #footer .circles .circle + .circle {
    margin-left: 40px;
  }
  #footer .menu-s-column {
    margin-bottom: 30px;
  }
  #footer .menu-s-column ul li {
    margin: 0px 0px 20px 0px;
  }
  #footer .menu-s-column ul li a {
    font-size: 20px;
  }
  #footer .scroll-to-top {
    left: 0px;
    right: 0px;
    width: 100%;
    bottom: 0px;
  }
}
/* @import includes/base-page.styl */
#main.base-page .this-obj {
  box-shadow: 0px 0px 0px 5px #e12329;
}
#main.base-page .breadcrumbs {
  font-size: 0px;
}
#main.base-page .breadcrumbs li {
  display: inline-block;
  color: #000;
  font-weight: 400;
}
#main.base-page .breadcrumbs li a {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}
#main.base-page .breadcrumbs li.active {
  color: #e12329;
}
#main.base-page .page-title {
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.base-page .page-title:after {
  content: '';
  position: absolute;
  left: 0px;
  bottom: 0px;
  background-color: #e12329;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.base-page .seo-content {
  margin-top: 50px;
  padding-bottom: 5px;
}
#main.base-page .seo-content p {
  color: #000;
  font-weight: 400;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.base-page .seo-content h2,
#main.base-page .seo-content h3,
#main.base-page .seo-content h4,
#main.base-page .seo-content h5,
#main.base-page .seo-content h6 {
  color: #000;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.base-page .seo-content blockquote {
  border: 1px solid #e12329;
  background-color: rgba(225,35,41,0.1);
  margin-left: 0px;
  margin-right: 0px;
}
#main.base-page .seo-content blockquote > *:first-child {
  margin-top: 0px !important;
}
#main.base-page .seo-content blockquote > *:last-child {
  margin-bottom: 0px !important;
}
#main.base-page .seo-content blockquote ul li,
#main.base-page .seo-content blockquote ol li {
  margin-bottom: 0px;
}
#main.base-page .seo-content span.red-text {
  color: #e12329;
}
#main.base-page .seo-content span.red-text a {
  color: #e12329;
}
#main.base-page .seo-content ul,
#main.base-page .seo-content ol {
  list-style: none;
  margin: 20px 0px;
  padding: 0px;
}
#main.base-page .seo-content ul li,
#main.base-page .seo-content ol li {
  padding-left: 18px;
  margin-bottom: 5px;
}
#main.base-page .seo-content ul li:before,
#main.base-page .seo-content ol li:before {
  content: '';
  display: inline-block;
  margin: 3px 10px 0px -18px;
  vertical-align: top;
  background-color: #e12329;
}
#main.base-page .seo-content ul li ul,
#main.base-page .seo-content ol li ul,
#main.base-page .seo-content ul li ol,
#main.base-page .seo-content ol li ol {
  margin: 0px 0px 10px 25px;
}
#main.base-page .page-content {
  margin: 0px auto;
}
#main.base-page .page-content h2,
#main.base-page .page-content h3,
#main.base-page .page-content h4,
#main.base-page .page-content h5,
#main.base-page .page-content h6 {
  color: #000;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.base-page .page-content p {
  color: #000;
  font-weight: 400;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.base-page .page-content .images-block {
  width: 100%;
  text-align: center;
  display: table;
}
#main.base-page .page-content .images-block .image {
  display: table-cell;
  padding: 0px 10px 0px 10px;
  cursor: pointer;
  position: relative;
}
#main.base-page .page-content .images-block .image img {
  max-block-size: 100%;
  object-fit: contain;
  cursor: pointer;
  max-width: 100%;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.base-page .page-content .images-block .image:first-child {
  padding-left: 0px;
}
#main.base-page .page-content .images-block .image:last-child {
  padding-right: 0px;
}
#main.base-page .page-content .images-block .breaker {
  display: table-row;
  height: 0px;
  width: 100%;
}
#main.base-page .page-content .images-block .text {
  display: table-cell;
  padding: 0px 10px 0px 10px;
  position: relative;
  text-align: center;
  font-size: 16px;
}
#main.base-page .page-content .images-block .text:first-child {
  padding-left: 0px;
}
#main.base-page .page-content .images-block .text:last-child {
  padding-right: 0px;
}
#main.base-page .page-content .spoiler {
  margin-bottom: 10px;
}
#main.base-page .page-content .spoiler .spoiler-label {
  background-color: #e12329;
  padding: 10px 15px 10px 35px;
  color: #fff;
  font-weight: bold;
  margin: 0px;
  position: relative;
  box-shadow: 3px 3px 10px 0px rgba(0,0,0,0.4);
}
#main.base-page .page-content .spoiler .spoiler-label:before {
  content: '';
  position: absolute;
  top: 10px;
  left: 15px;
  width: 9px;
  height: 14px;
  background-image: url("images/spoiler.png");
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.base-page .page-content .spoiler .spoiler-content {
  background-color: rgba(130,130,130,0.2);
  overflow: hidden;
  height: 0px;
}
#main.base-page .page-content .spoiler .spoiler-content .spoiler {
  margin-bottom: 0px;
}
#main.base-page .page-content .spoiler .spoiler-content .spoiler .spoiler-label {
  background-color: #828282;
}
#main.base-page .page-content .spoiler.open > .spoiler-label {
  background-color: #b7191e;
  margin-bottom: 10px;
}
#main.base-page .page-content .spoiler.open > .spoiler-label:before {
  transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
}
#main.base-page .page-content .spoiler.open > .spoiler-content {
  height: auto;
}
#main.base-page .page-content .spoiler.open > .spoiler-content .spoiler.open > .spoiler-label {
  background-color: #686868;
}
#main.base-page .page-content .spoiler + .spoiler {
  margin-top: 10px;
}
#main.base-page .page-content iframe[src^="https://www.youtube.com/embed"] {
  margin: 0px auto;
}
#main.base-page .page-content .yt-frame {
  background-color: #282828;
  text-align: center;
  transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition-delay: 0s;
  margin: 0px auto;
}
#main.base-page .page-content .yt-frame.open {
  width: 100% !important;
}
#main.base-page .page-content blockquote {
  border: 1px solid #e12329;
  background-color: rgba(225,35,41,0.1);
  margin-left: 0px;
  margin-right: 0px;
}
#main.base-page .page-content blockquote > *:first-child {
  margin-top: 0px !important;
}
#main.base-page .page-content blockquote > *:last-child {
  margin-bottom: 0px !important;
}
#main.base-page .page-content blockquote ul li,
#main.base-page .page-content blockquote ol li {
  margin-bottom: 0px;
}
#main.base-page .page-content span.red-text {
  color: #e12329;
}
#main.base-page .page-content span.red-text a {
  color: #e12329;
}
#main.base-page .page-content ul,
#main.base-page .page-content ol {
  list-style: none;
  margin: 20px 0px;
  padding: 0px;
}
#main.base-page .page-content ul li,
#main.base-page .page-content ol li {
  padding-left: 18px;
  margin-bottom: 5px;
}
#main.base-page .page-content ul li:before,
#main.base-page .page-content ol li:before {
  content: '';
  display: inline-block;
  margin: 3px 10px 0px -18px;
  vertical-align: top;
  background-color: #e12329;
}
#main.base-page .page-content ul li ul,
#main.base-page .page-content ol li ul,
#main.base-page .page-content ul li ol,
#main.base-page .page-content ol li ol {
  margin: 0px 0px 10px 25px;
}
#main.base-page .childs {
  margin-top: 40px;
  margin-bottom: 80px;
  text-align: center;
}
#main.base-page .childs .childs-title {
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.base-page .childs .child {
  position: relative;
  margin-bottom: 10px;
  display: inline-block;
  float: none;
  text-align: left;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.base-page .childs .child .image {
  position: absolute;
  top: 0px;
  left: 10px;
  right: 10px;
  bottom: 0px;
  overflow: hidden;
  z-index: 0;
}
#main.base-page .childs .child .image:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background-color: rgba(0,0,0,0.3);
  z-index: 1;
}
#main.base-page .childs .child .image img {
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}
#main.base-page .childs .child .title a {
  position: absolute;
  top: 0px;
  left: 10px;
  right: 10px;
  bottom: 0px;
  z-index: 1;
  background-color: rgba(0,0,0,0);
  box-shadow: inset 0px 0px 0px 0px #e12329;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  color: #fff;
  text-transform: uppercase;
}
#main.base-page .childs .child .title a:hover {
  color: #000;
  background-color: #fff;
  box-shadow: inset 0px 0px 0px 3px #e12329;
}
#main.base-page .reviews-block .reviews-block-title {
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.base-page .reviews-block .reviews {
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}
#main.base-page .reviews-block .reviews .review {
  float: none;
  display: inline-block;
  vertical-align: top;
  white-space: initial;
  position: relative;
  z-index: 1;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.base-page .reviews-block .reviews .review .review-image {
  overflow: hidden;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.base-page .reviews-block .reviews .review .review-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#main.base-page .reviews-block .reviews .review .review-title {
  font-weight: 600;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.base-page .reviews-block .reviews .review .review-text {
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.base-page .reviews-block .reviews button {
  top: calc(50% - 30px);
  position: absolute;
  z-index: 5;
  display: inline-block;
  width: 60px;
  height: 60px;
  background-color: #e12329;
  background-image: url("images/slider-arrow.png");
  background-position: 19px 17px;
  background-repeat: no-repeat;
  padding: 0px;
  margin: 0px;
  border: none;
  cursor: pointer;
  pointer-events: initial;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  box-shadow: 0px 10px 15px 0px rgba(0,0,0,0.1);
}
#main.base-page .reviews-block .reviews button:hover {
  background-position: 24px 17px;
}
#main.base-page .reviews-block .reviews button.prev {
  left: -70px;
  transform: scale(-1, 1);
  -o-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  -moz-transform: scale(-1, 1);
  -webkit-transform: scale(-1, 1);
}
#main.base-page .reviews-block .reviews button.next {
  right: -70px;
}
#main.base-page .reviews-block .reviews:hover button.prev {
  left: 0px;
}
#main.base-page .reviews-block .reviews:hover button.next {
  right: 0px;
}
#main.base-page.parental .page-content .page-image {
  background-color: #f7f7f7;
  text-align: center;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.base-page.parental .page-content .page-image .page-image-title {
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.base-page.parental .page-content .page-image img {
  image-rendering: optimizequality;
  image-rendering: -webkit-optimize-contrast;
}
#main.base-page.parental .page-content .page-image .text-content {
  text-align: left;
}
/* @import includes/1200+/base-page.styl */
@media screen and (min-width: 1200px) {
  #main.base-page .breadcrumbs {
    margin: 15px 0px 30px 0px;
  }
  #main.base-page .breadcrumbs li {
    font-size: 12px;
  }
  #main.base-page .page-title {
    font-size: 40px;
    margin: 0px 0px 45px 0px;
    padding: 0px 0px 30px 0px;
  }
  #main.base-page .page-title:after {
    width: 80px;
    height: 8px;
  }
  #main.base-page .seo-content p {
    font-size: 18px;
    line-height: 28px;
    margin: 0px 0px 15px 0px;
  }
  #main.base-page .seo-content h2,
  #main.base-page .seo-content h3 {
    font-size: 24px;
    line-height: 34px;
    margin: 20px 0px 10px 0px;
  }
  #main.base-page .seo-content h4,
  #main.base-page .seo-content h5,
  #main.base-page .seo-content h6 {
    font-size: 21px;
    line-height: 31px;
    margin: 10px 0px 10px 0px;
  }
  #main.base-page .seo-content blockquote {
    margin: 20px 0px;
    padding: 20px;
  }
  #main.base-page .seo-content blockquote p {
    margin: 0px !important;
  }
  #main.base-page .seo-content ul li,
  #main.base-page .seo-content ol li {
    font-size: 18px;
    line-height: 28px;
  }
  #main.base-page .seo-content ul li:before,
  #main.base-page .seo-content ol li:before {
    margin-top: 10px;
    content: '';
    width: 8px;
    height: 8px;
  }
  #main.base-page .page-content {
    margin: 0px auto;
  }
  #main.base-page .page-content p {
    font-size: 18px;
    line-height: 28px;
    margin: 0px 0px 15px 0px;
  }
  #main.base-page .page-content h2,
  #main.base-page .page-content h3 {
    font-size: 24px;
    line-height: 34px;
    margin: 20px 0px 10px 0px;
  }
  #main.base-page .page-content h4,
  #main.base-page .page-content h5,
  #main.base-page .page-content h6 {
    font-size: 21px;
    line-height: 31px;
    margin: 10px 0px 10px 0px;
  }
  #main.base-page .page-content blockquote {
    margin: 20px 0px;
    padding: 20px;
  }
  #main.base-page .page-content blockquote p {
    margin: 0px !important;
  }
  #main.base-page .page-content ul li,
  #main.base-page .page-content ol li {
    font-size: 18px;
    line-height: 28px;
  }
  #main.base-page .page-content ul li:before,
  #main.base-page .page-content ol li:before {
    margin-top: 10px;
    content: '';
    width: 8px;
    height: 8px;
  }
  #main.base-page .page-content .images-block {
    margin: 30px 0px 10px 0px;
  }
  #main.base-page .page-content .images-block .text {
    font-size: 16px;
  }
  #main.base-page .page-content .spoiler .spoiler-label {
    font-size: 16px;
  }
  #main.base-page .page-content .spoiler .spoiler-content *,
  #main.base-page .page-content .spoiler .spoiler-content > * {
    margin: 0px 10px 5px 10px;
    font-size: 16px;
  }
  #main.base-page .childs {
    margin-top: 40px;
    margin-bottom: 80px;
  }
  #main.base-page .childs .childs-title {
    margin: 20px 0px 35px 0px;
    font-size: 30px;
  }
  #main.base-page .childs .child {
    height: 135px;
  }
  #main.base-page .childs .child .title a {
    padding: 35px 10px 10px 35px;
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
  }
  #main.base-page .reviews-block {
    padding-top: 50px;
    padding-bottom: 30px;
  }
  #main.base-page .reviews-block .reviews-block-title {
    margin: 0px 0px 50px 0px;
    font-size: 30px;
  }
  #main.base-page .reviews-block .reviews .review .review-image {
    margin-bottom: 20px;
  }
  #main.base-page .reviews-block .reviews .review .review-title {
    font-size: 24px;
    margin: 0px 0px 15px 0px;
  }
  #main.base-page .reviews-block .reviews .review .review-text * {
    font-size: 18px;
  }
  #main.base-page .reviews-block .reviews .review .review-text p {
    margin: 0px 0px 10px 0px;
  }
  #main.base-page .reviews-block .reviews .review.hidden {
    margin-left: -25%;
  }
  #main.base-page.parental .page-content .page-image {
    padding-top: 50px;
    padding-bottom: 30px;
  }
  #main.base-page.parental .page-content .page-image .page-image-title {
    margin: 0px 0px 15px 0px;
    font-size: 30px;
  }
}
/* @import includes/992-1200/base-page.styl */
@media screen and (min-width: 992px) and (max-width: 1199px) {
  #main.base-page .breadcrumbs {
    margin: 15px 0px 30px 0px;
  }
  #main.base-page .breadcrumbs li {
    font-size: 12px;
  }
  #main.base-page .page-title {
    font-size: 32px;
    margin: 0px 0px 35px 0px;
    padding: 0px 0px 20px 0px;
  }
  #main.base-page .page-title:after {
    width: 60px;
    height: 8px;
  }
  #main.base-page .seo-content p {
    font-size: 16px;
    line-height: 26px;
    margin: 0px 0px 15px 0px;
  }
  #main.base-page .seo-content h2,
  #main.base-page .seo-content h3 {
    font-size: 22px;
    line-height: 32px;
    margin: 20px 0px 10px 0px;
  }
  #main.base-page .seo-content h4,
  #main.base-page .seo-content h5,
  #main.base-page .seo-content h6 {
    font-size: 19px;
    line-height: 29px;
    margin: 10px 0px 10px 0px;
  }
  #main.base-page .seo-content blockquote {
    margin: 15px 0px;
    padding: 15px;
  }
  #main.base-page .seo-content blockquote p {
    margin: 0px !important;
  }
  #main.base-page .seo-content ul li,
  #main.base-page .seo-content ol li {
    font-size: 16px;
    line-height: 26px;
  }
  #main.base-page .seo-content ul li:before,
  #main.base-page .seo-content ol li:before {
    margin-top: 9px;
    margin-right: 12px;
    content: '';
    width: 6px;
    height: 6px;
  }
  #main.base-page .page-content {
    margin: 0px auto;
  }
  #main.base-page .page-content p {
    font-size: 16px;
    line-height: 26px;
    margin: 0px 0px 15px 0px;
  }
  #main.base-page .page-content h2,
  #main.base-page .page-content h3 {
    font-size: 22px;
    line-height: 32px;
    margin: 20px 0px 10px 0px;
  }
  #main.base-page .page-content h4,
  #main.base-page .page-content h5,
  #main.base-page .page-content h6 {
    font-size: 19px;
    line-height: 29px;
    margin: 10px 0px 10px 0px;
  }
  #main.base-page .page-content blockquote {
    margin: 15px 0px;
    padding: 15px;
  }
  #main.base-page .page-content blockquote p {
    margin: 0px !important;
  }
  #main.base-page .page-content ul li,
  #main.base-page .page-content ol li {
    font-size: 16px;
    line-height: 26px;
  }
  #main.base-page .page-content ul li:before,
  #main.base-page .page-content ol li:before {
    margin-top: 9px;
    margin-right: 12px;
    content: '';
    width: 6px;
    height: 6px;
  }
  #main.base-page .page-content .images-block {
    margin: 30px 0px 10px 0px;
  }
  #main.base-page .page-content .images-block .text {
    font-size: 14px;
  }
  #main.base-page .page-content .spoiler .spoiler-label {
    font-size: 14px;
  }
  #main.base-page .page-content .spoiler .spoiler-content *,
  #main.base-page .page-content .spoiler .spoiler-content > * {
    margin: 0px 10px 5px 10px;
    font-size: 14px;
  }
  #main.base-page .childs {
    margin-top: 40px;
    margin-bottom: 50px;
  }
  #main.base-page .childs .childs-title {
    margin: 20px 0px 30px 0px;
    font-size: 24px;
  }
  #main.base-page .childs .child {
    height: 95px;
  }
  #main.base-page .childs .child .title a {
    padding: 25px 10px 10px 25px;
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
  }
  #main.base-page .reviews-block {
    padding-top: 50px;
    padding-bottom: 30px;
  }
  #main.base-page .reviews-block .reviews-block-title {
    margin: 0px 0px 50px 0px;
    font-size: 30px;
  }
  #main.base-page .reviews-block .reviews .review .review-image {
    margin-bottom: 20px;
  }
  #main.base-page .reviews-block .reviews .review .review-title {
    font-size: 24px;
    margin: 0px 0px 15px 0px;
  }
  #main.base-page .reviews-block .reviews .review .review-text * {
    font-size: 18px;
  }
  #main.base-page .reviews-block .reviews .review .review-text p {
    margin: 0px 0px 10px 0px;
  }
  #main.base-page .reviews-block .reviews .review.hidden {
    margin-left: -25%;
  }
  #main.base-page.parental .page-content .page-image {
    padding-top: 30px;
    padding-bottom: 15px;
  }
  #main.base-page.parental .page-content .page-image .page-image-title {
    margin: 0px 0px 10px 0px;
    font-size: 24px;
  }
}
/* @import includes/768-991/base-page.styl */
@media screen and (max-width: 991px) {
  #main.base-page .breadcrumbs {
    margin: 15px 0px 30px 0px;
  }
  #main.base-page .breadcrumbs li {
    font-size: 12px;
  }
  #main.base-page .page-title {
    font-size: 32px;
    margin: 0px 0px 35px 0px;
    padding: 0px 0px 20px 0px;
  }
  #main.base-page .page-title:after {
    width: 60px;
    height: 8px;
  }
  #main.base-page .seo-content p {
    font-size: 16px;
    line-height: 26px;
    margin: 0px 0px 15px 0px;
  }
  #main.base-page .seo-content h2,
  #main.base-page .seo-content h3 {
    font-size: 22px;
    line-height: 32px;
    margin: 20px 0px 10px 0px;
  }
  #main.base-page .seo-content h4,
  #main.base-page .seo-content h5,
  #main.base-page .seo-content h6 {
    font-size: 19px;
    line-height: 29px;
    margin: 10px 0px 10px 0px;
  }
  #main.base-page .seo-content blockquote {
    margin: 15px 0px;
    padding: 15px;
  }
  #main.base-page .seo-content blockquote p {
    margin: 0px !important;
  }
  #main.base-page .seo-content ul li,
  #main.base-page .seo-content ol li {
    font-size: 16px;
    line-height: 26px;
  }
  #main.base-page .seo-content ul li:before,
  #main.base-page .seo-content ol li:before {
    margin-top: 8px;
    content: '';
    width: 6px;
    height: 6px;
  }
  #main.base-page .page-content {
    margin: 0px auto;
  }
  #main.base-page .page-content p {
    font-size: 16px;
    line-height: 26px;
    margin: 0px 0px 15px 0px;
  }
  #main.base-page .page-content h2,
  #main.base-page .page-content h3 {
    font-size: 22px;
    line-height: 32px;
    margin: 20px 0px 10px 0px;
  }
  #main.base-page .page-content h4,
  #main.base-page .page-content h5,
  #main.base-page .page-content h6 {
    font-size: 19px;
    line-height: 29px;
    margin: 10px 0px 10px 0px;
  }
  #main.base-page .page-content blockquote {
    margin: 15px 0px;
    padding: 15px;
  }
  #main.base-page .page-content blockquote p {
    margin: 0px !important;
  }
  #main.base-page .page-content ul li,
  #main.base-page .page-content ol li {
    font-size: 16px;
    line-height: 26px;
  }
  #main.base-page .page-content ul li:before,
  #main.base-page .page-content ol li:before {
    margin-top: 8px;
    content: '';
    width: 6px;
    height: 6px;
  }
  #main.base-page .page-content .images-block {
    margin: 30px 0px 10px 0px;
  }
  #main.base-page .page-content .images-block .text {
    font-size: 16px;
  }
  #main.base-page .page-content .spoiler .spoiler-label {
    font-size: 16px;
  }
  #main.base-page .page-content .spoiler .spoiler-label:before {
    top: 11px;
  }
  #main.base-page .page-content .spoiler .spoiler-content *,
  #main.base-page .page-content .spoiler .spoiler-content > * {
    margin: 0px 10px 5px 10px;
    font-size: 16px;
  }
  #main.base-page .childs {
    margin-top: 40px;
    margin-bottom: 50px;
  }
  #main.base-page .childs .childs-title {
    margin: 20px 0px 30px 0px;
    font-size: 24px;
  }
  #main.base-page .childs .child {
    height: 135px;
  }
  #main.base-page .childs .child .title a {
    padding: 25px 10px 10px 25px;
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
  }
  #main.base-page .reviews-block {
    padding-top: 50px;
    padding-bottom: 30px;
  }
  #main.base-page .reviews-block .reviews-block-title {
    margin: 0px 0px 50px 0px;
    font-size: 30px;
  }
  #main.base-page .reviews-block .reviews .review .review-image {
    margin-bottom: 20px;
  }
  #main.base-page .reviews-block .reviews .review .review-title {
    font-size: 20px;
    margin: 0px 0px 15px 0px;
  }
  #main.base-page .reviews-block .reviews .review .review-text * {
    font-size: 14px;
  }
  #main.base-page .reviews-block .reviews .review .review-text p {
    margin: 0px 0px 10px 0px;
  }
  #main.base-page .reviews-block .reviews .review.hidden {
    margin-left: -50%;
  }
  #main.base-page .reviews-block .reviews button {
    top: 0px;
    width: 50px;
    height: 50px;
    background-position: 14px 12px;
  }
  #main.base-page .reviews-block .reviews button:hover {
    background-position: 18px 12px;
  }
  #main.base-page .reviews-block .reviews button.prev {
    left: 0px;
  }
  #main.base-page .reviews-block .reviews button.next {
    right: 0px;
  }
  #main.base-page.parental .page-content .page-image {
    padding-top: 30px;
    padding-bottom: 15px;
  }
  #main.base-page.parental .page-content .page-image .page-image-title {
    margin: 0px 0px 10px 0px;
    font-size: 24px;
  }
}
/* @import includes/768-/base-page.styl */
@media screen and (max-width: 767px) {
  #main.base-page .breadcrumbs {
    margin: 25px 0px 30px 0px;
  }
  #main.base-page .breadcrumbs li {
    font-size: 22px;
  }
  #main.base-page .page-title {
    font-size: 38px;
    margin: 0px 0px 35px 0px;
    padding: 0px 0px 20px 0px;
  }
  #main.base-page .page-title:after {
    width: 60px;
    height: 8px;
  }
  #main.base-page .seo-content p {
    font-size: 28px;
    line-height: 36px;
    margin: 0px 0px 15px 0px;
  }
  #main.base-page .seo-content h2,
  #main.base-page .seo-content h3 {
    font-size: 34px;
    line-height: 42px;
    margin: 20px 0px 10px 0px;
  }
  #main.base-page .seo-content h4,
  #main.base-page .seo-content h5,
  #main.base-page .seo-content h6 {
    font-size: 31px;
    line-height: 39px;
    margin: 10px 0px 10px 0px;
  }
  #main.base-page .seo-content blockquote {
    margin: 20px 0px;
    padding: 15px;
  }
  #main.base-page .seo-content blockquote p {
    margin: 0px !important;
  }
  #main.base-page .seo-content ul li,
  #main.base-page .seo-content ol li {
    font-size: 28px;
    line-height: 36px;
    padding-left: 25px;
  }
  #main.base-page .seo-content ul li:before,
  #main.base-page .seo-content ol li:before {
    margin-top: 11px;
    margin-left: -22px;
    content: '';
    width: 12px;
    height: 12px;
  }
  #main.base-page .page-content {
    margin: 0px auto;
  }
  #main.base-page .page-content p {
    font-size: 28px;
    line-height: 36px;
    margin: 0px 0px 15px 0px;
  }
  #main.base-page .page-content h2,
  #main.base-page .page-content h3 {
    font-size: 34px;
    line-height: 42px;
    margin: 20px 0px 10px 0px;
  }
  #main.base-page .page-content h4,
  #main.base-page .page-content h5,
  #main.base-page .page-content h6 {
    font-size: 31px;
    line-height: 39px;
    margin: 10px 0px 10px 0px;
  }
  #main.base-page .page-content blockquote {
    margin: 20px 0px;
    padding: 15px;
  }
  #main.base-page .page-content blockquote p {
    margin: 0px !important;
  }
  #main.base-page .page-content ul li,
  #main.base-page .page-content ol li {
    font-size: 28px;
    line-height: 36px;
    padding-left: 25px;
  }
  #main.base-page .page-content ul li:before,
  #main.base-page .page-content ol li:before {
    margin-top: 11px;
    margin-left: -22px;
    content: '';
    width: 12px;
    height: 12px;
  }
  #main.base-page .page-content .images-block {
    margin: 30px 0px 10px 0px;
  }
  #main.base-page .page-content .images-block .text {
    font-size: 24px;
  }
  #main.base-page .page-content .images-block .image {
    padding: 0px 15px;
    text-align: center;
  }
  #main.base-page .page-content .images-block .image img {
    width: 70%;
  }
  #main.base-page .page-content .images-block .image + .image {
    margin-top: 30px;
  }
  #main.base-page .page-content .images-block .image:first-child {
    padding-left: 15px;
  }
  #main.base-page .page-content .images-block .image:last-child {
    padding-right: 15px;
  }
  #main.base-page .page-content .spoiler .spoiler-label {
    font-size: 28px;
    padding: 15px 15px 15px 45px;
  }
  #main.base-page .page-content .spoiler .spoiler-label:before {
    width: 17px;
    height: 26px;
    background-image: url("images/spoiler-2x.png");
    top: 15px;
  }
  #main.base-page .page-content .spoiler .spoiler-content *,
  #main.base-page .page-content .spoiler .spoiler-content > * {
    margin: 0px 10px 15px 10px;
    font-size: 28px;
  }
  #main.base-page .childs {
    margin-top: 40px;
    margin-bottom: 50px;
  }
  #main.base-page .childs .childs-title {
    margin: 20px 0px 40px 0px;
    font-size: 28px;
  }
  #main.base-page .childs .child {
    height: 155px;
  }
  #main.base-page .childs .child .title a {
    padding: 25px 10px 10px 25px;
    font-size: 26px;
    font-weight: 600;
    line-height: 36px;
  }
  #main.base-page .reviews-block {
    padding-top: 50px;
    padding-bottom: 30px;
  }
  #main.base-page .reviews-block .reviews-block-title {
    margin: 10px 0px -55px 0px;
    font-size: 30px;
  }
  #main.base-page .reviews-block .reviews {
    padding-top: 90px;
  }
  #main.base-page .reviews-block .reviews .review .review-image {
    margin-bottom: 20px;
  }
  #main.base-page .reviews-block .reviews .review .review-title {
    font-size: 32px;
    margin: 0px 0px 15px 0px;
  }
  #main.base-page .reviews-block .reviews .review .review-text * {
    font-size: 28px;
  }
  #main.base-page .reviews-block .reviews .review .review-text p {
    margin: 0px 0px 10px 0px;
  }
  #main.base-page .reviews-block .reviews .review.hidden {
    margin-left: -50%;
  }
  #main.base-page .reviews-block .reviews button {
    top: 0px;
    width: 80px;
    height: 80px;
    background-position: 29px 27px;
  }
  #main.base-page .reviews-block .reviews button:hover {
    background-position: 34px 27px;
  }
  #main.base-page .reviews-block .reviews button.prev {
    left: 10px;
  }
  #main.base-page .reviews-block .reviews button.next {
    right: 10px;
  }
  #main.base-page .reviews-block .reviews:hover button.prev {
    left: 10px;
  }
  #main.base-page .reviews-block .reviews:hover button.next {
    right: 10px;
  }
  #main.base-page.parental .page-content .page-image {
    padding-top: 30px;
    padding-bottom: 15px;
  }
  #main.base-page.parental .page-content .page-image .page-image-title {
    margin: 0px 0px 10px 0px;
    font-size: 24px;
  }
}
/* @import includes/main-page.styl */
#main.main-page .slider.main-block {
  width: 100%;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  background-color: #fff;
}
#main.main-page .slider.main-block .images a {
  display: block;
  height: 100%;
}
#main.main-page .slider.main-block .images .image img {
  max-height: 100%;
}
#main.main-page .slider.main-block .content {
  position: relative;
  z-index: 3;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  height: inherit;
}
#main.main-page .slider.main-block .content .title {
  color: #000;
  font-weight: 300;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.main-page .slider.main-block .content .title span {
  display: block;
  font-weight: 800;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.main-page .slider.main-block .content .white {
  display: inline-block;
  background-color: rgba(255,255,255,0.8);
  box-shadow: 0px 0px 10px 0px #fff;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.main-page .slider.main-block .content .text {
  font-weight: 800;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.main-page .slider.main-block .content .button {
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  position: absolute;
  left: 30px;
  bottom: 30px;
}
#main.main-page .slider.main-block .content .button button {
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  border: none;
  margin: 0px;
  background-color: #e12329;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  box-shadow: 9px 11px 30px 0px rgba(0,0,0,0.6);
}
#main.main-page .numbered-block .numbered-block-top {
  margin: 60px 0px 50px 0px;
}
#main.main-page .numbered-block .numbered-block-top:before,
#main.main-page .numbered-block .numbered-block-top:after {
  width: 100%;
  display: table;
  content: " ";
}
#main.main-page .numbered-block .numbered-block-top:after {
  clear: both;
}
#main.main-page .numbered-block .numbered-block-top .numbered-block-label {
  padding-left: 0px;
  float: left;
  margin: 0px;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.main-page .numbered-block .numbered-block-top .numbered-block-label .number {
  display: inline-block;
  vertical-align: top;
  background-color: #e12329;
  color: #fff;
  font-weight: 600;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.main-page .numbered-block .numbered-block-top .numbered-block-label .text {
  display: inline-block;
  vertical-align: middle;
  color: #000;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0px;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.main-page .numbered-block .numbered-block-top .numbered-block-short {
  padding-right: 0px;
  margin: 0px 0px 0px 0px;
}
#main.main-page .numbered-block .numbered-block-top .numbered-block-short p {
  margin: 0px 0px 0px 0px;
  font-weight: 600;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.main-page .numbered-block .numbered-block-top .numbered-block-short p + p {
  margin-top: 10px;
}
#main.main-page .block-typed .wrapper.editable {
  position: relative;
  z-index: 150;
}
#main.main-page .block-typed .wrapper.editable .u-can-edit-this {
  position: absolute;
  display: inline-block;
  background-color: #e12329;
  top: 0px;
  right: 0px;
  z-index: -50;
  width: 40px;
  height: 40px;
  padding: 8px;
  margin: 0px;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.main-page .block-typed .wrapper.editable .u-can-edit-this:before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  line-height: 24px;
  width: 24px;
  height: 24px;
  background-image: url("images/pencil-edit-button.png");
}
#main.main-page .block-typed:hover .wrapper.editable .u-can-edit-this {
  z-index: 500;
  opacity: 1;
}
#main.main-page .we-manage .we-manage-title {
  color: #e12329;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.main-page .we-manage .dropping {
  display: inline-block;
  vertical-align: top;
  position: relative;
  background-color: #fff;
  box-shadow: 9px 11px 30px 0px rgba(0,0,0,0.3);
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  z-index: 5;
  cursor: pointer;
}
#main.main-page .we-manage .dropping .logo {
  height: inherit;
  font-size: 0px;
  text-align: center;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.main-page .we-manage .dropping .logo:before {
  content: '';
  width: 0px;
  display: inline-block;
  vertical-align: middle;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.main-page .we-manage .dropping .logo img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
#main.main-page .we-manage .dropping .drop-list {
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 50%;
  min-height: 100%;
  pointer-events: none;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  background-color: #fff;
  z-index: 5;
  transform: translateY(50%) scale(0, 0) translateZ(0);
  -o-transform: translateY(50%) scale(0, 0) translateZ(0);
  -ms-transform: translateY(50%) scale(0, 0) translateZ(0);
  -moz-transform: translateY(50%) scale(0, 0) translateZ(0);
  -webkit-transform: translateY(50%) scale(0, 0) translateZ(0);
}
#main.main-page .we-manage .dropping .drop-list ul {
  overflow: hidden;
}
#main.main-page .we-manage .dropping .drop-list ul li {
  box-shadow: inset 0px 0px 0px 0px #e12329, inset 0px 0px 0px 0px #e12329;
  transform: translateX(-100%);
  -o-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
  -o-transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
  -ms-transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
  -moz-transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
  -webkit-transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
  transition-delay: 0s;
}
#main.main-page .we-manage .dropping .drop-list ul li .image {
  display: inline-block;
  text-align: right;
  vertical-align: middle;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.main-page .we-manage .dropping .drop-list ul li .image img {
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.main-page .we-manage .dropping .drop-list ul li .title {
  display: inline-block;
  vertical-align: middle;
  font-weight: 600;
}
#main.main-page .we-manage .dropping.active .drop-list {
  pointer-events: initial;
  transform: translateY(50%) scale(1, 1) translateZ(0);
  -o-transform: translateY(50%) scale(1, 1) translateZ(0);
  -ms-transform: translateY(50%) scale(1, 1) translateZ(0);
  -moz-transform: translateY(50%) scale(1, 1) translateZ(0);
  -webkit-transform: translateY(50%) scale(1, 1) translateZ(0);
  box-shadow: 9px 11px 30px 0px rgba(0,0,0,0.3);
}
#main.main-page .we-manage .dropping.active .drop-list ul li {
  transform: translateX(0%) translateZ(0);
  -o-transform: translateX(0%) translateZ(0);
  -ms-transform: translateX(0%) translateZ(0);
  -moz-transform: translateX(0%) translateZ(0);
  -webkit-transform: translateX(0%) translateZ(0);
}
#main.main-page .we-manage .dropping.active .drop-list ul li:nth-of-type(0) {
  transition-delay: 0s, 0s;
}
#main.main-page .we-manage .dropping.active .drop-list ul li:nth-of-type(1) {
  transition-delay: 0.066666666666667s, 0s;
}
#main.main-page .we-manage .dropping.active .drop-list ul li:nth-of-type(2) {
  transition-delay: 0.133333333333333s, 0s;
}
#main.main-page .we-manage .dropping.active .drop-list ul li:nth-of-type(3) {
  transition-delay: 0.2s, 0s;
}
#main.main-page .we-manage .dropping.active .drop-list ul li:nth-of-type(4) {
  transition-delay: 0.266666666666667s, 0s;
}
#main.main-page .we-manage .dropping.active .drop-list ul li:nth-of-type(5) {
  transition-delay: 0.333333333333333s, 0s;
}
#main.main-page .we-manage .dropping.active .drop-list ul li:nth-of-type(6) {
  transition-delay: 0.4s, 0s;
}
#main.main-page .we-manage .dropping.active .drop-list ul li:nth-of-type(7) {
  transition-delay: 0.466666666666667s, 0s;
}
#main.main-page .we-manage .dropping.active .drop-list ul li:nth-of-type(8) {
  transition-delay: 0.533333333333333s, 0s;
}
#main.main-page .we-manage .dropping.active .drop-list ul li:nth-of-type(9) {
  transition-delay: 0.6s, 0s;
}
#main.main-page .we-manage .dropping.active .drop-list ul li:nth-of-type(10) {
  transition-delay: 0.666666666666667s, 0s;
}
#main.main-page .we-manage .dropping.active .drop-list ul li:nth-of-type(11) {
  transition-delay: 0.733333333333333s, 0s;
}
#main.main-page .we-manage .dropping.active .drop-list ul li:nth-of-type(12) {
  transition-delay: 0.8s, 0s;
}
#main.main-page .we-manage .dropping.active .drop-list ul li:nth-of-type(13) {
  transition-delay: 0.866666666666667s, 0s;
}
#main.main-page .we-manage .dropping.active .drop-list ul li:nth-of-type(14) {
  transition-delay: 0.933333333333333s, 0s;
}
#main.main-page .we-manage .dropping.active .drop-list ul li:nth-of-type(15) {
  transition-delay: 1s, 0s;
}
#main.main-page .block-type-1 .services-content {
  font-size: 0px;
}
#main.main-page .block-type-1 .services-content .service {
  display: inline-block;
  vertical-align: top;
  position: relative;
  float: none;
  margin-bottom: 20px;
}
#main.main-page .block-type-1 .services-content .service a {
  display: block;
  height: 100%;
}
#main.main-page .block-type-1 .services-content .service .image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
#main.main-page .block-type-1 .services-content .service .image:before {
  content: '';
  position: absolute;
  z-index: 2;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background-color: rgba(0,0,0,0.3);
}
#main.main-page .block-type-1 .services-content .service .image img {
  position: relative;
  z-index: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
}
#main.main-page .block-type-1 .services-content .service .text {
  position: absolute;
  top: 0px;
  left: 10px;
  right: 10px;
  bottom: 0px;
  margin: -10px -10px 10px 10px;
  transition: background-color 0.2s linear, padding 0.2s linear;
  -o-transition: background-color 0.2s linear, padding 0.2s linear;
  -ms-transition: background-color 0.2s linear, padding 0.2s linear;
  -moz-transition: background-color 0.2s linear, padding 0.2s linear;
  -webkit-transition: background-color 0.2s linear, padding 0.2s linear;
  transition-delay: 0.2s, 0s;
  z-index: 2;
}
#main.main-page .block-type-1 .services-content .service .text .title {
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.main-page .block-type-1 .services-content .service .text .sub-services .sub-service {
  transform: rotate3d(1, 0, 0, 90deg);
  -o-transform: rotate3d(1, 0, 0, 90deg);
  -ms-transform: rotate3d(1, 0, 0, 90deg);
  -moz-transform: rotate3d(1, 0, 0, 90deg);
  -webkit-transform: rotate3d(1, 0, 0, 90deg);
  transition: transform 0.2s linear, font-size 0.2s linear, margin 0.2s linear, opacity 0.2s linear;
  -o-transition: transform 0.2s linear, font-size 0.2s linear, margin 0.2s linear, opacity 0.2s linear;
  -ms-transition: transform 0.2s linear, font-size 0.2s linear, margin 0.2s linear, opacity 0.2s linear;
  -moz-transition: transform 0.2s linear, font-size 0.2s linear, margin 0.2s linear, opacity 0.2s linear;
  -webkit-transition: transform 0.2s linear, font-size 0.2s linear, margin 0.2s linear, opacity 0.2s linear;
  display: block;
  color: #fff;
  font-weight: 300;
  transition-delay: 0s, 0s, 0s, 0s;
  opacity: 0;
}
#main.main-page .block-type-1 .services-content .service:hover .text {
  background-color: rgba(225,35,41,0.65);
  transition-delay: 0s, 0s;
}
#main.main-page .block-type-1 .services-content .service:hover .text .sub-services .sub-service {
  opacity: 1;
  transition-delay: 0.2s, 0s, 0s, 0s;
  transform: rotate3d(0, 0, 0, 90deg);
  -o-transform: rotate3d(0, 0, 0, 90deg);
  -ms-transform: rotate3d(0, 0, 0, 90deg);
  -moz-transform: rotate3d(0, 0, 0, 90deg);
  -webkit-transform: rotate3d(0, 0, 0, 90deg);
}
#main.main-page .block-type-1 .services-content .link {
  text-align: right;
}
#main.main-page .block-type-1 .services-content .link a {
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  position: relative;
  padding: 0px 50px 5px 5px;
}
#main.main-page .block-type-1 .services-content .link a:before {
  content: '';
  position: absolute;
  left: 0px;
  right: calc(100% - 70px);
  bottom: 0px;
  height: 2px;
  background-color: #e12329;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  transition-delay: 0.2s;
}
#main.main-page .block-type-1 .services-content .link a:after {
  content: '';
  position: absolute;
  top: 3px;
  right: 20px;
  width: 23px;
  height: 16px;
  background-image: url("images/arrow-right.png");
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  transition-delay: 0s;
}
#main.main-page .block-type-1 .services-content .link a:hover:before {
  right: 50px;
  transition-delay: 0s;
}
#main.main-page .block-type-1 .services-content .link a:hover:after {
  right: 0px;
  transition-delay: 0.2s;
}
#main.main-page .block-type-2 {
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  background-color: #f5f5f5;
}
#main.main-page .block-type-2 .block-type-2-slider {
  height: 440px;
  transition: height brans;
  -o-transition: height brans;
  -ms-transition: height brans;
  -moz-transition: height brans;
  -webkit-transition: height brans;
}
#main.main-page .block-type-2 .block-type-2-label {
  color: #000;
  font-weight: 900;
  text-transform: uppercase;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.main-page .block-type-2 .block-type-2-label span {
  display: block;
  font-weight: 400;
}
#main.main-page .block-type-2 .block-type-2-content p {
  color: #000;
  font-weight: 400;
  margin: 0px 0px 0px 0px;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.main-page .block-type-2 .block-type-2-content b,
#main.main-page .block-type-2 .block-type-2-content strong {
  font-weight: 600;
}
#main.main-page .block-type-2 .block-type-2-request .inputs-row input {
  display: inline-block;
  width: calc(50% - 10px);
  margin: 0px;
  padding: 5px;
  border: none;
  border-bottom: 1px solid #b5b5b5;
  background-color: rgba(225,35,41,0);
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.main-page .block-type-2 .block-type-2-request .inputs-row input + input {
  margin-left: 20px;
}
#main.main-page .block-type-2 .block-type-2-request .inputs-row input:focus,
#main.main-page .block-type-2 .block-type-2-request .inputs-row input:active {
  border-color: #e12329;
}
#main.main-page .block-type-2 .block-type-2-request .phone-and-button .phone {
  float: left;
  color: #000;
  font-weight: 600;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.main-page .block-type-2 .block-type-2-request .phone-and-button button {
  float: right;
  border: none;
  background-color: #e12329;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.main-page .block-type-3 .block-type-3-label {
  color: #000;
  font-weight: 900;
  text-transform: uppercase;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.main-page .block-type-3 .block-type-3-label span {
  font-weight: 400;
  line-height: 50px;
}
#main.main-page .block-type-3 .block-type-3-content p {
  font-weight: 300;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.main-page .block-type-3 .block-type-3-content img {
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.main-page .block-type-3 .right-side {
  margin-left: -10px;
  background-size: cover;
  position: relative;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.main-page .block-type-3 .right-side p {
  color: #e12329;
  font-weight: 300;
  margin: 0px;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.main-page .block-type-3 .right-side p strong {
  display: block;
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
}
#main.main-page .block-type-3 .right-side a {
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  display: inline-block;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  position: relative;
  padding: 0px 50px 5px 5px;
}
#main.main-page .block-type-3 .right-side a:before {
  content: '';
  position: absolute;
  left: 0px;
  right: calc(100% - 70px);
  bottom: 0px;
  height: 2px;
  background-color: #e12329;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  transition-delay: 0.2s;
}
#main.main-page .block-type-3 .right-side a:after {
  content: '';
  position: absolute;
  top: 3px;
  right: 20px;
  width: 23px;
  height: 16px;
  background-image: url("images/arrow-right.png");
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  transition-delay: 0s;
}
#main.main-page .block-type-3 .right-side a:hover:before {
  right: 50px;
  transition-delay: 0s;
}
#main.main-page .block-type-3 .right-side a:hover:after {
  right: 0px;
  transition-delay: 0.2s;
}
#main.main-page .block-type-4 {
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.main-page .block-type-4 .block-type-4-slider {
  width: 100%;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.main-page .block-type-4 .block-type-4-slider .image .wrapper {
  position: relative;
  z-index: 1;
}
#main.main-page .block-type-4 .block-type-4-slider .image .wrapper .title {
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.main-page .block-type-4 .block-type-4-slider .image .wrapper .text p {
  color: #fff;
  font-weight: 600;
  position: relative;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.main-page .block-type-4 .block-type-4-slider .image .wrapper .text p:before {
  content: '';
  position: absolute;
  background-color: #e12329;
}
#main.main-page .block-type-5 {
  box-shadow: 0px 10px 40px 0px rgba(0,0,0,0.25);
}
#main.main-page .block-type-5 .block-type-5-label {
  color: #000;
  font-weight: 900;
  text-transform: uppercase;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.main-page .block-type-5 .block-type-5-label span {
  font-weight: 400;
}
#main.main-page .block-type-5 .block-type-5-content p {
  color: #000;
  font-weight: 400;
  margin: 0px 0px 0px 0px;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.main-page .block-type-5 .block-type-5-content b,
#main.main-page .block-type-5 .block-type-5-content strong {
  font-weight: 600;
}
#main.main-page .block-type-5 .block-type-5-request .inputs-row input {
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  display: inline-block;
  width: calc(50% - 10px);
  margin: 0px;
  padding: 5px;
  border: none;
  border-bottom: 1px solid #b5b5b5;
  background-color: rgba(225,35,41,0);
}
#main.main-page .block-type-5 .block-type-5-request .inputs-row input + input {
  margin-left: 20px;
}
#main.main-page .block-type-5 .block-type-5-request .inputs-row input:focus,
#main.main-page .block-type-5 .block-type-5-request .inputs-row input:active {
  border-color: #e12329;
}
#main.main-page .block-type-5 .block-type-5-request .inputs-row textarea {
  display: inline-block;
  width: 100%;
  resize: none;
  margin: 0px;
  padding: 5px;
  border: 1px solid #b5b5b5;
  background-color: rgba(225,35,41,0);
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.main-page .block-type-5 .block-type-5-request .inputs-row textarea:focus,
#main.main-page .block-type-5 .block-type-5-request .inputs-row textarea:active {
  border-color: #e12329;
}
#main.main-page .block-type-5 .block-type-5-request .phone-and-button .phone {
  float: left;
  color: #000;
  font-weight: 600;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.main-page .block-type-5 .block-type-5-request .phone-and-button button {
  float: right;
  border: none;
  background-color: #e12329;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  box-shadow: 9px 11px 30px 0px rgba(0,0,0,0.6);
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.main-page .block-type-6 {
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.main-page .block-type-6 .block-type-6-label {
  color: #000;
  font-weight: 900;
  text-transform: uppercase;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.main-page .block-type-6 .block-type-6-label span {
  display: block;
  font-weight: 400;
}
#main.main-page .block-type-6 .block-type-6-content p {
  color: #000;
  font-weight: 400;
  margin: 0px 0px 0px 0px;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.main-page .block-type-6 .block-type-6-content b,
#main.main-page .block-type-6 .block-type-6-content strong {
  font-weight: 600;
}
#main.main-page .block-type-6 .childs {
  margin-top: 0px;
  margin-bottom: 0px;
}
#main.main-page .block-type-7 {
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  background-color: #f5f5f5;
}
#main.main-page .block-type-7 .block-type-7-slider {
  height: 440px;
  transition: height brans;
  -o-transition: height brans;
  -ms-transition: height brans;
  -moz-transition: height brans;
  -webkit-transition: height brans;
}
#main.main-page .block-type-7 .block-type-7-label {
  color: #000;
  font-weight: 900;
  text-transform: uppercase;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.main-page .block-type-7 .block-type-7-label span {
  display: block;
  font-weight: 400;
}
#main.main-page .block-type-7 .block-type-7-content p {
  color: #000;
  font-weight: 400;
  margin: 0px 0px 0px 0px;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.main-page .block-type-7 .block-type-7-content b,
#main.main-page .block-type-7 .block-type-7-content strong {
  font-weight: 600;
}
#main.main-page .block-type-7 .block-type-7-request .inputs-row input {
  display: inline-block;
  width: calc(50% - 10px);
  margin: 0px;
  padding: 5px;
  border: none;
  border-bottom: 1px solid #b5b5b5;
  background-color: rgba(225,35,41,0);
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.main-page .block-type-7 .block-type-7-request .inputs-row input + input {
  margin-left: 20px;
}
#main.main-page .block-type-7 .block-type-7-request .inputs-row input:focus,
#main.main-page .block-type-7 .block-type-7-request .inputs-row input:active {
  border-color: #e12329;
}
#main.main-page .block-type-7 .block-type-7-request .phone-and-button .phone {
  float: left;
  color: #000;
  font-weight: 600;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.main-page .block-type-7 .block-type-7-request .phone-and-button button {
  float: right;
  border: none;
  background-color: #e12329;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.main-page .block-type-8 {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.main-page .block-type-8 .block-type-8-title p {
  margin: 0px;
  color: #fff;
  font-weight: 600;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.main-page .block-type-8 .block-type-8-title p span {
  display: block;
  color: #e12329;
  font-weight: 800;
  text-transform: uppercase;
}
#main.main-page .block-type-8 .block-type-8-content p {
  color: #fff;
  font-weight: 300;
  position: relative;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.main-page .block-type-8 .block-type-8-content p:before {
  content: '';
  position: absolute;
  background-color: #e12329;
}
#main.main-page .block-type-8 .block-type-8-request .inputs-row {
  margin: 0px 0px 0px 0px;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.main-page .block-type-8 .block-type-8-request .inputs-row input {
  color: #fff;
  display: inline-block;
  width: calc(50% - 10px);
  margin: 0px;
  border: none;
  border-bottom: 1px solid #b5b5b5;
  background-color: rgba(225,35,41,0);
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.main-page .block-type-8 .block-type-8-request .inputs-row input::-webkit-input-placeholder {
  color: rgba(255,255,255,0.7);
}
#main.main-page .block-type-8 .block-type-8-request .inputs-row input::-moz-placeholder {
  color: rgba(255,255,255,0.7);
}
#main.main-page .block-type-8 .block-type-8-request .inputs-row input:-moz-placeholder {
  color: rgba(255,255,255,0.7);
}
#main.main-page .block-type-8 .block-type-8-request .inputs-row input:-ms-input-placeholder {
  color: rgba(255,255,255,0.7);
}
#main.main-page .block-type-8 .block-type-8-request .inputs-row input + input {
  margin-left: 20px;
}
#main.main-page .block-type-8 .block-type-8-request .inputs-row input:focus,
#main.main-page .block-type-8 .block-type-8-request .inputs-row input:active {
  border-color: #e12329;
}
#main.main-page .block-type-8 .block-type-8-request .button {
  text-align: center;
}
#main.main-page .block-type-8 .block-type-8-request .button button {
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  display: inline-block;
  border: none;
  background-color: rgba(0,0,0,0);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  position: relative;
  padding: 0px 50px 5px 5px;
}
#main.main-page .block-type-8 .block-type-8-request .button button:before {
  content: '';
  position: absolute;
  left: 0px;
  right: calc(100% - 70px);
  bottom: 0px;
  height: 2px;
  background-color: #e12329;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  transition-delay: 0.2s;
}
#main.main-page .block-type-8 .block-type-8-request .button button:after {
  content: '';
  position: absolute;
  top: 3px;
  right: 20px;
  width: 23px;
  height: 16px;
  background-image: url("images/arrow-right.png");
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  transition-delay: 0s;
}
#main.main-page .block-type-8 .block-type-8-request .button button:hover:before {
  right: 50px;
  transition-delay: 0s;
}
#main.main-page .block-type-8 .block-type-8-request .button button:hover:after {
  right: 0px;
  transition-delay: 0.2s;
}
#main.main-page .block-type-9 {
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.main-page .block-type-9 .advantages-content {
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.main-page .block-type-9 .advantages-content:before,
#main.main-page .block-type-9 .advantages-content:after {
  width: 100%;
  display: table;
  content: " ";
}
#main.main-page .block-type-9 .advantages-content:after {
  clear: both;
}
#main.main-page .block-type-9 .advantages-content .advantage {
  text-align: center;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.main-page .block-type-9 .advantages-content .advantage .image img {
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.main-page .block-type-9 .advantages-content .advantage .text .title {
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  font-weight: 800;
}
#main.main-page .block-type-9 .advantages-content .advantage .text .short {
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.main-page .block-type-9 .advantages-content .advantage .text .short p {
  font-weight: 300;
  margin: 0px;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.main-page .block-type-10 {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.main-page .block-type-10 .block-title p {
  margin: 0px;
  color: #fff;
  font-weight: 600;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.main-page .block-type-10 .block-title p span {
  color: #e12329;
  font-weight: 800;
  text-transform: uppercase;
}
#main.main-page .block-type-10 .block-content p {
  color: #fff;
  font-weight: 600;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.main-page .block-type-10 .block-content p a {
  display: block;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  white-space: nowrap;
}
#main.main-page .block-type-10 .block-content button {
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  width: 100%;
  border: none;
  background-color: #e12329;
  color: #fff;
  font-weight: 300;
  white-space: nowrap;
  text-transform: uppercase;
  box-shadow: 9px 11px 30px 0px rgba(0,0,0,0.6);
}
#main.main-page .block-type-11 {
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.main-page .block-type-11 .left-side .numbered-block-top {
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.main-page .block-type-11 .left-side p {
  position: relative;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.main-page .block-type-11 .left-side p:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  background-color: #e12329;
}
#main.main-page .block-type-11 .left-side .link a {
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  position: relative;
  padding: 0px 50px 5px 5px;
}
#main.main-page .block-type-11 .left-side .link a:before {
  content: '';
  position: absolute;
  left: 0px;
  right: calc(100% - 70px);
  bottom: 0px;
  height: 2px;
  background-color: #e12329;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  transition-delay: 0.2s;
}
#main.main-page .block-type-11 .left-side .link a:after {
  content: '';
  position: absolute;
  top: 3px;
  right: 20px;
  width: 23px;
  height: 16px;
  background-image: url("images/arrow-right.png");
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  transition-delay: 0s;
}
#main.main-page .block-type-11 .left-side .link a:hover:before {
  right: 50px;
  transition-delay: 0s;
}
#main.main-page .block-type-11 .left-side .link a:hover:after {
  right: 0px;
  transition-delay: 0.2s;
}
#main.main-page .block-type-11 .right-side .block-type-11-slider {
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  width: 100%;
}
#main.main-page .block-type-12 {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.main-page .block-type-12 .block-type-12-title {
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.main-page .block-type-12 .block-type-12-title p {
  margin: 0px;
  color: #fff;
  font-weight: 600;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.main-page .block-type-12 .block-type-12-content p {
  color: #fff;
  font-weight: 300;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.main-page .block-type-12 .block-type-12-content p strong {
  color: #e12329;
  font-weight: 800;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.main-page .block-type-12 .block-type-12-request .inputs-row {
  margin: 0px 0px 0px 0px;
}
#main.main-page .block-type-12 .block-type-12-request .inputs-row input {
  color: #fff;
  display: inline-block;
  width: calc(50% - 10px);
  margin: 0px;
  border: none;
  border-bottom: 1px solid #b5b5b5;
  background-color: rgba(225,35,41,0);
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.main-page .block-type-12 .block-type-12-request .inputs-row input + input {
  margin-left: 20px;
}
#main.main-page .block-type-12 .block-type-12-request .inputs-row input:focus,
#main.main-page .block-type-12 .block-type-12-request .inputs-row input:active {
  border-color: #e12329;
}
#main.main-page .block-type-12 .block-type-12-request button {
  width: 100%;
  border: none;
  background-color: #e12329;
  color: #fff;
  font-weight: 300;
  white-space: nowrap;
  text-transform: uppercase;
  box-shadow: 9px 11px 30px 0px rgba(0,0,0,0.6);
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.main-page .block-type-13 {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.main-page .block-type-13 .block-type-13-request .inputs-row {
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.main-page .block-type-13 .block-type-13-request .inputs-row input {
  color: #000;
  display: inline-block;
  width: 100%;
  margin: 0px;
  border: none;
  border-bottom: 1px solid #b5b5b5;
  background-color: rgba(225,35,41,0);
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.main-page .block-type-13 .block-type-13-request .inputs-row input + input {
  margin-left: 20px;
}
#main.main-page .block-type-13 .block-type-13-request .inputs-row input:focus,
#main.main-page .block-type-13 .block-type-13-request .inputs-row input:active {
  border-color: #e12329;
}
#main.main-page .block-type-13 .block-type-13-request .message-and-phone .message {
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  color: #828282;
  font-weight: 300;
}
#main.main-page .block-type-13 .block-type-13-request .message-and-phone .phone {
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.main-page .block-type-13 .block-type-13-request .message-and-phone .phone a {
  color: #000;
  font-weight: 600;
}
#main.main-page .block-type-13 .block-type-13-request .message-and-phone button {
  width: 100%;
  border: none;
  background-color: #e12329;
  color: #fff;
  font-weight: 300;
  white-space: nowrap;
  text-transform: uppercase;
  box-shadow: 9px 11px 30px 0px rgba(0,0,0,0.6);
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
/* @import includes/1200+/main-page.styl */
@media screen and (min-width: 1200px) {
  #main.main-page .slider.main-block {
    height: 600px;
  }
  #main.main-page .slider.main-block .content {
    padding-top: 40px;
  }
  #main.main-page .slider.main-block .content .title {
    margin: 0px 0px 10px 0px;
    font-size: 40px;
    line-height: 55px;
  }
  #main.main-page .slider.main-block .content .title span {
    font-size: 44px;
    line-height: 55px;
  }
  #main.main-page .slider.main-block .content .white {
    padding: 10px 15px;
  }
  #main.main-page .slider.main-block .content .text {
    font-size: 20px;
  }
  #main.main-page .slider.main-block .content .button button {
    padding: 20px 45px;
    font-size: 20px;
  }
  #main.main-page .numbered-block .numbered-block-top {
    margin: 60px 0px 50px 0px;
  }
  #main.main-page .numbered-block .numbered-block-top:before,
  #main.main-page .numbered-block .numbered-block-top:after {
    width: 100%;
    display: table;
    content: " ";
  }
  #main.main-page .numbered-block .numbered-block-top:after {
    clear: both;
  }
  #main.main-page .numbered-block .numbered-block-top .numbered-block-label .number {
    margin: 5px 30px 0px 0px;
    padding: 6px 10px 6px 10px;
    font-size: 24px;
  }
  #main.main-page .numbered-block .numbered-block-top .numbered-block-label .text {
    font-size: 40px;
  }
  #main.main-page .numbered-block .numbered-block-top .numbered-block-short p {
    font-size: 16px;
    line-height: 20px;
  }
  #main.main-page .we-manage {
    padding-top: 40px;
    padding-bottom: 20px;
  }
  #main.main-page .we-manage .we-manage-title {
    font-size: 32px;
    line-height: 36px;
  }
  #main.main-page .we-manage .dropping {
    width: 350px;
    height: 180px;
    margin: 30px calc((100% - 1050px) / 6);
  }
  #main.main-page .we-manage .dropping .logo {
    padding: 10px;
  }
  #main.main-page .we-manage .dropping .logo:before {
    height: 160px;
  }
  #main.main-page .we-manage .dropping .drop-list {
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 50%;
    min-height: 100%;
    pointer-events: none;
    transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    background-color: #fff;
    z-index: 5;
    transform: translateY(50%) scale(0, 0) translateZ(0);
    -o-transform: translateY(50%) scale(0, 0) translateZ(0);
    -ms-transform: translateY(50%) scale(0, 0) translateZ(0);
    -moz-transform: translateY(50%) scale(0, 0) translateZ(0);
    -webkit-transform: translateY(50%) scale(0, 0) translateZ(0);
  }
  #main.main-page .we-manage .dropping .drop-list ul {
    overflow: hidden;
  }
  #main.main-page .we-manage .dropping .drop-list ul li {
    padding: 10px;
  }
  #main.main-page .we-manage .dropping .drop-list ul li .image {
    width: 110px;
    padding-right: 10px;
  }
  #main.main-page .we-manage .dropping .drop-list ul li .image img {
    max-width: 100px;
    max-height: 50px;
  }
  #main.main-page .we-manage .dropping .drop-list ul li .title {
    font-size: 18px;
  }
  #main.main-page .we-manage .dropping .drop-list ul li:hover {
    box-shadow: inset 5px 0px 0px 0px #e12329, inset -5px 0px 0px 0px #e12329;
  }
  #main.main-page .block-type-1 .services-content .service {
    height: 290px;
  }
  #main.main-page .block-type-1 .services-content .service .text {
    padding: 50px 20px 0px 30px;
  }
  #main.main-page .block-type-1 .services-content .service .text .title {
    font-size: 26px;
  }
  #main.main-page .block-type-1 .services-content .service .text .sub-services .sub-service {
    font-size: 16px;
    margin: 15px 0px 0px 0px;
  }
  #main.main-page .block-type-2 {
    margin: 45px 0px 0px 0px;
    padding: 40px 0px 0px 0px;
  }
  #main.main-page .block-type-2 .block-type-2-slider {
    height: 440px;
  }
  #main.main-page .block-type-2 .block-type-2-label {
    font-size: 32px;
    line-height: 36px;
  }
  #main.main-page .block-type-2 .block-type-2-label span {
    font-size: 30px;
    line-height: 35px;
  }
  #main.main-page .block-type-2 .block-type-2-content {
    height: 115px;
    overflow: hidden;
    margin: 30px 0px 35px 0px;
  }
  #main.main-page .block-type-2 .block-type-2-content p {
    font-size: 19px;
    line-height: 30px;
  }
  #main.main-page .block-type-2 .block-type-2-request .inputs-row {
    margin: 0px 0px 35px 0px;
  }
  #main.main-page .block-type-2 .block-type-2-request .inputs-row input {
    font-size: 19px;
  }
  #main.main-page .block-type-2 .block-type-2-request .phone-and-button .phone {
    margin: 15px 10px 0px 0px;
    font-size: 16px;
  }
  #main.main-page .block-type-2 .block-type-2-request .phone-and-button button {
    margin: 0px 0px -10px 0px;
    padding: 20px 45px;
    font-size: 20px;
    box-shadow: 9px 11px 30px 0px rgba(0,0,0,0.6);
  }
  #main.main-page .block-type-3 {
    margin-top: 105px;
  }
  #main.main-page .block-type-3 .block-type-3-label {
    font-size: 40px;
    line-height: 50px;
    margin: 0px 0px 25px 0px;
  }
  #main.main-page .block-type-3 .block-type-3-label span {
    display: block;
    line-height: 50px;
  }
  #main.main-page .block-type-3 .block-type-3-content p {
    font-size: 20px;
    line-height: 30px;
  }
  #main.main-page .block-type-3 .block-type-3-content img {
    margin-right: 25px;
  }
  #main.main-page .block-type-3 .right-side {
    padding: 50px;
  }
  #main.main-page .block-type-3 .right-side p {
    font-size: 19px;
    line-height: 26px;
  }
  #main.main-page .block-type-3 .right-side p strong {
    font-size: 19px;
    line-height: 32px;
    margin: 0px 0px 20px 0px;
  }
  #main.main-page .block-type-3 .right-side a {
    margin-top: 50px;
  }
  #main.main-page .block-type-4 {
    margin-top: 100px;
    height: 410px;
  }
  #main.main-page .block-type-4 .block-type-4-slider {
    height: 410px;
  }
  #main.main-page .block-type-4 .block-type-4-slider .image .wrapper .title {
    font-size: 40px;
    margin: 50px 0px 70px 0px;
  }
  #main.main-page .block-type-4 .block-type-4-slider .image .wrapper .text p {
    font-size: 30px;
    margin: 0px 0px 15px 0px;
    padding-left: 25px;
  }
  #main.main-page .block-type-4 .block-type-4-slider .image .wrapper .text p:before {
    top: 10px;
    left: 0px;
    width: 12px;
    height: 12px;
  }
  #main.main-page .block-type-5 {
    margin-top: 60px;
  }
  #main.main-page .block-type-5 .block-type-5-label {
    margin: 35px 0px 0px 0px;
    font-size: 40px;
    line-height: 50px;
  }
  #main.main-page .block-type-5 .block-type-5-label span {
    display: block;
    line-height: 50px;
  }
  #main.main-page .block-type-5 .block-type-5-content {
    margin: 25px 0px 0px 0px;
  }
  #main.main-page .block-type-5 .block-type-5-content p {
    font-size: 19px;
    line-height: 30px;
  }
  #main.main-page .block-type-5 .block-type-5-request .inputs-row {
    margin: 15px 0px 20px 0px;
  }
  #main.main-page .block-type-5 .block-type-5-request .inputs-row input {
    font-size: 19px;
  }
  #main.main-page .block-type-5 .block-type-5-request .inputs-row textarea {
    font-size: 19px;
    height: 100px;
  }
  #main.main-page .block-type-5 .block-type-5-request .phone-and-button .phone {
    margin: 15px 10px 0px 0px;
    font-size: 16px;
  }
  #main.main-page .block-type-5 .block-type-5-request .phone-and-button button {
    margin: 0px 0px -10px 0px;
    padding: 20px 45px;
    font-size: 20px;
  }
  #main.main-page .block-type-6 {
    margin-top: 85px;
  }
  #main.main-page .block-type-6 .block-type-6-label {
    font-size: 40px;
    line-height: 50px;
  }
  #main.main-page .block-type-6 .block-type-6-label span {
    line-height: 50px;
  }
  #main.main-page .block-type-6 .block-type-6-content {
    margin: 30px 0px 35px 0px;
  }
  #main.main-page .block-type-6 .block-type-6-content p {
    font-size: 19px;
    line-height: 30px;
  }
  #main.main-page .block-type-7 {
    margin: 95px 0px 0px 0px;
    padding: 40px 0px 0px 0px;
  }
  #main.main-page .block-type-7 .block-type-7-slider {
    height: 440px;
  }
  #main.main-page .block-type-7 .block-type-7-label {
    font-size: 40px;
    line-height: 50px;
  }
  #main.main-page .block-type-7 .block-type-7-label span {
    line-height: 50px;
  }
  #main.main-page .block-type-7 .block-type-7-content {
    height: 150px;
    overflow: hidden;
    margin: 30px 0px 35px 0px;
  }
  #main.main-page .block-type-7 .block-type-7-content p {
    font-size: 19px;
    line-height: 30px;
  }
  #main.main-page .block-type-7 .block-type-7-request .inputs-row {
    margin: 0px 0px 35px 0px;
  }
  #main.main-page .block-type-7 .block-type-7-request .inputs-row input {
    font-size: 19px;
  }
  #main.main-page .block-type-7 .block-type-7-request .phone-and-button .phone {
    margin: 15px 10px 0px 0px;
    font-size: 16px;
  }
  #main.main-page .block-type-7 .block-type-7-request .phone-and-button button {
    margin: 0px 0px -10px 0px;
    padding: 20px 45px;
    font-size: 20px;
    box-shadow: 9px 11px 30px 0px rgba(0,0,0,0.6);
  }
  #main.main-page .block-type-8 {
    margin-top: 90px;
    padding-top: 40px;
  }
  #main.main-page .block-type-8 .block-type-8-title {
    margin: 0px 0px 30px 0px;
  }
  #main.main-page .block-type-8 .block-type-8-title p {
    font-size: 55px;
  }
  #main.main-page .block-type-8 .block-type-8-title p span {
    line-height: 80px;
  }
  #main.main-page .block-type-8 .block-type-8-content p {
    margin: 0px 0px 20px 0px;
    font-size: 24px;
    padding-left: 60px;
  }
  #main.main-page .block-type-8 .block-type-8-content p:before {
    top: 5px;
    left: 0px;
    width: 30px;
    height: 15px;
  }
  #main.main-page .block-type-8 .block-type-8-request {
    margin-top: 90px;
    margin-bottom: 45px;
  }
  #main.main-page .block-type-8 .block-type-8-request .inputs-row {
    margin: 0px 0px 0px 0px;
  }
  #main.main-page .block-type-8 .block-type-8-request .inputs-row input {
    font-size: 19px;
    padding: 5px 15px;
  }
  #main.main-page .block-type-8 .block-type-8-request .button {
    margin-top: 15px;
    margin-bottom: -5px;
  }
  #main.main-page .block-type-9 .advantages-content {
    margin-top: 75px;
  }
  #main.main-page .block-type-9 .advantages-content .advantage .image {
    margin: 0px 0px 35px 0px;
  }
  #main.main-page .block-type-9 .advantages-content .advantage .image img {
    height: 70px;
  }
  #main.main-page .block-type-9 .advantages-content .advantage .text .title {
    font-size: 22px;
    line-height: 30px;
  }
  #main.main-page .block-type-9 .advantages-content .advantage .text .short {
    margin: 15px 20px 0px 20px;
  }
  #main.main-page .block-type-9 .advantages-content .advantage .text .short p {
    font-size: 16px;
    line-height: 24px;
  }
  #main.main-page .block-type-10 {
    margin-top: 100px;
    padding-top: 50px;
  }
  #main.main-page .block-type-10 .block-title p {
    font-size: 47px;
    line-height: 80px;
  }
  #main.main-page .block-type-10 .block-title p span {
    line-height: 80px;
  }
  #main.main-page .block-type-10 .block-content p {
    margin: 20px 0px 20px 0px;
    font-size: 24px;
    line-height: 30px;
  }
  #main.main-page .block-type-10 .block-content button {
    margin: 55px 0px -25px 0px;
    padding: 30px 30px;
    font-size: 24px;
  }
  #main.main-page .block-type-11 .numbered-block-top {
    margin-bottom: 70px;
  }
  #main.main-page .block-type-11 .left-side p {
    margin: 0px 0px 30px 0px;
    padding: 0px 0px 0px 25px;
    font-size: 20px;
    line-height: 30px;
  }
  #main.main-page .block-type-11 .left-side p:before {
    width: 5px;
  }
  #main.main-page .block-type-11 .right-side .block-type-11-slider {
    height: 410px;
  }
  #main.main-page .block-type-12 {
    margin-top: 90px;
    padding-top: 60px;
  }
  #main.main-page .block-type-12 .block-type-12-title {
    margin: 0px 0px 30px 0px;
  }
  #main.main-page .block-type-12 .block-type-12-title p {
    font-size: 55px;
  }
  #main.main-page .block-type-12 .block-type-12-content p {
    margin: 0px 0px 20px 0px;
    font-size: 24px;
  }
  #main.main-page .block-type-12 .block-type-12-content p strong {
    font-size: 50px;
  }
  #main.main-page .block-type-12 .block-type-12-request {
    margin-top: 70px;
  }
  #main.main-page .block-type-12 .block-type-12-request .inputs-row input {
    font-size: 19px;
    padding: 5px 15px;
  }
  #main.main-page .block-type-12 .block-type-12-request button {
    margin: 0px 0px -25px 0px;
    padding: 30px 30px;
    font-size: 24px;
  }
  #main.main-page .block-type-13 {
    padding-bottom: 130px;
  }
  #main.main-page .block-type-13 .numbered-block-top {
    margin-top: 100px;
    margin-bottom: 80px;
  }
  #main.main-page .block-type-13 .block-type-13-request .inputs-row {
    margin: 0px 0px 40px 0px;
  }
  #main.main-page .block-type-13 .block-type-13-request .inputs-row input {
    font-size: 19px;
    padding: 5px 15px;
  }
  #main.main-page .block-type-13 .block-type-13-request .message-and-phone .message {
    margin: 0px 0px 10px 0px;
    font-size: 16px;
  }
  #main.main-page .block-type-13 .block-type-13-request .message-and-phone .phone {
    margin: 0px 0px 60px 0px;
  }
  #main.main-page .block-type-13 .block-type-13-request .message-and-phone .phone a {
    font-size: 24px;
  }
  #main.main-page .block-type-13 .block-type-13-request .message-and-phone button {
    margin: 0px 0px -25px 0px;
    padding: 30px 30px;
    font-size: 24px;
  }
}
/* @import includes/992-1200/main-page.styl */
@media screen and (min-width: 992px) and (max-width: 1199px) {
  #main.main-page .slider.main-block {
    height: 480px;
  }
  #main.main-page .slider.main-block .content {
    padding-top: 35px;
  }
  #main.main-page .slider.main-block .content .title {
    margin: 0px 0px 10px 0px;
    font-size: 35px;
    line-height: 50px;
  }
  #main.main-page .slider.main-block .content .title span {
    font-size: 39px;
    line-height: 50px;
  }
  #main.main-page .slider.main-block .content .white {
    padding: 10px 15px;
  }
  #main.main-page .slider.main-block .content .text {
    font-size: 16px;
  }
  #main.main-page .slider.main-block .content .button button {
    padding: 20px 40px;
    font-size: 16px;
  }
  #main.main-page .numbered-block .numbered-block-top {
    margin: 60px 0px 50px 0px;
  }
  #main.main-page .numbered-block .numbered-block-top:before,
  #main.main-page .numbered-block .numbered-block-top:after {
    width: 100%;
    display: table;
    content: " ";
  }
  #main.main-page .numbered-block .numbered-block-top:after {
    clear: both;
  }
  #main.main-page .numbered-block .numbered-block-top .numbered-block-label .number {
    margin: 0px 30px 0px 0px;
    padding: 6px 10px 6px 10px;
    font-size: 20px;
  }
  #main.main-page .numbered-block .numbered-block-top .numbered-block-label .text {
    font-size: 32px;
  }
  #main.main-page .numbered-block .numbered-block-top .numbered-block-short p {
    font-size: 12px;
    line-height: 16px;
  }
  #main.main-page .we-manage {
    padding-top: 35px;
    padding-bottom: 20px;
  }
  #main.main-page .we-manage .we-manage-title {
    font-size: 26px;
    line-height: 30px;
  }
  #main.main-page .we-manage .dropping {
    width: 270px;
    height: 130px;
    margin: 30px calc((100% - 810px) / 6);
  }
  #main.main-page .we-manage .dropping .logo {
    padding: 15px;
  }
  #main.main-page .we-manage .dropping .logo:before {
    height: 100px;
  }
  #main.main-page .we-manage .dropping .drop-list {
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 50%;
    min-height: 100%;
    pointer-events: none;
    transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    background-color: #fff;
    z-index: 5;
    transform: translateY(50%) scale(0, 0) translateZ(0);
    -o-transform: translateY(50%) scale(0, 0) translateZ(0);
    -ms-transform: translateY(50%) scale(0, 0) translateZ(0);
    -moz-transform: translateY(50%) scale(0, 0) translateZ(0);
    -webkit-transform: translateY(50%) scale(0, 0) translateZ(0);
  }
  #main.main-page .we-manage .dropping .drop-list ul {
    overflow: hidden;
  }
  #main.main-page .we-manage .dropping .drop-list ul li {
    padding: 10px;
  }
  #main.main-page .we-manage .dropping .drop-list ul li .image {
    width: 90px;
    padding-right: 10px;
  }
  #main.main-page .we-manage .dropping .drop-list ul li .image img {
    max-width: 80px;
    max-height: 40px;
  }
  #main.main-page .we-manage .dropping .drop-list ul li .title {
    font-size: 15px;
  }
  #main.main-page .we-manage .dropping .drop-list ul li:hover {
    box-shadow: inset 4px 0px 0px 0px #e12329, inset -4px 0px 0px 0px #e12329;
  }
  #main.main-page .block-type-1 .services-content .service {
    height: 210px;
  }
  #main.main-page .block-type-1 .services-content .service .text {
    padding: 40px 20px 0px 15px;
  }
  #main.main-page .block-type-1 .services-content .service .text .title {
    font-size: 21px;
  }
  #main.main-page .block-type-1 .services-content .service .text .sub-services .sub-service {
    font-size: 13px;
    margin: 13px 0px 0px 0px;
  }
  #main.main-page .block-type-2 {
    margin: 35px 0px 0px 0px;
    padding: 30px 0px 0px 0px;
  }
  #main.main-page .block-type-2 .block-type-2-slider {
    height: 360px;
  }
  #main.main-page .block-type-2 .block-type-2-label {
    font-size: 24px;
    line-height: 28px;
  }
  #main.main-page .block-type-2 .block-type-2-label span {
    line-height: 28px;
  }
  #main.main-page .block-type-2 .block-type-2-content {
    height: 95px;
    overflow: hidden;
    margin: 25px 0px 35px 0px;
  }
  #main.main-page .block-type-2 .block-type-2-content p {
    font-size: 15px;
    line-height: 25px;
  }
  #main.main-page .block-type-2 .block-type-2-request .inputs-row {
    margin: 0px 0px 25px 0px;
  }
  #main.main-page .block-type-2 .block-type-2-request .inputs-row input {
    font-size: 15px;
  }
  #main.main-page .block-type-2 .block-type-2-request .phone-and-button .phone {
    margin: 10px 10px 0px 0px;
    font-size: 12px;
    white-space: nowrap;
  }
  #main.main-page .block-type-2 .block-type-2-request .phone-and-button button {
    margin: 0px 0px -10px 0px;
    padding: 15px 35px;
    font-size: 15px;
    box-shadow: 9px 11px 30px 0px rgba(0,0,0,0.6);
  }
  #main.main-page .block-type-3 {
    margin-top: 85px;
  }
  #main.main-page .block-type-3 .block-type-3-label {
    font-size: 32px;
    line-height: 40px;
    margin: 0px 0px 25px 0px;
  }
  #main.main-page .block-type-3 .block-type-3-label span {
    display: block;
    line-height: 40px;
  }
  #main.main-page .block-type-3 .block-type-3-content p {
    font-size: 16px;
    line-height: 26px;
  }
  #main.main-page .block-type-3 .block-type-3-content img {
    margin-right: 25px;
  }
  #main.main-page .block-type-3 .right-side {
    padding: 40px;
  }
  #main.main-page .block-type-3 .right-side p {
    font-size: 18px;
    line-height: 25px;
  }
  #main.main-page .block-type-3 .right-side p strong {
    font-size: 18px;
    line-height: 31px;
    margin: 0px 0px 20px 0px;
  }
  #main.main-page .block-type-3 .right-side a {
    margin-top: 30px;
  }
  #main.main-page .block-type-4 {
    margin-top: 100px;
    height: 370px;
  }
  #main.main-page .block-type-4 .block-type-4-slider {
    height: 370px;
  }
  #main.main-page .block-type-4 .block-type-4-slider .image .wrapper .title {
    font-size: 34px;
    margin: 40px 0px 60px 0px;
  }
  #main.main-page .block-type-4 .block-type-4-slider .image .wrapper .text p {
    font-size: 27px;
    margin: 0px 0px 13px 0px;
    padding-left: 25px;
  }
  #main.main-page .block-type-4 .block-type-4-slider .image .wrapper .text p:before {
    top: 8px;
    left: 0px;
    width: 10px;
    height: 10px;
  }
  #main.main-page .block-type-5 {
    margin-top: 50px;
  }
  #main.main-page .block-type-5 .block-type-5-slider {
    height: 360px;
  }
  #main.main-page .block-type-5 .block-type-5-label {
    margin: 25px 0px 0px 0px;
    font-size: 30px;
    line-height: 40px;
  }
  #main.main-page .block-type-5 .block-type-5-label span {
    line-height: 40px;
  }
  #main.main-page .block-type-5 .block-type-5-content {
    margin: 15px 0px 0px 0px;
  }
  #main.main-page .block-type-5 .block-type-5-content p {
    font-size: 15px;
    line-height: 25px;
  }
  #main.main-page .block-type-5 .block-type-5-request .inputs-row {
    margin: 15px 0px 15px 0px;
  }
  #main.main-page .block-type-5 .block-type-5-request .inputs-row input {
    font-size: 15px;
  }
  #main.main-page .block-type-5 .block-type-5-request .inputs-row textarea {
    font-size: 15px;
    height: 80px;
  }
  #main.main-page .block-type-5 .block-type-5-request .phone-and-button .phone {
    margin: 10px 10px 0px 0px;
    font-size: 12px;
    white-space: nowrap;
  }
  #main.main-page .block-type-5 .block-type-5-request .phone-and-button button {
    margin: 0px 0px -10px 0px;
    padding: 15px 35px;
    font-size: 15px;
    box-shadow: 9px 11px 30px 0px rgba(0,0,0,0.6);
  }
  #main.main-page .block-type-6 {
    margin-top: 85px;
  }
  #main.main-page .block-type-6 .block-type-6-label {
    font-size: 31px;
    line-height: 41px;
  }
  #main.main-page .block-type-6 .block-type-6-label span {
    line-height: 46px;
  }
  #main.main-page .block-type-6 .block-type-6-content {
    margin: 25px 0px 30px 0px;
  }
  #main.main-page .block-type-6 .block-type-6-content p {
    font-size: 15px;
    line-height: 26px;
  }
  #main.main-page .block-type-7 {
    margin: 85px 0px 0px 0px;
    padding: 30px 0px 0px 0px;
  }
  #main.main-page .block-type-7 .block-type-7-slider {
    height: 360px;
  }
  #main.main-page .block-type-7 .block-type-7-label {
    font-size: 30px;
    line-height: 40px;
  }
  #main.main-page .block-type-7 .block-type-7-label span {
    line-height: 40px;
  }
  #main.main-page .block-type-7 .block-type-7-content {
    height: 125px;
    overflow: hidden;
    margin: 30px 0px 35px 0px;
  }
  #main.main-page .block-type-7 .block-type-7-content p {
    font-size: 15px;
    line-height: 25px;
  }
  #main.main-page .block-type-7 .block-type-7-request .inputs-row {
    margin: 0px 0px 25px 0px;
  }
  #main.main-page .block-type-7 .block-type-7-request .inputs-row input {
    font-size: 15px;
  }
  #main.main-page .block-type-7 .block-type-7-request .phone-and-button .phone {
    margin: 10px 10px 0px 0px;
    font-size: 12px;
    white-space: nowrap;
  }
  #main.main-page .block-type-7 .block-type-7-request .phone-and-button button {
    margin: 0px 0px -10px 0px;
    padding: 15px 35px;
    font-size: 15px;
    box-shadow: 9px 11px 30px 0px rgba(0,0,0,0.6);
  }
  #main.main-page .block-type-8 {
    margin-top: 70px;
    padding-top: 35px;
  }
  #main.main-page .block-type-8 .block-type-8-title {
    margin: 0px 0px 25px 0px;
  }
  #main.main-page .block-type-8 .block-type-8-title p {
    font-size: 45px;
  }
  #main.main-page .block-type-8 .block-type-8-title p span {
    line-height: 80px;
  }
  #main.main-page .block-type-8 .block-type-8-content p {
    margin: 0px 0px 20px 0px;
    font-size: 20px;
    padding-left: 50px;
  }
  #main.main-page .block-type-8 .block-type-8-content p:before {
    top: 5px;
    left: 0px;
    width: 25px;
    height: 10px;
  }
  #main.main-page .block-type-8 .block-type-8-request {
    margin-top: 70px;
    margin-bottom: 45px;
  }
  #main.main-page .block-type-8 .block-type-8-request .inputs-row {
    margin: 0px 0px 0px 0px;
  }
  #main.main-page .block-type-8 .block-type-8-request .inputs-row input {
    font-size: 19px;
    padding: 5px 15px;
  }
  #main.main-page .block-type-8 .block-type-8-request .button {
    margin-top: 15px;
    margin-bottom: -5px;
  }
  #main.main-page .block-type-9 .advantages-content {
    margin-top: 75px;
  }
  #main.main-page .block-type-9 .advantages-content .advantage .image {
    margin: 0px 0px 25px 0px;
  }
  #main.main-page .block-type-9 .advantages-content .advantage .image img {
    height: 60px;
  }
  #main.main-page .block-type-9 .advantages-content .advantage .text .title {
    font-size: 20px;
    line-height: 28px;
  }
  #main.main-page .block-type-9 .advantages-content .advantage .text .short {
    margin: 15px 15px 0px 15px;
  }
  #main.main-page .block-type-9 .advantages-content .advantage .text .short p {
    font-size: 13px;
    line-height: 21px;
  }
  #main.main-page .block-type-10 {
    margin-top: 80px;
    padding-top: 40px;
  }
  #main.main-page .block-type-10 .block-title p {
    font-size: 37px;
    line-height: 70px;
  }
  #main.main-page .block-type-10 .block-title p span {
    line-height: 80px;
  }
  #main.main-page .block-type-10 .block-content p {
    margin: 20px 0px 20px 0px;
    font-size: 20px;
    line-height: 26px;
  }
  #main.main-page .block-type-10 .block-content button {
    margin: 45px 0px -25px 0px;
    padding: 25px 25px;
    font-size: 18px;
  }
  #main.main-page .block-type-11 .numbered-block-top {
    margin-bottom: 50px;
  }
  #main.main-page .block-type-11 .left-side p {
    margin: 0px 0px 25px 0px;
    padding: 0px 0px 0px 15px;
    font-size: 16px;
    line-height: 26px;
  }
  #main.main-page .block-type-11 .left-side p:before {
    width: 4px;
  }
  #main.main-page .block-type-11 .right-side .block-type-11-slider {
    height: 310px;
  }
  #main.main-page .block-type-12 {
    margin-top: 90px;
    padding-top: 60px;
  }
  #main.main-page .block-type-12 .block-type-12-title {
    margin: 0px 0px 25px 0px;
  }
  #main.main-page .block-type-12 .block-type-12-title p {
    font-size: 44px;
  }
  #main.main-page .block-type-12 .block-type-12-content p {
    margin: 0px 0px 20px 0px;
    font-size: 19px;
  }
  #main.main-page .block-type-12 .block-type-12-content p strong {
    font-size: 40px;
  }
  #main.main-page .block-type-12 .block-type-12-request {
    margin-top: 50px;
  }
  #main.main-page .block-type-12 .block-type-12-request .inputs-row input {
    font-size: 19px;
    padding: 5px 15px;
  }
  #main.main-page .block-type-12 .block-type-12-request button {
    margin: 0px 0px -15px 0px;
    padding: 25px 25px;
    font-size: 18px;
  }
  #main.main-page .block-type-13 {
    padding-bottom: 90px;
  }
  #main.main-page .block-type-13 .numbered-block-top {
    margin-top: 80px;
    margin-bottom: 70px;
  }
  #main.main-page .block-type-13 .block-type-13-request .inputs-row {
    margin: 0px 0px 30px 0px;
  }
  #main.main-page .block-type-13 .block-type-13-request .inputs-row input {
    font-size: 15px;
    padding: 5px 15px;
  }
  #main.main-page .block-type-13 .block-type-13-request .message-and-phone .message {
    margin: 0px 0px 10px 0px;
    font-size: 14px;
  }
  #main.main-page .block-type-13 .block-type-13-request .message-and-phone .phone {
    margin: 0px 0px 45px 0px;
  }
  #main.main-page .block-type-13 .block-type-13-request .message-and-phone .phone a {
    font-size: 21px;
  }
  #main.main-page .block-type-13 .block-type-13-request .message-and-phone button {
    margin: 0px 0px -15px 0px;
    padding: 25px 25px;
    font-size: 19px;
  }
}
/* @import includes/768-991/main-page.styl */
@media screen and (max-width: 991px) {
  #main.main-page .slider.main-block {
    height: 400px;
  }
  #main.main-page .slider.main-block .content {
    padding-top: 35px;
  }
  #main.main-page .slider.main-block .content .title {
    margin: 0px 0px 10px 0px;
    font-size: 35px;
    line-height: 50px;
  }
  #main.main-page .slider.main-block .content .title span {
    font-size: 39px;
    line-height: 50px;
  }
  #main.main-page .slider.main-block .content .white {
    padding: 10px 15px;
  }
  #main.main-page .slider.main-block .content .text {
    font-size: 16px;
  }
  #main.main-page .slider.main-block .content .button button {
    padding: 20px 40px;
    font-size: 16px;
    white-space: nowrap;
  }
  #main.main-page .numbered-block .numbered-block-top {
    margin: 60px 0px 50px 0px;
  }
  #main.main-page .numbered-block .numbered-block-top:before,
  #main.main-page .numbered-block .numbered-block-top:after {
    width: 100%;
    display: table;
    content: " ";
  }
  #main.main-page .numbered-block .numbered-block-top:after {
    clear: both;
  }
  #main.main-page .numbered-block .numbered-block-top .numbered-block-label {
    margin-bottom: 30px;
  }
  #main.main-page .numbered-block .numbered-block-top .numbered-block-label .number {
    margin: 0px 30px 0px 0px;
    padding: 6px 10px 6px 10px;
    font-size: 20px;
  }
  #main.main-page .numbered-block .numbered-block-top .numbered-block-label .text {
    font-size: 32px;
  }
  #main.main-page .numbered-block .numbered-block-top .numbered-block-label .text br {
    display: none;
  }
  #main.main-page .numbered-block .numbered-block-top .numbered-block-short p {
    font-size: 14px;
    line-height: 18px;
  }
  #main.main-page .we-manage {
    padding-top: 35px;
    padding-bottom: 20px;
  }
  #main.main-page .we-manage .we-manage-title {
    font-size: 26px;
    line-height: 30px;
  }
  #main.main-page .we-manage .dropping {
    width: 200px;
    height: 100px;
    margin: 30px calc((100% - 600px) / 6);
  }
  #main.main-page .we-manage .dropping .logo {
    padding: 15px;
  }
  #main.main-page .we-manage .dropping .logo:before {
    height: 70px;
  }
  #main.main-page .we-manage .dropping .drop-list {
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 50%;
    min-height: 100%;
    pointer-events: none;
    transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    background-color: #fff;
    z-index: 5;
    transform: translateY(50%) scale(0, 0) translateZ(0);
    -o-transform: translateY(50%) scale(0, 0) translateZ(0);
    -ms-transform: translateY(50%) scale(0, 0) translateZ(0);
    -moz-transform: translateY(50%) scale(0, 0) translateZ(0);
    -webkit-transform: translateY(50%) scale(0, 0) translateZ(0);
  }
  #main.main-page .we-manage .dropping .drop-list ul {
    overflow: hidden;
  }
  #main.main-page .we-manage .dropping .drop-list ul li {
    padding: 10px;
  }
  #main.main-page .we-manage .dropping .drop-list ul li .image {
    width: 90px;
    padding-right: 10px;
  }
  #main.main-page .we-manage .dropping .drop-list ul li .image img {
    max-width: 80px;
    max-height: 40px;
  }
  #main.main-page .we-manage .dropping .drop-list ul li .title {
    font-size: 15px;
  }
  #main.main-page .we-manage .dropping .drop-list ul li:hover {
    box-shadow: inset 4px 0px 0px 0px #e12329, inset -4px 0px 0px 0px #e12329;
  }
  #main.main-page .block-type-1 .services-content .service {
    height: 210px;
  }
  #main.main-page .block-type-1 .services-content .service .text {
    padding: 40px 20px 0px 15px;
  }
  #main.main-page .block-type-1 .services-content .service .text .title {
    font-size: 21px;
  }
  #main.main-page .block-type-1 .services-content .service .text .sub-services .sub-service {
    font-size: 13px;
    margin: 13px 0px 0px 0px;
  }
  #main.main-page .block-type-2 {
    margin: 35px 0px 0px 0px;
    padding: 30px 0px 0px 0px;
  }
  #main.main-page .block-type-2 .block-type-2-slider {
    height: 440px;
  }
  #main.main-page .block-type-2 .block-type-2-slider .images .image img {
    object-fit: cover;
  }
  #main.main-page .block-type-2 .block-type-2-label {
    margin-top: 25px;
    font-size: 24px;
    line-height: 28px;
  }
  #main.main-page .block-type-2 .block-type-2-label span {
    line-height: 28px;
  }
  #main.main-page .block-type-2 .block-type-2-content {
    height: 95px;
    overflow: hidden;
    margin: 25px 0px 35px 0px;
  }
  #main.main-page .block-type-2 .block-type-2-content p {
    font-size: 15px;
    line-height: 25px;
  }
  #main.main-page .block-type-2 .block-type-2-request .inputs-row {
    margin: 0px 0px 25px 0px;
  }
  #main.main-page .block-type-2 .block-type-2-request .inputs-row input {
    font-size: 15px;
  }
  #main.main-page .block-type-2 .block-type-2-request .phone-and-button .phone {
    margin: 10px 10px 0px 0px;
    font-size: 12px;
    white-space: nowrap;
  }
  #main.main-page .block-type-2 .block-type-2-request .phone-and-button button {
    margin: 0px 0px -20px 0px;
    padding: 20px 45px;
    font-size: 20px;
    box-shadow: 9px 11px 30px 0px rgba(0,0,0,0.6);
  }
  #main.main-page .block-type-3 {
    margin-top: 135px;
  }
  #main.main-page .block-type-3 .block-type-3-label {
    font-size: 32px;
    line-height: 40px;
    margin: 0px 0px 25px 0px;
  }
  #main.main-page .block-type-3 .block-type-3-label span {
    display: block;
    line-height: 40px;
  }
  #main.main-page .block-type-3 .block-type-3-content p {
    font-size: 16px;
    line-height: 26px;
  }
  #main.main-page .block-type-3 .block-type-3-content img {
    margin-right: 25px;
  }
  #main.main-page .block-type-3 .right-side {
    padding: 40px;
  }
  #main.main-page .block-type-3 .right-side p {
    font-size: 18px;
    line-height: 25px;
  }
  #main.main-page .block-type-3 .right-side p strong {
    font-size: 18px;
    line-height: 31px;
    margin: 0px 0px 20px 0px;
  }
  #main.main-page .block-type-3 .right-side a {
    margin-top: 30px;
  }
  #main.main-page .block-type-4 {
    margin-top: 100px;
    height: 370px;
  }
  #main.main-page .block-type-4 .block-type-4-slider {
    height: 370px;
  }
  #main.main-page .block-type-4 .block-type-4-slider .image .wrapper .title {
    font-size: 30px;
    margin: 30px 0px 40px 0px;
  }
  #main.main-page .block-type-4 .block-type-4-slider .image .wrapper .text p {
    font-size: 24px;
    margin: 0px 0px 10px 0px;
    padding-left: 20px;
  }
  #main.main-page .block-type-4 .block-type-4-slider .image .wrapper .text p:before {
    top: 6px;
    left: 0px;
    width: 10px;
    height: 10px;
  }
  #main.main-page .block-type-5 {
    margin-top: 50px;
  }
  #main.main-page .block-type-5 .block-type-5-slider {
    height: 440px;
  }
  #main.main-page .block-type-5 .block-type-5-slider .images .image img {
    object-fit: cover;
  }
  #main.main-page .block-type-5 .block-type-5-label {
    margin: 25px 0px 0px 0px;
    font-size: 30px;
    line-height: 40px;
  }
  #main.main-page .block-type-5 .block-type-5-label span {
    line-height: 40px;
  }
  #main.main-page .block-type-5 .block-type-5-content {
    margin: 15px 0px 0px 0px;
  }
  #main.main-page .block-type-5 .block-type-5-content p {
    font-size: 15px;
    line-height: 25px;
  }
  #main.main-page .block-type-5 .block-type-5-request .inputs-row {
    margin: 15px 0px 15px 0px;
  }
  #main.main-page .block-type-5 .block-type-5-request .inputs-row input {
    font-size: 15px;
  }
  #main.main-page .block-type-5 .block-type-5-request .inputs-row textarea {
    font-size: 15px;
    height: 80px;
  }
  #main.main-page .block-type-5 .block-type-5-request .phone-and-button .phone {
    margin: 10px 10px 0px 0px;
    font-size: 12px;
    white-space: nowrap;
  }
  #main.main-page .block-type-5 .block-type-5-request .phone-and-button button {
    margin: 0px 0px -20px 0px;
    padding: 20px 45px;
    font-size: 20px;
  }
  #main.main-page .block-type-6 {
    margin-top: 115px;
  }
  #main.main-page .block-type-6 .block-type-6-label {
    font-size: 31px;
    line-height: 41px;
  }
  #main.main-page .block-type-6 .block-type-6-label span {
    line-height: 46px;
  }
  #main.main-page .block-type-6 .block-type-6-content {
    margin: 25px 0px 30px 0px;
  }
  #main.main-page .block-type-6 .block-type-6-content p {
    font-size: 15px;
    line-height: 26px;
  }
  #main.main-page .block-type-7 {
    margin: 85px 0px 0px 0px;
    padding: 30px 0px 0px 0px;
  }
  #main.main-page .block-type-7 .block-type-7-slider {
    height: 440px;
  }
  #main.main-page .block-type-7 .block-type-7-slider .images .image img {
    object-fit: cover;
  }
  #main.main-page .block-type-7 .block-type-7-label {
    margin-top: 25px;
    font-size: 30px;
    line-height: 40px;
  }
  #main.main-page .block-type-7 .block-type-7-label span {
    line-height: 40px;
  }
  #main.main-page .block-type-7 .block-type-7-content {
    height: 125px;
    overflow: hidden;
    margin: 30px 0px 35px 0px;
  }
  #main.main-page .block-type-7 .block-type-7-content p {
    font-size: 15px;
    line-height: 25px;
  }
  #main.main-page .block-type-7 .block-type-7-request .inputs-row {
    margin: 0px 0px 25px 0px;
  }
  #main.main-page .block-type-7 .block-type-7-request .inputs-row input {
    font-size: 15px;
  }
  #main.main-page .block-type-7 .block-type-7-request .phone-and-button .phone {
    margin: 10px 10px 0px 0px;
    font-size: 12px;
    white-space: nowrap;
  }
  #main.main-page .block-type-7 .block-type-7-request .phone-and-button button {
    margin: 0px 0px -20px 0px;
    padding: 20px 45px;
    font-size: 20px;
    box-shadow: 9px 11px 30px 0px rgba(0,0,0,0.6);
  }
  #main.main-page .block-type-8 {
    margin-top: 70px;
    padding-top: 35px;
  }
  #main.main-page .block-type-8 .block-type-8-title {
    margin: 0px 0px 25px 0px;
  }
  #main.main-page .block-type-8 .block-type-8-title p {
    font-size: 40px;
  }
  #main.main-page .block-type-8 .block-type-8-title p span {
    line-height: 75px;
  }
  #main.main-page .block-type-8 .block-type-8-content p {
    margin: 0px 0px 20px 0px;
    font-size: 18px;
    padding-left: 40px;
  }
  #main.main-page .block-type-8 .block-type-8-content p:before {
    top: 5px;
    left: 0px;
    width: 20px;
    height: 10px;
  }
  #main.main-page .block-type-8 .block-type-8-request {
    margin-top: 70px;
    margin-bottom: 45px;
  }
  #main.main-page .block-type-8 .block-type-8-request .inputs-row {
    margin: 0px 0px 0px 0px;
  }
  #main.main-page .block-type-8 .block-type-8-request .inputs-row input {
    font-size: 19px;
    padding: 5px 15px;
  }
  #main.main-page .block-type-8 .block-type-8-request .button {
    margin-top: 15px;
    margin-bottom: -5px;
  }
  #main.main-page .block-type-9 {
    margin-top: 50px;
  }
  #main.main-page .block-type-9 .advantages-content {
    margin-top: 75px;
  }
  #main.main-page .block-type-9 .advantages-content .advantage {
    display: inline-block;
    vertical-align: top;
    float: none;
    margin-bottom: 30px;
  }
  #main.main-page .block-type-9 .advantages-content .advantage .image {
    margin: 0px 0px 25px 0px;
  }
  #main.main-page .block-type-9 .advantages-content .advantage .image img {
    height: 60px;
  }
  #main.main-page .block-type-9 .advantages-content .advantage .text .title {
    font-size: 20px;
    line-height: 28px;
  }
  #main.main-page .block-type-9 .advantages-content .advantage .text .short {
    margin: 15px 15px 0px 15px;
  }
  #main.main-page .block-type-9 .advantages-content .advantage .text .short p {
    font-size: 13px;
    line-height: 21px;
  }
  #main.main-page .block-type-10 {
    margin-top: 80px;
    padding-top: 40px;
  }
  #main.main-page .block-type-10 .block-title p {
    font-size: 28px;
    line-height: 61px;
  }
  #main.main-page .block-type-10 .block-title p span {
    line-height: 71px;
  }
  #main.main-page .block-type-10 .block-content p {
    margin: 20px 0px 20px 0px;
    font-size: 20px;
    line-height: 26px;
  }
  #main.main-page .block-type-10 .block-content button {
    margin: 45px 0px -25px 0px;
    padding: 25px 25px;
    font-size: 18px;
  }
  #main.main-page .block-type-11 .numbered-block-top {
    margin-bottom: 50px;
  }
  #main.main-page .block-type-11 .left-side p {
    margin: 0px 0px 25px 0px;
    padding: 0px 0px 0px 15px;
    font-size: 16px;
    line-height: 26px;
  }
  #main.main-page .block-type-11 .left-side p:before {
    width: 4px;
  }
  #main.main-page .block-type-11 .right-side {
    margin-bottom: 30px;
  }
  #main.main-page .block-type-11 .right-side .block-type-11-slider {
    height: 410px;
  }
  #main.main-page .block-type-12 {
    margin-top: 90px;
    padding-top: 40px;
  }
  #main.main-page .block-type-12 .block-type-12-title {
    margin: 0px 0px 25px 0px;
  }
  #main.main-page .block-type-12 .block-type-12-title p {
    font-size: 36px;
  }
  #main.main-page .block-type-12 .block-type-12-content p {
    margin: 0px 0px 20px 0px;
    font-size: 19px;
  }
  #main.main-page .block-type-12 .block-type-12-content p strong {
    font-size: 32px;
  }
  #main.main-page .block-type-12 .block-type-12-request {
    margin-top: 50px;
  }
  #main.main-page .block-type-12 .block-type-12-request .inputs-row input {
    font-size: 19px;
    padding: 5px 15px;
  }
  #main.main-page .block-type-12 .block-type-12-request button {
    margin: 0px 0px -15px 0px;
    padding: 25px 25px;
    font-size: 18px;
  }
  #main.main-page .block-type-13 {
    padding-bottom: 90px;
  }
  #main.main-page .block-type-13 .numbered-block-top {
    margin-top: 80px;
    margin-bottom: 70px;
  }
  #main.main-page .block-type-13 .block-type-13-request .inputs-row {
    margin: 0px 0px 30px 0px;
  }
  #main.main-page .block-type-13 .block-type-13-request .inputs-row input {
    font-size: 15px;
    padding: 5px 15px;
  }
  #main.main-page .block-type-13 .block-type-13-request .message-and-phone .message {
    margin: 0px 0px 10px 0px;
    font-size: 14px;
  }
  #main.main-page .block-type-13 .block-type-13-request .message-and-phone .phone {
    margin: 0px 0px 45px 0px;
  }
  #main.main-page .block-type-13 .block-type-13-request .message-and-phone .phone a {
    font-size: 21px;
  }
  #main.main-page .block-type-13 .block-type-13-request .message-and-phone button {
    margin: 0px 0px -15px 0px;
    padding: 25px 25px;
    font-size: 19px;
  }
}
/* @import includes/768-/main-page.styl */
@media screen and (max-width: 767px) {
  #main.main-page .slider.main-block {
    height: 450px;
  }
  #main.main-page .slider.main-block .content {
    padding-top: 35px;
  }
  #main.main-page .slider.main-block .content .title {
    margin: 0px 0px 10px 0px;
    font-size: 35px;
    line-height: 50px;
  }
  #main.main-page .slider.main-block .content .title span {
    font-size: 39px;
    line-height: 50px;
  }
  #main.main-page .slider.main-block .content .white {
    padding: 10px 10px;
    background-color: rgba(255,255,255,0.7);
  }
  #main.main-page .slider.main-block .content .text {
    font-size: 28px;
  }
  #main.main-page .slider.main-block .content .button button {
    padding: 20px 40px;
    font-size: 18px;
    white-space: nowrap;
  }
  #main.main-page .numbered-block .numbered-block-top {
    margin: 60px 0px 50px 0px;
  }
  #main.main-page .numbered-block .numbered-block-top:before,
  #main.main-page .numbered-block .numbered-block-top:after {
    width: 100%;
    display: table;
    content: " ";
  }
  #main.main-page .numbered-block .numbered-block-top:after {
    clear: both;
  }
  #main.main-page .numbered-block .numbered-block-top .numbered-block-label {
    margin-bottom: 30px;
  }
  #main.main-page .numbered-block .numbered-block-top .numbered-block-label .number {
    margin: 0px 30px 0px 0px;
    padding: 6px 10px 6px 10px;
    font-size: 23px;
    width: 55px;
  }
  #main.main-page .numbered-block .numbered-block-top .numbered-block-label .text {
    width: calc(100% - 85px);
    font-size: 35px;
  }
  #main.main-page .numbered-block .numbered-block-top .numbered-block-label .text br {
    display: none;
  }
  #main.main-page .numbered-block .numbered-block-top .numbered-block-short p {
    font-size: 28px;
    line-height: 36px;
    margin: 0px 0px 15px 0px;
  }
  #main.main-page .we-manage {
    padding-top: 35px;
    padding-bottom: 20px;
  }
  #main.main-page .we-manage .we-manage-title {
    font-size: 26px;
    line-height: 36px;
  }
  #main.main-page .we-manage .dropping {
    width: calc(100% - 60px);
    height: 200px;
    margin: 30px 30px;
    position: relative;
    z-index: 3;
  }
  #main.main-page .we-manage .dropping .logo {
    padding: 15px;
  }
  #main.main-page .we-manage .dropping .logo:before {
    height: 160px;
  }
  #main.main-page .we-manage .dropping .drop-list {
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 50%;
    min-height: 100%;
    pointer-events: none;
    transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    background-color: #fff;
    z-index: 50;
    transform: translateY(50%) scale(0, 0) translateZ(0);
    -o-transform: translateY(50%) scale(0, 0) translateZ(0);
    -ms-transform: translateY(50%) scale(0, 0) translateZ(0);
    -moz-transform: translateY(50%) scale(0, 0) translateZ(0);
    -webkit-transform: translateY(50%) scale(0, 0) translateZ(0);
  }
  #main.main-page .we-manage .dropping .drop-list ul {
    overflow: hidden;
  }
  #main.main-page .we-manage .dropping .drop-list ul li {
    padding: 10px;
  }
  #main.main-page .we-manage .dropping .drop-list ul li .image {
    width: 160px;
    padding-right: 10px;
  }
  #main.main-page .we-manage .dropping .drop-list ul li .image img {
    max-width: 160px;
    height: 80px;
    max-height: 80px;
  }
  #main.main-page .we-manage .dropping .drop-list ul li .title {
    font-size: 28px;
  }
  #main.main-page .we-manage .dropping .drop-list ul li:hover {
    box-shadow: inset 4px 0px 0px 0px #e12329, inset -4px 0px 0px 0px #e12329;
  }
  #main.main-page .we-manage .dropping.active {
    z-index: 5;
  }
  #main.main-page .block-type-1 {
    margin-bottom: 80px;
  }
  #main.main-page .block-type-1 .services-content .service {
    height: 210px;
  }
  #main.main-page .block-type-1 .services-content .service .text {
    padding: 40px 20px 0px 15px;
  }
  #main.main-page .block-type-1 .services-content .service .text .title {
    font-size: 28px;
    line-height: 40px;
  }
  #main.main-page .block-type-1 .services-content .service .text .sub-services {
    display: none;
  }
  #main.main-page .block-type-1 .services-content .link {
    margin-top: 10px;
  }
  #main.main-page .block-type-1 .services-content .link a {
    font-size: 28px;
  }
  #main.main-page .block-type-2 {
    margin: 35px 0px 0px 0px;
    padding: 30px 0px 0px 0px;
  }
  #main.main-page .block-type-2 .block-type-2-slider {
    height: 440px;
  }
  #main.main-page .block-type-2 .block-type-2-slider .images .image img {
    object-fit: cover;
  }
  #main.main-page .block-type-2 .block-type-2-label {
    margin-top: 25px;
    font-size: 40px;
    line-height: 50px;
  }
  #main.main-page .block-type-2 .block-type-2-label span {
    line-height: 50px;
  }
  #main.main-page .block-type-2 .block-type-2-content {
    height: auto;
    overflow: hidden;
    margin: 25px 0px 35px 0px;
  }
  #main.main-page .block-type-2 .block-type-2-content p {
    font-size: 28px;
    line-height: 36px;
    margin: 0px 0px 15px 0px;
  }
  #main.main-page .block-type-2 .block-type-2-request .inputs-row {
    margin: 0px 0px 35px 0px;
  }
  #main.main-page .block-type-2 .block-type-2-request .inputs-row input {
    width: 100%;
    font-size: 28px;
  }
  #main.main-page .block-type-2 .block-type-2-request .inputs-row input + input {
    margin-top: 30px;
    margin-left: 0px;
  }
  #main.main-page .block-type-2 .block-type-2-request .phone-and-button {
    text-align: center;
  }
  #main.main-page .block-type-2 .block-type-2-request .phone-and-button .phone {
    width: 100%;
    margin: 10px 10px 0px 0px;
    font-size: 28px;
    white-space: nowrap;
  }
  #main.main-page .block-type-2 .block-type-2-request .phone-and-button button {
    float: none;
    margin: 20px 0px -20px 0px;
    padding: 20px 45px;
    font-size: 26px;
    box-shadow: 9px 11px 30px 0px rgba(0,0,0,0.6);
  }
  #main.main-page .block-type-3 {
    margin-top: 135px;
  }
  #main.main-page .block-type-3 .block-type-3-label {
    font-size: 40px;
    line-height: 50px;
    margin: 0px 0px 25px 0px;
  }
  #main.main-page .block-type-3 .block-type-3-label span {
    display: block;
    line-height: 50px;
  }
  #main.main-page .block-type-3 .block-type-3-content p {
    font-size: 28px;
    line-height: 36px;
  }
  #main.main-page .block-type-3 .block-type-3-content img {
    margin-right: 25px;
    width: 20%;
  }
  #main.main-page .block-type-3 .right-side {
    padding: 40px;
  }
  #main.main-page .block-type-3 .right-side p {
    font-size: 28px;
    line-height: 36px;
  }
  #main.main-page .block-type-3 .right-side p strong {
    font-size: 28px;
    line-height: 36px;
    margin: 0px 0px 20px 0px;
  }
  #main.main-page .block-type-3 .right-side a {
    display: inline-block;
    font-size: 28px;
    margin: 30px 0px 15px 0px;
  }
  #main.main-page .block-type-4 {
    margin-top: 100px;
    height: 470px;
  }
  #main.main-page .block-type-4 .block-type-4-slider {
    height: 470px;
  }
  #main.main-page .block-type-4 .block-type-4-slider .image .wrapper .title {
    font-size: 30px;
    margin: 30px 0px 40px 0px;
  }
  #main.main-page .block-type-4 .block-type-4-slider .image .wrapper .text p {
    font-size: 28px;
    line-height: 36px;
    margin: 0px 0px 15px 0px;
    padding-left: 20px;
  }
  #main.main-page .block-type-4 .block-type-4-slider .image .wrapper .text p:before {
    top: 6px;
    left: 0px;
    width: 10px;
    height: 10px;
  }
  #main.main-page .block-type-5 {
    margin-top: 50px;
  }
  #main.main-page .block-type-5 .block-type-5-slider {
    height: 440px;
  }
  #main.main-page .block-type-5 .block-type-5-slider .images .image img {
    object-fit: cover;
  }
  #main.main-page .block-type-5 .block-type-5-label {
    margin: 25px 0px 0px 0px;
    font-size: 40px;
    line-height: 50px;
  }
  #main.main-page .block-type-5 .block-type-5-label span {
    line-height: 50px;
  }
  #main.main-page .block-type-5 .block-type-5-content {
    margin: 15px 0px 0px 0px;
  }
  #main.main-page .block-type-5 .block-type-5-content p {
    font-size: 28px;
    line-height: 36px;
    margin: 0px 0px 15px 0px;
  }
  #main.main-page .block-type-5 .block-type-5-request .inputs-row {
    margin: 15px 0px 15px 0px;
  }
  #main.main-page .block-type-5 .block-type-5-request .inputs-row input {
    width: 100%;
    font-size: 28px;
  }
  #main.main-page .block-type-5 .block-type-5-request .inputs-row input + input {
    margin-top: 30px;
    margin-left: 0px;
  }
  #main.main-page .block-type-5 .block-type-5-request .inputs-row textarea {
    margin-top: 30px;
    font-size: 28px;
    height: 120px;
  }
  #main.main-page .block-type-5 .block-type-5-request .phone-and-button {
    text-align: center;
  }
  #main.main-page .block-type-5 .block-type-5-request .phone-and-button .phone {
    width: 100%;
    margin: 10px 10px 10px 0px;
    font-size: 28px;
    white-space: nowrap;
  }
  #main.main-page .block-type-5 .block-type-5-request .phone-and-button button {
    float: none;
    margin: 20px 0px -20px 0px;
    padding: 20px 45px;
    font-size: 26px;
  }
  #main.main-page .block-type-6 {
    margin-top: 115px;
  }
  #main.main-page .block-type-6 .block-type-6-label {
    font-size: 40px;
    line-height: 50px;
  }
  #main.main-page .block-type-6 .block-type-6-label span {
    line-height: 50px;
  }
  #main.main-page .block-type-6 .block-type-6-content {
    margin: 25px 0px 30px 0px;
  }
  #main.main-page .block-type-6 .block-type-6-content p {
    font-size: 28px;
    line-height: 36px;
    margin: 0px 0px 15px 0px;
  }
  #main.main-page .block-type-7 {
    margin: 85px 0px 0px 0px;
    padding: 30px 0px 0px 0px;
  }
  #main.main-page .block-type-7 .block-type-7-slider {
    height: 440px;
  }
  #main.main-page .block-type-7 .block-type-7-slider .images .image img {
    object-fit: cover;
  }
  #main.main-page .block-type-7 .block-type-7-label {
    margin-top: 25px;
    font-size: 40px;
    line-height: 50px;
  }
  #main.main-page .block-type-7 .block-type-7-label span {
    line-height: 50px;
  }
  #main.main-page .block-type-7 .block-type-7-content {
    height: auto;
    overflow: hidden;
    margin: 30px 0px 35px 0px;
  }
  #main.main-page .block-type-7 .block-type-7-content p {
    font-size: 28px;
    line-height: 36px;
    margin: 0px 0px 15px 0px;
  }
  #main.main-page .block-type-7 .block-type-7-request .inputs-row {
    margin: 0px 0px 25px 0px;
  }
  #main.main-page .block-type-7 .block-type-7-request .inputs-row input {
    width: 100%;
    font-size: 28px;
  }
  #main.main-page .block-type-7 .block-type-7-request .inputs-row input + input {
    margin-top: 30px;
    margin-left: 0px;
  }
  #main.main-page .block-type-7 .block-type-7-request .phone-and-button {
    text-align: center;
  }
  #main.main-page .block-type-7 .block-type-7-request .phone-and-button .phone {
    width: 100%;
    margin: 10px 10px 0px 0px;
    font-size: 28px;
    white-space: nowrap;
  }
  #main.main-page .block-type-7 .block-type-7-request .phone-and-button button {
    float: none;
    margin: 20px 0px -20px 0px;
    padding: 20px 45px;
    font-size: 26px;
    box-shadow: 9px 11px 30px 0px rgba(0,0,0,0.6);
  }
  #main.main-page .block-type-8 {
    margin-top: 70px;
    padding-top: 35px;
  }
  #main.main-page .block-type-8 .block-type-8-title {
    margin: 0px 0px 25px 0px;
  }
  #main.main-page .block-type-8 .block-type-8-title p {
    font-size: 40px;
    line-height: 50px;
  }
  #main.main-page .block-type-8 .block-type-8-title p span {
    line-height: 75px;
  }
  #main.main-page .block-type-8 .block-type-8-content p {
    font-size: 28px;
    line-height: 36px;
    margin: 0px 0px 15px 0px;
    padding-left: 40px;
  }
  #main.main-page .block-type-8 .block-type-8-content p:before {
    top: 5px;
    left: 0px;
    width: 20px;
    height: 10px;
  }
  #main.main-page .block-type-8 .block-type-8-request {
    margin-top: 70px;
    margin-bottom: 45px;
  }
  #main.main-page .block-type-8 .block-type-8-request .inputs-row {
    margin: 0px 0px 0px 0px;
  }
  #main.main-page .block-type-8 .block-type-8-request .inputs-row input {
    width: 100%;
    font-size: 28px;
  }
  #main.main-page .block-type-8 .block-type-8-request .inputs-row input + input {
    margin-top: 30px;
    margin-left: 0px;
  }
  #main.main-page .block-type-8 .block-type-8-request .inputs-row textarea {
    margin-top: 30px;
    font-size: 28px;
    height: 120px;
  }
  #main.main-page .block-type-8 .block-type-8-request .button {
    margin-top: 35px;
  }
  #main.main-page .block-type-8 .block-type-8-request .button button {
    font-size: 28px;
  }
  #main.main-page .block-type-9 {
    margin-top: 50px;
  }
  #main.main-page .block-type-9 .advantages-content {
    margin-top: 75px;
  }
  #main.main-page .block-type-9 .advantages-content .advantage {
    display: inline-block;
    vertical-align: top;
    float: none;
    margin-bottom: 40px;
  }
  #main.main-page .block-type-9 .advantages-content .advantage .image {
    margin: 0px 0px 25px 0px;
  }
  #main.main-page .block-type-9 .advantages-content .advantage .image img {
    height: 80px;
  }
  #main.main-page .block-type-9 .advantages-content .advantage .text .title {
    font-size: 28px;
    line-height: 36px;
  }
  #main.main-page .block-type-9 .advantages-content .advantage .text .short {
    margin: 15px 15px 0px 15px;
  }
  #main.main-page .block-type-9 .advantages-content .advantage .text .short p {
    font-size: 28px;
    line-height: 36px;
  }
  #main.main-page .block-type-10 {
    margin-top: 80px;
    padding-top: 40px;
  }
  #main.main-page .block-type-10 .block-title p {
    font-size: 40px;
    line-height: 60px;
  }
  #main.main-page .block-type-10 .block-title p span {
    line-height: 60px;
    display: block;
  }
  #main.main-page .block-type-10 .block-content p {
    margin: 20px 0px 20px 0px;
    font-size: 28px;
    line-height: 36px;
  }
  #main.main-page .block-type-10 .block-content button {
    margin: 25px 0px -20px 0px;
    padding: 25px 25px;
    font-size: 26px;
  }
  #main.main-page .block-type-11 .numbered-block-top {
    margin-bottom: 50px;
  }
  #main.main-page .block-type-11 .left-side p {
    margin: 0px 0px 25px 0px;
    padding: 0px 0px 0px 15px;
    font-size: 28px;
    line-height: 36px;
  }
  #main.main-page .block-type-11 .left-side p:before {
    width: 4px;
  }
  #main.main-page .block-type-11 .left-side .link {
    margin-top: 45px;
  }
  #main.main-page .block-type-11 .left-side .link a {
    font-size: 28px;
  }
  #main.main-page .block-type-11 .right-side {
    margin-bottom: 30px;
  }
  #main.main-page .block-type-11 .right-side .block-type-11-slider {
    height: 410px;
  }
  #main.main-page .block-type-12 {
    margin-top: 90px;
    padding-top: 40px;
  }
  #main.main-page .block-type-12 .block-type-12-title {
    margin: 0px 0px 25px 0px;
  }
  #main.main-page .block-type-12 .block-type-12-title p {
    font-size: 36px;
  }
  #main.main-page .block-type-12 .block-type-12-content p {
    margin: 0px 0px 20px 0px;
    font-size: 28px;
  }
  #main.main-page .block-type-12 .block-type-12-content p strong {
    font-size: 32px;
  }
  #main.main-page .block-type-12 .block-type-12-request {
    margin-top: 50px;
  }
  #main.main-page .block-type-12 .block-type-12-request .inputs-row input {
    width: 100%;
    font-size: 28px;
  }
  #main.main-page .block-type-12 .block-type-12-request .inputs-row input + input {
    margin-top: 30px;
    margin-left: 0px;
  }
  #main.main-page .block-type-12 .block-type-12-request button {
    font-size: 28px;
    margin: 35px 0px -15px 0px;
    padding: 25px 25px;
  }
  #main.main-page .block-type-13 {
    padding-bottom: 90px;
  }
  #main.main-page .block-type-13 .numbered-block-top {
    margin-top: 80px;
    margin-bottom: 70px;
  }
  #main.main-page .block-type-13 .block-type-13-request .inputs-row {
    margin: 0px 0px 30px 0px;
  }
  #main.main-page .block-type-13 .block-type-13-request .inputs-row input {
    font-size: 28px;
    padding: 5px 15px;
  }
  #main.main-page .block-type-13 .block-type-13-request .message-and-phone .message {
    margin: 0px 0px 10px 0px;
    color: #e12329;
    font-size: 28px;
    font-weight: bold;
  }
  #main.main-page .block-type-13 .block-type-13-request .message-and-phone .phone {
    margin: 0px 0px 45px 0px;
  }
  #main.main-page .block-type-13 .block-type-13-request .message-and-phone .phone a {
    font-size: 28px;
  }
  #main.main-page .block-type-13 .block-type-13-request .message-and-phone button {
    margin: 0px 0px -15px 0px;
    padding: 25px 25px;
    font-size: 28px;
  }
}
/* @import includes/aboutus-page.styl */
#main.aboutus-page .page-content {
  padding-bottom: 50px;
}
#main.aboutus-page .page-content .right-side {
  text-align: center;
}
#main.aboutus-page .page-content .right-side .social {
  display: inline-block;
  margin: 0px 0px 0px 0px;
}
#main.aboutus-page .page-content .right-side .social:before,
#main.aboutus-page .page-content .right-side .social:after {
  width: 100%;
  display: table;
  content: " ";
}
#main.aboutus-page .page-content .right-side .social:after {
  clear: both;
}
#main.aboutus-page .page-content .right-side .social + .social {
  margin-top: 30px;
}
/* @import includes/1200+/aboutus-page.styl */
/* @import includes/992-1200/aboutus-page.styl */
/* @import includes/768-991/aboutus-page.styl */
@media screen and (max-width: 991px) {
  #main.aboutus-page .page-content .right-side {
    margin-top: 30px;
  }
  #main.aboutus-page .page-content .right-side .social + .social {
    margin-top: 0px;
    margin-left: 30px;
  }
}
/* @import includes/parts-page.styl */
#main.parts-page .block-one {
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.parts-page .block-two {
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.parts-page .block-two .block-two-title {
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.parts-page .block-two .block-two-parts {
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.parts-page .block-two .block-two-parts .part {
  font-size: 0px;
}
#main.parts-page .block-two .block-two-parts .part .icon,
#main.parts-page .block-two .block-two-parts .part .text {
  display: inline-block;
  vertical-align: top;
}
#main.parts-page .block-two .block-two-parts .part .icon {
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.parts-page .block-two .block-two-parts .part .icon img {
  max-width: 100%;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.parts-page .block-two .block-two-parts .part .text {
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.parts-page .block-two .block-two-parts .part .text .part-title {
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.parts-page .block-two .block-two-parts .part .text .part-text p {
  margin: 0px;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.parts-page .block-two .form {
  box-shadow: 10px 10px 40px 0px rgba(0,0,0,0.25);
}
#main.parts-page .block-two .form .form-header {
  background-color: #ececec;
  font-weight: 600;
  text-align: center;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.parts-page .block-two .form .form-header span {
  color: #e12329;
}
#main.parts-page .block-two .form .form-content {
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.parts-page .block-two .form .form-content .legend {
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.parts-page .block-two .form .form-content .form-row {
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.parts-page .block-two .form .form-content .form-row textarea {
  resize: none;
}
#main.parts-page .block-two .form .form-content .form-row input,
#main.parts-page .block-two .form .form-content .form-row textarea {
  width: 100%;
  border: 1px solid #828282;
  padding: 5px 15px;
  color: #828282;
  font-weight: 300;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.parts-page .block-two .form .form-content .button {
  text-align: center;
}
#main.parts-page .block-two .form .form-content .button button {
  border: none;
  margin: 0px;
  background-color: #e12329;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  box-shadow: 9px 11px 30px 0px rgba(0,0,0,0.6);
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.parts-page .block-three {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.parts-page .block-three .block-three-title {
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.parts-page .block-three .block-three-title p {
  color: #fff;
  font-weight: 600;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.parts-page .block-three .block-three-title p span {
  color: #e12329;
}
#main.parts-page .block-three .form .inputs-row {
  margin: 0px 0px 0px 0px;
}
#main.parts-page .block-three .form .inputs-row input {
  color: #fff;
  display: inline-block;
  width: calc(50% - 10px);
  margin: 0px;
  padding: 5px 15px;
  border: none;
  border-bottom: 1px solid #b5b5b5;
  background-color: rgba(0,0,0,0);
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.parts-page .block-three .form .inputs-row input + input {
  margin-left: 20px;
}
#main.parts-page .block-three .form button {
  width: 100%;
  border: none;
  margin: -5px 0px -5px 0px;
  background-color: #e12329;
  color: #fff;
  font-weight: bold;
  white-space: nowrap;
  text-transform: uppercase;
  box-shadow: 9px 11px 30px 0px rgba(0,0,0,0.6);
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.parts-page .block-four {
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.parts-page .block-four .left-side .block-four-title {
  font-weight: 400;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.parts-page .block-four .left-side .block-four-content p {
  font-weight: 400;
}
#main.parts-page .block-four .right-side {
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.parts-page .block-four .right-side p {
  color: #fff;
  font-weight: bold;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.parts-page .block-four .right-side p strong {
  display: block;
  color: #e12329;
  font-size: inherit;
  font-weight: 900;
  line-height: inherit;
  text-transform: uppercase;
}
#main.parts-page .block-four .right-side button {
  border: none;
  margin: 0px;
  background-color: #e12329;
  color: #fff;
  font-weight: bold;
  white-space: nowrap;
  text-transform: uppercase;
  box-shadow: 9px 11px 30px 0px rgba(0,0,0,0.6);
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.parts-page .block-five {
  background-color: #ececec;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.parts-page .block-five .block-five-title {
  position: relative;
  z-index: 2;
}
#main.parts-page .block-five .block-five-title p {
  margin: 0px;
  font-weight: 700;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.parts-page .block-five .block-five-title p span {
  color: #e12329;
  display: block;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.parts-page .block-five .block-five-request {
  position: relative;
}
#main.parts-page .block-five .block-five-request .map {
  position: absolute;
  right: 0px;
  z-index: 0;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  text-align: right;
}
#main.parts-page .block-five .block-five-request .map img {
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  width: 100%;
}
#main.parts-page .block-five .block-five-request .form {
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  position: relative;
  z-index: 2;
}
#main.parts-page .block-five .block-five-request .form .legend {
  font-weight: 600;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.parts-page .block-five .block-five-request .form .inputs-row {
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.parts-page .block-five .block-five-request .form .inputs-row input {
  color: #000;
  display: inline-block;
  width: 100%;
  margin: 0px;
  padding: 5px 15px;
  border: none;
  border-bottom: 1px solid #b5b5b5;
  background-color: rgba(0,0,0,0);
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.parts-page .block-five .block-five-request .form button {
  border: none;
  background-color: #e12329;
  color: #fff;
  font-weight: bold;
  white-space: nowrap;
  text-transform: uppercase;
  box-shadow: 9px 11px 30px 0px rgba(0,0,0,0.6);
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.parts-page .block-six {
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.parts-page .block-six .block-six-title {
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.parts-page .block-six .block-six-title p {
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.parts-page .block-six .block-six-request .inputs-row {
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.parts-page .block-six .block-six-request .inputs-row input {
  color: #000;
  display: inline-block;
  margin: 0px;
  padding: 5px 15px;
  border: 1px solid #b5b5b5;
  background-color: rgba(0,0,0,0);
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  width: 100%;
}
#main.parts-page .block-six .block-six-request .inputs-row textarea {
  display: inline-block;
  vertical-align: top;
  color: #000;
  margin: 0px 10px 0px 0px;
  padding: 5px 15px;
  border: 1px solid #b5b5b5;
  background-color: rgba(0,0,0,0);
  resize: none;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.parts-page .block-six .block-six-request .inputs-row button {
  display: inline-block;
  vertical-align: top;
  border: none;
  background-color: #e12329;
  color: #fff;
  font-weight: bold;
  white-space: nowrap;
  text-transform: uppercase;
  box-shadow: 9px 11px 30px 0px rgba(0,0,0,0.6);
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.parts-page .block-six .block-six-request .security-row {
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.parts-page .block-six .block-six-request .security-row p {
  color: #828282;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.parts-page .block-six .block-six-request .security-row a {
  color: #000;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
/* @import includes/1200+/parts-page.styl */
@media screen and (min-width: 1200px) {
  #main.parts-page .block-one {
    margin-bottom: 60px;
  }
  #main.parts-page .block-two {
    margin-bottom: 60px;
  }
  #main.parts-page .block-two .block-two-title {
    font-size: 30px;
    line-height: 48px;
    margin-bottom: 60px;
  }
  #main.parts-page .block-two .block-two-parts .part {
    font-size: 0px;
  }
  #main.parts-page .block-two .block-two-parts .part .icon {
    width: 60px;
  }
  #main.parts-page .block-two .block-two-parts .part .text {
    width: calc(100% - 60px);
  }
  #main.parts-page .block-two .block-two-parts .part .text .part-title {
    font-size: 24px;
    margin: -2px 0px 5px 0px;
  }
  #main.parts-page .block-two .block-two-parts .part .text .part-text p {
    font-size: 20px;
    line-height: 30px;
  }
  #main.parts-page .block-two .block-two-parts .part + .part {
    margin-top: 35px;
  }
  #main.parts-page .block-two .form .form-header {
    padding: 40px 0px;
    font-size: 30px;
    line-height: 36px;
  }
  #main.parts-page .block-two .form .form-content {
    padding: 35px;
  }
  #main.parts-page .block-two .form .form-content .legend {
    margin: 0px 0px 45px 0px;
    font-size: 30px;
  }
  #main.parts-page .block-two .form .form-content .form-row {
    margin: 0px 0px 25px 0px;
  }
  #main.parts-page .block-two .form .form-content .form-row input {
    height: 45px;
    font-size: 18px;
  }
  #main.parts-page .block-two .form .form-content .form-row textarea {
    height: 115px;
    font-size: 18px;
  }
  #main.parts-page .block-two .form .form-content .button button {
    padding: 25px 45px;
    font-size: 20px;
  }
  #main.parts-page .block-three {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  #main.parts-page .block-three .block-three-title {
    margin: 0px 0px 65px 0px;
  }
  #main.parts-page .block-three .block-three-title p {
    font-size: 55px;
    line-height: 70px;
  }
  #main.parts-page .block-three .form .inputs-row {
    margin: 0px 0px 0px 0px;
  }
  #main.parts-page .block-three .form .inputs-row input {
    font-size: 24px;
  }
  #main.parts-page .block-three .form button {
    padding: 20px 40px;
    font-size: 20px;
  }
  #main.parts-page .block-four {
    padding-top: 70px;
  }
  #main.parts-page .block-four .left-side .block-four-title {
    font-size: 28px;
    line-height: 34px;
    margin: 0px 0px 25px 0px;
  }
  #main.parts-page .block-four .left-side .block-four-content p {
    font-size: 20px;
    line-height: 30px;
  }
  #main.parts-page .block-four .right-side {
    margin-bottom: -40px;
    padding: 40px 45px 40px 45px;
  }
  #main.parts-page .block-four .right-side p {
    margin: 0px 0px 25px 0px;
    font-size: 36px;
    line-height: 48px;
  }
  #main.parts-page .block-four .right-side button {
    padding: 25px 50px;
    font-size: 20px;
  }
  #main.parts-page .block-five {
    padding-top: 110px;
    background-color: #ececec;
  }
  #main.parts-page .block-five .block-five-title {
    position: relative;
    z-index: 2;
  }
  #main.parts-page .block-five .block-five-title p {
    font-size: 48px;
    line-height: 52px;
  }
  #main.parts-page .block-five .block-five-title p span {
    font-size: 36px;
    line-height: 52px;
  }
  #main.parts-page .block-five .block-five-request {
    position: relative;
  }
  #main.parts-page .block-five .block-five-request .map {
    bottom: -55px;
  }
  #main.parts-page .block-five .block-five-request .form {
    margin-top: 60px;
  }
  #main.parts-page .block-five .block-five-request .form .legend {
    font-size: 24px;
    margin: 0px 0px 30px 0px;
  }
  #main.parts-page .block-five .block-five-request .form .inputs-row {
    margin: 30px 0px 0px 0px;
  }
  #main.parts-page .block-five .block-five-request .form .inputs-row input {
    font-size: 24px;
  }
  #main.parts-page .block-five .block-five-request .form button {
    margin: 50px 0px -15px 0px;
    padding: 20px 40px;
    font-size: 20px;
  }
  #main.parts-page .block-six {
    margin-top: 190px;
    margin-bottom: 70px;
  }
  #main.parts-page .block-six .block-six-title {
    margin: 0px 0px 45px 0px;
  }
  #main.parts-page .block-six .block-six-title p {
    font-size: 30px;
  }
  #main.parts-page .block-six .block-six-request .inputs-row {
    margin-bottom: 10px;
  }
  #main.parts-page .block-six .block-six-request .inputs-row input {
    font-size: 24px;
  }
  #main.parts-page .block-six .block-six-request .inputs-row input + input {
    margin-left: 20px;
  }
  #main.parts-page .block-six .block-six-request .inputs-row textarea {
    width: 100%;
    height: 115px;
    font-size: 20px;
  }
  #main.parts-page .block-six .block-six-request .inputs-row button {
    width: 100%;
    height: 115px;
    padding: 20px 40px;
    font-size: 20px;
  }
  #main.parts-page .block-six .block-six-request .security-row {
    margin: 30px 0px 0px 0px;
  }
  #main.parts-page .block-six .block-six-request .security-row p {
    margin: 0px 0px 15px 0px;
    font-size: 16px;
    line-height: 16px;
  }
  #main.parts-page .block-six .block-six-request .security-row a {
    font-size: 24px;
    font-weight: 700;
  }
}
/* @import includes/992-1200/parts-page.styl */
@media screen and (min-width: 992px) and (max-width: 1199px) {
  #main.parts-page .block-one {
    margin-bottom: 60px;
  }
  #main.parts-page .block-two {
    margin-bottom: 60px;
  }
  #main.parts-page .block-two .block-two-title {
    font-size: 24px;
    line-height: 42px;
    margin-bottom: 50px;
  }
  #main.parts-page .block-two .block-two-parts .part {
    font-size: 0px;
  }
  #main.parts-page .block-two .block-two-parts .part .icon {
    width: 50px;
  }
  #main.parts-page .block-two .block-two-parts .part .text {
    width: calc(100% - 50px);
    padding-left: 5px;
  }
  #main.parts-page .block-two .block-two-parts .part .text .part-title {
    font-size: 20px;
    margin: -2px 0px 5px 0px;
  }
  #main.parts-page .block-two .block-two-parts .part .text .part-text p {
    font-size: 15px;
    line-height: 24px;
  }
  #main.parts-page .block-two .block-two-parts .part + .part {
    margin-top: 25px;
  }
  #main.parts-page .block-two .form .form-header {
    padding: 30px 0px;
    font-size: 23px;
    line-height: 30px;
  }
  #main.parts-page .block-two .form .form-content {
    padding: 35px;
  }
  #main.parts-page .block-two .form .form-content .legend {
    margin: 0px 0px 35px 0px;
    font-size: 22px;
  }
  #main.parts-page .block-two .form .form-content .form-row {
    margin: 0px 0px 20px 0px;
  }
  #main.parts-page .block-two .form .form-content .form-row input {
    font-size: 18px;
    height: 40px;
  }
  #main.parts-page .block-two .form .form-content .form-row textarea {
    height: 90px;
    font-size: 18px;
  }
  #main.parts-page .block-two .form .form-content .button button {
    padding: 17px 40px;
    font-size: 16px;
  }
  #main.parts-page .block-three {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  #main.parts-page .block-three .block-three-title {
    margin: 0px 0px 55px 0px;
  }
  #main.parts-page .block-three .block-three-title p {
    font-size: 44px;
    line-height: 59px;
  }
  #main.parts-page .block-three .form .inputs-row {
    margin: 0px 0px 0px 0px;
  }
  #main.parts-page .block-three .form .inputs-row input {
    font-size: 20px;
  }
  #main.parts-page .block-three .form button {
    padding: 20px 30px;
    font-size: 16px;
  }
  #main.parts-page .block-four {
    padding-top: 60px;
  }
  #main.parts-page .block-four .left-side .block-four-title {
    font-size: 22px;
    line-height: 28px;
    margin: 0px 0px 20px 0px;
  }
  #main.parts-page .block-four .left-side .block-four-content p {
    font-size: 16px;
    line-height: 26px;
  }
  #main.parts-page .block-four .right-side {
    margin-bottom: -40px;
    padding: 30px 35px 30px 35px;
  }
  #main.parts-page .block-four .right-side p {
    margin: 0px 0px 25px 0px;
    font-size: 33px;
    line-height: 45px;
  }
  #main.parts-page .block-four .right-side button {
    padding: 20px 40px;
    font-size: 17px;
  }
  #main.parts-page .block-five {
    padding-top: 90px;
    background-color: #ececec;
  }
  #main.parts-page .block-five .block-five-title {
    position: relative;
    z-index: 2;
  }
  #main.parts-page .block-five .block-five-title p {
    font-size: 38px;
    line-height: 45px;
  }
  #main.parts-page .block-five .block-five-title p span {
    font-size: 29px;
    line-height: 45px;
  }
  #main.parts-page .block-five .block-five-request {
    position: relative;
  }
  #main.parts-page .block-five .block-five-request .map {
    bottom: -45px;
  }
  #main.parts-page .block-five .block-five-request .map img {
    width: 80%;
  }
  #main.parts-page .block-five .block-five-request .form {
    margin-top: 40px;
  }
  #main.parts-page .block-five .block-five-request .form .legend {
    font-size: 20px;
    margin: 0px 0px 25px 0px;
  }
  #main.parts-page .block-five .block-five-request .form .inputs-row {
    margin: 25px 0px 0px 0px;
  }
  #main.parts-page .block-five .block-five-request .form .inputs-row input {
    font-size: 16px;
  }
  #main.parts-page .block-five .block-five-request .form button {
    margin: 40px 0px -15px 0px;
    padding: 20px 30px;
    font-size: 17px;
  }
  #main.parts-page .block-six {
    margin-top: 170px;
    margin-bottom: 60px;
  }
  #main.parts-page .block-six .block-six-title {
    margin: 0px 0px 35px 0px;
  }
  #main.parts-page .block-six .block-six-title p {
    font-size: 24px;
  }
  #main.parts-page .block-six .block-six-request .inputs-row {
    margin-bottom: 10px;
  }
  #main.parts-page .block-six .block-six-request .inputs-row input {
    font-size: 16px;
  }
  #main.parts-page .block-six .block-six-request .inputs-row input + input {
    margin-left: 20px;
  }
  #main.parts-page .block-six .block-six-request .inputs-row textarea {
    width: 100%;
    height: 95px;
    font-size: 16px;
  }
  #main.parts-page .block-six .block-six-request .inputs-row button {
    width: 100%;
    height: 95px;
    padding: 20px 30px;
    font-size: 16px;
  }
  #main.parts-page .block-six .block-six-request .security-row {
    margin: 20px 0px 0px 0px;
  }
  #main.parts-page .block-six .block-six-request .security-row p {
    margin: 0px 0px 10px 0px;
    font-size: 13px;
    line-height: 13px;
  }
  #main.parts-page .block-six .block-six-request .security-row a {
    font-size: 20px;
    font-weight: 700;
  }
}
/* @import includes/768-991/parts-page.styl */
@media screen and (max-width: 991px) {
  #main.parts-page .block-one {
    margin-bottom: 60px;
  }
  #main.parts-page .block-two {
    margin-bottom: 60px;
  }
  #main.parts-page .block-two .block-two-title {
    font-size: 24px;
    line-height: 42px;
    margin-bottom: 50px;
  }
  #main.parts-page .block-two .block-two-parts .part {
    font-size: 0px;
  }
  #main.parts-page .block-two .block-two-parts .part .icon {
    width: 50px;
  }
  #main.parts-page .block-two .block-two-parts .part .text {
    width: calc(100% - 50px);
    padding-left: 15px;
  }
  #main.parts-page .block-two .block-two-parts .part .text .part-title {
    font-size: 20px;
    margin: -2px 0px 5px 0px;
  }
  #main.parts-page .block-two .block-two-parts .part .text .part-text p {
    font-size: 15px;
    line-height: 24px;
  }
  #main.parts-page .block-two .block-two-parts .part + .part {
    margin-top: 30px;
  }
  #main.parts-page .block-two .form {
    margin-bottom: 50px;
  }
  #main.parts-page .block-two .form .form-header {
    padding: 20px 0px;
    font-size: 30px;
    line-height: 36px;
  }
  #main.parts-page .block-two .form .form-content {
    padding: 35px;
  }
  #main.parts-page .block-two .form .form-content .legend {
    margin: 0px 0px 35px 0px;
    font-size: 30px;
  }
  #main.parts-page .block-two .form .form-content .form-row {
    margin: 0px 0px 20px 0px;
  }
  #main.parts-page .block-two .form .form-content .form-row input {
    font-size: 20px;
    height: 40px;
  }
  #main.parts-page .block-two .form .form-content .form-row textarea {
    height: 90px;
    font-size: 20px;
  }
  #main.parts-page .block-two .form .form-content .button button {
    padding: 17px 40px;
    font-size: 16px;
  }
  #main.parts-page .block-three {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  #main.parts-page .block-three .block-three-title {
    margin: 0px 0px 55px 0px;
  }
  #main.parts-page .block-three .block-three-title p {
    font-size: 44px;
    line-height: 59px;
  }
  #main.parts-page .block-three .form .inputs-row {
    margin: 0px 0px 0px 0px;
  }
  #main.parts-page .block-three .form .inputs-row input {
    font-size: 20px;
  }
  #main.parts-page .block-three .form .button {
    margin-top: 30px;
  }
  #main.parts-page .block-three .form button {
    padding: 20px 30px;
    font-size: 16px;
  }
  #main.parts-page .block-four {
    padding-top: 60px;
  }
  #main.parts-page .block-four .left-side .block-four-title {
    font-size: 22px;
    line-height: 28px;
    margin: 0px 0px 20px 0px;
  }
  #main.parts-page .block-four .left-side .block-four-content p {
    font-size: 16px;
    line-height: 26px;
  }
  #main.parts-page .block-four .right-side {
    margin-bottom: -30px;
    padding: 20px 25px 20px 25px;
  }
  #main.parts-page .block-four .right-side p {
    margin: 0px 0px 20px 0px;
    font-size: 30px;
    line-height: 40px;
  }
  #main.parts-page .block-four .right-side button {
    padding: 20px 40px;
    font-size: 17px;
  }
  #main.parts-page .block-five {
    padding-top: 90px;
    background-color: #ececec;
  }
  #main.parts-page .block-five .block-five-title {
    position: relative;
    z-index: 2;
  }
  #main.parts-page .block-five .block-five-title p {
    font-size: 31px;
    line-height: 39px;
  }
  #main.parts-page .block-five .block-five-title p span {
    font-size: 29px;
    line-height: 45px;
  }
  #main.parts-page .block-five .block-five-request {
    position: relative;
  }
  #main.parts-page .block-five .block-five-request .map {
    bottom: -35px;
  }
  #main.parts-page .block-five .block-five-request .map img {
    width: 70%;
  }
  #main.parts-page .block-five .block-five-request .form {
    margin-top: 40px;
  }
  #main.parts-page .block-five .block-five-request .form .legend {
    font-size: 22px;
    margin: 0px 0px 25px 0px;
  }
  #main.parts-page .block-five .block-five-request .form .inputs-row {
    margin: 25px 0px 0px 0px;
  }
  #main.parts-page .block-five .block-five-request .form .inputs-row input {
    font-size: 16px;
  }
  #main.parts-page .block-five .block-five-request .form button {
    margin: 40px 0px -15px 0px;
    padding: 20px 30px;
    font-size: 17px;
  }
  #main.parts-page .block-six {
    margin-top: 170px;
    margin-bottom: 60px;
  }
  #main.parts-page .block-six .block-six-title {
    margin: 0px 0px 35px 0px;
  }
  #main.parts-page .block-six .block-six-title p {
    font-size: 24px;
  }
  #main.parts-page .block-six .block-six-request .inputs-row {
    margin-bottom: 0px;
  }
  #main.parts-page .block-six .block-six-request .inputs-row input {
    font-size: 16px;
    margin-bottom: 10px;
  }
  #main.parts-page .block-six .block-six-request .inputs-row input + input {
    margin-left: 20px;
  }
  #main.parts-page .block-six .block-six-request .inputs-row textarea {
    width: 100%;
    height: 95px;
    font-size: 16px;
    margin-bottom: 10px;
  }
  #main.parts-page .block-six .block-six-request .inputs-row button {
    width: 100%;
    height: 95px;
    padding: 20px 30px;
    font-size: 16px;
  }
  #main.parts-page .block-six .block-six-request .security-row {
    margin: 20px 0px 0px 0px;
  }
  #main.parts-page .block-six .block-six-request .security-row p {
    margin: 0px 0px 10px 0px;
    font-size: 13px;
    line-height: 13px;
  }
  #main.parts-page .block-six .block-six-request .security-row a {
    font-size: 20px;
    font-weight: 700;
  }
}
/* @import includes/768-/parts-page.styl */
@media screen and (max-width: 991px) {
  #main.parts-page .block-one {
    margin-bottom: 60px;
  }
  #main.parts-page .block-two {
    margin-bottom: 60px;
  }
  #main.parts-page .block-two .block-two-title {
    font-size: 28px;
    line-height: 42px;
    margin-bottom: 50px;
  }
  #main.parts-page .block-two .block-two-parts .part {
    font-size: 0px;
  }
  #main.parts-page .block-two .block-two-parts .part .icon {
    width: 60px;
  }
  #main.parts-page .block-two .block-two-parts .part .icon img {
    width: 60px;
  }
  #main.parts-page .block-two .block-two-parts .part .text {
    width: calc(100% - 60px);
    padding-left: 15px;
  }
  #main.parts-page .block-two .block-two-parts .part .text .part-title {
    font-size: 28px;
    margin: 0px 0px 10px 0px;
  }
  #main.parts-page .block-two .block-two-parts .part .text .part-text p {
    font-size: 24px;
    line-height: 30px;
  }
  #main.parts-page .block-two .block-two-parts .part + .part {
    margin-top: 35px;
  }
  #main.parts-page .block-two .form {
    margin-bottom: 50px;
  }
  #main.parts-page .block-two .form .form-header {
    padding: 20px 0px;
    font-size: 36px;
    line-height: 42px;
  }
  #main.parts-page .block-two .form .form-content {
    padding: 35px;
  }
  #main.parts-page .block-two .form .form-content .legend {
    margin: 0px 0px 35px 0px;
    font-size: 30px;
  }
  #main.parts-page .block-two .form .form-content .form-row {
    margin: 0px 0px 30px 0px;
  }
  #main.parts-page .block-two .form .form-content .form-row input {
    font-size: 28px;
    height: 40px;
  }
  #main.parts-page .block-two .form .form-content .form-row textarea {
    height: 120px;
    font-size: 28px;
  }
  #main.parts-page .block-two .form .form-content .button button {
    padding: 17px 40px;
    font-size: 28px;
  }
  #main.parts-page .block-three {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  #main.parts-page .block-three .block-three-title {
    margin: 0px 0px 55px 0px;
  }
  #main.parts-page .block-three .block-three-title p {
    font-size: 44px;
    line-height: 59px;
  }
  #main.parts-page .block-three .form .inputs-row {
    margin: 0px 0px 0px 0px;
  }
  #main.parts-page .block-three .form .inputs-row input {
    width: 100%;
    font-size: 28px;
  }
  #main.parts-page .block-three .form .inputs-row input + input {
    margin-left: 0px;
    margin-top: 30px;
  }
  #main.parts-page .block-three .form .button {
    margin-top: 30px;
    text-align: center;
  }
  #main.parts-page .block-three .form button {
    float: none;
    width: auto;
    padding: 20px 30px;
    font-size: 28px;
  }
  #main.parts-page .block-four {
    padding-top: 60px;
  }
  #main.parts-page .block-four .left-side .block-four-title {
    font-size: 33px;
    line-height: 41px;
    margin: 0px 0px 20px 0px;
  }
  #main.parts-page .block-four .left-side .block-four-content {
    padding-bottom: 30px;
  }
  #main.parts-page .block-four .left-side .block-four-content p {
    font-size: 28px;
    line-height: 36px;
  }
  #main.parts-page .block-four .right-side {
    margin-bottom: -30px;
    padding: 20px 25px 20px 25px;
  }
  #main.parts-page .block-four .right-side p {
    margin: 0px 0px 20px 0px;
    font-size: 36px;
    line-height: 46px;
  }
  #main.parts-page .block-four .right-side button {
    padding: 20px 40px;
    font-size: 28px;
  }
  #main.parts-page .block-five {
    padding-top: 90px;
    background-color: #ececec;
  }
  #main.parts-page .block-five .block-five-title {
    position: relative;
    z-index: 2;
  }
  #main.parts-page .block-five .block-five-title p {
    font-size: 33px;
    line-height: 41px;
  }
  #main.parts-page .block-five .block-five-title p span {
    font-size: 29px;
    line-height: 45px;
  }
  #main.parts-page .block-five .block-five-request {
    position: relative;
  }
  #main.parts-page .block-five .block-five-request .map {
    bottom: -35px;
  }
  #main.parts-page .block-five .block-five-request .map img {
    width: 70%;
  }
  #main.parts-page .block-five .block-five-request .form {
    margin-top: 40px;
  }
  #main.parts-page .block-five .block-five-request .form .legend {
    font-size: 30px;
    margin: 0px 0px 25px 0px;
  }
  #main.parts-page .block-five .block-five-request .form .inputs-row {
    margin: 25px 0px 0px 0px;
  }
  #main.parts-page .block-five .block-five-request .form .inputs-row input {
    font-size: 28px;
  }
  #main.parts-page .block-five .block-five-request .form button {
    margin: 40px 0px -15px 0px;
    padding: 20px 30px;
    font-size: 28px;
  }
  #main.parts-page .block-six {
    margin-top: 170px;
    margin-bottom: 60px;
  }
  #main.parts-page .block-six .block-six-title {
    margin: 0px 0px 35px 0px;
  }
  #main.parts-page .block-six .block-six-title p {
    font-size: 28px;
  }
  #main.parts-page .block-six .block-six-request .inputs-row {
    margin-bottom: 0px;
  }
  #main.parts-page .block-six .block-six-request .inputs-row input {
    font-size: 28px;
    margin-bottom: 10px;
  }
  #main.parts-page .block-six .block-six-request .inputs-row input + input {
    margin-left: 20px;
  }
  #main.parts-page .block-six .block-six-request .inputs-row textarea {
    width: 100%;
    height: 95px;
    font-size: 28px;
    margin-bottom: 10px;
  }
  #main.parts-page .block-six .block-six-request .inputs-row button {
    width: 100%;
    height: 95px;
    padding: 15px 30px;
    font-size: 28px;
  }
  #main.parts-page .block-six .block-six-request .security-row {
    margin: 20px 0px 0px 0px;
  }
  #main.parts-page .block-six .block-six-request .security-row p {
    margin: 0px 0px 10px 0px;
    font-size: 22px;
    line-height: 22px;
  }
  #main.parts-page .block-six .block-six-request .security-row a {
    font-size: 28px;
    font-weight: 700;
  }
}
/* @import includes/contacts-page.styl */
#main.contacts-page .page-content {
  margin-bottom: 0px;
  position: relative;
  z-index: 2;
}
#main.contacts-page .page-content .info-rows .info-row {
  font-size: 0px;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.contacts-page .page-content .info-rows .info-row .icon {
  display: inline-block;
  vertical-align: top;
  text-align: center;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.contacts-page .page-content .info-rows .info-row .text {
  display: inline-block;
  vertical-align: top;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.contacts-page .page-content .info-rows .info-row span {
  display: block;
}
#main.contacts-page .page-content .info-rows .info-row.address .text p {
  margin: 0px;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.contacts-page .page-content .info-rows .info-row.email .text a {
  text-decoration: underline;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.contacts-page .page-content .info-rows .info-row.email .text span {
  color: #b5b5b5;
}
#main.contacts-page .page-content .info-rows .info-row.phone .text a {
  font-weight: 800;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.contacts-page .page-content .info-rows .info-row.phone .text button {
  margin: 5px 0px 0px 0px;
  padding: 0px;
  display: block;
  border: none;
  background-color: rgba(0,0,0,0);
  color: #e12329;
  font-weight: 600;
  text-decoration: underline;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.contacts-page .page-content .form {
  box-shadow: 10px 10px 40px 0px rgba(0,0,0,0.25);
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.contacts-page .page-content .form .legend {
  font-weight: 700;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.contacts-page .page-content .form .input-row {
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.contacts-page .page-content .form .input-row input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #828282;
  padding: 5px 15px;
  color: #000;
  font-weight: 300;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.contacts-page .page-content .form .input-row input:focus,
#main.contacts-page .page-content .form .input-row input:active {
  border-color: #e12329;
}
#main.contacts-page .page-content .form .button {
  text-align: right;
}
#main.contacts-page .page-content .form .button button {
  border: none;
  margin: 0px;
  background-color: #e12329;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  box-shadow: 9px 11px 30px 0px rgba(0,0,0,0.6);
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
/* @import includes/1200+/contacts-page.styl */
@media screen and (min-width: 1200px) {
  #main.contacts-page .page-content {
    margin-bottom: 0px;
    position: relative;
    z-index: 2;
  }
  #main.contacts-page .page-content .info-rows .info-row {
    margin: 0px 0px 35px 0px;
  }
  #main.contacts-page .page-content .info-rows .info-row .icon {
    width: 35px;
    margin: 0px 15px 0px 0px;
  }
  #main.contacts-page .page-content .info-rows .info-row .text {
    width: calc(100% - 50px);
  }
  #main.contacts-page .page-content .info-rows .info-row.address .text p {
    font-size: 24px;
    line-height: 30px;
  }
  #main.contacts-page .page-content .info-rows .info-row.address .text span {
    margin-top: 10px;
    font-size: 14px;
    line-height: 22px;
  }
  #main.contacts-page .page-content .info-rows .info-row.email .text a {
    font-size: 24px;
    line-height: 24px;
  }
  #main.contacts-page .page-content .info-rows .info-row.email .text span {
    margin-top: 5px;
    font-size: 16px;
    line-height: 24px;
  }
  #main.contacts-page .page-content .info-rows .info-row.email + .email {
    margin-top: -20px;
  }
  #main.contacts-page .page-content .info-rows .info-row.phone .text a {
    font-size: 33px;
  }
  #main.contacts-page .page-content .info-rows .info-row.phone .text button {
    font-size: 18px;
  }
  #main.contacts-page .page-content .info-rows .info-row.phone .text .additional {
    margin: 10px 0px;
  }
  #main.contacts-page .page-content .info-rows .info-row.phone .text .additional .label {
    font-size: 22px;
    margin-bottom: 7px;
  }
  #main.contacts-page .page-content .info-rows .info-row.phone .text .additional a {
    display: inline-block;
    font-size: 18px;
    margin-bottom: 3px;
  }
  #main.contacts-page .page-content .form {
    margin-top: -50px;
    padding: 30px 50px;
  }
  #main.contacts-page .page-content .form .legend {
    font-size: 30px;
    margin: 0px 0px 35px 0px;
  }
  #main.contacts-page .page-content .form .input-row {
    margin: 0px 0px 25px 0px;
  }
  #main.contacts-page .page-content .form .input-row input {
    font-size: 24px;
  }
  #main.contacts-page .page-content .form .button button {
    padding: 25px 60px;
    font-size: 20px;
  }
}
/* @import includes/992-1200/contacts-page.styl */
@media screen and (min-width: 992px) and (max-width: 1199px) {
  #main.contacts-page .page-content {
    margin-bottom: 0px;
    position: relative;
    z-index: 2;
  }
  #main.contacts-page .page-content .info-rows .info-row {
    margin: 0px 0px 35px 0px;
  }
  #main.contacts-page .page-content .info-rows .info-row .icon {
    width: 35px;
    margin: 0px 15px 0px 0px;
  }
  #main.contacts-page .page-content .info-rows .info-row .text {
    width: calc(100% - 50px);
  }
  #main.contacts-page .page-content .info-rows .info-row.address .text p {
    font-size: 19px;
    line-height: 25px;
  }
  #main.contacts-page .page-content .info-rows .info-row.address .text span {
    margin-top: 3px;
    font-size: 12px;
    line-height: 20px;
  }
  #main.contacts-page .page-content .info-rows .info-row.email .text a {
    font-size: 19px;
    line-height: 19px;
  }
  #main.contacts-page .page-content .info-rows .info-row.email .text span {
    margin-top: 3px;
    font-size: 14px;
    line-height: 22px;
  }
  #main.contacts-page .page-content .info-rows .info-row.email + .email {
    margin-top: -20px;
  }
  #main.contacts-page .page-content .info-rows .info-row.phone .text a {
    font-size: 28px;
  }
  #main.contacts-page .page-content .info-rows .info-row.phone .text button {
    font-size: 14px;
  }
  #main.contacts-page .page-content .info-rows .info-row.phone .text .additional {
    margin: 10px 0px;
  }
  #main.contacts-page .page-content .info-rows .info-row.phone .text .additional .label {
    font-size: 18px;
    margin-bottom: 7px;
  }
  #main.contacts-page .page-content .info-rows .info-row.phone .text .additional a {
    display: inline-block;
    font-size: 14px;
    margin-bottom: 3px;
  }
  #main.contacts-page .page-content .form {
    margin-top: -40px;
    padding: 20px 40px;
  }
  #main.contacts-page .page-content .form .legend {
    font-size: 25px;
    margin: 0px 0px 25px 0px;
  }
  #main.contacts-page .page-content .form .input-row {
    margin: 0px 0px 20px 0px;
  }
  #main.contacts-page .page-content .form .input-row input {
    font-size: 18px;
  }
  #main.contacts-page .page-content .form .button button {
    padding: 20px 50px;
    font-size: 16px;
  }
}
/* @import includes/768-991/contacts-page.styl */
@media screen and (max-width: 991px) {
  #main.contacts-page .page-content {
    margin-bottom: 0px;
    position: relative;
    z-index: 2;
  }
  #main.contacts-page .page-content .info-rows {
    margin-bottom: 50px;
  }
  #main.contacts-page .page-content .info-rows .info-row {
    margin: 0px 0px 35px 0px;
  }
  #main.contacts-page .page-content .info-rows .info-row .icon {
    width: 35px;
    margin: 0px 15px 0px 0px;
  }
  #main.contacts-page .page-content .info-rows .info-row .text {
    width: calc(100% - 50px);
  }
  #main.contacts-page .page-content .info-rows .info-row.address .text p {
    font-size: 19px;
    line-height: 25px;
  }
  #main.contacts-page .page-content .info-rows .info-row.email .text a {
    font-size: 19px;
    line-height: 19px;
  }
  #main.contacts-page .page-content .info-rows .info-row.phone .text a {
    font-size: 28px;
  }
  #main.contacts-page .page-content .info-rows .info-row.phone .text button {
    font-size: 14px;
  }
  #main.contacts-page .page-content .form {
    margin-top: -40px;
    padding: 20px 40px;
  }
  #main.contacts-page .page-content .form .legend {
    font-size: 25px;
    margin: 0px 0px 25px 0px;
  }
  #main.contacts-page .page-content .form .input-row {
    margin: 0px 0px 20px 0px;
  }
  #main.contacts-page .page-content .form .input-row input {
    font-size: 18px;
  }
  #main.contacts-page .page-content .form .button button {
    padding: 20px 50px;
    font-size: 16px;
  }
}
/* @import includes/768-/contacts-page.styl */
@media screen and (max-width: 991px) {
  #main.contacts-page .page-content {
    margin-bottom: 0px;
    position: relative;
    z-index: 2;
  }
  #main.contacts-page .page-content .info-rows {
    margin-bottom: 50px;
  }
  #main.contacts-page .page-content .info-rows .info-row {
    margin: 0px 0px 35px 0px;
  }
  #main.contacts-page .page-content .info-rows .info-row .icon {
    width: 35px;
    margin: 0px 15px 0px 0px;
  }
  #main.contacts-page .page-content .info-rows .info-row .text {
    width: calc(100% - 50px);
  }
  #main.contacts-page .page-content .info-rows .info-row.address .text p {
    font-size: 28px;
    line-height: 36px;
  }
  #main.contacts-page .page-content .info-rows .info-row.email .text a {
    font-size: 28px;
    line-height: 28px;
  }
  #main.contacts-page .page-content .info-rows .info-row.phone .text a {
    font-size: 28px;
  }
  #main.contacts-page .page-content .info-rows .info-row.phone .text button {
    font-size: 28px;
  }
  #main.contacts-page .page-content .form {
    margin-top: -40px;
    padding: 20px 40px;
  }
  #main.contacts-page .page-content .form .legend {
    font-size: 28px;
    margin: 0px 0px 25px 0px;
  }
  #main.contacts-page .page-content .form .input-row {
    margin: 0px 0px 20px 0px;
  }
  #main.contacts-page .page-content .form .input-row input {
    font-size: 28px;
  }
  #main.contacts-page .page-content .form .button button {
    padding: 20px 50px;
    font-size: 28px;
  }
}
/* @import includes/bodyrepair-page.styl */
#main.bodyrepairs-page .sb {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.bodyrepairs-page .sb.editable .wrapper {
  position: relative;
}
#main.bodyrepairs-page .sb.editable .wrapper .u-can-edit-this {
  position: absolute;
  display: inline-block;
  background-color: #e12329;
  top: 0px;
  right: 0px;
  z-index: -50;
  width: 40px;
  height: 40px;
  padding: 8px;
  margin: 0px;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.bodyrepairs-page .sb.editable .wrapper .u-can-edit-this:before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  line-height: 24px;
  width: 24px;
  height: 24px;
  background-image: url("images/pencil-edit-button.png");
}
#main.bodyrepairs-page .sb.editable .wrapper:hover .u-can-edit-this {
  z-index: 500;
  opacity: 1;
}
#main.bodyrepairs-page .sb.sb-type-1 .block-content:before,
#main.bodyrepairs-page .sb.sb-type-1 .block-content:after {
  width: 100%;
  display: table;
  content: " ";
}
#main.bodyrepairs-page .sb.sb-type-1 .block-content:after {
  clear: both;
}
#main.bodyrepairs-page .sb.sb-type-1 .block-content .title {
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.bodyrepairs-page .sb.sb-type-1 .block-content .text p {
  color: #fff;
  font-weight: 600;
  position: relative;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.bodyrepairs-page .sb.sb-type-1 .block-content .text li {
  color: #fff;
  font-weight: 600;
  position: relative;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.bodyrepairs-page .sb.sb-type-1 .block-content .text li:before {
  content: '';
  position: absolute;
  background-color: #e12329;
  margin: 0px;
}
#main.bodyrepairs-page .sb.sb-type-2 .block-content .title p {
  margin: 0px;
  color: #fff;
  font-weight: 600;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.bodyrepairs-page .sb.sb-type-2 .block-content .title p span {
  display: block;
  color: #e12329;
  font-weight: 800;
  text-transform: uppercase;
}
#main.bodyrepairs-page .sb.sb-type-2 .block-content .text p {
  color: #fff;
  font-weight: 300;
  position: relative;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.bodyrepairs-page .sb.sb-type-2 .block-content .text p:before {
  content: '';
  position: absolute;
  background-color: #e12329;
}
#main.bodyrepairs-page .sb.sb-type-3 .block-content .title p {
  margin: 0px;
  color: #fff;
  font-weight: 600;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.bodyrepairs-page .sb.sb-type-3 .block-content .title p span {
  display: block;
  color: #e12329;
  font-weight: 800;
  text-transform: uppercase;
}
#main.bodyrepairs-page .sb.sb-type-3 .block-content .text p {
  color: #fff;
  font-weight: 600;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.bodyrepairs-page .sb.sb-type-3 .block-content .text p a {
  display: block;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  white-space: nowrap;
}
#main.bodyrepairs-page .sb.sb-type-3 .block-content .text button {
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  width: 100%;
  border: none;
  background-color: #e12329;
  color: #fff;
  font-weight: 300;
  white-space: nowrap;
  text-transform: uppercase;
  box-shadow: 9px 11px 30px 0px rgba(0,0,0,0.6);
}
#main.bodyrepairs-page.parental .page-content .finished-works {
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.bodyrepairs-page.parental .page-content .finished-works .finished-works-title {
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.bodyrepairs-page.parental .page-content .finished-works .bodyrepairs-slider {
  width: 100%;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.bodyrepairs-page.parental .page-content .finished-works .bodyrepairs-slider .images .image .text {
  width: 30%;
  float: right;
  position: relative;
  z-index: 5;
  user-select: none;
}
#main.bodyrepairs-page.parental .page-content .finished-works .bodyrepairs-slider .images .image .text .block .title {
  display: inline-block;
  vertical-align: top;
  font-weight: 800;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.bodyrepairs-page.parental .page-content .finished-works .bodyrepairs-slider .images .image .text .block .content {
  display: inline-block;
  vertical-align: top;
  font-weight: 400;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.bodyrepairs-page.parental .page-content .finished-works .bodyrepairs-slider .images .image .text .block .content p {
  margin: 0px;
}
#main.bodyrepairs-page.parental .page-content .finished-works .bodyrepairs-slider .images .image .text .block.works .title {
  display: block;
}
#main.bodyrepairs-page.parental .page-content .finished-works .bodyrepairs-slider .images .image .text .block.works .content {
  display: block;
}
#main.bodyrepairs-page.parental .page-content .finished-works .bodyrepairs-slider .images .image .text .block.works .content p {
  position: relative;
}
#main.bodyrepairs-page.parental .page-content .finished-works .bodyrepairs-slider .images .image .text .block.works .content p:before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0px;
  background-color: #e12329;
}
#main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead {
  background-size: cover;
  background-position: center center;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead .bodyrepairs-page-parent-lead-title {
  margin-bottom: 60px;
}
#main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead .bodyrepairs-page-parent-lead-title p {
  margin: 0px;
  color: #fff;
  font-weight: 600;
}
#main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead .bodyrepairs-page-parent-lead-title p strong {
  color: #e12329;
  font-weight: 600;
  text-transform: uppercase;
}
#main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead .bodyrepairs-page-parent-lead-request {
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead .bodyrepairs-page-parent-lead-request .inputs-row {
  margin-left: -10px;
  font-size: 0px;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead .bodyrepairs-page-parent-lead-request .inputs-row:before,
#main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead .bodyrepairs-page-parent-lead-request .inputs-row:after {
  width: 100%;
  display: table;
  content: " ";
}
#main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead .bodyrepairs-page-parent-lead-request .inputs-row:after {
  clear: both;
}
#main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead .bodyrepairs-page-parent-lead-request .inputs-row input {
  width: 100%;
  color: #fff;
  display: inline-block;
  margin: 0px;
  padding: 5px 15px;
  border: none;
  border-bottom: 1px solid #b5b5b5;
  background-color: rgba(0,0,0,0);
}
#main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead .bodyrepairs-page-parent-lead-request .inputs-row .attach-photo {
  border: 1px solid #fff;
  display: inline-block;
  position: relative;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead .bodyrepairs-page-parent-lead-request .inputs-row .attach-photo:before,
#main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead .bodyrepairs-page-parent-lead-request .inputs-row .attach-photo:after {
  content: '';
  background-color: #fff;
  position: absolute;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  transform: rotate(0deg);
  -o-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
}
#main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead .bodyrepairs-page-parent-lead-request .inputs-row .attach-photo:after {
  transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
}
#main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead .bodyrepairs-page-parent-lead-request .inputs-row .attach-photo:hover:before,
#main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead .bodyrepairs-page-parent-lead-request .inputs-row .attach-photo:hover:after {
  background-color: #e12329;
}
#main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead .bodyrepairs-page-parent-lead-request .inputs-row .attach-photo.attached {
  border-color: #e12329;
}
#main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead .bodyrepairs-page-parent-lead-request .inputs-row .attach-photo.attached:before,
#main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead .bodyrepairs-page-parent-lead-request .inputs-row .attach-photo.attached:after {
  background-color: #e12329;
}
#main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead .bodyrepairs-page-parent-lead-request button {
  border: none;
  margin: 0px;
  background-color: #e12329;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  box-shadow: 9px 11px 30px 0px rgba(0,0,0,0.6);
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead .for-call .circle {
  position: relative;
  border: 1px solid #e12329;
  border-radius: 50%;
}
#main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead .for-call .circle img {
  position: absolute;
  margin: 0px auto;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead .for-call .circle p {
  position: absolute;
  color: #fff;
  font-weight: bold;
  text-align: center;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
/* @import includes/1200+/bodyrepair-page.styl */
@media screen and (min-width: 1200px) {
  #main.bodyrepairs-page .sb {
    margin: 20px auto;
  }
  #main.bodyrepairs-page .sb.sb-type-1 .block-content .title {
    font-size: 40px;
    margin: 50px 0px 70px 0px;
  }
  #main.bodyrepairs-page .sb.sb-type-1 .block-content .text {
    margin: 70px 0px 50px 0px;
  }
  #main.bodyrepairs-page .sb.sb-type-1 .block-content .text p {
    font-size: 30px;
    margin: 0px 0px 15px 0px;
  }
  #main.bodyrepairs-page .sb.sb-type-1 .block-content .text li {
    font-size: 30px;
    margin: 0px 0px 15px 0px;
    padding-left: 25px;
  }
  #main.bodyrepairs-page .sb.sb-type-1 .block-content .text li:before {
    top: 10px;
    left: 0px;
    width: 12px;
    height: 12px;
  }
  #main.bodyrepairs-page .sb.sb-type-2 .block-content {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  #main.bodyrepairs-page .sb.sb-type-2 .block-content:before,
  #main.bodyrepairs-page .sb.sb-type-2 .block-content:after {
    width: 100%;
    display: table;
    content: " ";
  }
  #main.bodyrepairs-page .sb.sb-type-2 .block-content:after {
    clear: both;
  }
  #main.bodyrepairs-page .sb.sb-type-2 .block-content .title p {
    font-size: 55px;
    line-height: 60px;
  }
  #main.bodyrepairs-page .sb.sb-type-2 .block-content .title p span {
    line-height: 80px;
  }
  #main.bodyrepairs-page .sb.sb-type-2 .block-content .text {
    margin: 30px 0px 0px 0px;
  }
  #main.bodyrepairs-page .sb.sb-type-2 .block-content .text p {
    margin: 0px 0px 20px 0px;
    font-size: 24px;
    padding-left: 60px;
  }
  #main.bodyrepairs-page .sb.sb-type-2 .block-content .text p:before {
    top: 5px;
    left: 0px;
    width: 30px;
    height: 15px;
  }
  #main.bodyrepairs-page .sb.sb-type-3 .block-content {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  #main.bodyrepairs-page .sb.sb-type-3 .block-content .title p {
    font-size: 47px;
    line-height: 80px;
  }
  #main.bodyrepairs-page .sb.sb-type-3 .block-content .title p span {
    line-height: 80px;
  }
  #main.bodyrepairs-page .sb.sb-type-3 .block-content .text p {
    margin: 20px 0px 20px 0px;
    font-size: 24px;
    line-height: 30px;
  }
  #main.bodyrepairs-page .sb.sb-type-3 .block-content .text button {
    margin: 55px 0px -75px 0px;
    padding: 30px 30px;
    font-size: 24px;
  }
  #main.bodyrepairs-page.parental .page-content .finished-works {
    padding-top: 50px;
    padding-bottom: 30px;
  }
  #main.bodyrepairs-page.parental .page-content .finished-works .finished-works-title {
    margin: 0px 0px 55px 0px;
    font-size: 30px;
  }
  #main.bodyrepairs-page.parental .page-content .finished-works .bodyrepairs-slider {
    height: 370px;
  }
  #main.bodyrepairs-page.parental .page-content .finished-works .bodyrepairs-slider .images .image .text .block .title {
    margin-right: 10px;
    margin-bottom: 5px;
    font-size: 24px;
    line-height: 30px;
  }
  #main.bodyrepairs-page.parental .page-content .finished-works .bodyrepairs-slider .images .image .text .block .content p {
    font-size: 24px;
    line-height: 30px;
  }
  #main.bodyrepairs-page.parental .page-content .finished-works .bodyrepairs-slider .images .image .text .block.works {
    margin-bottom: 20px;
  }
  #main.bodyrepairs-page.parental .page-content .finished-works .bodyrepairs-slider .images .image .text .block.works .content p {
    padding-left: 20px;
  }
  #main.bodyrepairs-page.parental .page-content .finished-works .bodyrepairs-slider .images .image .text .block.works .content p:before {
    width: 10px;
    height: 10px;
    top: 10px;
  }
  #main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead {
    padding-top: 60px;
    padding-bottom: 40px;
  }
  #main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead .bodyrepairs-page-parent-lead-title {
    margin-bottom: 60px;
  }
  #main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead .bodyrepairs-page-parent-lead-title p {
    font-size: 42px;
  }
  #main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead .bodyrepairs-page-parent-lead-title p + p {
    margin-top: 20px;
  }
  #main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead .bodyrepairs-page-parent-lead-request .inputs-row {
    margin-bottom: 40px;
  }
  #main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead .bodyrepairs-page-parent-lead-request .inputs-row input {
    font-size: 24px;
  }
  #main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead .bodyrepairs-page-parent-lead-request .inputs-row .attach-photo {
    width: 40px;
    height: 40px;
  }
  #main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead .bodyrepairs-page-parent-lead-request .inputs-row .attach-photo:before,
  #main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead .bodyrepairs-page-parent-lead-request .inputs-row .attach-photo:after {
    width: 24px;
    height: 1px;
    top: calc(50% - 0px);
    left: calc(50% - 12px);
  }
  #main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead .bodyrepairs-page-parent-lead-request .inputs-row .attach-photo + .attach-photo {
    margin-left: calc((100% - 120px) / 2);
  }
  #main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead .bodyrepairs-page-parent-lead-request .inputs-row .attach-photo.attached:before {
    transform: rotate(45deg) translate(-3px, 5px) scale(0.6, 1);
    -o-transform: rotate(45deg) translate(-3px, 5px) scale(0.6, 1);
    -ms-transform: rotate(45deg) translate(-3px, 5px) scale(0.6, 1);
    -moz-transform: rotate(45deg) translate(-3px, 5px) scale(0.6, 1);
    -webkit-transform: rotate(45deg) translate(-3px, 5px) scale(0.6, 1);
  }
  #main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead .bodyrepairs-page-parent-lead-request .inputs-row .attach-photo.attached:after {
    transform: rotate(135deg) translate(-4px, -4px) scale(0.8, 1);
    -o-transform: rotate(135deg) translate(-4px, -4px) scale(0.8, 1);
    -ms-transform: rotate(135deg) translate(-4px, -4px) scale(0.8, 1);
    -moz-transform: rotate(135deg) translate(-4px, -4px) scale(0.8, 1);
    -webkit-transform: rotate(135deg) translate(-4px, -4px) scale(0.8, 1);
  }
  #main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead .bodyrepairs-page-parent-lead-request button {
    padding: 25px 45px;
    font-size: 20px;
  }
  #main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead .for-call .circle {
    margin: 30px 0px 0px 10%;
    width: 90%;
    padding-top: 90%;
  }
  #main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead .for-call .circle img {
    width: 55px;
    height: 55px;
    top: 20px;
    left: 0px;
    right: 0px;
  }
  #main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead .for-call .circle p {
    top: 90px;
    left: 40px;
    right: 40px;
    font-size: 36px;
    line-height: 40px;
  }
  #main.bodyrepairs-page.single .page-content .bodyrepairs-slider-container .single-page-slider {
    height: 430px;
  }
  #main.bodyrepairs-page.single .page-content .bodyrepairs-slider-container .slider-content .slider-title {
    margin: 0px 0px 10px 0px;
  }
  #main.bodyrepairs-page.single .page-content .bodyrepairs-slider-container .slider-content .slider-title p {
    font-size: 20px;
    line-height: 28px;
  }
  #main.bodyrepairs-page.single .page-content .bodyrepairs-slider-container .slider-content .slider-text p {
    font-size: 20px;
    line-height: 28px;
    margin: 0px 0px 15px 0px;
  }
  #main.bodyrepairs-page.single .page-content .bodyrepairs-slider-container .slider-content .slider-text button {
    margin: 40px 0px -20px 0px;
    padding: 25px 45px;
    font-size: 20px;
  }
  #main.bodyrepairs-page.single .page-content .text-content {
    padding-bottom: 80px;
  }
  #main.bodyrepairs-page.single .page-content .text-content p {
    margin: 10px 0px 10px 0px;
    font-size: 20px;
    line-height: 28px;
  }
  #main.bodyrepairs-page.single .page-content .text-content h2,
  #main.bodyrepairs-page.single .page-content .text-content h3 {
    margin: 20px 0px 10px 0px;
    font-size: 20px;
    line-height: 28px;
  }
  #main.bodyrepairs-page.single .page-content .text-content table {
    width: calc(50% - 10px) !important;
    margin: 0px 60px 40px 0px;
  }
  #main.bodyrepairs-page.single .page-content .text-content table thead tr td {
    font-size: 20px;
    padding: 15px 40px;
  }
  #main.bodyrepairs-page.single .page-content .text-content table tbody tr td {
    font-size: 20px;
    padding: 15px 40px;
  }
  #main.bodyrepairs-page.single .page-content .text-content table + * {
    margin-top: 0px;
  }
}
/* @import includes/992-1200/bodyrepair-page.styl */
@media screen and (min-width: 992px) and (max-width: 1199px) {
  #main.bodyrepairs-page .sb {
    margin: 16px auto;
  }
  #main.bodyrepairs-page .sb.sb-type-1 .block-content .title {
    font-size: 34px;
    margin: 40px 0px 60px 0px;
  }
  #main.bodyrepairs-page .sb.sb-type-1 .block-content .text {
    margin: 60px 0px 40px 0px;
  }
  #main.bodyrepairs-page .sb.sb-type-1 .block-content .text p {
    font-size: 27px;
    margin: 0px 0px 13px 0px;
  }
  #main.bodyrepairs-page .sb.sb-type-1 .block-content .text li {
    font-size: 27px;
    margin: 0px 0px 13px 0px;
    padding-left: 25px;
  }
  #main.bodyrepairs-page .sb.sb-type-1 .block-content .text li:before {
    top: 8px;
    left: 0px;
    width: 10px;
    height: 10px;
  }
  #main.bodyrepairs-page .sb.sb-type-2 .block-content {
    padding-top: 35px;
    padding-bottom: 35px;
  }
  #main.bodyrepairs-page .sb.sb-type-2 .block-content:before,
  #main.bodyrepairs-page .sb.sb-type-2 .block-content:after {
    width: 100%;
    display: table;
    content: " ";
  }
  #main.bodyrepairs-page .sb.sb-type-2 .block-content:after {
    clear: both;
  }
  #main.bodyrepairs-page .sb.sb-type-2 .block-content .title p {
    font-size: 45px;
    line-height: 55px;
  }
  #main.bodyrepairs-page .sb.sb-type-2 .block-content .title p span {
    line-height: 80px;
  }
  #main.bodyrepairs-page .sb.sb-type-2 .block-content .text {
    margin: 25px 0px 0px 0px;
  }
  #main.bodyrepairs-page .sb.sb-type-2 .block-content .text p {
    margin: 0px 0px 20px 0px;
    font-size: 20px;
    padding-left: 50px;
  }
  #main.bodyrepairs-page .sb.sb-type-2 .block-content .text p:before {
    top: 5px;
    left: 0px;
    width: 25px;
    height: 10px;
  }
  #main.bodyrepairs-page .sb.sb-type-3 .block-content {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  #main.bodyrepairs-page .sb.sb-type-3 .block-content .title p {
    font-size: 37px;
    line-height: 70px;
  }
  #main.bodyrepairs-page .sb.sb-type-3 .block-content .title p span {
    line-height: 80px;
  }
  #main.bodyrepairs-page .sb.sb-type-3 .block-content .text p {
    margin: 20px 0px 20px 0px;
    font-size: 20px;
    line-height: 26px;
  }
  #main.bodyrepairs-page .sb.sb-type-3 .block-content .text button {
    margin: 45px 0px -65px 0px;
    padding: 25px 25px;
    font-size: 18px;
  }
  #main.bodyrepairs-page.parental .page-content .finished-works {
    padding-top: 50px;
    padding-bottom: 30px;
  }
  #main.bodyrepairs-page.parental .page-content .finished-works .finished-works-title {
    margin: 0px 0px 40px 0px;
    font-size: 24px;
  }
  #main.bodyrepairs-page.parental .page-content .finished-works .bodyrepairs-slider {
    height: 290px;
  }
  #main.bodyrepairs-page.parental .page-content .finished-works .bodyrepairs-slider .images .image .text .block .title {
    margin-right: 10px;
    margin-bottom: 4px;
    font-size: 20px;
    line-height: 26px;
  }
  #main.bodyrepairs-page.parental .page-content .finished-works .bodyrepairs-slider .images .image .text .block .content p {
    font-size: 20px;
    line-height: 26px;
  }
  #main.bodyrepairs-page.parental .page-content .finished-works .bodyrepairs-slider .images .image .text .block.works {
    margin-bottom: 15px;
  }
  #main.bodyrepairs-page.parental .page-content .finished-works .bodyrepairs-slider .images .image .text .block.works .content p {
    padding-left: 20px;
  }
  #main.bodyrepairs-page.parental .page-content .finished-works .bodyrepairs-slider .images .image .text .block.works .content p:before {
    width: 9px;
    height: 9px;
    top: 9px;
  }
  #main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead {
    padding-top: 60px;
    padding-bottom: 40px;
  }
  #main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead .bodyrepairs-page-parent-lead-title {
    margin-bottom: 60px;
  }
  #main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead .bodyrepairs-page-parent-lead-title p {
    font-size: 33px;
  }
  #main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead .bodyrepairs-page-parent-lead-title p + p {
    margin-top: 15px;
  }
  #main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead .bodyrepairs-page-parent-lead-request .inputs-row {
    margin-bottom: 40px;
  }
  #main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead .bodyrepairs-page-parent-lead-request .inputs-row input {
    font-size: 18px;
  }
  #main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead .bodyrepairs-page-parent-lead-request .inputs-row .attach-photo {
    width: 30px;
    height: 30px;
  }
  #main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead .bodyrepairs-page-parent-lead-request .inputs-row .attach-photo:before,
  #main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead .bodyrepairs-page-parent-lead-request .inputs-row .attach-photo:after {
    width: 20px;
    height: 1px;
    top: calc(50% - 0px);
    left: calc(50% - 10px);
  }
  #main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead .bodyrepairs-page-parent-lead-request .inputs-row .attach-photo + .attach-photo {
    margin-left: calc((100% - 90px) / 2);
  }
  #main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead .bodyrepairs-page-parent-lead-request .inputs-row .attach-photo.attached:before {
    transform: rotate(45deg) translate(-2px, 5px) scale(0.6, 1);
    -o-transform: rotate(45deg) translate(-2px, 5px) scale(0.6, 1);
    -ms-transform: rotate(45deg) translate(-2px, 5px) scale(0.6, 1);
    -moz-transform: rotate(45deg) translate(-2px, 5px) scale(0.6, 1);
    -webkit-transform: rotate(45deg) translate(-2px, 5px) scale(0.6, 1);
  }
  #main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead .bodyrepairs-page-parent-lead-request .inputs-row .attach-photo.attached:after {
    transform: rotate(135deg) translate(-3px, -4px) scale(0.8, 1);
    -o-transform: rotate(135deg) translate(-3px, -4px) scale(0.8, 1);
    -ms-transform: rotate(135deg) translate(-3px, -4px) scale(0.8, 1);
    -moz-transform: rotate(135deg) translate(-3px, -4px) scale(0.8, 1);
    -webkit-transform: rotate(135deg) translate(-3px, -4px) scale(0.8, 1);
  }
  #main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead .bodyrepairs-page-parent-lead-request button {
    padding: 20px 35px;
    font-size: 16px;
  }
  #main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead .for-call .circle {
    margin: 30px 0px 0px 10%;
    width: 90%;
    padding-top: 90%;
  }
  #main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead .for-call .circle img {
    width: 35px;
    height: 35px;
    top: 15px;
    left: 0px;
    right: 0px;
  }
  #main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead .for-call .circle p {
    top: 60px;
    left: 40px;
    right: 40px;
    font-size: 24px;
    line-height: 36px;
  }
}
/* @import includes/768-991/bodyrepair-page.styl */
@media screen and (max-width: 991px) {
  #main.bodyrepairs-page .sb {
    margin: 20px auto;
  }
  #main.bodyrepairs-page .sb.sb-type-1 .block-content .title {
    font-size: 30px;
    margin: 30px 0px 40px 0px;
  }
  #main.bodyrepairs-page .sb.sb-type-1 .block-content .text {
    margin: 40px 0px 30px 0px;
  }
  #main.bodyrepairs-page .sb.sb-type-1 .block-content .text p {
    font-size: 24px;
    margin: 0px 0px 10px 0px;
  }
  #main.bodyrepairs-page .sb.sb-type-1 .block-content .text li {
    font-size: 24px;
    margin: 0px 0px 10px 0px;
    padding-left: 20px;
  }
  #main.bodyrepairs-page .sb.sb-type-1 .block-content .text li:before {
    top: 6px;
    left: 0px;
    width: 10px;
    height: 10px;
  }
  #main.bodyrepairs-page .sb.sb-type-2 .block-content {
    padding-top: 35px;
    padding-bottom: 35px;
  }
  #main.bodyrepairs-page .sb.sb-type-2 .block-content:before,
  #main.bodyrepairs-page .sb.sb-type-2 .block-content:after {
    width: 100%;
    display: table;
    content: " ";
  }
  #main.bodyrepairs-page .sb.sb-type-2 .block-content:after {
    clear: both;
  }
  #main.bodyrepairs-page .sb.sb-type-2 .block-content .title p {
    font-size: 40px;
    line-height: 50px;
  }
  #main.bodyrepairs-page .sb.sb-type-2 .block-content .title p span {
    line-height: 75px;
  }
  #main.bodyrepairs-page .sb.sb-type-2 .block-content .text {
    margin: 25px 0px 0px 0px;
  }
  #main.bodyrepairs-page .sb.sb-type-2 .block-content .text p {
    margin: 0px 0px 20px 0px;
    font-size: 18px;
    padding-left: 40px;
  }
  #main.bodyrepairs-page .sb.sb-type-2 .block-content .text p:before {
    top: 5px;
    left: 0px;
    width: 20px;
    height: 10px;
  }
  #main.bodyrepairs-page .sb.sb-type-3 .block-content {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  #main.bodyrepairs-page .sb.sb-type-3 .block-content .title p {
    font-size: 28px;
    line-height: 61px;
  }
  #main.bodyrepairs-page .sb.sb-type-3 .block-content .title p span {
    line-height: 71px;
  }
  #main.bodyrepairs-page .sb.sb-type-3 .block-content .text p {
    margin: 20px 0px 20px 0px;
    font-size: 20px;
    line-height: 26px;
  }
  #main.bodyrepairs-page .sb.sb-type-3 .block-content .text button {
    margin: 45px 0px -65px 0px;
    padding: 25px 25px;
    font-size: 18px;
  }
  #main.bodyrepairs-page.parental .page-content .finished-works {
    padding-top: 50px;
    padding-bottom: 30px;
  }
  #main.bodyrepairs-page.parental .page-content .finished-works .finished-works-title {
    margin: 0px 0px 40px 0px;
    font-size: 24px;
  }
  #main.bodyrepairs-page.parental .page-content .finished-works .bodyrepairs-slider {
    height: 220px;
  }
  #main.bodyrepairs-page.parental .page-content .finished-works .bodyrepairs-slider .images .image img {
    max-height: 100%;
  }
  #main.bodyrepairs-page.parental .page-content .finished-works .bodyrepairs-slider .images .image .text .block .title {
    margin-right: 10px;
    margin-bottom: 2px;
    font-size: 14px;
    line-height: 20px;
  }
  #main.bodyrepairs-page.parental .page-content .finished-works .bodyrepairs-slider .images .image .text .block .content p {
    font-size: 14px;
    line-height: 20px;
  }
  #main.bodyrepairs-page.parental .page-content .finished-works .bodyrepairs-slider .images .image .text .block.works {
    margin-bottom: 10px;
  }
  #main.bodyrepairs-page.parental .page-content .finished-works .bodyrepairs-slider .images .image .text .block.works .content p {
    padding-left: 15px;
  }
  #main.bodyrepairs-page.parental .page-content .finished-works .bodyrepairs-slider .images .image .text .block.works .content p:before {
    width: 7px;
    height: 7px;
    top: 7px;
  }
  #main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead {
    padding-top: 60px;
    padding-bottom: 40px;
  }
  #main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead .bodyrepairs-page-parent-lead-title {
    margin-bottom: 60px;
  }
  #main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead .bodyrepairs-page-parent-lead-title p {
    font-size: 33px;
  }
  #main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead .bodyrepairs-page-parent-lead-title p + p {
    margin-top: 15px;
  }
  #main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead .bodyrepairs-page-parent-lead-request .inputs-row {
    margin-bottom: 40px;
  }
  #main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead .bodyrepairs-page-parent-lead-request .inputs-row input {
    font-size: 18px;
  }
  #main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead .bodyrepairs-page-parent-lead-request .inputs-row .attach-photo {
    width: 30px;
    height: 30px;
  }
  #main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead .bodyrepairs-page-parent-lead-request .inputs-row .attach-photo:before,
  #main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead .bodyrepairs-page-parent-lead-request .inputs-row .attach-photo:after {
    width: 20px;
    height: 1px;
    top: calc(50% - 0px);
    left: calc(50% - 10px);
  }
  #main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead .bodyrepairs-page-parent-lead-request .inputs-row .attach-photo + .attach-photo {
    margin-left: calc((100% - 90px) / 2);
  }
  #main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead .bodyrepairs-page-parent-lead-request .inputs-row .attach-photo.attached:before {
    transform: rotate(45deg) translate(-2px, 5px) scale(0.6, 1);
    -o-transform: rotate(45deg) translate(-2px, 5px) scale(0.6, 1);
    -ms-transform: rotate(45deg) translate(-2px, 5px) scale(0.6, 1);
    -moz-transform: rotate(45deg) translate(-2px, 5px) scale(0.6, 1);
    -webkit-transform: rotate(45deg) translate(-2px, 5px) scale(0.6, 1);
  }
  #main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead .bodyrepairs-page-parent-lead-request .inputs-row .attach-photo.attached:after {
    transform: rotate(135deg) translate(-3px, -4px) scale(0.8, 1);
    -o-transform: rotate(135deg) translate(-3px, -4px) scale(0.8, 1);
    -ms-transform: rotate(135deg) translate(-3px, -4px) scale(0.8, 1);
    -moz-transform: rotate(135deg) translate(-3px, -4px) scale(0.8, 1);
    -webkit-transform: rotate(135deg) translate(-3px, -4px) scale(0.8, 1);
  }
  #main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead .bodyrepairs-page-parent-lead-request button {
    padding: 20px 35px;
    font-size: 16px;
  }
  #main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead .for-call {
    display: none;
  }
}
/* @import includes/768-/bodyrepair-page.styl */
@media screen and (max-width: 767px) {
  #main.bodyrepairs-page .sb {
    margin: 20px auto 80px 0px;
  }
  #main.bodyrepairs-page .sb.sb-type-1 .block-content .title {
    font-size: 30px;
    margin: 30px 0px 40px 0px;
  }
  #main.bodyrepairs-page .sb.sb-type-1 .block-content .text {
    margin: 40px 0px 30px 0px;
  }
  #main.bodyrepairs-page .sb.sb-type-1 .block-content .text p {
    font-size: 28px;
    line-height: 36px;
    margin: 0px 0px 15px 0px;
  }
  #main.bodyrepairs-page .sb.sb-type-1 .block-content .text li {
    font-size: 28px;
    line-height: 36px;
    margin: 0px 0px 15px 0px;
    padding-left: 20px;
  }
  #main.bodyrepairs-page .sb.sb-type-1 .block-content .text li:before {
    top: 6px;
    left: 0px;
    width: 10px;
    height: 10px;
  }
  #main.bodyrepairs-page .sb.sb-type-2 .block-content {
    padding-top: 35px;
    padding-bottom: 35px;
  }
  #main.bodyrepairs-page .sb.sb-type-2 .block-content:before,
  #main.bodyrepairs-page .sb.sb-type-2 .block-content:after {
    width: 100%;
    display: table;
    content: " ";
  }
  #main.bodyrepairs-page .sb.sb-type-2 .block-content:after {
    clear: both;
  }
  #main.bodyrepairs-page .sb.sb-type-2 .block-content .title p {
    font-size: 40px;
    line-height: 50px;
  }
  #main.bodyrepairs-page .sb.sb-type-2 .block-content .title p span {
    line-height: 75px;
  }
  #main.bodyrepairs-page .sb.sb-type-2 .block-content .text {
    margin: 25px 0px 0px 0px;
  }
  #main.bodyrepairs-page .sb.sb-type-2 .block-content .text p {
    font-size: 28px;
    line-height: 36px;
    margin: 0px 0px 15px 0px;
    padding-left: 40px;
  }
  #main.bodyrepairs-page .sb.sb-type-2 .block-content .text p:before {
    top: 5px;
    left: 0px;
    width: 20px;
    height: 10px;
  }
  #main.bodyrepairs-page .sb.sb-type-3 .block-content {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  #main.bodyrepairs-page .sb.sb-type-3 .block-content .title p {
    font-size: 40px;
    line-height: 60px;
  }
  #main.bodyrepairs-page .sb.sb-type-3 .block-content .title p span {
    line-height: 60px;
    display: block;
  }
  #main.bodyrepairs-page .sb.sb-type-3 .block-content .text p {
    margin: 20px 0px 20px 0px;
    font-size: 28px;
    line-height: 36px;
  }
  #main.bodyrepairs-page .sb.sb-type-3 .block-content .text button {
    margin: 35px 0px -90px 0px;
    padding: 25px 25px;
    font-size: 26px;
  }
  #main.bodyrepairs-page.parental .page-content .finished-works {
    padding-top: 50px;
    padding-bottom: 0px;
  }
  #main.bodyrepairs-page.parental .page-content .finished-works .finished-works-title {
    margin: 0px 0px 40px 0px;
    font-size: 28px;
  }
  #main.bodyrepairs-page.parental .page-content .finished-works .bodyrepairs-slider {
    height: 220px;
  }
  #main.bodyrepairs-page.parental .page-content .finished-works .bodyrepairs-slider .images .image img {
    max-height: 100%;
  }
  #main.bodyrepairs-page.parental .page-content .finished-works .bodyrepairs-slider .images .image .text .block .title {
    margin-right: 10px;
    margin-bottom: 2px;
    font-size: 14px;
    line-height: 20px;
  }
  #main.bodyrepairs-page.parental .page-content .finished-works .bodyrepairs-slider .images .image .text .block .content p {
    font-size: 14px;
    line-height: 20px;
  }
  #main.bodyrepairs-page.parental .page-content .finished-works .bodyrepairs-slider .images .image .text .block.works {
    margin-bottom: 10px;
  }
  #main.bodyrepairs-page.parental .page-content .finished-works .bodyrepairs-slider .images .image .text .block.works .content p {
    padding-left: 15px;
  }
  #main.bodyrepairs-page.parental .page-content .finished-works .bodyrepairs-slider .images .image .text .block.works .content p:before {
    width: 7px;
    height: 7px;
    top: 7px;
  }
  #main.bodyrepairs-page.parental .page-content .reviews-block {
    padding-top: 40px;
  }
  #main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead {
    padding-top: 60px;
    padding-bottom: 40px;
  }
  #main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead .bodyrepairs-page-parent-lead-title {
    margin-bottom: 60px;
  }
  #main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead .bodyrepairs-page-parent-lead-title p {
    font-size: 33px;
  }
  #main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead .bodyrepairs-page-parent-lead-title p + p {
    margin-top: 15px;
  }
  #main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead .bodyrepairs-page-parent-lead-request {
    text-align: center;
  }
  #main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead .bodyrepairs-page-parent-lead-request .inputs-row {
    margin-bottom: 40px;
  }
  #main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead .bodyrepairs-page-parent-lead-request .inputs-row .rw {
    margin-bottom: 30px;
  }
  #main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead .bodyrepairs-page-parent-lead-request .inputs-row input {
    font-size: 28px;
  }
  #main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead .bodyrepairs-page-parent-lead-request .inputs-row .attach-photo {
    width: 70px;
    height: 70px;
  }
  #main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead .bodyrepairs-page-parent-lead-request .inputs-row .attach-photo:before,
  #main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead .bodyrepairs-page-parent-lead-request .inputs-row .attach-photo:after {
    width: 50px;
    height: 2px;
    top: calc(50% - 1px);
    left: calc(50% - 25px);
  }
  #main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead .bodyrepairs-page-parent-lead-request .inputs-row .attach-photo + .attach-photo {
    margin-left: calc((100% - 210px) / 2);
  }
  #main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead .bodyrepairs-page-parent-lead-request .inputs-row .attach-photo.attached:before {
    transform: rotate(45deg) translate(-8px, 12px) scale(0.6, 1);
    -o-transform: rotate(45deg) translate(-8px, 12px) scale(0.6, 1);
    -ms-transform: rotate(45deg) translate(-8px, 12px) scale(0.6, 1);
    -moz-transform: rotate(45deg) translate(-8px, 12px) scale(0.6, 1);
    -webkit-transform: rotate(45deg) translate(-8px, 12px) scale(0.6, 1);
  }
  #main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead .bodyrepairs-page-parent-lead-request .inputs-row .attach-photo.attached:after {
    transform: rotate(135deg) translate(-7px, -8px) scale(0.8, 1);
    -o-transform: rotate(135deg) translate(-7px, -8px) scale(0.8, 1);
    -ms-transform: rotate(135deg) translate(-7px, -8px) scale(0.8, 1);
    -moz-transform: rotate(135deg) translate(-7px, -8px) scale(0.8, 1);
    -webkit-transform: rotate(135deg) translate(-7px, -8px) scale(0.8, 1);
  }
  #main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead .bodyrepairs-page-parent-lead-request button {
    padding: 20px 35px;
    font-size: 28px;
  }
  #main.bodyrepairs-page.parental .page-content .bodyrepairs-page-parent-lead .for-call {
    display: none;
  }
}
/* @import includes/service-page.styl */
#main.services-page .sb {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.services-page .sb.editable .wrapper {
  position: relative;
}
#main.services-page .sb.editable .wrapper .u-can-edit-this {
  position: absolute;
  display: inline-block;
  background-color: #e12329;
  top: 0px;
  right: 0px;
  z-index: -50;
  width: 40px;
  height: 40px;
  padding: 8px;
  margin: 0px;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.services-page .sb.editable .wrapper .u-can-edit-this:before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  line-height: 24px;
  width: 24px;
  height: 24px;
  background-image: url("images/pencil-edit-button.png");
}
#main.services-page .sb.editable .wrapper:hover .u-can-edit-this {
  z-index: 500;
  opacity: 1;
}
#main.services-page .sb.sb-type-1 .block-content:before,
#main.services-page .sb.sb-type-1 .block-content:after {
  width: 100%;
  display: table;
  content: " ";
}
#main.services-page .sb.sb-type-1 .block-content:after {
  clear: both;
}
#main.services-page .sb.sb-type-1 .block-content .title {
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.services-page .sb.sb-type-1 .block-content .text p {
  color: #fff;
  font-weight: 600;
  position: relative;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.services-page .sb.sb-type-1 .block-content .text li {
  color: #fff;
  font-weight: 600;
  position: relative;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.services-page .sb.sb-type-1 .block-content .text li:before {
  content: '';
  position: absolute;
  background-color: #e12329;
  margin: 0px;
}
#main.services-page .sb.sb-type-2 .block-content .title p {
  margin: 0px;
  color: #fff;
  font-weight: 600;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.services-page .sb.sb-type-2 .block-content .title p span {
  display: block;
  color: #e12329;
  font-weight: 800;
  text-transform: uppercase;
}
#main.services-page .sb.sb-type-2 .block-content .text p {
  color: #fff;
  font-weight: 300;
  position: relative;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.services-page .sb.sb-type-2 .block-content .text p:before {
  content: '';
  position: absolute;
  background-color: #e12329;
}
#main.services-page .sb.sb-type-3 .block-content .title p {
  margin: 0px;
  color: #fff;
  font-weight: 600;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.services-page .sb.sb-type-3 .block-content .title p span {
  display: block;
  color: #e12329;
  font-weight: 800;
  text-transform: uppercase;
}
#main.services-page .sb.sb-type-3 .block-content .text p {
  color: #fff;
  font-weight: 600;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.services-page .sb.sb-type-3 .block-content .text p a {
  display: block;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  white-space: nowrap;
}
#main.services-page .sb.sb-type-3 .block-content .text button {
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  width: 100%;
  border: none;
  background-color: #e12329;
  color: #fff;
  font-weight: 300;
  white-space: nowrap;
  text-transform: uppercase;
  box-shadow: 9px 11px 30px 0px rgba(0,0,0,0.6);
}
#main.services-page.parental .page-content .finished-works {
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.services-page.parental .page-content .finished-works .finished-works-title {
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.services-page.parental .page-content .finished-works .services-slider {
  width: 100%;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.services-page.parental .page-content .finished-works .services-slider .images .image .text {
  width: 30%;
  float: right;
  position: relative;
  z-index: 5;
  user-select: none;
}
#main.services-page.parental .page-content .finished-works .services-slider .images .image .text .block .title {
  display: inline-block;
  vertical-align: top;
  font-weight: 800;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.services-page.parental .page-content .finished-works .services-slider .images .image .text .block .content {
  display: inline-block;
  vertical-align: top;
  font-weight: 400;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.services-page.parental .page-content .finished-works .services-slider .images .image .text .block .content p {
  margin: 0px;
}
#main.services-page.parental .page-content .finished-works .services-slider .images .image .text .block.works .title {
  display: block;
}
#main.services-page.parental .page-content .finished-works .services-slider .images .image .text .block.works .content {
  display: block;
}
#main.services-page.parental .page-content .finished-works .services-slider .images .image .text .block.works .content p {
  position: relative;
}
#main.services-page.parental .page-content .finished-works .services-slider .images .image .text .block.works .content p:before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0px;
  background-color: #e12329;
}
#main.services-page.parental .page-content .services-page-lead-1 {
  background-size: cover;
  background-position: center center;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.services-page.parental .page-content .services-page-lead-1 .services-page-lead-1-title p {
  margin: 0px;
  color: #fff;
  font-weight: 400;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.services-page.parental .page-content .services-page-lead-1 .services-page-lead-1-title p strong {
  color: #e12329;
  font-weight: 600;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.services-page.parental .page-content .services-page-lead-1 .services-page-lead-1-options {
  font-size: 0px;
}
#main.services-page.parental .page-content .services-page-lead-1 .services-page-lead-1-options .option {
  display: inline-block;
  vertical-align: top;
  width: 30%;
  margin: 0px 5% 20px 0px;
  background-color: #fff;
  position: relative;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.services-page.parental .page-content .services-page-lead-1 .services-page-lead-1-options .option:nth-of-type(3n+3) {
  margin-right: 0px;
}
#main.services-page.parental .page-content .services-page-lead-1 .services-page-lead-1-options .option .option-shadow {
  position: absolute;
  z-index: 0;
  color: #ececec;
  font-weight: 900;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.services-page.parental .page-content .services-page-lead-1 .services-page-lead-1-options .option .option-title {
  position: relative;
  z-index: 1;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.services-page.parental .page-content .services-page-lead-1 .services-page-lead-1-options .option .option-title span {
  color: #e12329;
}
#main.services-page.parental .page-content .services-page-lead-1 .services-page-lead-1-options .option .option-text {
  position: relative;
  z-index: 1;
  font-weight: 500;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.services-page.parental .page-content .services-page-lead-1 .services-page-lead-1-request p {
  color: #fff;
  font-weight: 300;
  margin: 0px;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.services-page.parental .page-content .services-page-lead-1 .services-page-lead-1-request p strong {
  display: inline-block;
  color: #fff;
  font-weight: 600;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.services-page.parental .page-content .services-page-lead-1 .services-page-lead-1-request button {
  border: none;
  margin: 0px;
  background-color: #e12329;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  box-shadow: 9px 11px 30px 0px rgba(0,0,0,0.6);
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.services-page.parental .page-content .services-page-lead-2 {
  background-color: #ececec;
}
#main.services-page.parental .page-content .services-page-lead-2 .services-page-lead-2-title p {
  margin: 0px;
  color: #000;
  font-weight: bold;
  text-align: center;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.services-page.parental .page-content .services-page-lead-2 .services-page-lead-2-request .inputs-row {
  font-size: 0px;
}
#main.services-page.parental .page-content .services-page-lead-2 .services-page-lead-2-request .inputs-row:before,
#main.services-page.parental .page-content .services-page-lead-2 .services-page-lead-2-request .inputs-row:after {
  width: 100%;
  display: table;
  content: " ";
}
#main.services-page.parental .page-content .services-page-lead-2 .services-page-lead-2-request .inputs-row:after {
  clear: both;
}
#main.services-page.parental .page-content .services-page-lead-2 .services-page-lead-2-request .inputs-row input {
  width: 100%;
  color: #000;
  display: inline-block;
  margin: 10px 0px 0px;
  padding: 5px 15px;
  border: none;
  border-bottom: 1px solid #000;
  background-color: rgba(0,0,0,0);
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.services-page.parental .page-content .services-page-lead-2 .services-page-lead-2-request .inputs-row button {
  float: right;
  border: none;
  margin: 0px;
  background-color: #e12329;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  box-shadow: 9px 11px 30px 0px rgba(0,0,0,0.6);
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.services-page.single .page-content .services-slider-container {
  background-color: #ececec;
}
#main.services-page.single .page-content .services-slider-container .single-page-slider {
  width: 100%;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.services-page.single .page-content .services-slider-container .slider-content .slider-title p {
  color: #e12329;
  font-weight: 600;
  margin: 0px 0px 0px 0px;
}
#main.services-page.single .page-content .services-slider-container .slider-content .slider-text p {
  font-weight: 300;
}
#main.services-page.single .page-content .services-slider-container .slider-content .slider-text button {
  background-color: #e12329;
  color: #fff;
  border: none;
  font-weight: bold;
  text-transform: uppercase;
  box-shadow: 9px 11px 30px 0px rgba(0,0,0,0.6);
}
#main.services-page.single .page-content .text-content a[href^="tel:"],
#main.services-page.single .page-content .text-content a[href^="form:"],
#main.services-page.single .page-content .text-content a[href^="callto:"] {
  padding: 15px 20px;
  display: inline-block;
  background-color: #e12329;
  color: #fff;
  border: none;
  font-weight: bold;
  text-transform: uppercase;
  box-shadow: 9px 11px 30px 0px rgba(0,0,0,0.6);
  margin: 10px 10px 10px 10px;
}
#main.services-page.single .page-content .text-content p {
  color: #000;
  font-weight: 400;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.services-page.single .page-content .text-content h2,
#main.services-page.single .page-content .text-content h3 {
  color: #000;
  font-weight: 700;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.services-page.single .page-content .text-content h2:not(.self-center):not(.self-right):before,
#main.services-page.single .page-content .text-content h3:not(.self-center):not(.self-right):before {
  content: '';
  display: inline-block;
  background-color: #e12329;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.services-page.single .page-content .text-content table {
  float: left;
  box-shadow: 8px 8px 30px 0px rgba(0,0,0,0.25);
  border-collapse: collapse;
}
#main.services-page.single .page-content .text-content table thead tr td {
  font-weight: 600;
  text-transform: uppercase;
  background-color: #bdbdbd;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.services-page.single .page-content .text-content table thead tr td:nth-of-type(2) {
  background-color: #ececec;
}
#main.services-page.single .page-content .text-content table thead tr td + td {
  border-left: 2px solid #f6f6f6;
}
#main.services-page.single .page-content .text-content table tbody tr td {
  color: #000;
  font-weight: 400;
  border-bottom: 1px solid #ececec;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.services-page.single .page-content .text-content table tbody tr td + td {
  border-left: 2px solid #ececec;
  text-align: center;
}
#main.services-page.single .page-content .text-content table tbody tr:last-of-type td {
  border-bottom: 0px solid #ececec;
}
#main.services-page.single .page-content .text-content table tbody tr:hover td {
  background-color: #efefef;
}
#main.services-page.single .page-content .text-content table tbody tr:hover td + td {
  border-left: 2px solid #efefef;
}
#main.services-page.single .page-content .text-content.bt .block-title {
  margin: 0px;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.services-page.single .page-content .text-content.bt.editable .wrapper {
  position: relative;
}
#main.services-page.single .page-content .text-content.bt.editable .wrapper .u-can-edit-this {
  position: absolute;
  display: inline-block;
  background-color: #e12329;
  top: 0px;
  right: 0px;
  z-index: -50;
  width: 40px;
  height: 40px;
  padding: 8px;
  margin: 0px;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.services-page.single .page-content .text-content.bt.editable .wrapper .u-can-edit-this:before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  line-height: 24px;
  width: 24px;
  height: 24px;
  background-image: url("images/pencil-edit-button.png");
}
#main.services-page.single .page-content .text-content.bt.editable .wrapper:hover .u-can-edit-this {
  z-index: 500;
  opacity: 1;
}
#main.services-page.single .page-content .text-content.bt2 {
  background-color: #282828;
}
#main.services-page.single .page-content .text-content.bt2 * {
  color: #fff;
}
#main.services-page.single .page-content .text-content.bt2 .block-title,
#main.services-page.single .page-content .text-content.bt2 h2,
#main.services-page.single .page-content .text-content.bt2 h3 {
  color: #fff;
}
#main.services-page.single .page-content .text-content.bt2 blockquote {
  border: 2px solid #e12329;
  background-color: rgba(0,0,0,0);
}
#main.services-page.single .page-content .text-content.bt2 span.red-text {
  color: #e12329;
}
#main.services-page.single .page-content .text-content.bt2 .images-block .text {
  color: #fff;
}
#main.services-page.single .page-content .text-content.bt3 {
  background-color: #ececec;
}
#main.services-page.single .page-content .text-content.bt3 .block-title,
#main.services-page.single .page-content .text-content.bt3 h2,
#main.services-page.single .page-content .text-content.bt3 h3 {
  color: #000;
}
#main.services-page.single .page-content .text-content.bt3 blockquote {
  border: 2px solid #e12329;
  background-color: rgba(0,0,0,0);
}
#main.services-page.single .page-content .text-content.bt3 span.red-text {
  color: #e12329;
}
#main.services-page.single .page-content .text-content.bt3 .images-block .text {
  color: #000;
}
/* @import includes/1200+/service-page.styl */
@media screen and (min-width: 1200px) {
  #main.services-page .sb {
    margin: 20px auto;
  }
  #main.services-page .sb.sb-type-1 .block-content .title {
    font-size: 40px;
    margin: 50px 0px 70px 0px;
  }
  #main.services-page .sb.sb-type-1 .block-content .text {
    margin: 70px 0px 50px 0px;
  }
  #main.services-page .sb.sb-type-1 .block-content .text p {
    font-size: 30px;
    margin: 0px 0px 15px 0px;
  }
  #main.services-page .sb.sb-type-1 .block-content .text li {
    font-size: 30px;
    margin: 0px 0px 15px 0px;
    padding-left: 25px;
  }
  #main.services-page .sb.sb-type-1 .block-content .text li:before {
    top: 10px;
    left: 0px;
    width: 12px;
    height: 12px;
  }
  #main.services-page .sb.sb-type-2 .block-content {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  #main.services-page .sb.sb-type-2 .block-content:before,
  #main.services-page .sb.sb-type-2 .block-content:after {
    width: 100%;
    display: table;
    content: " ";
  }
  #main.services-page .sb.sb-type-2 .block-content:after {
    clear: both;
  }
  #main.services-page .sb.sb-type-2 .block-content .title p {
    font-size: 55px;
    line-height: 60px;
  }
  #main.services-page .sb.sb-type-2 .block-content .title p span {
    line-height: 80px;
  }
  #main.services-page .sb.sb-type-2 .block-content .text {
    margin: 30px 0px 0px 0px;
  }
  #main.services-page .sb.sb-type-2 .block-content .text p {
    margin: 0px 0px 20px 0px;
    font-size: 24px;
    padding-left: 60px;
  }
  #main.services-page .sb.sb-type-2 .block-content .text p:before {
    top: 5px;
    left: 0px;
    width: 30px;
    height: 15px;
  }
  #main.services-page .sb.sb-type-3 .block-content {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  #main.services-page .sb.sb-type-3 .block-content .title p {
    font-size: 47px;
    line-height: 80px;
  }
  #main.services-page .sb.sb-type-3 .block-content .title p span {
    line-height: 80px;
  }
  #main.services-page .sb.sb-type-3 .block-content .text p {
    margin: 20px 0px 20px 0px;
    font-size: 24px;
    line-height: 30px;
  }
  #main.services-page .sb.sb-type-3 .block-content .text button {
    margin: 55px 0px -75px 0px;
    padding: 30px 30px;
    font-size: 24px;
  }
  #main.services-page.parental .page-content .finished-works {
    padding-top: 50px;
    padding-bottom: 30px;
  }
  #main.services-page.parental .page-content .finished-works .finished-works-title {
    margin: 0px 0px 55px 0px;
    font-size: 30px;
  }
  #main.services-page.parental .page-content .finished-works .services-slider {
    height: 370px;
  }
  #main.services-page.parental .page-content .finished-works .services-slider .images .image .text .block .title {
    margin-right: 10px;
    margin-bottom: 5px;
    font-size: 24px;
    line-height: 30px;
  }
  #main.services-page.parental .page-content .finished-works .services-slider .images .image .text .block .content p {
    font-size: 24px;
    line-height: 30px;
  }
  #main.services-page.parental .page-content .finished-works .services-slider .images .image .text .block.works {
    margin-bottom: 20px;
  }
  #main.services-page.parental .page-content .finished-works .services-slider .images .image .text .block.works .content p {
    padding-left: 20px;
  }
  #main.services-page.parental .page-content .finished-works .services-slider .images .image .text .block.works .content p:before {
    width: 10px;
    height: 10px;
    top: 10px;
  }
  #main.services-page.parental .page-content .services-page-lead-1 {
    padding-top: 45px;
    padding-bottom: 45px;
  }
  #main.services-page.parental .page-content .services-page-lead-1 .services-page-lead-1-title {
    margin-bottom: 50px;
  }
  #main.services-page.parental .page-content .services-page-lead-1 .services-page-lead-1-title p {
    font-size: 35px;
  }
  #main.services-page.parental .page-content .services-page-lead-1 .services-page-lead-1-title p strong {
    font-size: 29px;
  }
  #main.services-page.parental .page-content .services-page-lead-1 .services-page-lead-1-title p + p {
    margin-top: 5px;
  }
  #main.services-page.parental .page-content .services-page-lead-1 .services-page-lead-1-options {
    margin-bottom: 40px;
  }
  #main.services-page.parental .page-content .services-page-lead-1 .services-page-lead-1-options .option {
    padding: 40px 20px 20px 80px;
  }
  #main.services-page.parental .page-content .services-page-lead-1 .services-page-lead-1-options .option .option-shadow {
    top: 15px;
    left: 5px;
    font-size: 190px;
    line-height: 140px;
  }
  #main.services-page.parental .page-content .services-page-lead-1 .services-page-lead-1-options .option .option-title {
    font-size: 32px;
  }
  #main.services-page.parental .page-content .services-page-lead-1 .services-page-lead-1-options .option .option-text {
    height: 60px;
    margin: 20px 0px 0px 0px;
    font-size: 24px;
  }
  #main.services-page.parental .page-content .services-page-lead-1 .services-page-lead-1-request p {
    font-size: 24px;
    margin: 0px;
  }
  #main.services-page.parental .page-content .services-page-lead-1 .services-page-lead-1-request p strong {
    font-size: 35px;
    margin: 0px 0px 10px 0px;
  }
  #main.services-page.parental .page-content .services-page-lead-1 .services-page-lead-1-request button {
    padding: 25px 45px;
    font-size: 20px;
  }
  #main.services-page.parental .page-content .services-page-lead-2 {
    padding-top: 25px;
    padding-bottom: 45px;
  }
  #main.services-page.parental .page-content .services-page-lead-2 .services-page-lead-2-title {
    margin-bottom: 50px;
  }
  #main.services-page.parental .page-content .services-page-lead-2 .services-page-lead-2-title p {
    font-size: 35px;
  }
  #main.services-page.parental .page-content .services-page-lead-2 .services-page-lead-2-request .inputs-row input {
    font-size: 24px;
  }
  #main.services-page.parental .page-content .services-page-lead-2 .services-page-lead-2-request .inputs-row button {
    padding: 20px 45px;
    font-size: 20px;
  }
  #main.services-page.single .page-content .services-slider-container {
    padding-top: 20px;
  }
  #main.services-page.single .page-content .services-slider-container .single-page-slider {
    height: 430px;
  }
  #main.services-page.single .page-content .services-slider-container .slider-content .slider-title {
    margin: 0px 0px 10px 0px;
  }
  #main.services-page.single .page-content .services-slider-container .slider-content .slider-title p {
    font-size: 20px;
    line-height: 28px;
  }
  #main.services-page.single .page-content .services-slider-container .slider-content .slider-text p {
    font-size: 20px;
    line-height: 28px;
    margin: 0px 0px 15px 0px;
  }
  #main.services-page.single .page-content .services-slider-container .slider-content .slider-text button {
    margin: 40px 0px -20px 0px;
    padding: 25px 45px;
    font-size: 20px;
  }
  #main.services-page.single .page-content .text-content .wrapper {
    max-width: 1000px;
  }
  #main.services-page.single .page-content .text-content p {
    margin: 10px 0px 10px 0px;
    font-size: 18px;
    line-height: 28px;
  }
  #main.services-page.single .page-content .text-content h2,
  #main.services-page.single .page-content .text-content h3 {
    color: #e12329;
    margin: 20px 0px 10px 0px;
    font-size: 20px;
    line-height: 28px;
  }
  #main.services-page.single .page-content .text-content h2:before,
  #main.services-page.single .page-content .text-content h3:before {
    width: 35px;
    height: 15px;
    margin: 5px 10px 0px 0px;
  }
  #main.services-page.single .page-content .text-content table {
    width: calc(50% - 10px) !important;
    margin: 0px 60px 40px 0px;
  }
  #main.services-page.single .page-content .text-content table thead tr td {
    font-size: 20px;
    padding: 15px 40px;
  }
  #main.services-page.single .page-content .text-content table tbody tr td {
    font-size: 20px;
    padding: 15px 40px;
  }
  #main.services-page.single .page-content .text-content table + * {
    margin-top: 0px;
  }
  #main.services-page.single .page-content .text-content.bt {
    padding-top: 40px;
    padding-bottom: 20px;
  }
  #main.services-page.single .page-content .text-content.bt .block-title {
    font-size: 20px;
    line-height: 28px;
  }
  #main.services-page.single .page-content .text-content.sb {
    margin: 0px auto;
    padding: 50px 0px;
  }
}
/* @import includes/992-1200/service-page.styl */
@media screen and (min-width: 992px) and (max-width: 1199px) {
  #main.services-page .sb {
    margin: 16px auto;
  }
  #main.services-page .sb.sb-type-1 .block-content .title {
    font-size: 34px;
    margin: 40px 0px 60px 0px;
  }
  #main.services-page .sb.sb-type-1 .block-content .text {
    margin: 60px 0px 40px 0px;
  }
  #main.services-page .sb.sb-type-1 .block-content .text p {
    font-size: 27px;
    margin: 0px 0px 13px 0px;
  }
  #main.services-page .sb.sb-type-1 .block-content .text li {
    font-size: 27px;
    margin: 0px 0px 13px 0px;
    padding-left: 25px;
  }
  #main.services-page .sb.sb-type-1 .block-content .text li:before {
    top: 8px;
    left: 0px;
    width: 10px;
    height: 10px;
  }
  #main.services-page .sb.sb-type-2 .block-content {
    padding-top: 35px;
    padding-bottom: 35px;
  }
  #main.services-page .sb.sb-type-2 .block-content:before,
  #main.services-page .sb.sb-type-2 .block-content:after {
    width: 100%;
    display: table;
    content: " ";
  }
  #main.services-page .sb.sb-type-2 .block-content:after {
    clear: both;
  }
  #main.services-page .sb.sb-type-2 .block-content .title p {
    font-size: 45px;
    line-height: 55px;
  }
  #main.services-page .sb.sb-type-2 .block-content .title p span {
    line-height: 80px;
  }
  #main.services-page .sb.sb-type-2 .block-content .text {
    margin: 25px 0px 0px 0px;
  }
  #main.services-page .sb.sb-type-2 .block-content .text p {
    margin: 0px 0px 20px 0px;
    font-size: 20px;
    padding-left: 50px;
  }
  #main.services-page .sb.sb-type-2 .block-content .text p:before {
    top: 5px;
    left: 0px;
    width: 25px;
    height: 10px;
  }
  #main.services-page .sb.sb-type-3 .block-content {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  #main.services-page .sb.sb-type-3 .block-content .title p {
    font-size: 37px;
    line-height: 70px;
  }
  #main.services-page .sb.sb-type-3 .block-content .title p span {
    line-height: 80px;
  }
  #main.services-page .sb.sb-type-3 .block-content .text p {
    margin: 20px 0px 20px 0px;
    font-size: 20px;
    line-height: 26px;
  }
  #main.services-page .sb.sb-type-3 .block-content .text button {
    margin: 45px 0px -65px 0px;
    padding: 25px 25px;
    font-size: 18px;
  }
  #main.services-page.parental .page-content .finished-works {
    padding-top: 50px;
    padding-bottom: 30px;
  }
  #main.services-page.parental .page-content .finished-works .finished-works-title {
    margin: 0px 0px 55px 0px;
    font-size: 30px;
  }
  #main.services-page.parental .page-content .finished-works .services-slider {
    height: 290px;
  }
  #main.services-page.parental .page-content .finished-works .services-slider .images .image .text .block .title {
    margin-right: 10px;
    margin-bottom: 4px;
    font-size: 20px;
    line-height: 26px;
  }
  #main.services-page.parental .page-content .finished-works .services-slider .images .image .text .block .content p {
    font-size: 20px;
    line-height: 26px;
  }
  #main.services-page.parental .page-content .finished-works .services-slider .images .image .text .block.works {
    margin-bottom: 15px;
  }
  #main.services-page.parental .page-content .finished-works .services-slider .images .image .text .block.works .content p {
    padding-left: 20px;
  }
  #main.services-page.parental .page-content .finished-works .services-slider .images .image .text .block.works .content p:before {
    width: 9px;
    height: 9px;
    top: 9px;
  }
  #main.services-page.parental .page-content .services-page-lead-1 {
    padding-top: 45px;
    padding-bottom: 45px;
  }
  #main.services-page.parental .page-content .services-page-lead-1 .services-page-lead-1-title {
    margin-bottom: 50px;
  }
  #main.services-page.parental .page-content .services-page-lead-1 .services-page-lead-1-title p {
    font-size: 28px;
  }
  #main.services-page.parental .page-content .services-page-lead-1 .services-page-lead-1-title p strong {
    font-size: 23px;
  }
  #main.services-page.parental .page-content .services-page-lead-1 .services-page-lead-1-title p + p {
    margin-top: 5px;
  }
  #main.services-page.parental .page-content .services-page-lead-1 .services-page-lead-1-options {
    margin-bottom: 30px;
  }
  #main.services-page.parental .page-content .services-page-lead-1 .services-page-lead-1-options .option {
    padding: 30px 20px 20px 70px;
  }
  #main.services-page.parental .page-content .services-page-lead-1 .services-page-lead-1-options .option .option-shadow {
    top: 15px;
    left: 5px;
    font-size: 160px;
    line-height: 110px;
  }
  #main.services-page.parental .page-content .services-page-lead-1 .services-page-lead-1-options .option .option-title {
    font-size: 26px;
  }
  #main.services-page.parental .page-content .services-page-lead-1 .services-page-lead-1-options .option .option-text {
    height: 40px;
    margin: 20px 0px 0px 0px;
    font-size: 20px;
  }
  #main.services-page.parental .page-content .services-page-lead-1 .services-page-lead-1-request p {
    font-size: 19px;
    margin: 0px;
  }
  #main.services-page.parental .page-content .services-page-lead-1 .services-page-lead-1-request p strong {
    font-size: 28px;
    margin: 0px 0px 5px 0px;
  }
  #main.services-page.parental .page-content .services-page-lead-1 .services-page-lead-1-request button {
    padding: 20px 35px;
    font-size: 16px;
  }
  #main.services-page.parental .page-content .services-page-lead-2 {
    padding-top: 25px;
    padding-bottom: 45px;
  }
  #main.services-page.parental .page-content .services-page-lead-2 .services-page-lead-2-title {
    margin-bottom: 50px;
  }
  #main.services-page.parental .page-content .services-page-lead-2 .services-page-lead-2-title p {
    font-size: 28px;
  }
  #main.services-page.parental .page-content .services-page-lead-2 .services-page-lead-2-request .inputs-row input {
    font-size: 20px;
  }
  #main.services-page.parental .page-content .services-page-lead-2 .services-page-lead-2-request .inputs-row button {
    padding: 20px 35px;
    font-size: 16px;
  }
  #main.services-page.single .page-content .services-slider-container {
    padding-top: 20px;
  }
  #main.services-page.single .page-content .services-slider-container .single-page-slider {
    height: 360px;
  }
  #main.services-page.single .page-content .services-slider-container .slider-content .slider-title {
    margin: 0px 0px 10px 0px;
  }
  #main.services-page.single .page-content .services-slider-container .slider-content .slider-title p {
    font-size: 16px;
    line-height: 24px;
  }
  #main.services-page.single .page-content .services-slider-container .slider-content .slider-text p {
    font-size: 16px;
    line-height: 24px;
    margin: 0px 0px 15px 0px;
  }
  #main.services-page.single .page-content .services-slider-container .slider-content .slider-text button {
    margin: 30px 0px -20px 0px;
    padding: 20px 35px;
    font-size: 16px;
  }
  #main.services-page.single .page-content .text-content p {
    margin: 10px 0px 10px 0px;
    font-size: 16px;
    line-height: 22px;
  }
  #main.services-page.single .page-content .text-content h2,
  #main.services-page.single .page-content .text-content h3 {
    color: #e12329;
    margin: 15px 0px 10px 0px;
    font-size: 16px;
    line-height: 22px;
  }
  #main.services-page.single .page-content .text-content h2:before,
  #main.services-page.single .page-content .text-content h3:before {
    width: 35px;
    height: 15px;
    margin: 5px 10px 0px 0px;
  }
  #main.services-page.single .page-content .text-content table {
    width: calc(50% - 10px) !important;
    margin: 0px 40px 30px 0px;
  }
  #main.services-page.single .page-content .text-content table thead tr td {
    font-size: 16px;
    padding: 10px 30px;
  }
  #main.services-page.single .page-content .text-content table tbody tr td {
    font-size: 16px;
    padding: 10px 30px;
  }
  #main.services-page.single .page-content .text-content table + * {
    margin-top: 0px;
  }
  #main.services-page.single .page-content .text-content.bt {
    padding-top: 30px;
    padding-bottom: 20px;
  }
  #main.services-page.single .page-content .text-content.bt .block-title {
    font-size: 16px;
    line-height: 22px;
  }
  #main.services-page.single .page-content .text-content.sb {
    margin: 0px auto;
    padding: 40px 0px;
  }
}
/* @import includes/768-991/service-page.styl */
@media screen and (max-width: 991px) {
  #main.services-page .sb {
    margin: 20px auto;
  }
  #main.services-page .sb.sb-type-1 .block-content .title {
    font-size: 30px;
    margin: 30px 0px 40px 0px;
  }
  #main.services-page .sb.sb-type-1 .block-content .text {
    margin: 40px 0px 30px 0px;
  }
  #main.services-page .sb.sb-type-1 .block-content .text p {
    font-size: 24px;
    margin: 0px 0px 10px 0px;
  }
  #main.services-page .sb.sb-type-1 .block-content .text li {
    font-size: 24px;
    margin: 0px 0px 10px 0px;
    padding-left: 20px;
  }
  #main.services-page .sb.sb-type-1 .block-content .text li:before {
    top: 6px;
    left: 0px;
    width: 10px;
    height: 10px;
  }
  #main.services-page .sb.sb-type-2 .block-content {
    padding-top: 35px;
    padding-bottom: 35px;
  }
  #main.services-page .sb.sb-type-2 .block-content:before,
  #main.services-page .sb.sb-type-2 .block-content:after {
    width: 100%;
    display: table;
    content: " ";
  }
  #main.services-page .sb.sb-type-2 .block-content:after {
    clear: both;
  }
  #main.services-page .sb.sb-type-2 .block-content .title p {
    font-size: 40px;
    line-height: 50px;
  }
  #main.services-page .sb.sb-type-2 .block-content .title p span {
    line-height: 75px;
  }
  #main.services-page .sb.sb-type-2 .block-content .text {
    margin: 25px 0px 0px 0px;
  }
  #main.services-page .sb.sb-type-2 .block-content .text p {
    margin: 0px 0px 20px 0px;
    font-size: 18px;
    padding-left: 40px;
  }
  #main.services-page .sb.sb-type-2 .block-content .text p:before {
    top: 5px;
    left: 0px;
    width: 20px;
    height: 10px;
  }
  #main.services-page .sb.sb-type-3 .block-content {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  #main.services-page .sb.sb-type-3 .block-content .title p {
    font-size: 28px;
    line-height: 61px;
  }
  #main.services-page .sb.sb-type-3 .block-content .title p span {
    line-height: 71px;
  }
  #main.services-page .sb.sb-type-3 .block-content .text p {
    margin: 20px 0px 20px 0px;
    font-size: 20px;
    line-height: 26px;
  }
  #main.services-page .sb.sb-type-3 .block-content .text button {
    margin: 45px 0px -65px 0px;
    padding: 25px 25px;
    font-size: 18px;
  }
  #main.services-page.parental .page-content .finished-works {
    padding-top: 50px;
    padding-bottom: 30px;
  }
  #main.services-page.parental .page-content .finished-works .finished-works-title {
    margin: 0px 0px 55px 0px;
    font-size: 30px;
  }
  #main.services-page.parental .page-content .finished-works .services-slider {
    height: 220px;
  }
  #main.services-page.parental .page-content .finished-works .services-slider .images .image img {
    max-height: 100%;
  }
  #main.services-page.parental .page-content .finished-works .services-slider .images .image .text .block .title {
    margin-right: 10px;
    margin-bottom: 2px;
    font-size: 14px;
    line-height: 20px;
  }
  #main.services-page.parental .page-content .finished-works .services-slider .images .image .text .block .content p {
    font-size: 14px;
    line-height: 20px;
  }
  #main.services-page.parental .page-content .finished-works .services-slider .images .image .text .block.works {
    margin-bottom: 10px;
  }
  #main.services-page.parental .page-content .finished-works .services-slider .images .image .text .block.works .content p {
    padding-left: 15px;
  }
  #main.services-page.parental .page-content .finished-works .services-slider .images .image .text .block.works .content p:before {
    width: 7px;
    height: 7px;
    top: 7px;
  }
  #main.services-page.parental .page-content .services-page-lead-1 {
    padding-top: 45px;
    padding-bottom: 45px;
  }
  #main.services-page.parental .page-content .services-page-lead-1 .services-page-lead-1-title {
    margin-bottom: 30px;
  }
  #main.services-page.parental .page-content .services-page-lead-1 .services-page-lead-1-title p {
    font-size: 21px;
  }
  #main.services-page.parental .page-content .services-page-lead-1 .services-page-lead-1-title p strong {
    font-size: 17.2px;
  }
  #main.services-page.parental .page-content .services-page-lead-1 .services-page-lead-1-title p + p {
    margin-top: 5px;
  }
  #main.services-page.parental .page-content .services-page-lead-1 .services-page-lead-1-options {
    margin-bottom: 30px;
  }
  #main.services-page.parental .page-content .services-page-lead-1 .services-page-lead-1-options .option {
    padding: 20px 20px 20px 50px;
  }
  #main.services-page.parental .page-content .services-page-lead-1 .services-page-lead-1-options .option .option-shadow {
    top: 15px;
    left: 5px;
    font-size: 130px;
    line-height: 80px;
  }
  #main.services-page.parental .page-content .services-page-lead-1 .services-page-lead-1-options .option .option-title {
    font-size: 22px;
  }
  #main.services-page.parental .page-content .services-page-lead-1 .services-page-lead-1-options .option .option-text {
    height: 32px;
    margin: 16px 0px 0px 0px;
    font-size: 16px;
  }
  #main.services-page.parental .page-content .services-page-lead-1 .services-page-lead-1-request p {
    font-size: 16px;
    margin: 0px;
  }
  #main.services-page.parental .page-content .services-page-lead-1 .services-page-lead-1-request p strong {
    font-size: 24px;
    margin: 0px 0px 5px 0px;
  }
  #main.services-page.parental .page-content .services-page-lead-1 .services-page-lead-1-request button {
    padding: 20px 25px;
    font-size: 16px;
  }
  #main.services-page.parental .page-content .services-page-lead-2 {
    padding-top: 25px;
    padding-bottom: 45px;
  }
  #main.services-page.parental .page-content .services-page-lead-2 .services-page-lead-2-title {
    margin-bottom: 50px;
  }
  #main.services-page.parental .page-content .services-page-lead-2 .services-page-lead-2-title p {
    font-size: 28px;
  }
  #main.services-page.parental .page-content .services-page-lead-2 .services-page-lead-2-request .inputs-row input {
    font-size: 20px;
  }
  #main.services-page.parental .page-content .services-page-lead-2 .services-page-lead-2-request .inputs-row button {
    padding: 20px 25px;
    font-size: 16px;
  }
  #main.services-page.single .page-content .services-slider-container {
    padding-top: 20px;
  }
  #main.services-page.single .page-content .services-slider-container .single-page-slider {
    height: 430px;
    margin-bottom: 40px;
  }
  #main.services-page.single .page-content .services-slider-container .slider-content .slider-title {
    margin: 0px 0px 10px 0px;
  }
  #main.services-page.single .page-content .services-slider-container .slider-content .slider-title p {
    font-size: 16px;
    line-height: 24px;
  }
  #main.services-page.single .page-content .services-slider-container .slider-content .slider-text p {
    font-size: 16px;
    line-height: 24px;
    margin: 0px 0px 15px 0px;
  }
  #main.services-page.single .page-content .services-slider-container .slider-content .slider-text button {
    margin: 25px 0px 10px 0px;
    padding: 20px 35px;
    font-size: 16px;
  }
  #main.services-page.single .page-content .text-content p {
    margin: 10px 0px 10px 0px;
    font-size: 16px;
    line-height: 22px;
  }
  #main.services-page.single .page-content .text-content h2,
  #main.services-page.single .page-content .text-content h3 {
    color: #e12329;
    margin: 15px 0px 10px 0px;
    font-size: 16px;
    line-height: 22px;
  }
  #main.services-page.single .page-content .text-content h2:before,
  #main.services-page.single .page-content .text-content h3:before {
    width: 35px;
    height: 15px;
    margin: 5px 10px 0px 0px;
  }
  #main.services-page.single .page-content .text-content table {
    width: 100%;
    margin: 0px 0px 30px 0px;
  }
  #main.services-page.single .page-content .text-content table thead tr td {
    font-size: 16px;
    padding: 10px 30px;
  }
  #main.services-page.single .page-content .text-content table tbody tr td {
    font-size: 16px;
    padding: 10px 30px;
  }
  #main.services-page.single .page-content .text-content table + * {
    margin-top: 0px;
  }
  #main.services-page.single .page-content .text-content.bt {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  #main.services-page.single .page-content .text-content.bt .block-title {
    font-size: 16px;
    line-height: 22px;
  }
  #main.services-page.single .page-content .text-content.sb {
    margin: 0px auto;
    padding: 50px 0px;
  }
}
/* @import includes/768-/service-page.styl */
@media screen and (max-width: 767px) {
  #main.services-page .sb {
    margin: 20px auto;
  }
  #main.services-page .sb.sb-type-1 .block-content .title {
    font-size: 30px;
    margin: 30px 0px 40px 0px;
  }
  #main.services-page .sb.sb-type-1 .block-content .text {
    margin: 40px 0px 30px 0px;
  }
  #main.services-page .sb.sb-type-1 .block-content .text p {
    font-size: 28px;
    line-height: 36px;
    margin: 0px 0px 15px 0px;
  }
  #main.services-page .sb.sb-type-1 .block-content .text li {
    font-size: 28px;
    line-height: 36px;
    margin: 0px 0px 15px 0px;
    padding-left: 20px;
  }
  #main.services-page .sb.sb-type-1 .block-content .text li:before {
    top: 6px;
    left: 0px;
    width: 10px;
    height: 10px;
  }
  #main.services-page .sb.sb-type-2 .block-content {
    padding-top: 35px;
    padding-bottom: 35px;
  }
  #main.services-page .sb.sb-type-2 .block-content:before,
  #main.services-page .sb.sb-type-2 .block-content:after {
    width: 100%;
    display: table;
    content: " ";
  }
  #main.services-page .sb.sb-type-2 .block-content:after {
    clear: both;
  }
  #main.services-page .sb.sb-type-2 .block-content .title p {
    font-size: 40px;
    line-height: 50px;
  }
  #main.services-page .sb.sb-type-2 .block-content .title p span {
    line-height: 75px;
  }
  #main.services-page .sb.sb-type-2 .block-content .text {
    margin: 25px 0px 0px 0px;
  }
  #main.services-page .sb.sb-type-2 .block-content .text p {
    font-size: 28px;
    line-height: 36px;
    margin: 0px 0px 15px 0px;
    padding-left: 40px;
  }
  #main.services-page .sb.sb-type-2 .block-content .text p:before {
    top: 5px;
    left: 0px;
    width: 20px;
    height: 10px;
  }
  #main.services-page .sb.sb-type-3 .block-content {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  #main.services-page .sb.sb-type-3 .block-content .title p {
    font-size: 40px;
    line-height: 60px;
  }
  #main.services-page .sb.sb-type-3 .block-content .title p span {
    line-height: 60px;
    display: block;
  }
  #main.services-page .sb.sb-type-3 .block-content .text p {
    margin: 20px 0px 20px 0px;
    font-size: 28px;
    line-height: 36px;
  }
  #main.services-page .sb.sb-type-3 .block-content .text button {
    margin: 25px 0px -60px 0px;
    padding: 25px 25px;
    font-size: 26px;
  }
  #main.services-page.parental .page-content .finished-works {
    padding-top: 50px;
    padding-bottom: 30px;
  }
  #main.services-page.parental .page-content .finished-works .finished-works-title {
    margin: 0px 0px 55px 0px;
    font-size: 30px;
  }
  #main.services-page.parental .page-content .finished-works .services-slider {
    height: 220px;
  }
  #main.services-page.parental .page-content .finished-works .services-slider .images .image img {
    max-height: 100%;
  }
  #main.services-page.parental .page-content .finished-works .services-slider .images .image .text .block .title {
    margin-right: 10px;
    margin-bottom: 2px;
    font-size: 14px;
    line-height: 20px;
  }
  #main.services-page.parental .page-content .finished-works .services-slider .images .image .text .block .content p {
    font-size: 14px;
    line-height: 20px;
  }
  #main.services-page.parental .page-content .finished-works .services-slider .images .image .text .block.works {
    margin-bottom: 10px;
  }
  #main.services-page.parental .page-content .finished-works .services-slider .images .image .text .block.works .content p {
    padding-left: 15px;
  }
  #main.services-page.parental .page-content .finished-works .services-slider .images .image .text .block.works .content p:before {
    width: 7px;
    height: 7px;
    top: 7px;
  }
  #main.services-page.parental .page-content .services-page-lead-1 {
    padding-top: 45px;
    padding-bottom: 45px;
  }
  #main.services-page.parental .page-content .services-page-lead-1 .services-page-lead-1-title {
    margin-bottom: 30px;
  }
  #main.services-page.parental .page-content .services-page-lead-1 .services-page-lead-1-title p {
    font-size: 28px;
  }
  #main.services-page.parental .page-content .services-page-lead-1 .services-page-lead-1-title p strong {
    font-size: 26px;
  }
  #main.services-page.parental .page-content .services-page-lead-1 .services-page-lead-1-title p + p {
    margin-top: 5px;
  }
  #main.services-page.parental .page-content .services-page-lead-1 .services-page-lead-1-options {
    margin-bottom: 30px;
  }
  #main.services-page.parental .page-content .services-page-lead-1 .services-page-lead-1-options .option {
    width: 100%;
    margin: 0px 0px 20px 0px;
    padding: 20px 20px 20px 50px;
  }
  #main.services-page.parental .page-content .services-page-lead-1 .services-page-lead-1-options .option .option-shadow {
    top: 15px;
    left: 5px;
    font-size: 130px;
    line-height: 80px;
  }
  #main.services-page.parental .page-content .services-page-lead-1 .services-page-lead-1-options .option .option-title {
    font-size: 34px;
  }
  #main.services-page.parental .page-content .services-page-lead-1 .services-page-lead-1-options .option .option-text {
    height: 32px;
    margin: 16px 0px 0px 0px;
    font-size: 28px;
  }
  #main.services-page.parental .page-content .services-page-lead-1 .services-page-lead-1-request {
    text-align: center;
  }
  #main.services-page.parental .page-content .services-page-lead-1 .services-page-lead-1-request p {
    font-size: 28px;
    margin: 0px;
  }
  #main.services-page.parental .page-content .services-page-lead-1 .services-page-lead-1-request p strong {
    font-size: 32px;
    margin: 0px 0px 15px 0px;
  }
  #main.services-page.parental .page-content .services-page-lead-1 .services-page-lead-1-request button {
    margin-top: 30px;
    padding: 20px 25px;
    font-size: 28px;
  }
  #main.services-page.parental .page-content .services-page-lead-2 {
    padding-top: 25px;
    padding-bottom: 45px;
  }
  #main.services-page.parental .page-content .services-page-lead-2 .services-page-lead-2-title {
    margin-bottom: 50px;
  }
  #main.services-page.parental .page-content .services-page-lead-2 .services-page-lead-2-title p {
    font-size: 28px;
  }
  #main.services-page.parental .page-content .services-page-lead-2 .services-page-lead-2-request {
    text-align: center;
  }
  #main.services-page.parental .page-content .services-page-lead-2 .services-page-lead-2-request .inputs-row input {
    font-size: 28px;
    margin-bottom: 25px;
  }
  #main.services-page.parental .page-content .services-page-lead-2 .services-page-lead-2-request .inputs-row button {
    float: none;
    padding: 20px 25px;
    font-size: 28px;
  }
  #main.services-page.single .page-content .services-slider-container {
    padding-top: 20px;
  }
  #main.services-page.single .page-content .services-slider-container .single-page-slider {
    height: 430px;
    margin-bottom: 40px;
  }
  #main.services-page.single .page-content .services-slider-container .slider-content .slider-title {
    margin: 0px 0px 10px 0px;
  }
  #main.services-page.single .page-content .services-slider-container .slider-content .slider-title p {
    font-size: 28px;
    line-height: 36px;
  }
  #main.services-page.single .page-content .services-slider-container .slider-content .slider-text p {
    font-size: 28px;
    line-height: 36px;
    margin: 0px 0px 15px 0px;
  }
  #main.services-page.single .page-content .services-slider-container .slider-content .slider-text button {
    margin: 25px 0px 20px 0px;
    padding: 20px 35px;
    font-size: 28px;
  }
  #main.services-page.single .page-content .text-content p {
    margin: 10px 0px 20px 0px;
    font-size: 28px;
    line-height: 36px;
  }
  #main.services-page.single .page-content .text-content h2,
  #main.services-page.single .page-content .text-content h3 {
    color: #e12329;
    margin: 15px 0px 20px 0px;
    font-size: 32px;
    line-height: 40px;
  }
  #main.services-page.single .page-content .text-content h2:before,
  #main.services-page.single .page-content .text-content h3:before {
    width: 45px;
    height: 25px;
    margin: 5px 10px 0px 0px;
  }
  #main.services-page.single .page-content .text-content.bt {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  #main.services-page.single .page-content .text-content.bt .block-title {
    font-size: 28px;
    line-height: 36px;
  }
  #main.services-page.single .page-content .text-content.sb {
    margin: 0px auto;
    padding: 50px 0px;
  }
}
/* @import includes/blog-page.styl */
#main.blog-page.parental .page-content .article {
  display: inline-block;
  vertical-align: top;
  float: none;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.blog-page.parental .page-content .article a {
  display: block;
}
#main.blog-page.parental .page-content .article .article-image {
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.blog-page.parental .page-content .article .article-image img {
  max-width: 100%;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.blog-page.parental .page-content .article .article-title {
  color: #000;
  font-weight: 600;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.blog-page.parental .page-content .article .article-short img {
  display: none;
}
#main.blog-page.parental .page-content .article .article-short * {
  color: #000;
  font-weight: 400;
}
#main.blog-page.parental .page-content .article .article-short > * {
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.blog-page.parental .page-content .article .article-link span {
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  position: relative;
  padding: 0px 50px 5px 5px;
}
#main.blog-page.parental .page-content .article .article-link span:before {
  content: '';
  position: absolute;
  left: 0px;
  right: calc(100% - 70px);
  bottom: 0px;
  height: 2px;
  background-color: #e12329;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  transition-delay: 0.2s;
}
#main.blog-page.parental .page-content .article .article-link span:after {
  content: '';
  position: absolute;
  top: 3px;
  right: 20px;
  width: 23px;
  height: 16px;
  background-image: url("images/arrow-right.png");
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  transition-delay: 0s;
}
#main.blog-page.parental .page-content .article .article-link span:hover:before {
  right: 50px;
  transition-delay: 0s;
}
#main.blog-page.parental .page-content .article .article-link span:hover:after {
  right: 0px;
  transition-delay: 0.2s;
}
#main.blog-page.parental .page-content .article:hover .article-link span:before {
  transition-delay: 0s;
}
#main.blog-page.parental .page-content .article:hover .article-link span:after {
  transition-delay: 0.2s;
}
#main.blog-page.parental .pagination {
  width: 100%;
  float: left;
  margin: 0px;
}
#main.blog-page.parental .pagination ul {
  font-size: 0px;
  padding-left: 10px;
  padding-right: 10px;
}
#main.blog-page.parental .pagination ul li {
  display: inline-block;
}
#main.blog-page.parental .pagination ul li a {
  display: block;
  padding: 10px;
  min-width: 40px;
  font-size: 18px;
  text-align: center;
  background-color: #ececec;
}
#main.blog-page.parental .pagination ul li.active a {
  color: #fff;
  background-color: #e12329;
}
#main.blog-page.parental .pagination ul li:before {
  content: '';
  display: none;
}
#main.blog-page.parental .pagination ul li + li {
  margin-left: 10px;
}
#main.blog-page.single .blog-tags {
  margin-top: -25px;
  margin-bottom: 50px;
}
#main.blog-page.single .blog-tags p {
  display: inline-block;
  margin: 0px 5px 0px 0px;
}
#main.blog-page.single .blog-tags a {
  display: inline-block;
  color: #e12329;
}
#main.blog-page.single .page-content .image {
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.blog-page.single .page-content .text-content {
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.blog-page.single .page-content .text-content p {
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.blog-page.single .page-content a[href^="/"] {
  padding: 15px 20px;
  display: inline-block;
  background-color: #e12329;
  color: #fff;
  border: none;
  font-weight: bold;
  text-transform: uppercase;
  box-shadow: 9px 11px 30px 0px rgba(0,0,0,0.6);
  margin: 10px 10px 10px 10px;
}
/* @import includes/1200+/blog-page.styl */
@media screen and (min-width: 1200px) {
  #main.blog-page.parental .page-content .article {
    margin-bottom: 80px;
  }
  #main.blog-page.parental .page-content .article a {
    display: block;
  }
  #main.blog-page.parental .page-content .article .article-image {
    margin: 0px 0px 20px 0px;
  }
  #main.blog-page.parental .page-content .article .article-title {
    font-size: 24px;
    line-height: 30px;
    margin: 0px 0px 20px 0px;
  }
  #main.blog-page.parental .page-content .article .article-short * {
    font-size: 18px;
    line-height: 24px;
  }
  #main.blog-page.parental .page-content .article .article-link span {
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    position: relative;
    padding: 0px 50px 5px 5px;
  }
  #main.blog-page.parental .page-content .article .article-link span:before {
    content: '';
    position: absolute;
    left: 0px;
    right: calc(100% - 70px);
    bottom: 0px;
    height: 2px;
    background-color: #e12329;
    transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    transition-delay: 0.2s;
  }
  #main.blog-page.parental .page-content .article .article-link span:after {
    content: '';
    position: absolute;
    top: 3px;
    right: 20px;
    width: 23px;
    height: 16px;
    background-image: url("images/arrow-right.png");
    transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    transition-delay: 0s;
  }
  #main.blog-page.parental .page-content .article .article-link span:hover:before {
    right: 50px;
    transition-delay: 0s;
  }
  #main.blog-page.parental .page-content .article .article-link span:hover:after {
    right: 0px;
    transition-delay: 0.2s;
  }
  #main.blog-page.parental .page-content .article:hover .article-link span:before {
    right: 50px;
  }
  #main.blog-page.parental .page-content .article:hover .article-link span:after {
    right: 0px;
  }
  #main.blog-page.single .page-content .image {
    margin-bottom: 45px;
  }
  #main.blog-page.single .page-content .text-content {
    margin-bottom: 80px;
  }
  #main.blog-page.single .page-content .text-content p {
    font-size: 20px;
    line-height: 30px;
    margin: 0px 0px 10px 0px;
  }
  #main.blog-page.single .page-content .text-content > * {
    max-width: 900px;
  }
}
/* @import includes/992-1200/blog-page.styl */
@media screen and (min-width: 992px) and (max-width: 1199px) {
  #main.blog-page.parental .page-content .article {
    margin-bottom: 70px;
  }
  #main.blog-page.parental .page-content .article a {
    display: block;
  }
  #main.blog-page.parental .page-content .article .article-image {
    margin: 0px 0px 15px 0px;
  }
  #main.blog-page.parental .page-content .article .article-title {
    font-size: 20px;
    line-height: 26px;
    margin: 0px 0px 15px 0px;
  }
  #main.blog-page.parental .page-content .article .article-short * {
    font-size: 15px;
    line-height: 21px;
  }
  #main.blog-page.parental .page-content .article .article-link span {
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    position: relative;
    padding: 0px 50px 5px 5px;
  }
  #main.blog-page.parental .page-content .article .article-link span:before {
    content: '';
    position: absolute;
    left: 0px;
    right: calc(100% - 70px);
    bottom: 0px;
    height: 2px;
    background-color: #e12329;
    transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    transition-delay: 0.2s;
  }
  #main.blog-page.parental .page-content .article .article-link span:after {
    content: '';
    position: absolute;
    top: 3px;
    right: 20px;
    width: 23px;
    height: 16px;
    background-image: url("images/arrow-right.png");
    transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    transition-delay: 0s;
  }
  #main.blog-page.parental .page-content .article .article-link span:hover:before {
    right: 50px;
    transition-delay: 0s;
  }
  #main.blog-page.parental .page-content .article .article-link span:hover:after {
    right: 0px;
    transition-delay: 0.2s;
  }
  #main.blog-page.parental .page-content .article:hover .article-link span:before {
    right: 50px;
  }
  #main.blog-page.parental .page-content .article:hover .article-link span:after {
    right: 0px;
  }
  #main.blog-page.single .page-content .image {
    margin-bottom: 35px;
  }
  #main.blog-page.single .page-content .text-content {
    margin-bottom: 70px;
  }
  #main.blog-page.single .page-content .text-content p {
    font-size: 17px;
    line-height: 27px;
    margin: 0px 0px 10px 0px;
  }
  #main.blog-page.single .page-content .text-content > * {
    max-width: 900px;
  }
}
/* @import includes/768-991/blog-page.styl */
@media screen and (max-width: 991px) {
  #main.blog-page.parental .page-content .article {
    margin-bottom: 70px;
  }
  #main.blog-page.parental .page-content .article a {
    display: block;
  }
  #main.blog-page.parental .page-content .article .article-image {
    margin: 0px 0px 15px 0px;
  }
  #main.blog-page.parental .page-content .article .article-title {
    font-size: 20px;
    line-height: 26px;
    margin: 0px 0px 15px 0px;
  }
  #main.blog-page.parental .page-content .article .article-short * {
    font-size: 15px;
    line-height: 21px;
  }
  #main.blog-page.parental .page-content .article .article-link span {
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    position: relative;
    padding: 0px 50px 5px 5px;
  }
  #main.blog-page.parental .page-content .article .article-link span:before {
    content: '';
    position: absolute;
    left: 0px;
    right: calc(100% - 70px);
    bottom: 0px;
    height: 2px;
    background-color: #e12329;
    transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    transition-delay: 0.2s;
  }
  #main.blog-page.parental .page-content .article .article-link span:after {
    content: '';
    position: absolute;
    top: 3px;
    right: 20px;
    width: 23px;
    height: 16px;
    background-image: url("images/arrow-right.png");
    transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    transition-delay: 0s;
  }
  #main.blog-page.parental .page-content .article .article-link span:hover:before {
    right: 50px;
    transition-delay: 0s;
  }
  #main.blog-page.parental .page-content .article .article-link span:hover:after {
    right: 0px;
    transition-delay: 0.2s;
  }
  #main.blog-page.parental .page-content .article:nth-of-type(2n+2) {
    float: right;
  }
  #main.blog-page.parental .page-content .article:hover .article-link span:before {
    right: 50px;
  }
  #main.blog-page.parental .page-content .article:hover .article-link span:after {
    right: 0px;
  }
  #main.blog-page.single .page-content .image {
    margin-bottom: 35px;
  }
  #main.blog-page.single .page-content .text-content {
    margin-bottom: 70px;
  }
  #main.blog-page.single .page-content .text-content p {
    font-size: 17px;
    line-height: 27px;
    margin: 0px 0px 10px 0px;
  }
  #main.blog-page.single .page-content .text-content > * {
    max-width: 900px;
  }
}
/* @import includes/768-/blog-page.styl */
@media screen and (max-width: 767px) {
  #main.blog-page.parental .page-content .article {
    margin-bottom: 70px;
  }
  #main.blog-page.parental .page-content .article a {
    display: block;
  }
  #main.blog-page.parental .page-content .article .article-image {
    margin: 0px 0px 15px 0px;
  }
  #main.blog-page.parental .page-content .article .article-title {
    font-size: 28px;
    line-height: 36px;
    margin: 0px 0px 15px 0px;
  }
  #main.blog-page.parental .page-content .article .article-short * {
    font-size: 28px;
    line-height: 36px;
  }
  #main.blog-page.parental .page-content .article .article-link span {
    font-size: 28px;
  }
  #main.blog-page.parental .page-content .article:nth-of-type(2n+2) {
    float: right;
  }
  #main.blog-page.parental .page-content .article:hover .article-link span:before {
    right: 50px;
  }
  #main.blog-page.parental .page-content .article:hover .article-link span:after {
    right: 0px;
  }
  #main.blog-page.single .page-content .image {
    margin-bottom: 35px;
  }
  #main.blog-page.single .page-content .text-content {
    margin-bottom: 70px;
  }
  #main.blog-page.single .page-content .text-content p {
    font-size: 28px;
    line-height: 36px;
    margin: 0px 0px 10px 0px;
  }
  #main.blog-page.single .page-content .text-content > * {
    max-width: 900px;
  }
}
/* @import includes/tuning-page.styl */
#main.tuning-page .we-manage .we-manage-title {
  color: #e12329;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.tuning-page .we-manage .dropping {
  display: inline-block;
  vertical-align: top;
  position: relative;
  background-color: #fff;
  box-shadow: 9px 11px 30px 0px rgba(0,0,0,0.3);
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  z-index: 5;
  cursor: pointer;
}
#main.tuning-page .we-manage .dropping .logo {
  height: inherit;
  font-size: 0px;
  text-align: center;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.tuning-page .we-manage .dropping .logo:before {
  content: '';
  width: 0px;
  display: inline-block;
  vertical-align: middle;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.tuning-page .we-manage .dropping .logo img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
#main.tuning-page .we-manage .dropping .drop-list {
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 50%;
  min-height: 100%;
  pointer-events: none;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  background-color: #fff;
  z-index: 5;
  transform: translateY(50%) scale(0, 0) translateZ(0);
  -o-transform: translateY(50%) scale(0, 0) translateZ(0);
  -ms-transform: translateY(50%) scale(0, 0) translateZ(0);
  -moz-transform: translateY(50%) scale(0, 0) translateZ(0);
  -webkit-transform: translateY(50%) scale(0, 0) translateZ(0);
}
#main.tuning-page .we-manage .dropping .drop-list ul {
  overflow: hidden;
}
#main.tuning-page .we-manage .dropping .drop-list ul li {
  box-shadow: inset 0px 0px 0px 0px #e12329, inset 0px 0px 0px 0px #e12329;
  transform: translateX(-100%);
  -o-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
  -o-transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
  -ms-transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
  -moz-transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
  -webkit-transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
  transition-delay: 0s;
}
#main.tuning-page .we-manage .dropping .drop-list ul li .image {
  display: inline-block;
  text-align: right;
  vertical-align: middle;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.tuning-page .we-manage .dropping .drop-list ul li .image img {
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.tuning-page .we-manage .dropping .drop-list ul li .title {
  display: inline-block;
  vertical-align: middle;
  font-weight: 600;
}
#main.tuning-page .we-manage .dropping.active .drop-list {
  pointer-events: initial;
  transform: translateY(50%) scale(1, 1) translateZ(0);
  -o-transform: translateY(50%) scale(1, 1) translateZ(0);
  -ms-transform: translateY(50%) scale(1, 1) translateZ(0);
  -moz-transform: translateY(50%) scale(1, 1) translateZ(0);
  -webkit-transform: translateY(50%) scale(1, 1) translateZ(0);
  box-shadow: 9px 11px 30px 0px rgba(0,0,0,0.3);
}
#main.tuning-page .we-manage .dropping.active .drop-list ul li {
  transform: translateX(0%) translateZ(0);
  -o-transform: translateX(0%) translateZ(0);
  -ms-transform: translateX(0%) translateZ(0);
  -moz-transform: translateX(0%) translateZ(0);
  -webkit-transform: translateX(0%) translateZ(0);
}
#main.tuning-page .we-manage .dropping.active .drop-list ul li:nth-of-type(0) {
  transition-delay: 0s, 0s;
}
#main.tuning-page .we-manage .dropping.active .drop-list ul li:nth-of-type(1) {
  transition-delay: 0.066666666666667s, 0s;
}
#main.tuning-page .we-manage .dropping.active .drop-list ul li:nth-of-type(2) {
  transition-delay: 0.133333333333333s, 0s;
}
#main.tuning-page .we-manage .dropping.active .drop-list ul li:nth-of-type(3) {
  transition-delay: 0.2s, 0s;
}
#main.tuning-page .we-manage .dropping.active .drop-list ul li:nth-of-type(4) {
  transition-delay: 0.266666666666667s, 0s;
}
#main.tuning-page .we-manage .dropping.active .drop-list ul li:nth-of-type(5) {
  transition-delay: 0.333333333333333s, 0s;
}
#main.tuning-page .we-manage .dropping.active .drop-list ul li:nth-of-type(6) {
  transition-delay: 0.4s, 0s;
}
#main.tuning-page .we-manage .dropping.active .drop-list ul li:nth-of-type(7) {
  transition-delay: 0.466666666666667s, 0s;
}
#main.tuning-page .we-manage .dropping.active .drop-list ul li:nth-of-type(8) {
  transition-delay: 0.533333333333333s, 0s;
}
#main.tuning-page .we-manage .dropping.active .drop-list ul li:nth-of-type(9) {
  transition-delay: 0.6s, 0s;
}
#main.tuning-page .we-manage .dropping.active .drop-list ul li:nth-of-type(10) {
  transition-delay: 0.666666666666667s, 0s;
}
#main.tuning-page .we-manage .dropping.active .drop-list ul li:nth-of-type(11) {
  transition-delay: 0.733333333333333s, 0s;
}
#main.tuning-page .we-manage .dropping.active .drop-list ul li:nth-of-type(12) {
  transition-delay: 0.8s, 0s;
}
#main.tuning-page .we-manage .dropping.active .drop-list ul li:nth-of-type(13) {
  transition-delay: 0.866666666666667s, 0s;
}
#main.tuning-page .we-manage .dropping.active .drop-list ul li:nth-of-type(14) {
  transition-delay: 0.933333333333333s, 0s;
}
#main.tuning-page .we-manage .dropping.active .drop-list ul li:nth-of-type(15) {
  transition-delay: 1s, 0s;
}
#main.tuning-page .page-content + .wrapper {
  margin-top: 50px;
}
#main.tuning-page .page-content .selects-main .main-tuning-title {
  font-weight: 800;
  text-transform: uppercase;
}
#main.tuning-page .page-content .selects-main .main-tuning-title span {
  display: inline-block;
  vertical-align: top;
}
#main.tuning-page .page-content .selects-main .main-tuning-title span img {
  display: inline-block;
  vertical-align: middle;
}
#main.tuning-page .page-content .selects-main button[type="submit"] {
  border: none;
  background-color: #e12329;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  box-shadow: 9px 11px 30px 0px rgba(0,0,0,0.6);
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.tuning-page .page-content .selects-main button[type="reset"] {
  float: right;
  border: none;
  background-color: rgba(0,0,0,0);
  text-decoration: underline;
}
#main.tuning-page .page-content .selects-main button[type="reset"]:before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  background-size: cover;
  background-image: url("images/tuning-reset.png");
}
#main.tuning-page .page-content .categories .category {
  display: inline-block;
  vertical-align: top;
  position: relative;
  float: none;
  margin-bottom: 20px;
}
#main.tuning-page .page-content .categories .category a {
  display: block;
  height: 100%;
}
#main.tuning-page .page-content .categories .category .image {
  width: 100%;
  height: inherit;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
#main.tuning-page .page-content .categories .category .image img {
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
  position: relative;
  z-index: 1;
}
#main.tuning-page .page-content .categories .category .image:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background-color: rgba(0,0,0,0.5);
  z-index: 2;
}
#main.tuning-page .page-content .categories .category .text {
  position: absolute;
  top: 0px;
  left: 10px;
  right: 10px;
  bottom: 0px;
  margin: -10px -10px 10px 10px;
  transition: background-color 0.2s linear, padding 0.2s linear;
  -o-transition: background-color 0.2s linear, padding 0.2s linear;
  -ms-transition: background-color 0.2s linear, padding 0.2s linear;
  -moz-transition: background-color 0.2s linear, padding 0.2s linear;
  -webkit-transition: background-color 0.2s linear, padding 0.2s linear;
  transition-delay: 0.2s, 0s;
  z-index: 2;
}
#main.tuning-page .page-content .categories .category .text .title {
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.tuning-page .page-content .categories .category:hover .text,
#main.tuning-page .page-content .categories .category.active .text {
  background-color: rgba(225,35,41,0.65);
  transition-delay: 0s, 0s;
}
#main.tuning-page .page-content .items-text a[href^="tel:"],
#main.tuning-page .page-content .items-text a[href^="form:"],
#main.tuning-page .page-content .items-text a[href^="callto:"] {
  padding: 15px 20px;
  display: inline-block;
  background-color: #e12329;
  color: #fff;
  border: none;
  font-weight: bold;
  text-transform: uppercase;
  box-shadow: 9px 11px 30px 0px rgba(0,0,0,0.6);
  margin: 10px 10px 10px 10px;
}
#main.tuning-page .page-content .items-text p {
  color: #000;
  font-weight: 400;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.tuning-page .page-content .items-text h2,
#main.tuning-page .page-content .items-text h3 {
  color: #000;
  font-weight: 700;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.tuning-page .page-content .items-text h2:not(.self-center):not(.self-right):before,
#main.tuning-page .page-content .items-text h3:not(.self-center):not(.self-right):before {
  content: '';
  display: inline-block;
  background-color: #e12329;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.tuning-page .page-content .items-text table {
  float: left;
  box-shadow: 8px 8px 30px 0px rgba(0,0,0,0.25);
  border-collapse: collapse;
}
#main.tuning-page .page-content .items-text table thead tr td {
  font-weight: 600;
  text-transform: uppercase;
  background-color: #bdbdbd;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.tuning-page .page-content .items-text table thead tr td:nth-of-type(2) {
  background-color: #ececec;
}
#main.tuning-page .page-content .items-text table thead tr td + td {
  border-left: 2px solid #f6f6f6;
}
#main.tuning-page .page-content .items-text table tbody tr td {
  color: #000;
  font-weight: 400;
  border-bottom: 1px solid #ececec;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.tuning-page .page-content .items-text table tbody tr td + td {
  border-left: 2px solid #ececec;
  text-align: center;
}
#main.tuning-page .page-content .items-text table tbody tr:last-of-type td {
  border-bottom: 0px solid #ececec;
}
#main.tuning-page .page-content .items-text table tbody tr:hover td {
  background-color: #efefef;
}
#main.tuning-page .page-content .items-text table tbody tr:hover td + td {
  border-left: 2px solid #efefef;
}
#main.tuning-page .page-content .toggle-categories {
  display: none;
  background-color: #e12329;
  padding: 15px 20px;
  color: #fff;
  border: none;
  font-weight: bold;
  text-transform: uppercase;
  box-shadow: 9px 11px 30px 0px rgba(0,0,0,0.6);
  margin: 0px 0px 30px 0px;
}
#main.tuning-page .page-content .categories-side {
  box-shadow: 0px 10px 15px 0px rgba(0,0,0,0.1);
  background-color: rgba(0,0,0,0.05);
  padding: 10px;
  margin-bottom: 20px;
}
#main.tuning-page .page-content .categories-side .category {
  margin-bottom: 10px;
}
#main.tuning-page .page-content .categories-side .category a {
  display: block;
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
}
#main.tuning-page .page-content .categories-side .category a:before {
  content: '';
  display: inline-block;
  vertical-align: top;
  font-size: 16px;
  line-height: 20px;
  margin: 6px 5px 0px 0px;
  width: 5px;
  height: 5px;
  background-color: #000;
}
#main.tuning-page .page-content .categories-side .category a.active {
  color: #e12329;
}
#main.tuning-page .page-content .categories-side .category a.active:before {
  background-color: #e12329;
}
#main.tuning-page .page-content .items .items-title {
  color: #000;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.tuning-page .page-content .items .items-title span {
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.tuning-page .page-content .items .items-grid {
  font-size: 0px;
}
#main.tuning-page .page-content .items .items-grid .item {
  display: inline-block;
  vertical-align: top;
  margin-bottom: 50px;
  float: none;
}
#main.tuning-page .page-content .items .items-grid .item .image {
  margin: 0px 0px 20px 0px;
}
#main.tuning-page .page-content .items .items-grid .item .image img {
  max-width: unset;
  width: 100%;
}
#main.tuning-page .page-content .items .items-grid .item .image.ivi {
  padding-top: 100%;
}
#main.tuning-page .page-content .items .items-grid .item .info .title {
  font-size: 18px;
  font-weight: 800;
}
#main.tuning-page .page-content .items .items-grid .item .info .price {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Raleway', sans-serif;
}
#main.tuning-page .page-content .items .items-grid .item .info button {
  margin: 10px 0px 0px 0px;
  padding: 0px;
  border: none;
  background-color: rgba(0,0,0,0);
  color: #e12329;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: underline;
}
#main.tuning-page .page-content .items .items-grid .item:nth-of-type(3n+3) {
  margin-right: 0px;
}
#main.tuning-page .page-content .items .pagination {
  width: 100%;
  float: left;
  margin: 0px;
}
#main.tuning-page .page-content .items .pagination ul {
  font-size: 0px;
  padding-left: 10px;
  padding-right: 10px;
}
#main.tuning-page .page-content .items .pagination ul li {
  display: inline-block;
  padding: 0px;
}
#main.tuning-page .page-content .items .pagination ul li a {
  display: block;
  padding: 10px;
  min-width: 40px;
  font-size: 18px;
  text-align: center;
  background-color: #ececec;
}
#main.tuning-page .page-content .items .pagination ul li.active a {
  color: #fff;
  background-color: #e12329;
}
#main.tuning-page .page-content .items .pagination ul li:before {
  content: '';
  display: none;
}
#main.tuning-page .page-content .items .pagination ul li + li {
  margin-left: 10px;
}
#main.tuning-page .tuning-direction .side-block .block {
  background-color: #ececec;
}
#main.tuning-page .tuning-direction .side-block .block:before,
#main.tuning-page .tuning-direction .side-block .block:after {
  width: 100%;
  display: table;
  content: " ";
}
#main.tuning-page .tuning-direction .side-block .block:after {
  clear: both;
}
#main.tuning-page .tuning-direction .side-block .block .block-title {
  font-weight: 800;
  text-transform: uppercase;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.tuning-page .tuning-direction .side-block .universal-tuning ul li {
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.tuning-page .tuning-direction .side-block .universal-tuning ul li a {
  display: block;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.tuning-page .tuning-direction .side-block .universal-tuning ul li a:hover,
#main.tuning-page .tuning-direction .side-block .universal-tuning ul li a.active {
  color: #fff;
  background-color: #e12329;
}
#main.tuning-page .tuning-direction .side-block .form {
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.tuning-page .tuning-direction .side-block .form input {
  display: block;
  width: 100%;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  display: inline-block;
  padding: 5px;
  border: none;
  border-bottom: 1px solid #b5b5b5;
  background-color: rgba(225,35,41,0);
}
#main.tuning-page .tuning-direction .side-block .form input:focus,
#main.tuning-page .tuning-direction .side-block .form input:active {
  border-color: #e12329;
}
#main.tuning-page .tuning-direction .side-block .form button {
  border: none;
  background-color: #e12329;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  box-shadow: 9px 11px 30px 0px rgba(0,0,0,0.6);
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.tuning-page .tuning-direction .selects {
  background-color: #ececec;
}
#main.tuning-page .tuning-direction .selects .main-tuning-title {
  font-weight: 800;
  text-transform: uppercase;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.tuning-page .tuning-direction .selects .main-tuning-title span {
  display: inline-block;
  vertical-align: top;
}
#main.tuning-page .tuning-direction .selects .main-tuning-title span img {
  display: inline-block;
  vertical-align: middle;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.tuning-page .tuning-direction .selects .single-select {
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.tuning-page .tuning-direction .selects button[type="submit"] {
  border: none;
  background-color: #e12329;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  box-shadow: 9px 11px 30px 0px rgba(0,0,0,0.6);
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.tuning-page .tuning-direction .selects button[type="reset"] {
  float: right;
  border: none;
  background-color: rgba(0,0,0,0);
  text-decoration: underline;
}
#main.tuning-page .tuning-direction .selects button[type="reset"]:before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  background-size: cover;
  background-image: url("images/tuning-reset.png");
}
#main.tuning-page .page-tuning-block-title {
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.tuning-page .page-tuning-block {
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.tuning-page .page-tuning-block .images .image {
  background-color: #fff;
}
#main.tuning-page .page-tuning-block .images .image .text {
  width: 30%;
  float: right;
  position: relative;
  z-index: 5;
  user-select: none;
}
#main.tuning-page .page-tuning-block .images .image .text .block .title {
  display: inline-block;
  vertical-align: top;
  font-weight: 800;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.tuning-page .page-tuning-block .images .image .text .block .content {
  display: inline-block;
  vertical-align: top;
  font-weight: 400;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
#main.tuning-page .page-tuning-block .images .image .text .block .content p {
  margin: 0px;
}
#main.tuning-page .page-tuning-block .images .image .text .block.works .title {
  display: block;
}
#main.tuning-page .page-tuning-block .images .image .text .block.works .content {
  display: block;
}
#main.tuning-page .page-tuning-block .images .image .text .block.works .content p {
  position: relative;
}
#main.tuning-page .page-tuning-block .images .image .text .block.works .content p:before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0px;
  background-color: #e12329;
}
#main.tuning-page .item-container-block .left-side {
  float: left;
}
#main.tuning-page .item-container-block .left-side > *:first-child {
  margin-top: 0px;
}
#main.tuning-page .item-container-block .left-side .item-price {
  margin: 20px 0px 0px 0px;
  font-weight: bold;
  font-family: 'Raleway', sans-serif;
}
#main.tuning-page .item-container-block .left-side .buttons a,
#main.tuning-page .item-container-block .left-side .buttons button {
  padding: 9px 20px;
  display: inline-block;
  vertical-align: middle;
  background-color: #e12329;
  color: #fff;
  border: none;
  font-weight: bold;
  text-transform: uppercase;
  box-shadow: 9px 11px 30px 0px rgba(0,0,0,0.6);
  margin: 10px 10px 10px 0px;
}
#main.tuning-page .item-container-block .left-side .buttons a {
  padding: 9px;
  font-size: 0px;
}
#main.tuning-page .item-container-block .left-side .buttons a img {
  width: 25px;
}
#main.tuning-page .item-container-block .left-side .buttons button {
  font-size: 15px;
  line-height: 25px;
}
#main.tuning-page .item-container-block .right-side {
  float: right;
}
#main.tuning-page .item-container-block .right-side .item-media p {
  display: none;
}
#main.tuning-page .item-container-block .right-side .item-media .images-block {
  margin-top: 0px;
  display: inline;
  width: auto;
  text-align: left;
}
#main.tuning-page .item-container-block .right-side .item-media .images-block .image {
  float: left;
  display: block;
  padding: 10px;
}
#main.tuning-page .item-container-block .right-side .item-media iframe {
  margin: 10px;
  clear: both;
}
#main.tuning-page .item-container-block .right-side .item-media .yt-frame {
  margin: 10px;
  clear: both;
  padding: 0px;
}
#main.tuning-page .item-container-block .right-side .item-media .yt-frame iframe {
  margin: 0px;
}
/* @import includes/1200+/tuning-page.styl */
@media screen and (min-width: 1200px) {
  #main.tuning-page .we-manage {
    padding-top: 40px;
    padding-bottom: 20px;
  }
  #main.tuning-page .we-manage .we-manage-title {
    font-size: 32px;
    line-height: 36px;
  }
  #main.tuning-page .we-manage .dropping {
    width: 350px;
    height: 180px;
    margin: 30px calc((100% - 1050px) / 6);
  }
  #main.tuning-page .we-manage .dropping .logo {
    padding: 10px;
  }
  #main.tuning-page .we-manage .dropping .logo:before {
    height: 160px;
  }
  #main.tuning-page .we-manage .dropping .drop-list {
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 50%;
    min-height: 100%;
    pointer-events: none;
    transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    background-color: #fff;
    z-index: 5;
    transform: translateY(50%) scale(0, 0) translateZ(0);
    -o-transform: translateY(50%) scale(0, 0) translateZ(0);
    -ms-transform: translateY(50%) scale(0, 0) translateZ(0);
    -moz-transform: translateY(50%) scale(0, 0) translateZ(0);
    -webkit-transform: translateY(50%) scale(0, 0) translateZ(0);
  }
  #main.tuning-page .we-manage .dropping .drop-list ul {
    overflow: hidden;
  }
  #main.tuning-page .we-manage .dropping .drop-list ul li {
    padding: 10px;
  }
  #main.tuning-page .we-manage .dropping .drop-list ul li .image {
    width: 110px;
    padding-right: 10px;
  }
  #main.tuning-page .we-manage .dropping .drop-list ul li .image img {
    max-width: 100px;
    max-height: 50px;
  }
  #main.tuning-page .we-manage .dropping .drop-list ul li .title {
    font-size: 18px;
  }
  #main.tuning-page .we-manage .dropping .drop-list ul li:hover {
    box-shadow: inset 5px 0px 0px 0px #e12329, inset -5px 0px 0px 0px #e12329;
  }
  #main.tuning-page .page-content .selects-main {
    margin-bottom: 50px;
  }
  #main.tuning-page .page-content .selects-main .main-tuning-title {
    font-size: 18px;
    line-height: 30px;
    margin: 25px 20px 10px 0px;
  }
  #main.tuning-page .page-content .selects-main .main-tuning-title div {
    margin-bottom: 10px;
  }
  #main.tuning-page .page-content .selects-main .main-tuning-title span {
    margin-right: 10px;
  }
  #main.tuning-page .page-content .selects-main .main-tuning-title span img {
    margin-right: 5px;
  }
  #main.tuning-page .page-content .selects-main button[type="submit"] {
    margin: -5px 0px 0px 0px;
    padding: 15px 25px;
    font-size: 20px;
  }
  #main.tuning-page .page-content .selects-main button[type="reset"] {
    margin: 5px 0px 0px 0px;
    color: #828282;
    font-size: 20px;
    font-weight: 300;
  }
  #main.tuning-page .page-content .selects-main button[type="reset"]:before {
    width: 25px;
    height: 26px;
    margin: 0px 10px 0px 0px;
  }
  #main.tuning-page .page-content .categories .category {
    height: 135px;
  }
  #main.tuning-page .page-content .categories .category .text {
    padding: 50px 20px 0px 30px;
  }
  #main.tuning-page .page-content .categories .category .text .title {
    font-size: 19px;
    line-height: 25px;
  }
  #main.tuning-page .page-content .items-text {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  #main.tuning-page .page-content .items-text p {
    margin: 10px 0px 10px 0px;
    font-size: 18px;
    line-height: 28px;
  }
  #main.tuning-page .page-content .items-text h2,
  #main.tuning-page .page-content .items-text h3 {
    color: #e12329;
    margin: 20px 0px 10px 0px;
    font-size: 20px;
    line-height: 28px;
  }
  #main.tuning-page .page-content .items-text h2:before,
  #main.tuning-page .page-content .items-text h3:before {
    width: 35px;
    height: 15px;
    margin: 5px 10px 0px 0px;
  }
  #main.tuning-page .page-content .items-text table {
    width: calc(50% - 10px) !important;
    margin: 0px 60px 40px 0px;
  }
  #main.tuning-page .page-content .items-text table thead tr td {
    font-size: 20px;
    padding: 15px 40px;
  }
  #main.tuning-page .page-content .items-text table tbody tr td {
    font-size: 20px;
    padding: 15px 40px;
  }
  #main.tuning-page .page-content .items-text table + * {
    margin-top: 0px;
  }
  #main.tuning-page .page-content .items {
    margin-top: 95px;
  }
  #main.tuning-page .page-content .items .items-title {
    margin: 0px 0px 35px 0px;
    font-size: 20px;
  }
  #main.tuning-page .page-content .items .items-title span {
    font-size: 30px;
  }
  #main.tuning-page .tuning-direction {
    margin-top: 20px;
    margin-bottom: 50px;
  }
  #main.tuning-page .tuning-direction .side-block .block {
    min-height: 275px;
  }
  #main.tuning-page .tuning-direction .side-block .block .block-title {
    font-size: 18px;
    line-height: 30px;
    margin: 20px 20px 25px 20px;
  }
  #main.tuning-page .tuning-direction .side-block .universal-tuning ul {
    padding-bottom: 10px;
  }
  #main.tuning-page .tuning-direction .side-block .universal-tuning ul li a {
    padding: 10px 20px;
    font-size: 20px;
    font-weight: 300;
  }
  #main.tuning-page .tuning-direction .side-block .form {
    margin: 0px 20px 30px 20px;
  }
  #main.tuning-page .tuning-direction .side-block .form input {
    font-size: 20px;
    font-weight: 300;
    margin: 0px 0px 25px 0px;
  }
  #main.tuning-page .tuning-direction .side-block .form button {
    width: 100%;
    padding: 15px 25px;
    font-size: 20px;
  }
  #main.tuning-page .tuning-direction .selects {
    min-height: 275px;
    margin-bottom: 50px;
    padding-left: 20px;
    padding-right: 20px;
  }
  #main.tuning-page .tuning-direction .selects .main-tuning-title {
    font-size: 18px;
    line-height: 30px;
    margin: 25px 20px 30px 0px;
    padding-left: 0px;
    padding-right: 0px;
  }
  #main.tuning-page .tuning-direction .selects .main-tuning-title div {
    margin-bottom: 10px;
  }
  #main.tuning-page .tuning-direction .selects .main-tuning-title span {
    margin-right: 10px;
  }
  #main.tuning-page .tuning-direction .selects .main-tuning-title span img {
    margin-right: 5px;
    max-height: 20px;
  }
  #main.tuning-page .tuning-direction .selects .single-select {
    margin-bottom: 30px;
  }
  #main.tuning-page .tuning-direction .selects button[type="submit"] {
    margin: -5px 0px 0px 0px;
    padding: 15px 25px;
    font-size: 20px;
  }
  #main.tuning-page .tuning-direction .selects button[type="reset"] {
    margin: 5px 0px 0px 0px;
    color: #828282;
    font-size: 20px;
    font-weight: 300;
  }
  #main.tuning-page .tuning-direction .selects button[type="reset"]:before {
    width: 25px;
    height: 26px;
    margin: 0px 10px 0px 0px;
  }
  #main.tuning-page .page-tuning-block-title {
    margin: 0px 0px 50px 0px;
    font-size: 30px;
  }
  #main.tuning-page .page-tuning-block {
    height: 370px;
  }
  #main.tuning-page .page-tuning-block .images .image .text .block .title {
    margin-right: 10px;
    margin-bottom: 5px;
    font-size: 24px;
    line-height: 30px;
  }
  #main.tuning-page .page-tuning-block .images .image .text .block .content p {
    font-size: 24px;
    line-height: 30px;
  }
  #main.tuning-page .page-tuning-block .images .image .text .block.works {
    margin-bottom: 20px;
  }
  #main.tuning-page .page-tuning-block .images .image .text .block.works .content p {
    padding-left: 20px;
  }
  #main.tuning-page .page-tuning-block .images .image .text .block.works .content p:before {
    width: 10px;
    height: 10px;
    top: 10px;
  }
  #main.tuning-page .item-container-block .left-side {
    width: 400px;
  }
  #main.tuning-page .item-container-block .left-side .item-price {
    font-size: 18px;
  }
  #main.tuning-page .item-container-block .right-side {
    width: calc(100% - 400px);
  }
  #main.tuning-page .item-container-block .right-side .item-media .images-block .image {
    padding: 10px;
  }
}
/* @import includes/992-1200/tuning-page.styl */
@media screen and (min-width: 992px) and (max-width: 1199px) {
  #main.tuning-page .we-manage {
    padding-top: 35px;
    padding-bottom: 20px;
  }
  #main.tuning-page .we-manage .we-manage-title {
    font-size: 26px;
    line-height: 30px;
  }
  #main.tuning-page .we-manage .dropping {
    width: 270px;
    height: 130px;
    margin: 30px calc((100% - 810px) / 6);
  }
  #main.tuning-page .we-manage .dropping .logo {
    padding: 15px;
  }
  #main.tuning-page .we-manage .dropping .logo:before {
    height: 100px;
  }
  #main.tuning-page .we-manage .dropping .drop-list {
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 50%;
    min-height: 100%;
    pointer-events: none;
    transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    background-color: #fff;
    z-index: 5;
    transform: translateY(50%) scale(0, 0) translateZ(0);
    -o-transform: translateY(50%) scale(0, 0) translateZ(0);
    -ms-transform: translateY(50%) scale(0, 0) translateZ(0);
    -moz-transform: translateY(50%) scale(0, 0) translateZ(0);
    -webkit-transform: translateY(50%) scale(0, 0) translateZ(0);
  }
  #main.tuning-page .we-manage .dropping .drop-list ul {
    overflow: hidden;
  }
  #main.tuning-page .we-manage .dropping .drop-list ul li {
    padding: 10px;
  }
  #main.tuning-page .we-manage .dropping .drop-list ul li .image {
    width: 90px;
    padding-right: 10px;
  }
  #main.tuning-page .we-manage .dropping .drop-list ul li .image img {
    max-width: 80px;
    max-height: 40px;
  }
  #main.tuning-page .we-manage .dropping .drop-list ul li .title {
    font-size: 15px;
  }
  #main.tuning-page .we-manage .dropping .drop-list ul li:hover {
    box-shadow: inset 4px 0px 0px 0px #e12329, inset -4px 0px 0px 0px #e12329;
  }
  #main.tuning-page .page-content .selects-main {
    margin-bottom: 50px;
  }
  #main.tuning-page .page-content .selects-main .main-tuning-title {
    font-size: 15px;
    line-height: 25px;
    margin: 20px 15px 25px 0px;
    padding-left: 0px;
    padding-right: 0px;
  }
  #main.tuning-page .page-content .selects-main .main-tuning-title div {
    margin-bottom: 10px;
  }
  #main.tuning-page .page-content .selects-main .main-tuning-title span {
    margin-right: 10px;
  }
  #main.tuning-page .page-content .selects-main .main-tuning-title span img {
    margin-right: 5px;
    max-height: 15px;
  }
  #main.tuning-page .page-content .selects-main .single-select [data-emulation="select"] {
    font-size: 17px;
  }
  #main.tuning-page .page-content .selects-main .single-select [data-emulation="select"] span.opt-image {
    height: 15px;
    width: 60px;
  }
  #main.tuning-page .page-content .selects-main .single-select [data-emulation="select"] [data-emulation="placeholder"] {
    padding: 10px 10px 10px 15px;
  }
  #main.tuning-page .page-content .selects-main .single-select [data-emulation="select"] [data-emulation="dropdown"] [data-emulation="option"] {
    padding: 10px 10px 10px 15px;
  }
  #main.tuning-page .page-content .selects-main button[type="submit"] {
    margin: -5px 0px 0px 0px;
    padding: 15px 20px;
    font-size: 17px;
  }
  #main.tuning-page .page-content .selects-main button[type="reset"] {
    margin: 5px 0px 0px 0px;
    color: #828282;
    font-size: 17px;
    font-weight: 300;
  }
  #main.tuning-page .page-content .selects-main button[type="reset"]:before {
    width: 25px;
    height: 26px;
    margin: 0px 5px 0px 0px;
  }
  #main.tuning-page .page-content .categories .category {
    height: 95px;
  }
  #main.tuning-page .page-content .categories .category .text {
    padding: 35px 20px 0px 15px;
  }
  #main.tuning-page .page-content .categories .category .text .title {
    font-size: 16px;
    line-height: 20px;
  }
  #main.tuning-page .page-content .items-text {
    margin-top: 35px;
    margin-bottom: 35px;
  }
  #main.tuning-page .page-content .items-text p {
    margin: 10px 0px 10px 0px;
    font-size: 16px;
    line-height: 22px;
  }
  #main.tuning-page .page-content .items-text h2,
  #main.tuning-page .page-content .items-text h3 {
    color: #e12329;
    margin: 15px 0px 10px 0px;
    font-size: 16px;
    line-height: 22px;
  }
  #main.tuning-page .page-content .items-text h2:before,
  #main.tuning-page .page-content .items-text h3:before {
    width: 35px;
    height: 15px;
    margin: 5px 10px 0px 0px;
  }
  #main.tuning-page .page-content .items-text table {
    width: calc(50% - 10px) !important;
    margin: 0px 40px 30px 0px;
  }
  #main.tuning-page .page-content .items-text table thead tr td {
    font-size: 16px;
    padding: 10px 30px;
  }
  #main.tuning-page .page-content .items-text table tbody tr td {
    font-size: 16px;
    padding: 10px 30px;
  }
  #main.tuning-page .page-content .items-text table + * {
    margin-top: 0px;
  }
  #main.tuning-page .page-content .items {
    margin-top: 95px;
  }
  #main.tuning-page .page-content .items .items-title {
    margin: 0px 0px 35px 0px;
    font-size: 20px;
  }
  #main.tuning-page .page-content .items .items-title span {
    font-size: 30px;
  }
  #main.tuning-page .page-content .items .items-grid .item .info .title {
    font-size: 16px;
  }
  #main.tuning-page .tuning-direction {
    margin-top: 20px;
    margin-bottom: 50px;
  }
  #main.tuning-page .tuning-direction .side-block .block {
    min-height: 240px;
  }
  #main.tuning-page .tuning-direction .side-block .block .block-title {
    font-size: 15px;
    line-height: 25px;
    margin: 15px 15px 20px 15px;
  }
  #main.tuning-page .tuning-direction .side-block .universal-tuning ul {
    padding-bottom: 10px;
  }
  #main.tuning-page .tuning-direction .side-block .universal-tuning ul li a {
    padding: 10px 15px;
    font-size: 17px;
    font-weight: 300;
  }
  #main.tuning-page .tuning-direction .side-block .form {
    margin: 0px 20px 30px 20px;
  }
  #main.tuning-page .tuning-direction .side-block .form input {
    font-size: 17px;
    font-weight: 300;
    margin: 0px 0px 20px 0px;
  }
  #main.tuning-page .tuning-direction .side-block .form button {
    width: 100%;
    padding: 15px 20px;
    font-size: 17px;
  }
  #main.tuning-page .tuning-direction .selects {
    min-height: 240px;
    margin-bottom: 50px;
    padding-left: 20px;
    padding-right: 20px;
  }
  #main.tuning-page .tuning-direction .selects .main-tuning-title {
    font-size: 15px;
    line-height: 25px;
    margin: 20px 15px 25px 0px;
    padding-left: 0px;
    padding-right: 0px;
  }
  #main.tuning-page .tuning-direction .selects .main-tuning-title div {
    margin-bottom: 10px;
  }
  #main.tuning-page .tuning-direction .selects .main-tuning-title span {
    margin-right: 10px;
  }
  #main.tuning-page .tuning-direction .selects .main-tuning-title span img {
    margin-right: 5px;
    max-height: 15px;
  }
  #main.tuning-page .tuning-direction .selects .single-select {
    margin-bottom: 25px;
  }
  #main.tuning-page .tuning-direction .selects .single-select [data-emulation="select"] {
    font-size: 17px;
  }
  #main.tuning-page .tuning-direction .selects .single-select [data-emulation="select"] span.opt-image {
    height: 15px;
    width: 60px;
  }
  #main.tuning-page .tuning-direction .selects .single-select [data-emulation="select"] [data-emulation="placeholder"] {
    padding: 10px 10px 10px 15px;
  }
  #main.tuning-page .tuning-direction .selects .single-select [data-emulation="select"] [data-emulation="dropdown"] [data-emulation="option"] {
    padding: 10px 10px 10px 15px;
  }
  #main.tuning-page .tuning-direction .selects button[type="submit"] {
    margin: -5px 0px 0px 0px;
    padding: 15px 20px;
    font-size: 17px;
  }
  #main.tuning-page .tuning-direction .selects button[type="reset"] {
    margin: 5px 0px 0px 0px;
    color: #828282;
    font-size: 17px;
    font-weight: 300;
  }
  #main.tuning-page .tuning-direction .selects button[type="reset"]:before {
    width: 25px;
    height: 26px;
    margin: 0px 5px 0px 0px;
  }
  #main.tuning-page .page-tuning-block-title {
    margin: 0px 0px 50px 0px;
    font-size: 30px;
  }
  #main.tuning-page .page-tuning-block {
    height: 290px;
  }
  #main.tuning-page .page-tuning-block .images .image .text .block .title {
    margin-right: 10px;
    margin-bottom: 4px;
    font-size: 20px;
    line-height: 26px;
  }
  #main.tuning-page .page-tuning-block .images .image .text .block .content p {
    font-size: 20px;
    line-height: 26px;
  }
  #main.tuning-page .page-tuning-block .images .image .text .block.works {
    margin-bottom: 15px;
  }
  #main.tuning-page .page-tuning-block .images .image .text .block.works .content p {
    padding-left: 20px;
  }
  #main.tuning-page .page-tuning-block .images .image .text .block.works .content p:before {
    width: 9px;
    height: 9px;
    top: 9px;
  }
  #main.tuning-page .modal-item-container .modal-item-dialog {
    top: 30px;
    left: 30px;
    right: 30px;
    bottom: 30px;
  }
  #main.tuning-page .item-container-block .left-side {
    width: 300px;
  }
  #main.tuning-page .item-container-block .left-side .item-price {
    font-size: 18px;
  }
  #main.tuning-page .item-container-block .right-side {
    width: calc(100% - 300px);
  }
  #main.tuning-page .item-container-block .right-side .item-media .images-block .image {
    padding: 10px;
  }
}
/* @import includes/768-991/tuning-page.styl */
@media screen and (max-width: 991px) {
  #main.tuning-page .we-manage {
    padding-top: 35px;
    padding-bottom: 20px;
  }
  #main.tuning-page .we-manage .dropping {
    width: 200px;
    height: 100px;
    margin: 30px calc((100% - 600px) / 6);
  }
  #main.tuning-page .we-manage .dropping .logo {
    padding: 15px;
  }
  #main.tuning-page .we-manage .dropping .logo:before {
    height: 70px;
  }
  #main.tuning-page .we-manage .dropping .drop-list {
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 50%;
    min-height: 100%;
    pointer-events: none;
    transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    background-color: #fff;
    z-index: 5;
    transform: translateY(50%) scale(0, 0) translateZ(0);
    -o-transform: translateY(50%) scale(0, 0) translateZ(0);
    -ms-transform: translateY(50%) scale(0, 0) translateZ(0);
    -moz-transform: translateY(50%) scale(0, 0) translateZ(0);
    -webkit-transform: translateY(50%) scale(0, 0) translateZ(0);
  }
  #main.tuning-page .we-manage .dropping .drop-list ul {
    overflow: hidden;
  }
  #main.tuning-page .we-manage .dropping .drop-list ul li {
    padding: 10px;
  }
  #main.tuning-page .we-manage .dropping .drop-list ul li .image {
    width: 90px;
    padding-right: 10px;
  }
  #main.tuning-page .we-manage .dropping .drop-list ul li .image img {
    max-width: 80px;
    max-height: 40px;
  }
  #main.tuning-page .we-manage .dropping .drop-list ul li .title {
    font-size: 15px;
  }
  #main.tuning-page .we-manage .dropping .drop-list ul li:hover {
    box-shadow: inset 4px 0px 0px 0px #e12329, inset -4px 0px 0px 0px #e12329;
  }
  #main.tuning-page .page-content p {
    margin: 10px 0px 10px 0px;
    font-size: 16px;
    line-height: 22px;
  }
  #main.tuning-page .page-content h2,
  #main.tuning-page .page-content h3 {
    color: #e12329;
    margin: 15px 0px 10px 0px;
    font-size: 16px;
    line-height: 22px;
  }
  #main.tuning-page .page-content h2:before,
  #main.tuning-page .page-content h3:before {
    width: 35px;
    height: 15px;
    margin: 5px 10px 0px 0px;
  }
  #main.tuning-page .page-content .selects-main {
    margin-bottom: 50px;
  }
  #main.tuning-page .page-content .selects-main .main-tuning-title {
    font-size: 18px;
    line-height: 30px;
    margin: 25px 20px 10px 0px;
  }
  #main.tuning-page .page-content .selects-main .main-tuning-title div {
    margin-bottom: 10px;
  }
  #main.tuning-page .page-content .selects-main .main-tuning-title span {
    margin-right: 10px;
  }
  #main.tuning-page .page-content .selects-main .main-tuning-title span img {
    margin-right: 5px;
  }
  #main.tuning-page .page-content .selects-main .single-select {
    margin-bottom: 30px;
  }
  #main.tuning-page .page-content .selects-main button[type="submit"] {
    margin: -5px 0px 0px 0px;
    padding: 15px 25px;
    font-size: 20px;
  }
  #main.tuning-page .page-content .selects-main button[type="reset"] {
    margin: 5px 0px 0px 0px;
    color: #828282;
    font-size: 20px;
    font-weight: 300;
  }
  #main.tuning-page .page-content .selects-main button[type="reset"]:before {
    width: 25px;
    height: 26px;
    margin: 0px 10px 0px 0px;
  }
  #main.tuning-page .page-content .categories .category {
    height: 135px;
  }
  #main.tuning-page .page-content .categories .category .text {
    padding: 50px 20px 0px 30px;
  }
  #main.tuning-page .page-content .categories .category .text .title {
    font-size: 19px;
    line-height: 25px;
  }
  #main.tuning-page .page-content .items-text {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  #main.tuning-page .page-content .items-text p {
    margin: 10px 0px 10px 0px;
    font-size: 16px;
    line-height: 22px;
  }
  #main.tuning-page .page-content .items-text h2,
  #main.tuning-page .page-content .items-text h3 {
    color: #e12329;
    margin: 15px 0px 10px 0px;
    font-size: 16px;
    line-height: 22px;
  }
  #main.tuning-page .page-content .items-text h2:before,
  #main.tuning-page .page-content .items-text h3:before {
    width: 35px;
    height: 15px;
    margin: 5px 10px 0px 0px;
  }
  #main.tuning-page .page-content .items-text table {
    width: 100%;
    margin: 0px 0px 30px 0px;
  }
  #main.tuning-page .page-content .items-text table thead tr td {
    font-size: 16px;
    padding: 10px 30px;
  }
  #main.tuning-page .page-content .items-text table tbody tr td {
    font-size: 16px;
    padding: 10px 30px;
  }
  #main.tuning-page .page-content .items-text table + * {
    margin-top: 0px;
  }
  #main.tuning-page .page-content .items {
    margin-top: 95px;
  }
  #main.tuning-page .page-content .items .items-title {
    margin: 0px 0px 35px 0px;
    font-size: 20px;
  }
  #main.tuning-page .page-content .items .items-title span {
    font-size: 30px;
  }
  #main.tuning-page .page-content .items .items-grid .item {
    margin-right: 5%;
  }
  #main.tuning-page .page-content .items .items-grid .item .info .title {
    font-size: 15px;
  }
  #main.tuning-page .page-content .items .items-grid .item:nth-of-type(3n+3) {
    margin-right: 0px;
  }
  #main.tuning-page .tuning-direction {
    margin-top: 20px;
    margin-bottom: 50px;
  }
  #main.tuning-page .tuning-direction .side-block .block {
    min-height: 275px;
  }
  #main.tuning-page .tuning-direction .side-block .block .block-title {
    font-size: 18px;
    line-height: 30px;
    margin: 20px 20px 25px 20px;
  }
  #main.tuning-page .tuning-direction .side-block .universal-tuning ul {
    padding-bottom: 10px;
  }
  #main.tuning-page .tuning-direction .side-block .universal-tuning ul li a {
    padding: 10px 20px;
    font-size: 20px;
    font-weight: 300;
  }
  #main.tuning-page .tuning-direction .side-block .form {
    margin: 0px 20px 30px 20px;
  }
  #main.tuning-page .tuning-direction .side-block .form input {
    font-size: 20px;
    font-weight: 300;
    margin: 0px 0px 25px 0px;
  }
  #main.tuning-page .tuning-direction .side-block .form button {
    width: 100%;
    padding: 15px 25px;
    font-size: 20px;
  }
  #main.tuning-page .tuning-direction .selects {
    min-height: 275px;
    margin-bottom: 50px;
    padding-left: 20px;
    padding-right: 20px;
  }
  #main.tuning-page .tuning-direction .selects .main-tuning-title {
    font-size: 18px;
    line-height: 30px;
    margin: 25px 20px 30px 0px;
    padding-left: 0px;
    padding-right: 0px;
  }
  #main.tuning-page .tuning-direction .selects .main-tuning-title div {
    margin-bottom: 10px;
  }
  #main.tuning-page .tuning-direction .selects .main-tuning-title span {
    margin-right: 10px;
  }
  #main.tuning-page .tuning-direction .selects .main-tuning-title span img {
    margin-right: 5px;
    max-height: 20px;
  }
  #main.tuning-page .tuning-direction .selects .single-select {
    margin-bottom: 30px;
  }
  #main.tuning-page .tuning-direction .selects button[type="submit"] {
    margin: -5px 0px 0px 0px;
    padding: 15px 25px;
    font-size: 20px;
  }
  #main.tuning-page .tuning-direction .selects button[type="reset"] {
    margin: 5px 0px 0px 0px;
    color: #828282;
    font-size: 20px;
    font-weight: 300;
  }
  #main.tuning-page .tuning-direction .selects button[type="reset"]:before {
    width: 25px;
    height: 26px;
    margin: 0px 10px 0px 0px;
  }
  #main.tuning-page .page-tuning-block-title {
    margin: 0px 0px 50px 0px;
    font-size: 30px;
  }
  #main.tuning-page .page-tuning-block {
    height: 220px;
  }
  #main.tuning-page .page-tuning-block .images .image img {
    max-height: 100%;
  }
  #main.tuning-page .page-tuning-block .images .image .text .block .title {
    margin-right: 10px;
    margin-bottom: 2px;
    font-size: 14px;
    line-height: 20px;
  }
  #main.tuning-page .page-tuning-block .images .image .text .block .content p {
    font-size: 14px;
    line-height: 20px;
  }
  #main.tuning-page .page-tuning-block .images .image .text .block.works {
    margin-bottom: 10px;
  }
  #main.tuning-page .page-tuning-block .images .image .text .block.works .content p {
    padding-left: 15px;
  }
  #main.tuning-page .page-tuning-block .images .image .text .block.works .content p:before {
    width: 7px;
    height: 7px;
    top: 7px;
  }
  #main.tuning-page .modal-item-container .modal-item-dialog {
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
  }
  #main.tuning-page .item-container-block .left-side {
    width: 100%;
  }
  #main.tuning-page .item-container-block .left-side .item-price {
    font-size: 18px;
  }
  #main.tuning-page .item-container-block .right-side {
    width: 100%;
  }
  #main.tuning-page .item-container-block .right-side .item-media .images-block .image {
    padding: 10px;
  }
}
/* @import includes/768-/tuning-page.styl */
@media screen and (max-width: 767px) {
  #main.tuning-page .we-manage {
    padding-top: 35px;
    padding-bottom: 20px;
  }
  #main.tuning-page .we-manage .we-manage-title {
    font-size: 26px;
    line-height: 36px;
  }
  #main.tuning-page .we-manage .dropping {
    width: calc(100% - 60px);
    height: 200px;
    margin: 30px 30px;
    position: relative;
    z-index: 3;
  }
  #main.tuning-page .we-manage .dropping .logo {
    padding: 15px;
  }
  #main.tuning-page .we-manage .dropping .logo:before {
    height: 160px;
  }
  #main.tuning-page .we-manage .dropping .drop-list {
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 50%;
    min-height: 100%;
    pointer-events: none;
    transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    background-color: #fff;
    z-index: 50;
    transform: translateY(50%) scale(0, 0) translateZ(0);
    -o-transform: translateY(50%) scale(0, 0) translateZ(0);
    -ms-transform: translateY(50%) scale(0, 0) translateZ(0);
    -moz-transform: translateY(50%) scale(0, 0) translateZ(0);
    -webkit-transform: translateY(50%) scale(0, 0) translateZ(0);
  }
  #main.tuning-page .we-manage .dropping .drop-list ul {
    overflow: hidden;
  }
  #main.tuning-page .we-manage .dropping .drop-list ul li {
    padding: 10px;
  }
  #main.tuning-page .we-manage .dropping .drop-list ul li .image {
    width: 160px;
    padding-right: 10px;
  }
  #main.tuning-page .we-manage .dropping .drop-list ul li .image img {
    max-width: 160px;
    height: 80px;
    max-height: 80px;
  }
  #main.tuning-page .we-manage .dropping .drop-list ul li .title {
    font-size: 28px;
  }
  #main.tuning-page .we-manage .dropping .drop-list ul li:hover {
    box-shadow: inset 4px 0px 0px 0px #e12329, inset -4px 0px 0px 0px #e12329;
  }
  #main.tuning-page .we-manage .dropping.active {
    z-index: 5;
  }
  #main.tuning-page .page-content p {
    margin: 10px 0px 20px 0px;
    font-size: 28px;
    line-height: 36px;
  }
  #main.tuning-page .page-content h2,
  #main.tuning-page .page-content h3 {
    color: #e12329;
    margin: 15px 0px 20px 0px;
    font-size: 32px;
    line-height: 40px;
  }
  #main.tuning-page .page-content h2:before,
  #main.tuning-page .page-content h3:before {
    width: 45px;
    height: 25px;
    margin: 5px 10px 0px 0px;
  }
  #main.tuning-page .page-content .selects-main {
    margin-bottom: 50px;
  }
  #main.tuning-page .page-content .selects-main .main-tuning-title {
    font-size: 28px;
    line-height: 30px;
    margin: 25px 20px 30px 0px;
  }
  #main.tuning-page .page-content .selects-main .main-tuning-title div {
    margin-bottom: 10px;
  }
  #main.tuning-page .page-content .selects-main .main-tuning-title span {
    margin-right: 10px;
  }
  #main.tuning-page .page-content .selects-main .main-tuning-title span img {
    margin-right: 5px;
  }
  #main.tuning-page .page-content .selects-main .single-select {
    margin-bottom: 30px;
  }
  #main.tuning-page .page-content .selects-main .single-select [data-emulation="select"] {
    max-width: unset;
    height: 60px;
    font-size: 28px;
  }
  #main.tuning-page .page-content .selects-main .single-select [data-emulation="select"] span.opt-image {
    width: 140px;
    height: 25px;
  }
  #main.tuning-page .page-content .selects-main .single-select [data-emulation="select"] span.opt-image img {
    height: 25px;
  }
  #main.tuning-page .page-content .selects-main .single-select [data-emulation="select"] [data-emulation="placeholder"] {
    padding: 15px 10px 15px 20px;
  }
  #main.tuning-page .page-content .selects-main .single-select [data-emulation="select"] [data-emulation="dropdown"] [data-emulation="option"] {
    min-height: 60px;
    padding: 15px 10px 15px 20px;
  }
  #main.tuning-page .page-content .selects-main button[type="submit"] {
    margin: -5px 0px 0px 0px;
    padding: 15px 25px;
    font-size: 20px;
  }
  #main.tuning-page .page-content .selects-main button[type="reset"] {
    margin: 5px 0px 0px 0px;
    color: #828282;
    font-size: 20px;
    font-weight: 300;
  }
  #main.tuning-page .page-content .selects-main button[type="reset"]:before {
    width: 25px;
    height: 26px;
    margin: 0px 10px 0px 0px;
  }
  #main.tuning-page .page-content .categories .category {
    height: 135px;
  }
  #main.tuning-page .page-content .categories .category .text {
    padding: 40px 20px 0px 30px;
  }
  #main.tuning-page .page-content .categories .category .text .title {
    font-size: 25px;
    line-height: 33px;
  }
  #main.tuning-page .page-content .items-text {
    margin-top: 35px;
    margin-bottom: 35px;
  }
  #main.tuning-page .page-content .items-text p {
    margin: 10px 0px 20px 0px;
    font-size: 28px;
    line-height: 36px;
  }
  #main.tuning-page .page-content .items-text h2,
  #main.tuning-page .page-content .items-text h3 {
    color: #e12329;
    margin: 15px 0px 20px 0px;
    font-size: 32px;
    line-height: 40px;
  }
  #main.tuning-page .page-content .items-text h2:before,
  #main.tuning-page .page-content .items-text h3:before {
    width: 45px;
    height: 25px;
    margin: 5px 10px 0px 0px;
  }
  #main.tuning-page .page-content .toggle-categories {
    display: block;
  }
  #main.tuning-page .page-content .categories-side {
    display: none;
  }
  #main.tuning-page .page-content .categories-side.open {
    display: block;
  }
  #main.tuning-page .page-content .items {
    margin-top: 95px;
  }
  #main.tuning-page .page-content .items .items-title {
    margin: 0px 0px 35px 0px;
    font-size: 28px;
  }
  #main.tuning-page .page-content .items .items-title span {
    font-size: 38px;
  }
  #main.tuning-page .page-content .items .items-grid .item {
    margin-right: 5%;
  }
  #main.tuning-page .page-content .items .items-grid .item .info .title {
    font-size: 22px;
  }
  #main.tuning-page .page-content .items .items-grid .item .info button {
    font-size: 28px;
  }
  #main.tuning-page .page-content .items .items-grid .item:nth-of-type(3n+3) {
    margin-right: 0px;
  }
  #main.tuning-page .tuning-direction {
    margin-top: 20px;
    margin-bottom: 50px;
  }
  #main.tuning-page .tuning-direction .side-block .block {
    min-height: 340px;
  }
  #main.tuning-page .tuning-direction .side-block .block .block-title {
    font-size: 28px;
    line-height: 30px;
    margin: 20px 20px 25px 20px;
  }
  #main.tuning-page .tuning-direction .side-block .universal-tuning ul {
    padding-bottom: 10px;
  }
  #main.tuning-page .tuning-direction .side-block .universal-tuning ul li a {
    padding: 10px 20px;
    font-size: 28px;
    font-weight: 300;
  }
  #main.tuning-page .tuning-direction .side-block .form {
    margin: 0px 20px 30px 20px;
  }
  #main.tuning-page .tuning-direction .side-block .form input {
    font-size: 28px;
    font-weight: 300;
    margin: 0px 0px 25px 0px;
  }
  #main.tuning-page .tuning-direction .side-block .form button {
    width: 100%;
    padding: 15px 25px;
    font-size: 28px;
  }
  #main.tuning-page .tuning-direction .selects {
    min-height: 340px;
    margin-bottom: 50px;
    padding-left: 20px;
    padding-right: 20px;
  }
  #main.tuning-page .tuning-direction .selects .main-tuning-title {
    font-size: 28px;
    line-height: 30px;
    margin: 25px 20px 30px 0px;
    padding-left: 0px;
    padding-right: 0px;
  }
  #main.tuning-page .tuning-direction .selects .main-tuning-title div {
    margin-bottom: 10px;
  }
  #main.tuning-page .tuning-direction .selects .main-tuning-title span {
    margin-right: 10px;
  }
  #main.tuning-page .tuning-direction .selects .main-tuning-title span img {
    margin-right: 5px;
    max-height: 20px;
  }
  #main.tuning-page .tuning-direction .selects .single-select {
    margin-bottom: 30px;
  }
  #main.tuning-page .tuning-direction .selects .single-select [data-emulation="select"] {
    max-width: unset;
    height: 60px;
    font-size: 28px;
  }
  #main.tuning-page .tuning-direction .selects .single-select [data-emulation="select"] span.opt-image {
    width: 140px;
    height: 25px;
  }
  #main.tuning-page .tuning-direction .selects .single-select [data-emulation="select"] span.opt-image img {
    height: 25px;
  }
  #main.tuning-page .tuning-direction .selects .single-select [data-emulation="select"] [data-emulation="placeholder"] {
    padding: 15px 10px 15px 20px;
  }
  #main.tuning-page .tuning-direction .selects .single-select [data-emulation="select"] [data-emulation="dropdown"] [data-emulation="option"] {
    min-height: 60px;
    padding: 15px 10px 15px 20px;
  }
  #main.tuning-page .tuning-direction .selects button[type="submit"] {
    margin: -5px 0px 0px 0px;
    padding: 15px 25px;
    font-size: 28px;
  }
  #main.tuning-page .tuning-direction .selects button[type="reset"] {
    margin: 5px 0px 0px 0px;
    color: #828282;
    font-size: 28px;
    font-weight: 300;
  }
  #main.tuning-page .tuning-direction .selects button[type="reset"]:before {
    width: 25px;
    height: 26px;
    margin: 0px 10px 0px 0px;
  }
  #main.tuning-page .page-tuning-block-title {
    margin: 0px 0px 50px 0px;
    font-size: 30px;
  }
  #main.tuning-page .page-tuning-block {
    height: 220px;
  }
  #main.tuning-page .modal-item-container .modal-item-dialog {
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
  }
  #main.tuning-page .item-container-block .left-side {
    width: 100%;
  }
  #main.tuning-page .item-container-block .left-side .item-price {
    font-size: 28px;
  }
  #main.tuning-page .item-container-block .right-side {
    width: 100%;
  }
  #main.tuning-page .item-container-block .right-side .item-media .images-block .image {
    padding: 10px;
  }
}
/* @import addons/slider.styl */
.slider {
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.slider .editable {
  position: relative;
  z-index: 150;
}
.slider .editable .u-can-edit-this {
  position: absolute;
  display: inline-block;
  background-color: #e12329;
  top: 10px;
  left: 10px;
  z-index: -50;
  width: 40px;
  height: 40px;
  padding: 8px;
  margin: 0px;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
.slider .editable .u-can-edit-this:before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  line-height: 24px;
  width: 24px;
  height: 24px;
  background-image: url("images/pencil-edit-button.png");
}
.slider:hover .editable .u-can-edit-this {
  z-index: 500;
  opacity: 1;
}
.slider .controls {
  position: absolute;
  z-index: 2;
  left: 0px;
  right: 0px;
  bottom: -10px;
  pointer-events: none;
  text-align: right;
}
.slider .controls button {
  display: inline-block;
  width: 60px;
  height: 60px;
  background-color: #e12329;
  background-image: url("images/slider-arrow.png");
  background-position: 19px 17px;
  background-repeat: no-repeat;
  padding: 0px;
  margin: 0px;
  border: none;
  cursor: pointer;
  pointer-events: initial;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
.slider .controls button:hover {
  background-position: 24px 17px;
}
.slider .controls button.prev {
  transform: scale(-1, 1);
  -o-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  -moz-transform: scale(-1, 1);
  -webkit-transform: scale(-1, 1);
}
.slider .controls button + button {
  margin-left: 4px;
}
.slider .images {
  overflow: hidden;
  width: inherit;
  height: inherit;
  position: relative;
  z-index: 1;
}
.slider .images .image {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  width: inherit;
  height: inherit;
  z-index: 0;
  transform: translateX(0) translateZ(0);
  -o-transform: translateX(0) translateZ(0);
  -ms-transform: translateX(0) translateZ(0);
  -moz-transform: translateX(0) translateZ(0);
  -webkit-transform: translateX(0) translateZ(0);
  overflow: hidden;
}
.slider .images .image img {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 1;
  min-width: 100%;
  min-height: 100%;
  max-width: unset;
  max-block-size: 100%;
  object-fit: contain;
  margin-left: 50%;
  transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}
.slider .images .image.pre-active {
  z-index: 1;
}
.slider .images .image.active {
  z-index: 2;
}
.slider.side .images .image {
  transform: translateX(0%) translateZ(0);
  -o-transform: translateX(0%) translateZ(0);
  -ms-transform: translateX(0%) translateZ(0);
  -moz-transform: translateX(0%) translateZ(0);
  -webkit-transform: translateX(0%) translateZ(0);
  transition: transform 1s ease-out;
  -o-transition: transform 1s ease-out;
  -ms-transition: transform 1s ease-out;
  -moz-transition: transform 1s ease-out;
  -webkit-transition: transform 1s ease-out;
}
.slider.side .images .image.no-trans {
  transition: transform 0s linear;
  -o-transition: transform 0s linear;
  -ms-transition: transform 0s linear;
  -moz-transition: transform 0s linear;
  -webkit-transition: transform 0s linear;
}
.slider.side .images .image.slow-trans {
  transition: transform 1s ease-in;
  -o-transition: transform 1s ease-in;
  -ms-transition: transform 1s ease-in;
  -moz-transition: transform 1s ease-in;
  -webkit-transition: transform 1s ease-in;
}
.slider.side .images .image.left {
  transform: translateX(-100%) translateZ(0);
  -o-transform: translateX(-100%) translateZ(0);
  -ms-transform: translateX(-100%) translateZ(0);
  -moz-transform: translateX(-100%) translateZ(0);
  -webkit-transform: translateX(-100%) translateZ(0);
}
.slider.side .images .image.right {
  transform: translateX(100%) translateZ(0);
  -o-transform: translateX(100%) translateZ(0);
  -ms-transform: translateX(100%) translateZ(0);
  -moz-transform: translateX(100%) translateZ(0);
  -webkit-transform: translateX(100%) translateZ(0);
}
.slider.fade .images .image {
  transition: all 1s linear;
  -o-transition: all 1s linear;
  -ms-transition: all 1s linear;
  -moz-transition: all 1s linear;
  -webkit-transition: all 1s linear;
  opacity: 0;
  transition: opacity 1s;
  -o-transition: opacity 1s;
  -ms-transition: opacity 1s;
  -moz-transition: opacity 1s;
  -webkit-transition: opacity 1s;
}
.slider.fade .images .image.active {
  opacity: 1;
}
.slider.sidesym .images .image {
  transform: translateX(0%) translateZ(0);
  -o-transform: translateX(0%) translateZ(0);
  -ms-transform: translateX(0%) translateZ(0);
  -moz-transform: translateX(0%) translateZ(0);
  -webkit-transform: translateX(0%) translateZ(0);
  transition: transform 1s linear;
  -o-transition: transform 1s linear;
  -ms-transition: transform 1s linear;
  -moz-transition: transform 1s linear;
  -webkit-transition: transform 1s linear;
}
.slider.sidesym .images .image.no-trans {
  transition: transform 0s linear;
  -o-transition: transform 0s linear;
  -ms-transition: transform 0s linear;
  -moz-transition: transform 0s linear;
  -webkit-transition: transform 0s linear;
}
.slider.sidesym .images .image.slow-trans {
  transition: transform 1s linear;
  -o-transition: transform 1s linear;
  -ms-transition: transform 1s linear;
  -moz-transition: transform 1s linear;
  -webkit-transition: transform 1s linear;
}
.slider.sidesym .images .image.left {
  transform: translateX(-100%) translateZ(0);
  -o-transform: translateX(-100%) translateZ(0);
  -ms-transform: translateX(-100%) translateZ(0);
  -moz-transform: translateX(-100%) translateZ(0);
  -webkit-transform: translateX(-100%) translateZ(0);
}
.slider.sidesym .images .image.right {
  transform: translateX(100%) translateZ(0);
  -o-transform: translateX(100%) translateZ(0);
  -ms-transform: translateX(100%) translateZ(0);
  -moz-transform: translateX(100%) translateZ(0);
  -webkit-transform: translateX(100%) translateZ(0);
}
.slider.block-type-5-slider {
  height: 440px;
  width: 100%;
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .slider .controls button {
    width: 50px;
    height: 50px;
    background-position: 14px 12px;
  }
  .slider .controls button:hover {
    background-position: 18px 12px;
  }
}
@media screen and (max-width: 991px) {
  .slider {
    cursor: pointer;
  }
  .slider .controls button {
    width: 50px;
    height: 50px;
    background-position: 14px 12px;
  }
  .slider .controls button:hover {
    background-position: 18px 12px;
  }
}
@media screen and (max-width: 767px) {
  .slider {
    cursor: pointer;
  }
  .slider .controls button {
    width: 70px;
    height: 70px;
    background-position: 24px 22px;
  }
  .slider .controls button:hover {
    background-position: 29px 22px;
  }
}
/* @import addons/modal.styl */
.modal-background {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 10000;
  background-color: rgba(0,0,0,0.4);
  opacity: 1;
  transition: 0.3s opacity;
  -o-transition: 0.3s opacity;
  -ms-transition: 0.3s opacity;
  -moz-transition: 0.3s opacity;
  -webkit-transition: 0.3s opacity;
}
.modal-background.hidden {
  opacity: 0;
}
.modal-container {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 10000;
  pointer-events: none;
  opacity: 1;
  transition: 0.3s opacity;
  -o-transition: 0.3s opacity;
  -ms-transition: 0.3s opacity;
  -moz-transition: 0.3s opacity;
  -webkit-transition: 0.3s opacity;
}
.modal-container .modal-dialog {
  position: fixed;
  top: 50%;
  left: 50%;
  pointer-events: initial;
  flex-direction: column;
  width: 600px;
  max-height: 90%;
  background-color: #fff;
  transition: 0.3s transform;
  -o-transition: 0.3s transform;
  -ms-transition: 0.3s transform;
  -moz-transition: 0.3s transform;
  -webkit-transition: 0.3s transform;
  transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  background-color: #fff;
  box-shadow: 0px 0px 35px 0px rgba(0,0,0,0.4);
}
.modal-container .modal-dialog.media-upload .modal-content {
  padding-left: 50px;
  padding-right: 50px;
  padding-bottom: 50px;
}
.modal-container .modal-dialog .modal-header:before,
.modal-container .modal-dialog .modal-header:after {
  width: 100%;
  display: table;
  content: " ";
}
.modal-container .modal-dialog .modal-header:after {
  clear: both;
}
.modal-container .modal-dialog .modal-header .modal-header-close {
  height: 40px;
  width: 40px;
  float: right;
  border: none;
  outline: none;
  cursor: pointer;
  color: #000;
  font-size: 0px;
  padding: 0px;
  background-color: rgba(0,0,0,0);
  background-image: url("images/modal-close.png");
  background-repeat: no-repeat;
  background-position: center center;
}
.modal-container .modal-dialog .modal-header .modal-header-title {
  width: calc(100% - 180px);
  margin: 40px 40px 40px 90px !important;
  color: #e12329;
  font-size: 32px;
  text-align: center;
  font-weight: 600;
  line-height: 30px;
  text-transform: uppercase;
  overflow: hidden;
  text-align: center;
}
.modal-container .modal-dialog .modal-content {
  height: calc(100% - 100px);
  padding: 0px 90px 0px 90px;
}
.modal-container .modal-dialog .modal-content .dev-mode {
  margin-bottom: 40px;
}
.modal-container .modal-dialog .modal-content .dev-mode p {
  color: #e12329;
  font-size: 20px;
  margin: 0px;
}
.modal-container .modal-dialog .modal-content .form {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
}
.modal-container .modal-dialog .modal-content .form .block {
  display: inline-flex;
  min-width: 300px;
  width: 100%;
  margin-bottom: 30px;
}
.modal-container .modal-dialog .modal-content .form .block.nom {
  margin-bottom: 0px;
}
.modal-container .modal-dialog .modal-content .form .block input,
.modal-container .modal-dialog .modal-content .form .block textarea {
  display: block;
  width: 100%;
  height: 38px;
  font-size: 24px;
  font-weight: 300;
  background-color: rgba(0,0,0,0);
  border: none;
  border-bottom: 1px solid #b3b3b3;
  padding: 5px 10px 0px 0px;
  color: #000;
}
.modal-container .modal-dialog .modal-content .form .block input::-webkit-input-placeholder,
.modal-container .modal-dialog .modal-content .form .block textarea::-webkit-input-placeholder {
  color: #b3b3b3;
  font-size: 24px;
  font-weight: 300;
  font-family: inherit;
  transition: 0.1s;
  -o-transition: 0.1s;
  -ms-transition: 0.1s;
  -moz-transition: 0.1s;
  -webkit-transition: 0.1s;
}
.modal-container .modal-dialog .modal-content .form .block input::-moz-placeholder,
.modal-container .modal-dialog .modal-content .form .block textarea::-moz-placeholder {
  color: #b3b3b3;
  font-size: 24px;
  font-weight: 300;
  font-family: inherit;
  transition: 0.1s;
  -o-transition: 0.1s;
  -ms-transition: 0.1s;
  -moz-transition: 0.1s;
  -webkit-transition: 0.1s;
}
.modal-container .modal-dialog .modal-content .form .block input:-moz-placeholder,
.modal-container .modal-dialog .modal-content .form .block textarea:-moz-placeholder {
  color: #b3b3b3;
  font-size: 24px;
  font-weight: 300;
  font-family: inherit;
  transition: 0.1s;
  -o-transition: 0.1s;
  -ms-transition: 0.1s;
  -moz-transition: 0.1s;
  -webkit-transition: 0.1s;
}
.modal-container .modal-dialog .modal-content .form .block input:-ms-input-placeholder,
.modal-container .modal-dialog .modal-content .form .block textarea:-ms-input-placeholder {
  color: #b3b3b3;
  font-size: 24px;
  font-weight: 300;
  font-family: inherit;
  transition: 0.1s;
  -o-transition: 0.1s;
  -ms-transition: 0.1s;
  -moz-transition: 0.1s;
  -webkit-transition: 0.1s;
}
.modal-container .modal-dialog .modal-content .form .block input:focus,
.modal-container .modal-dialog .modal-content .form .block textarea:focus,
.modal-container .modal-dialog .modal-content .form .block input:active,
.modal-container .modal-dialog .modal-content .form .block textarea:active {
  color: #000;
  border-color: #000;
}
.modal-container .modal-dialog .modal-content .form .block input:focus::-webkit-input-placeholder,
.modal-container .modal-dialog .modal-content .form .block textarea:focus::-webkit-input-placeholder,
.modal-container .modal-dialog .modal-content .form .block input:active::-webkit-input-placeholder,
.modal-container .modal-dialog .modal-content .form .block textarea:active::-webkit-input-placeholder {
  color: #000;
}
.modal-container .modal-dialog .modal-content .form .block input:focus::-moz-placeholder,
.modal-container .modal-dialog .modal-content .form .block textarea:focus::-moz-placeholder,
.modal-container .modal-dialog .modal-content .form .block input:active::-moz-placeholder,
.modal-container .modal-dialog .modal-content .form .block textarea:active::-moz-placeholder {
  color: #000;
}
.modal-container .modal-dialog .modal-content .form .block input:focus:-moz-placeholder,
.modal-container .modal-dialog .modal-content .form .block textarea:focus:-moz-placeholder,
.modal-container .modal-dialog .modal-content .form .block input:active:-moz-placeholder,
.modal-container .modal-dialog .modal-content .form .block textarea:active:-moz-placeholder {
  color: #000;
}
.modal-container .modal-dialog .modal-content .form .block input:focus:-ms-input-placeholder,
.modal-container .modal-dialog .modal-content .form .block textarea:focus:-ms-input-placeholder,
.modal-container .modal-dialog .modal-content .form .block input:active:-ms-input-placeholder,
.modal-container .modal-dialog .modal-content .form .block textarea:active:-ms-input-placeholder {
  color: #000;
}
.modal-container .modal-dialog .modal-content .form .block input:focus + span,
.modal-container .modal-dialog .modal-content .form .block textarea:focus + span,
.modal-container .modal-dialog .modal-content .form .block input:active + span,
.modal-container .modal-dialog .modal-content .form .block textarea:active + span {
  border-color: rgba(0,0,0,0) rgba(0,0,0,0) #00f rgba(0,0,0,0);
}
.modal-container .modal-dialog .modal-content .form .block textarea {
  height: 170px;
  border: 1px solid #b3b3b3;
  padding: 10px;
  resize: none;
}
.modal-container .modal-dialog .modal-footer {
  text-align: center;
}
.modal-container .modal-dialog .modal-footer:before,
.modal-container .modal-dialog .modal-footer:after {
  width: 100%;
  display: table;
  content: " ";
}
.modal-container .modal-dialog .modal-footer:after {
  clear: both;
}
.modal-container .modal-dialog .modal-footer button {
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
  width: 240px;
  height: 60px;
  border: none;
  background-color: #e12329;
  margin: 15px 0px 50px 0px;
}
.modal-container.hidden {
  opacity: 0;
}
.modal-container.hidden .modal-dialog {
  transform: translateX(-50%) translateY(-150%);
  -o-transform: translateX(-50%) translateY(-150%);
  -ms-transform: translateX(-50%) translateY(-150%);
  -moz-transform: translateX(-50%) translateY(-150%);
  -webkit-transform: translateX(-50%) translateY(-150%);
}
@media screen and (max-width: 991px) {
  .modal-container {
    cursor: pointer;
  }
}
/* @import addons/uploader.styl */
[data-node="media-loader"] {
  background-color: rgba(0,0,0,0);
}
[data-node="media-loader"] .block-content {
  padding: 40px;
  border: 4px dashed #d2d2d2;
  text-align: center;
  margin-bottom: 10px;
}
[data-node="media-loader"] .block-content input[type="file"] {
  display: none;
}
[data-node="media-loader"] .block-content .media-loader-text-big {
  font-size: 20px;
  margin: 0px 0px 15px 0px;
}
[data-node="media-loader"] .block-content .media-loader-text-little {
  font-size: 14px;
  margin: 0px 0px 15px 0px;
}
[data-node="media-loader"] .block-content label {
  display: inline-block;
  border: none;
  margin: 0px;
  padding: 15px 25px;
  background-color: #e12329;
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
}
[data-node="media-loader"].drophere .block-content {
  padding: 40px;
  border: 4px dashed #e12329;
}
[data-node="media-loader"].drophere-m .block-content {
  padding: 40px;
  border: 4px dashed #e12329;
}
.u-node {
  font-size: 0px;
  border: 1px solid #d2d2d2;
  margin-top: 5px;
}
.u-node .u-node-icon,
.u-node .u-node-name,
.u-node .u-node-pbar {
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
}
.u-node .u-node-icon {
  width: 30px;
  height: 30px;
  font-size: 23px;
  overflow: hidden;
}
.u-node .u-node-icon img {
  width: 100%;
}
.u-node .u-node-name {
  width: calc(100% - 330px);
  padding-left: 10px;
  word-break: break-all;
}
.u-node .u-node-pbar {
  width: 300px;
  padding: 10px;
}
.u-node .u-node-pbar span {
  display: block;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  margin: -16px 0px 0px 0px;
}
.u-node .u-node-pbar .indicator {
  width: 100%;
  height: 10px;
  border-radius: 5px;
  background-color: rgba(0,0,0,0.15);
  overflow: hidden;
}
.u-node .u-node-pbar .indicator .bar {
  width: 100%;
  margin-left: -100%;
  height: 10px;
  border-radius: 5px;
  background-color: #e12329;
  transition: 0.1s;
  -o-transition: 0.1s;
  -ms-transition: 0.1s;
  -moz-transition: 0.1s;
  -webkit-transition: 0.1s;
}
.u-node .u-node-pbar .indicator .bar.finished {
  background-color: #008000;
}
.u-node .u-node-pbar .indicator .bar.failed {
  background-color: #e12329;
}
.u-node + .u-node {
  border-top: 1px solid rgba(0,0,0,0.15);
}
#ignored {
  background-color: #e12329;
}
#ignored .u-node .u-node-icon {
  color: #fff;
}
#ignored .u-node .u-node-name {
  color: #fff;
  width: calc(100% - 30px);
}
/* @import addons/lightbox.styl */
.lightbox-background {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 10000;
  background-color: rgba(0,0,0,0.4);
  opacity: 1;
  transition: 0.3s opacity;
  -o-transition: 0.3s opacity;
  -ms-transition: 0.3s opacity;
  -moz-transition: 0.3s opacity;
  -webkit-transition: 0.3s opacity;
}
.lightbox-background.hidden {
  opacity: 0;
}
.lightbox-container {
  position: relative;
  z-index: 10100;
  transition: 0.3s opacity;
  -o-transition: 0.3s opacity;
  -ms-transition: 0.3s opacity;
  -moz-transition: 0.3s opacity;
  -webkit-transition: 0.3s opacity;
  opacity: 1;
}
.lightbox-container.hidden {
  opacity: 0;
}
.lightbox-container .lightbox-content {
  pointer-events: initial;
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  margin: auto;
  z-index: 10300;
  width: 100px;
  height: 100px;
  background-color: #fff;
  transition: width 0.5s linear, height 0.5s linear;
  -o-transition: width 0.5s linear, height 0.5s linear;
  -ms-transition: width 0.5s linear, height 0.5s linear;
  -moz-transition: width 0.5s linear, height 0.5s linear;
  -webkit-transition: width 0.5s linear, height 0.5s linear;
  overflow: hidden;
}
.lightbox-container .lightbox-content .preloader {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  margin: auto;
  width: 50px;
  height: 50px;
}
.lightbox-container .lightbox-content .preloader .block {
  position: absolute;
  background-color: #e12329;
  width: 50%;
  height: 50%;
  transform-origin: 50% 50%;
}
.lightbox-container .lightbox-content .preloader .block:nth-of-type(1) {
  top: 0px;
  left: 0px;
  animation: preloader1 3s linear infinite;
}
.lightbox-container .lightbox-content .preloader .block:nth-of-type(2) {
  top: 0px;
  right: 0px;
  animation: preloader2 3s linear infinite;
}
.lightbox-container .lightbox-content .preloader .block:nth-of-type(3) {
  bottom: 0px;
  right: 0px;
  animation: preloader3 3s linear infinite;
}
.lightbox-container .lightbox-content .preloader .block:nth-of-type(4) {
  bottom: 0px;
  left: 0px;
  animation: preloader4 3s linear infinite;
}
.lightbox-container .lightbox-content img {
  width: 100%;
  height: 100%;
}
.lightbox-container .lightbox-content img.hidden {
  opacity: 0;
}
.lightbox-container .lightbox-buttons {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 10500;
  pointer-events: none;
}
.lightbox-container .lightbox-buttons .button {
  position: absolute;
  top: calc(50% - 30px);
  width: 60px;
  height: 60px;
  background-color: #e12329;
  background-image: url("images/slider-arrow.png");
  background-position: 19px 17px;
  background-repeat: no-repeat;
  border: none;
  padding: 0px;
  margin: 0px;
  cursor: pointer;
  pointer-events: initial;
  transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
.lightbox-container .lightbox-buttons .button:hover {
  background-position: 24px 17px;
}
.lightbox-container .lightbox-buttons .button.prev {
  left: 20px;
  transform: scale(-1, 1);
  -o-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  -moz-transform: scale(-1, 1);
  -webkit-transform: scale(-1, 1);
}
.lightbox-container .lightbox-buttons .button.next {
  right: 20px;
}
@media screen and (max-width: 991px) {
  .lightbox-background {
    cursor: pointer;
  }
}
@-moz-keyframes preloader1 {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
    -o-transform: translate(0px, 0px) rotate(0deg);
    -ms-transform: translate(0px, 0px) rotate(0deg);
    -moz-transform: translate(0px, 0px) rotate(0deg);
    -webkit-transform: translate(0px, 0px) rotate(0deg);
  }
  10% {
    transform: translate(-5px, -5px) rotate(0deg);
    -o-transform: translate(-5px, -5px) rotate(0deg);
    -ms-transform: translate(-5px, -5px) rotate(0deg);
    -moz-transform: translate(-5px, -5px) rotate(0deg);
    -webkit-transform: translate(-5px, -5px) rotate(0deg);
  }
  35%, 45% {
    transform: translate(-20px, -20px) rotate(180deg);
    -o-transform: translate(-20px, -20px) rotate(180deg);
    -ms-transform: translate(-20px, -20px) rotate(180deg);
    -moz-transform: translate(-20px, -20px) rotate(180deg);
    -webkit-transform: translate(-20px, -20px) rotate(180deg);
  }
  70% {
    transform: translate(-5px, -5px) rotate(360deg);
    -o-transform: translate(-5px, -5px) rotate(360deg);
    -ms-transform: translate(-5px, -5px) rotate(360deg);
    -moz-transform: translate(-5px, -5px) rotate(360deg);
    -webkit-transform: translate(-5px, -5px) rotate(360deg);
  }
  80% {
    transform: translate(0px, 0px) rotate(360deg);
    -o-transform: translate(0px, 0px) rotate(360deg);
    -ms-transform: translate(0px, 0px) rotate(360deg);
    -moz-transform: translate(0px, 0px) rotate(360deg);
    -webkit-transform: translate(0px, 0px) rotate(360deg);
  }
  100% {
    transform: translate(0px, 0px) rotate(360deg);
    -o-transform: translate(0px, 0px) rotate(360deg);
    -ms-transform: translate(0px, 0px) rotate(360deg);
    -moz-transform: translate(0px, 0px) rotate(360deg);
    -webkit-transform: translate(0px, 0px) rotate(360deg);
  }
}
@-webkit-keyframes preloader1 {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
    -o-transform: translate(0px, 0px) rotate(0deg);
    -ms-transform: translate(0px, 0px) rotate(0deg);
    -moz-transform: translate(0px, 0px) rotate(0deg);
    -webkit-transform: translate(0px, 0px) rotate(0deg);
  }
  10% {
    transform: translate(-5px, -5px) rotate(0deg);
    -o-transform: translate(-5px, -5px) rotate(0deg);
    -ms-transform: translate(-5px, -5px) rotate(0deg);
    -moz-transform: translate(-5px, -5px) rotate(0deg);
    -webkit-transform: translate(-5px, -5px) rotate(0deg);
  }
  35%, 45% {
    transform: translate(-20px, -20px) rotate(180deg);
    -o-transform: translate(-20px, -20px) rotate(180deg);
    -ms-transform: translate(-20px, -20px) rotate(180deg);
    -moz-transform: translate(-20px, -20px) rotate(180deg);
    -webkit-transform: translate(-20px, -20px) rotate(180deg);
  }
  70% {
    transform: translate(-5px, -5px) rotate(360deg);
    -o-transform: translate(-5px, -5px) rotate(360deg);
    -ms-transform: translate(-5px, -5px) rotate(360deg);
    -moz-transform: translate(-5px, -5px) rotate(360deg);
    -webkit-transform: translate(-5px, -5px) rotate(360deg);
  }
  80% {
    transform: translate(0px, 0px) rotate(360deg);
    -o-transform: translate(0px, 0px) rotate(360deg);
    -ms-transform: translate(0px, 0px) rotate(360deg);
    -moz-transform: translate(0px, 0px) rotate(360deg);
    -webkit-transform: translate(0px, 0px) rotate(360deg);
  }
  100% {
    transform: translate(0px, 0px) rotate(360deg);
    -o-transform: translate(0px, 0px) rotate(360deg);
    -ms-transform: translate(0px, 0px) rotate(360deg);
    -moz-transform: translate(0px, 0px) rotate(360deg);
    -webkit-transform: translate(0px, 0px) rotate(360deg);
  }
}
@-o-keyframes preloader1 {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
    -o-transform: translate(0px, 0px) rotate(0deg);
    -ms-transform: translate(0px, 0px) rotate(0deg);
    -moz-transform: translate(0px, 0px) rotate(0deg);
    -webkit-transform: translate(0px, 0px) rotate(0deg);
  }
  10% {
    transform: translate(-5px, -5px) rotate(0deg);
    -o-transform: translate(-5px, -5px) rotate(0deg);
    -ms-transform: translate(-5px, -5px) rotate(0deg);
    -moz-transform: translate(-5px, -5px) rotate(0deg);
    -webkit-transform: translate(-5px, -5px) rotate(0deg);
  }
  35%, 45% {
    transform: translate(-20px, -20px) rotate(180deg);
    -o-transform: translate(-20px, -20px) rotate(180deg);
    -ms-transform: translate(-20px, -20px) rotate(180deg);
    -moz-transform: translate(-20px, -20px) rotate(180deg);
    -webkit-transform: translate(-20px, -20px) rotate(180deg);
  }
  70% {
    transform: translate(-5px, -5px) rotate(360deg);
    -o-transform: translate(-5px, -5px) rotate(360deg);
    -ms-transform: translate(-5px, -5px) rotate(360deg);
    -moz-transform: translate(-5px, -5px) rotate(360deg);
    -webkit-transform: translate(-5px, -5px) rotate(360deg);
  }
  80% {
    transform: translate(0px, 0px) rotate(360deg);
    -o-transform: translate(0px, 0px) rotate(360deg);
    -ms-transform: translate(0px, 0px) rotate(360deg);
    -moz-transform: translate(0px, 0px) rotate(360deg);
    -webkit-transform: translate(0px, 0px) rotate(360deg);
  }
  100% {
    transform: translate(0px, 0px) rotate(360deg);
    -o-transform: translate(0px, 0px) rotate(360deg);
    -ms-transform: translate(0px, 0px) rotate(360deg);
    -moz-transform: translate(0px, 0px) rotate(360deg);
    -webkit-transform: translate(0px, 0px) rotate(360deg);
  }
}
@keyframes preloader1 {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
    -o-transform: translate(0px, 0px) rotate(0deg);
    -ms-transform: translate(0px, 0px) rotate(0deg);
    -moz-transform: translate(0px, 0px) rotate(0deg);
    -webkit-transform: translate(0px, 0px) rotate(0deg);
  }
  10% {
    transform: translate(-5px, -5px) rotate(0deg);
    -o-transform: translate(-5px, -5px) rotate(0deg);
    -ms-transform: translate(-5px, -5px) rotate(0deg);
    -moz-transform: translate(-5px, -5px) rotate(0deg);
    -webkit-transform: translate(-5px, -5px) rotate(0deg);
  }
  35%, 45% {
    transform: translate(-20px, -20px) rotate(180deg);
    -o-transform: translate(-20px, -20px) rotate(180deg);
    -ms-transform: translate(-20px, -20px) rotate(180deg);
    -moz-transform: translate(-20px, -20px) rotate(180deg);
    -webkit-transform: translate(-20px, -20px) rotate(180deg);
  }
  70% {
    transform: translate(-5px, -5px) rotate(360deg);
    -o-transform: translate(-5px, -5px) rotate(360deg);
    -ms-transform: translate(-5px, -5px) rotate(360deg);
    -moz-transform: translate(-5px, -5px) rotate(360deg);
    -webkit-transform: translate(-5px, -5px) rotate(360deg);
  }
  80% {
    transform: translate(0px, 0px) rotate(360deg);
    -o-transform: translate(0px, 0px) rotate(360deg);
    -ms-transform: translate(0px, 0px) rotate(360deg);
    -moz-transform: translate(0px, 0px) rotate(360deg);
    -webkit-transform: translate(0px, 0px) rotate(360deg);
  }
  100% {
    transform: translate(0px, 0px) rotate(360deg);
    -o-transform: translate(0px, 0px) rotate(360deg);
    -ms-transform: translate(0px, 0px) rotate(360deg);
    -moz-transform: translate(0px, 0px) rotate(360deg);
    -webkit-transform: translate(0px, 0px) rotate(360deg);
  }
}
@-moz-keyframes preloader2 {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
    -o-transform: translate(0px, 0px) rotate(0deg);
    -ms-transform: translate(0px, 0px) rotate(0deg);
    -moz-transform: translate(0px, 0px) rotate(0deg);
    -webkit-transform: translate(0px, 0px) rotate(0deg);
  }
  10% {
    transform: translate(5px, -5px) rotate(0deg);
    -o-transform: translate(5px, -5px) rotate(0deg);
    -ms-transform: translate(5px, -5px) rotate(0deg);
    -moz-transform: translate(5px, -5px) rotate(0deg);
    -webkit-transform: translate(5px, -5px) rotate(0deg);
  }
  35%, 45% {
    transform: translate(20px, -20px) rotate(180deg);
    -o-transform: translate(20px, -20px) rotate(180deg);
    -ms-transform: translate(20px, -20px) rotate(180deg);
    -moz-transform: translate(20px, -20px) rotate(180deg);
    -webkit-transform: translate(20px, -20px) rotate(180deg);
  }
  70% {
    transform: translate(5px, -5px) rotate(360deg);
    -o-transform: translate(5px, -5px) rotate(360deg);
    -ms-transform: translate(5px, -5px) rotate(360deg);
    -moz-transform: translate(5px, -5px) rotate(360deg);
    -webkit-transform: translate(5px, -5px) rotate(360deg);
  }
  80% {
    transform: translate(0px, 0px) rotate(360deg);
    -o-transform: translate(0px, 0px) rotate(360deg);
    -ms-transform: translate(0px, 0px) rotate(360deg);
    -moz-transform: translate(0px, 0px) rotate(360deg);
    -webkit-transform: translate(0px, 0px) rotate(360deg);
  }
  100% {
    transform: translate(0px, 0px) rotate(360deg);
    -o-transform: translate(0px, 0px) rotate(360deg);
    -ms-transform: translate(0px, 0px) rotate(360deg);
    -moz-transform: translate(0px, 0px) rotate(360deg);
    -webkit-transform: translate(0px, 0px) rotate(360deg);
  }
}
@-webkit-keyframes preloader2 {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
    -o-transform: translate(0px, 0px) rotate(0deg);
    -ms-transform: translate(0px, 0px) rotate(0deg);
    -moz-transform: translate(0px, 0px) rotate(0deg);
    -webkit-transform: translate(0px, 0px) rotate(0deg);
  }
  10% {
    transform: translate(5px, -5px) rotate(0deg);
    -o-transform: translate(5px, -5px) rotate(0deg);
    -ms-transform: translate(5px, -5px) rotate(0deg);
    -moz-transform: translate(5px, -5px) rotate(0deg);
    -webkit-transform: translate(5px, -5px) rotate(0deg);
  }
  35%, 45% {
    transform: translate(20px, -20px) rotate(180deg);
    -o-transform: translate(20px, -20px) rotate(180deg);
    -ms-transform: translate(20px, -20px) rotate(180deg);
    -moz-transform: translate(20px, -20px) rotate(180deg);
    -webkit-transform: translate(20px, -20px) rotate(180deg);
  }
  70% {
    transform: translate(5px, -5px) rotate(360deg);
    -o-transform: translate(5px, -5px) rotate(360deg);
    -ms-transform: translate(5px, -5px) rotate(360deg);
    -moz-transform: translate(5px, -5px) rotate(360deg);
    -webkit-transform: translate(5px, -5px) rotate(360deg);
  }
  80% {
    transform: translate(0px, 0px) rotate(360deg);
    -o-transform: translate(0px, 0px) rotate(360deg);
    -ms-transform: translate(0px, 0px) rotate(360deg);
    -moz-transform: translate(0px, 0px) rotate(360deg);
    -webkit-transform: translate(0px, 0px) rotate(360deg);
  }
  100% {
    transform: translate(0px, 0px) rotate(360deg);
    -o-transform: translate(0px, 0px) rotate(360deg);
    -ms-transform: translate(0px, 0px) rotate(360deg);
    -moz-transform: translate(0px, 0px) rotate(360deg);
    -webkit-transform: translate(0px, 0px) rotate(360deg);
  }
}
@-o-keyframes preloader2 {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
    -o-transform: translate(0px, 0px) rotate(0deg);
    -ms-transform: translate(0px, 0px) rotate(0deg);
    -moz-transform: translate(0px, 0px) rotate(0deg);
    -webkit-transform: translate(0px, 0px) rotate(0deg);
  }
  10% {
    transform: translate(5px, -5px) rotate(0deg);
    -o-transform: translate(5px, -5px) rotate(0deg);
    -ms-transform: translate(5px, -5px) rotate(0deg);
    -moz-transform: translate(5px, -5px) rotate(0deg);
    -webkit-transform: translate(5px, -5px) rotate(0deg);
  }
  35%, 45% {
    transform: translate(20px, -20px) rotate(180deg);
    -o-transform: translate(20px, -20px) rotate(180deg);
    -ms-transform: translate(20px, -20px) rotate(180deg);
    -moz-transform: translate(20px, -20px) rotate(180deg);
    -webkit-transform: translate(20px, -20px) rotate(180deg);
  }
  70% {
    transform: translate(5px, -5px) rotate(360deg);
    -o-transform: translate(5px, -5px) rotate(360deg);
    -ms-transform: translate(5px, -5px) rotate(360deg);
    -moz-transform: translate(5px, -5px) rotate(360deg);
    -webkit-transform: translate(5px, -5px) rotate(360deg);
  }
  80% {
    transform: translate(0px, 0px) rotate(360deg);
    -o-transform: translate(0px, 0px) rotate(360deg);
    -ms-transform: translate(0px, 0px) rotate(360deg);
    -moz-transform: translate(0px, 0px) rotate(360deg);
    -webkit-transform: translate(0px, 0px) rotate(360deg);
  }
  100% {
    transform: translate(0px, 0px) rotate(360deg);
    -o-transform: translate(0px, 0px) rotate(360deg);
    -ms-transform: translate(0px, 0px) rotate(360deg);
    -moz-transform: translate(0px, 0px) rotate(360deg);
    -webkit-transform: translate(0px, 0px) rotate(360deg);
  }
}
@keyframes preloader2 {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
    -o-transform: translate(0px, 0px) rotate(0deg);
    -ms-transform: translate(0px, 0px) rotate(0deg);
    -moz-transform: translate(0px, 0px) rotate(0deg);
    -webkit-transform: translate(0px, 0px) rotate(0deg);
  }
  10% {
    transform: translate(5px, -5px) rotate(0deg);
    -o-transform: translate(5px, -5px) rotate(0deg);
    -ms-transform: translate(5px, -5px) rotate(0deg);
    -moz-transform: translate(5px, -5px) rotate(0deg);
    -webkit-transform: translate(5px, -5px) rotate(0deg);
  }
  35%, 45% {
    transform: translate(20px, -20px) rotate(180deg);
    -o-transform: translate(20px, -20px) rotate(180deg);
    -ms-transform: translate(20px, -20px) rotate(180deg);
    -moz-transform: translate(20px, -20px) rotate(180deg);
    -webkit-transform: translate(20px, -20px) rotate(180deg);
  }
  70% {
    transform: translate(5px, -5px) rotate(360deg);
    -o-transform: translate(5px, -5px) rotate(360deg);
    -ms-transform: translate(5px, -5px) rotate(360deg);
    -moz-transform: translate(5px, -5px) rotate(360deg);
    -webkit-transform: translate(5px, -5px) rotate(360deg);
  }
  80% {
    transform: translate(0px, 0px) rotate(360deg);
    -o-transform: translate(0px, 0px) rotate(360deg);
    -ms-transform: translate(0px, 0px) rotate(360deg);
    -moz-transform: translate(0px, 0px) rotate(360deg);
    -webkit-transform: translate(0px, 0px) rotate(360deg);
  }
  100% {
    transform: translate(0px, 0px) rotate(360deg);
    -o-transform: translate(0px, 0px) rotate(360deg);
    -ms-transform: translate(0px, 0px) rotate(360deg);
    -moz-transform: translate(0px, 0px) rotate(360deg);
    -webkit-transform: translate(0px, 0px) rotate(360deg);
  }
}
@-moz-keyframes preloader3 {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
    -o-transform: translate(0px, 0px) rotate(0deg);
    -ms-transform: translate(0px, 0px) rotate(0deg);
    -moz-transform: translate(0px, 0px) rotate(0deg);
    -webkit-transform: translate(0px, 0px) rotate(0deg);
  }
  10% {
    transform: translate(5px, 5px) rotate(0deg);
    -o-transform: translate(5px, 5px) rotate(0deg);
    -ms-transform: translate(5px, 5px) rotate(0deg);
    -moz-transform: translate(5px, 5px) rotate(0deg);
    -webkit-transform: translate(5px, 5px) rotate(0deg);
  }
  35%, 45% {
    transform: translate(20px, 20px) rotate(180deg);
    -o-transform: translate(20px, 20px) rotate(180deg);
    -ms-transform: translate(20px, 20px) rotate(180deg);
    -moz-transform: translate(20px, 20px) rotate(180deg);
    -webkit-transform: translate(20px, 20px) rotate(180deg);
  }
  70% {
    transform: translate(5px, 5px) rotate(360deg);
    -o-transform: translate(5px, 5px) rotate(360deg);
    -ms-transform: translate(5px, 5px) rotate(360deg);
    -moz-transform: translate(5px, 5px) rotate(360deg);
    -webkit-transform: translate(5px, 5px) rotate(360deg);
  }
  80% {
    transform: translate(0px, 0px) rotate(360deg);
    -o-transform: translate(0px, 0px) rotate(360deg);
    -ms-transform: translate(0px, 0px) rotate(360deg);
    -moz-transform: translate(0px, 0px) rotate(360deg);
    -webkit-transform: translate(0px, 0px) rotate(360deg);
  }
  100% {
    transform: translate(0px, 0px) rotate(360deg);
    -o-transform: translate(0px, 0px) rotate(360deg);
    -ms-transform: translate(0px, 0px) rotate(360deg);
    -moz-transform: translate(0px, 0px) rotate(360deg);
    -webkit-transform: translate(0px, 0px) rotate(360deg);
  }
}
@-webkit-keyframes preloader3 {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
    -o-transform: translate(0px, 0px) rotate(0deg);
    -ms-transform: translate(0px, 0px) rotate(0deg);
    -moz-transform: translate(0px, 0px) rotate(0deg);
    -webkit-transform: translate(0px, 0px) rotate(0deg);
  }
  10% {
    transform: translate(5px, 5px) rotate(0deg);
    -o-transform: translate(5px, 5px) rotate(0deg);
    -ms-transform: translate(5px, 5px) rotate(0deg);
    -moz-transform: translate(5px, 5px) rotate(0deg);
    -webkit-transform: translate(5px, 5px) rotate(0deg);
  }
  35%, 45% {
    transform: translate(20px, 20px) rotate(180deg);
    -o-transform: translate(20px, 20px) rotate(180deg);
    -ms-transform: translate(20px, 20px) rotate(180deg);
    -moz-transform: translate(20px, 20px) rotate(180deg);
    -webkit-transform: translate(20px, 20px) rotate(180deg);
  }
  70% {
    transform: translate(5px, 5px) rotate(360deg);
    -o-transform: translate(5px, 5px) rotate(360deg);
    -ms-transform: translate(5px, 5px) rotate(360deg);
    -moz-transform: translate(5px, 5px) rotate(360deg);
    -webkit-transform: translate(5px, 5px) rotate(360deg);
  }
  80% {
    transform: translate(0px, 0px) rotate(360deg);
    -o-transform: translate(0px, 0px) rotate(360deg);
    -ms-transform: translate(0px, 0px) rotate(360deg);
    -moz-transform: translate(0px, 0px) rotate(360deg);
    -webkit-transform: translate(0px, 0px) rotate(360deg);
  }
  100% {
    transform: translate(0px, 0px) rotate(360deg);
    -o-transform: translate(0px, 0px) rotate(360deg);
    -ms-transform: translate(0px, 0px) rotate(360deg);
    -moz-transform: translate(0px, 0px) rotate(360deg);
    -webkit-transform: translate(0px, 0px) rotate(360deg);
  }
}
@-o-keyframes preloader3 {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
    -o-transform: translate(0px, 0px) rotate(0deg);
    -ms-transform: translate(0px, 0px) rotate(0deg);
    -moz-transform: translate(0px, 0px) rotate(0deg);
    -webkit-transform: translate(0px, 0px) rotate(0deg);
  }
  10% {
    transform: translate(5px, 5px) rotate(0deg);
    -o-transform: translate(5px, 5px) rotate(0deg);
    -ms-transform: translate(5px, 5px) rotate(0deg);
    -moz-transform: translate(5px, 5px) rotate(0deg);
    -webkit-transform: translate(5px, 5px) rotate(0deg);
  }
  35%, 45% {
    transform: translate(20px, 20px) rotate(180deg);
    -o-transform: translate(20px, 20px) rotate(180deg);
    -ms-transform: translate(20px, 20px) rotate(180deg);
    -moz-transform: translate(20px, 20px) rotate(180deg);
    -webkit-transform: translate(20px, 20px) rotate(180deg);
  }
  70% {
    transform: translate(5px, 5px) rotate(360deg);
    -o-transform: translate(5px, 5px) rotate(360deg);
    -ms-transform: translate(5px, 5px) rotate(360deg);
    -moz-transform: translate(5px, 5px) rotate(360deg);
    -webkit-transform: translate(5px, 5px) rotate(360deg);
  }
  80% {
    transform: translate(0px, 0px) rotate(360deg);
    -o-transform: translate(0px, 0px) rotate(360deg);
    -ms-transform: translate(0px, 0px) rotate(360deg);
    -moz-transform: translate(0px, 0px) rotate(360deg);
    -webkit-transform: translate(0px, 0px) rotate(360deg);
  }
  100% {
    transform: translate(0px, 0px) rotate(360deg);
    -o-transform: translate(0px, 0px) rotate(360deg);
    -ms-transform: translate(0px, 0px) rotate(360deg);
    -moz-transform: translate(0px, 0px) rotate(360deg);
    -webkit-transform: translate(0px, 0px) rotate(360deg);
  }
}
@keyframes preloader3 {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
    -o-transform: translate(0px, 0px) rotate(0deg);
    -ms-transform: translate(0px, 0px) rotate(0deg);
    -moz-transform: translate(0px, 0px) rotate(0deg);
    -webkit-transform: translate(0px, 0px) rotate(0deg);
  }
  10% {
    transform: translate(5px, 5px) rotate(0deg);
    -o-transform: translate(5px, 5px) rotate(0deg);
    -ms-transform: translate(5px, 5px) rotate(0deg);
    -moz-transform: translate(5px, 5px) rotate(0deg);
    -webkit-transform: translate(5px, 5px) rotate(0deg);
  }
  35%, 45% {
    transform: translate(20px, 20px) rotate(180deg);
    -o-transform: translate(20px, 20px) rotate(180deg);
    -ms-transform: translate(20px, 20px) rotate(180deg);
    -moz-transform: translate(20px, 20px) rotate(180deg);
    -webkit-transform: translate(20px, 20px) rotate(180deg);
  }
  70% {
    transform: translate(5px, 5px) rotate(360deg);
    -o-transform: translate(5px, 5px) rotate(360deg);
    -ms-transform: translate(5px, 5px) rotate(360deg);
    -moz-transform: translate(5px, 5px) rotate(360deg);
    -webkit-transform: translate(5px, 5px) rotate(360deg);
  }
  80% {
    transform: translate(0px, 0px) rotate(360deg);
    -o-transform: translate(0px, 0px) rotate(360deg);
    -ms-transform: translate(0px, 0px) rotate(360deg);
    -moz-transform: translate(0px, 0px) rotate(360deg);
    -webkit-transform: translate(0px, 0px) rotate(360deg);
  }
  100% {
    transform: translate(0px, 0px) rotate(360deg);
    -o-transform: translate(0px, 0px) rotate(360deg);
    -ms-transform: translate(0px, 0px) rotate(360deg);
    -moz-transform: translate(0px, 0px) rotate(360deg);
    -webkit-transform: translate(0px, 0px) rotate(360deg);
  }
}
@-moz-keyframes preloader4 {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
    -o-transform: translate(0px, 0px) rotate(0deg);
    -ms-transform: translate(0px, 0px) rotate(0deg);
    -moz-transform: translate(0px, 0px) rotate(0deg);
    -webkit-transform: translate(0px, 0px) rotate(0deg);
  }
  10% {
    transform: translate(-5px, 5px) rotate(0deg);
    -o-transform: translate(-5px, 5px) rotate(0deg);
    -ms-transform: translate(-5px, 5px) rotate(0deg);
    -moz-transform: translate(-5px, 5px) rotate(0deg);
    -webkit-transform: translate(-5px, 5px) rotate(0deg);
  }
  35%, 45% {
    transform: translate(-20px, 20px) rotate(180deg);
    -o-transform: translate(-20px, 20px) rotate(180deg);
    -ms-transform: translate(-20px, 20px) rotate(180deg);
    -moz-transform: translate(-20px, 20px) rotate(180deg);
    -webkit-transform: translate(-20px, 20px) rotate(180deg);
  }
  70% {
    transform: translate(-5px, 5px) rotate(360deg);
    -o-transform: translate(-5px, 5px) rotate(360deg);
    -ms-transform: translate(-5px, 5px) rotate(360deg);
    -moz-transform: translate(-5px, 5px) rotate(360deg);
    -webkit-transform: translate(-5px, 5px) rotate(360deg);
  }
  80% {
    transform: translate(0px, 0px) rotate(360deg);
    -o-transform: translate(0px, 0px) rotate(360deg);
    -ms-transform: translate(0px, 0px) rotate(360deg);
    -moz-transform: translate(0px, 0px) rotate(360deg);
    -webkit-transform: translate(0px, 0px) rotate(360deg);
  }
  100% {
    transform: translate(0px, 0px) rotate(360deg);
    -o-transform: translate(0px, 0px) rotate(360deg);
    -ms-transform: translate(0px, 0px) rotate(360deg);
    -moz-transform: translate(0px, 0px) rotate(360deg);
    -webkit-transform: translate(0px, 0px) rotate(360deg);
  }
}
@-webkit-keyframes preloader4 {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
    -o-transform: translate(0px, 0px) rotate(0deg);
    -ms-transform: translate(0px, 0px) rotate(0deg);
    -moz-transform: translate(0px, 0px) rotate(0deg);
    -webkit-transform: translate(0px, 0px) rotate(0deg);
  }
  10% {
    transform: translate(-5px, 5px) rotate(0deg);
    -o-transform: translate(-5px, 5px) rotate(0deg);
    -ms-transform: translate(-5px, 5px) rotate(0deg);
    -moz-transform: translate(-5px, 5px) rotate(0deg);
    -webkit-transform: translate(-5px, 5px) rotate(0deg);
  }
  35%, 45% {
    transform: translate(-20px, 20px) rotate(180deg);
    -o-transform: translate(-20px, 20px) rotate(180deg);
    -ms-transform: translate(-20px, 20px) rotate(180deg);
    -moz-transform: translate(-20px, 20px) rotate(180deg);
    -webkit-transform: translate(-20px, 20px) rotate(180deg);
  }
  70% {
    transform: translate(-5px, 5px) rotate(360deg);
    -o-transform: translate(-5px, 5px) rotate(360deg);
    -ms-transform: translate(-5px, 5px) rotate(360deg);
    -moz-transform: translate(-5px, 5px) rotate(360deg);
    -webkit-transform: translate(-5px, 5px) rotate(360deg);
  }
  80% {
    transform: translate(0px, 0px) rotate(360deg);
    -o-transform: translate(0px, 0px) rotate(360deg);
    -ms-transform: translate(0px, 0px) rotate(360deg);
    -moz-transform: translate(0px, 0px) rotate(360deg);
    -webkit-transform: translate(0px, 0px) rotate(360deg);
  }
  100% {
    transform: translate(0px, 0px) rotate(360deg);
    -o-transform: translate(0px, 0px) rotate(360deg);
    -ms-transform: translate(0px, 0px) rotate(360deg);
    -moz-transform: translate(0px, 0px) rotate(360deg);
    -webkit-transform: translate(0px, 0px) rotate(360deg);
  }
}
@-o-keyframes preloader4 {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
    -o-transform: translate(0px, 0px) rotate(0deg);
    -ms-transform: translate(0px, 0px) rotate(0deg);
    -moz-transform: translate(0px, 0px) rotate(0deg);
    -webkit-transform: translate(0px, 0px) rotate(0deg);
  }
  10% {
    transform: translate(-5px, 5px) rotate(0deg);
    -o-transform: translate(-5px, 5px) rotate(0deg);
    -ms-transform: translate(-5px, 5px) rotate(0deg);
    -moz-transform: translate(-5px, 5px) rotate(0deg);
    -webkit-transform: translate(-5px, 5px) rotate(0deg);
  }
  35%, 45% {
    transform: translate(-20px, 20px) rotate(180deg);
    -o-transform: translate(-20px, 20px) rotate(180deg);
    -ms-transform: translate(-20px, 20px) rotate(180deg);
    -moz-transform: translate(-20px, 20px) rotate(180deg);
    -webkit-transform: translate(-20px, 20px) rotate(180deg);
  }
  70% {
    transform: translate(-5px, 5px) rotate(360deg);
    -o-transform: translate(-5px, 5px) rotate(360deg);
    -ms-transform: translate(-5px, 5px) rotate(360deg);
    -moz-transform: translate(-5px, 5px) rotate(360deg);
    -webkit-transform: translate(-5px, 5px) rotate(360deg);
  }
  80% {
    transform: translate(0px, 0px) rotate(360deg);
    -o-transform: translate(0px, 0px) rotate(360deg);
    -ms-transform: translate(0px, 0px) rotate(360deg);
    -moz-transform: translate(0px, 0px) rotate(360deg);
    -webkit-transform: translate(0px, 0px) rotate(360deg);
  }
  100% {
    transform: translate(0px, 0px) rotate(360deg);
    -o-transform: translate(0px, 0px) rotate(360deg);
    -ms-transform: translate(0px, 0px) rotate(360deg);
    -moz-transform: translate(0px, 0px) rotate(360deg);
    -webkit-transform: translate(0px, 0px) rotate(360deg);
  }
}
@keyframes preloader4 {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
    -o-transform: translate(0px, 0px) rotate(0deg);
    -ms-transform: translate(0px, 0px) rotate(0deg);
    -moz-transform: translate(0px, 0px) rotate(0deg);
    -webkit-transform: translate(0px, 0px) rotate(0deg);
  }
  10% {
    transform: translate(-5px, 5px) rotate(0deg);
    -o-transform: translate(-5px, 5px) rotate(0deg);
    -ms-transform: translate(-5px, 5px) rotate(0deg);
    -moz-transform: translate(-5px, 5px) rotate(0deg);
    -webkit-transform: translate(-5px, 5px) rotate(0deg);
  }
  35%, 45% {
    transform: translate(-20px, 20px) rotate(180deg);
    -o-transform: translate(-20px, 20px) rotate(180deg);
    -ms-transform: translate(-20px, 20px) rotate(180deg);
    -moz-transform: translate(-20px, 20px) rotate(180deg);
    -webkit-transform: translate(-20px, 20px) rotate(180deg);
  }
  70% {
    transform: translate(-5px, 5px) rotate(360deg);
    -o-transform: translate(-5px, 5px) rotate(360deg);
    -ms-transform: translate(-5px, 5px) rotate(360deg);
    -moz-transform: translate(-5px, 5px) rotate(360deg);
    -webkit-transform: translate(-5px, 5px) rotate(360deg);
  }
  80% {
    transform: translate(0px, 0px) rotate(360deg);
    -o-transform: translate(0px, 0px) rotate(360deg);
    -ms-transform: translate(0px, 0px) rotate(360deg);
    -moz-transform: translate(0px, 0px) rotate(360deg);
    -webkit-transform: translate(0px, 0px) rotate(360deg);
  }
  100% {
    transform: translate(0px, 0px) rotate(360deg);
    -o-transform: translate(0px, 0px) rotate(360deg);
    -ms-transform: translate(0px, 0px) rotate(360deg);
    -moz-transform: translate(0px, 0px) rotate(360deg);
    -webkit-transform: translate(0px, 0px) rotate(360deg);
  }
}
/* @import addons/select.styl */
[data-emulation="select"] {
  display: inline-block;
  vertical-align: bottom;
  width: 100%;
  max-width: 400px;
  height: 40px;
  box-shadow: inset 0px 0px 0px 1px rgba(0,0,0,0.7);
  position: relative;
  font-size: 20px;
  text-align: left;
}
[data-emulation="select"]:after {
  content: '';
  position: absolute;
  z-index: 1;
  pointer-events: none;
  background-image: url("images/select-arrow.png");
  background-size: cover;
  top: 8px;
  right: 10px;
  width: 18px;
  height: 24px;
  transition: 0.2s;
  -o-transition: 0.2s;
  -ms-transition: 0.2s;
  -moz-transition: 0.2s;
  -webkit-transition: 0.2s;
}
[data-emulation="select"] span.opt-image {
  display: inline-block;
  width: 80px;
  height: 20px;
  text-align: center;
  margin-right: 10px;
  vertical-align: middle;
  font-size: 0px;
}
[data-emulation="select"] span.opt-image img {
  max-width: 100%;
  max-height: 100%;
}
[data-emulation="select"] span.opt-image img[src=""] {
  display: none;
}
[data-emulation="select"] [data-emulation="placeholder"] {
  height: inherit;
  padding: 10px 10px 10px 20px;
  margin-right: 20px;
  font-weight: 400;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  user-select: none;
  cursor: default;
  overflow: hidden;
  white-space: pre;
}
[data-emulation="select"] [data-emulation="dropdown"] {
  display: none;
  position: absolute;
  box-sizing: border-box;
  background-color: #fff;
  padding: 0px;
  top: 0px;
  left: 0px;
  right: 0px;
  cursor: default;
  z-index: 3;
  box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.25);
  margin-bottom: 30px;
  height: 0px;
  overflow: hidden;
}
[data-emulation="select"] [data-emulation="dropdown"] [data-emulation="option"] {
  background-color: #fff;
  padding: 10px 10px 10px 20px;
  white-space: pre;
  min-height: 40px;
  position: relative;
  z-index: 7;
  font-family: inherit;
  color: #000;
  cursor: default;
}
[data-emulation="select"] [data-emulation="dropdown"] [data-emulation="option"]:hover {
  background-color: rgba(225,35,41,0.3);
}
[data-emulation="select"] [data-emulation="dropdown"] [data-emulation="option"].hidden {
  display: none;
}
[data-emulation="select"] [data-emulation="dropdown"] [data-emulation="option"].selected {
  color: #fff;
  background-color: #e12329;
}
[data-emulation="select"] [data-emulation="dropdown"] [data-emulation="option"][removed] {
  display: none;
}
[data-emulation="select"] [data-emulation="dropdown"] [data-emulation="option"][disabled] {
  pointer-events: none;
  color: dgrey;
}
[data-emulation="select"] [data-emulation="dropdown"] [data-emulation="option"][disabled].selected {
  background-color: #fff;
}
[data-emulation="select"].active {
  box-shadow: 0px 2px 0px 0px dgrey;
}
[data-emulation="select"].active:after {
  transform: scale(0.6, 0.6);
  -o-transform: scale(0.6, 0.6);
  -ms-transform: scale(0.6, 0.6);
  -moz-transform: scale(0.6, 0.6);
  -webkit-transform: scale(0.6, 0.6);
  opacity: 0;
}
[data-emulation="select"].active [data-emulation="dropdown"] {
  display: block;
}
select {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  max-width: 400px;
  height: 40px;
  border: none;
  box-shadow: 0px 1px 0px 0px dgrey;
  position: relative;
  background-image: url("images/select-arrow.png");
  background-position: calc(100% - 10px) 12px;
  background-repeat: no-repeat;
  background-color: #fff;
  appearance: none;
  -o-appearance: none;
  -ms-appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
select.removed {
  min-height: 0px !important;
  opacity: 0 !important;
  overflow: hidden !important;
  pointer-events: none !important;
  border: none !important;
  margin: 0px !important;
  padding: 0px !important;
  position: absolute;
  z-index: -50;
}
/* @import addons/item.styl */
.modal-item-background {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 9000;
  background-color: rgba(0,0,0,0.4);
  opacity: 1;
  transition: 0.3s opacity;
  -o-transition: 0.3s opacity;
  -ms-transition: 0.3s opacity;
  -moz-transition: 0.3s opacity;
  -webkit-transition: 0.3s opacity;
}
.modal-item-background.hidden {
  opacity: 0;
}
.modal-item-container {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 9100;
  pointer-events: none;
  opacity: 1;
  transition: 0.3s opacity;
  -o-transition: 0.3s opacity;
  -ms-transition: 0.3s opacity;
  -moz-transition: 0.3s opacity;
  -webkit-transition: 0.3s opacity;
}
.modal-item-container .modal-item-dialog {
  pointer-events: initial;
  position: fixed;
  top: 60px;
  left: 60px;
  right: 60px;
  bottom: 60px;
  margin: auto;
  background-color: #fff;
  transition: transform 0.3s ease-in, top 0.3s ease-in, left 0.3s ease-in, right 0.3s ease-in, bottom 0.3s ease-in;
  -o-transition: transform 0.3s ease-in, top 0.3s ease-in, left 0.3s ease-in, right 0.3s ease-in, bottom 0.3s ease-in;
  -ms-transition: transform 0.3s ease-in, top 0.3s ease-in, left 0.3s ease-in, right 0.3s ease-in, bottom 0.3s ease-in;
  -moz-transition: transform 0.3s ease-in, top 0.3s ease-in, left 0.3s ease-in, right 0.3s ease-in, bottom 0.3s ease-in;
  -webkit-transition: transform 0.3s ease-in, top 0.3s ease-in, left 0.3s ease-in, right 0.3s ease-in, bottom 0.3s ease-in;
  transform: scale(1, 1) translateY(0%);
  -o-transform: scale(1, 1) translateY(0%);
  -ms-transform: scale(1, 1) translateY(0%);
  -moz-transform: scale(1, 1) translateY(0%);
  -webkit-transform: scale(1, 1) translateY(0%);
  background-color: #fff;
  box-shadow: 0px 0px 35px 0px rgba(0,0,0,0.4);
}
.modal-item-container .modal-item-dialog.media-upload .modal-item-content {
  padding-left: 50px;
  padding-right: 50px;
  padding-bottom: 50px;
}
.modal-item-container .modal-item-dialog .modal-item-header {
  height: 65px;
  background-color: #ececec;
  box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.3);
  position: relative;
  z-index: 2;
}
.modal-item-container .modal-item-dialog .modal-item-header:before,
.modal-item-container .modal-item-dialog .modal-item-header:after {
  width: 100%;
  display: table;
  content: " ";
}
.modal-item-container .modal-item-dialog .modal-item-header:after {
  clear: both;
}
.modal-item-container .modal-item-dialog .modal-item-header .modal-item-header-close {
  margin: 13px 10px 0px 0px;
  height: 40px;
  width: 40px;
  float: right;
  border: none;
  outline: none;
  cursor: pointer;
  color: #000;
  font-size: 0px;
  padding: 0px;
  background-color: rgba(0,0,0,0);
  background-image: url("images/modal-close.png");
  background-repeat: no-repeat;
  background-position: center center;
}
.modal-item-container .modal-item-dialog .modal-item-header .modal-item-header-title {
  width: calc(100% - 100px);
  margin: 15px 20px 15px 40px !important;
  color: #000;
  font-size: 30px;
  font-weight: 600;
  line-height: 36px;
  text-transform: uppercase;
  overflow: hidden;
  text-align: left;
}
.modal-item-container .modal-item-dialog .modal-item-content {
  height: calc(100% - 130px);
  padding: 50px 40px 20px 40px;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
  z-index: 1;
  font-family: 'Raleway', Arial;
}
.modal-item-container .modal-item-dialog .modal-item-footer {
  background-color: #ececec;
  height: 65px;
  padding: 10px 15px;
  box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.3);
  position: relative;
  z-index: 2;
}
.modal-item-container .modal-item-dialog .modal-item-footer:before,
.modal-item-container .modal-item-dialog .modal-item-footer:after {
  width: 100%;
  display: table;
  content: " ";
}
.modal-item-container .modal-item-dialog .modal-item-footer:after {
  clear: both;
}
.modal-item-container .modal-item-dialog .modal-item-footer a,
.modal-item-container .modal-item-dialog .modal-item-footer button {
  float: right;
  color: #fff;
  font-size: 22px;
  font-weight: 500;
  text-transform: uppercase;
  width: 240px;
  height: 45px;
  border: none;
  background-color: #e12329;
  margin: 0px 0px 0px 10px;
  padding: 12px 0px;
  text-align: center;
}
.modal-item-container .modal-item-dialog .modal-item-footer.hidden {
  display: none;
}
.modal-item-container.hidden {
  opacity: 0;
}
.modal-item-container.hidden .modal-item-dialog {
  transform: scale(0.1, 0.1) translateY(100%);
  -o-transform: scale(0.1, 0.1) translateY(100%);
  -ms-transform: scale(0.1, 0.1) translateY(100%);
  -moz-transform: scale(0.1, 0.1) translateY(100%);
  -webkit-transform: scale(0.1, 0.1) translateY(100%);
}
@media screen and (max-width: 991px) {
  body.evlist {
    cursor: pointer;
  }
}
@-moz-keyframes error-inp {
  0%, 100% {
    box-shadow: inset 0px 0px 0px 0px #e12329;
  }
  50% {
    box-shadow: inset 0px 0px 5px 3px #e12329;
  }
}
@-webkit-keyframes error-inp {
  0%, 100% {
    box-shadow: inset 0px 0px 0px 0px #e12329;
  }
  50% {
    box-shadow: inset 0px 0px 5px 3px #e12329;
  }
}
@-o-keyframes error-inp {
  0%, 100% {
    box-shadow: inset 0px 0px 0px 0px #e12329;
  }
  50% {
    box-shadow: inset 0px 0px 5px 3px #e12329;
  }
}
@keyframes error-inp {
  0%, 100% {
    box-shadow: inset 0px 0px 0px 0px #e12329;
  }
  50% {
    box-shadow: inset 0px 0px 5px 3px #e12329;
  }
}
