html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 1em;
  font-family: "Avenir Next Cyr";
  vertical-align: baseline; }

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

body {
  line-height: 1;
  overflow-y: scroll;
  position: relative; }

ol,
ul {
  list-style: none; }

blockquote,
q {
  quotes: none; }

blockquote:before, blockquote:after {
  content: ''; }

q:before, q:after {
  content: ''; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

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

input[type=number] {
  -moz-appearance: textfield; }

  .conditions {
    float: left;
    width: 590px;
    max-height: 40px;
    display: flex;
    margin-top: 1.2rem;
  }
  
  .conditions__item {
    width: 50%;
    padding: 10px 20px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    background-color: #e9e9e9;
  }
  
  .conditions a {
    color: #303030;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .conditions a:first-child {
    margin-right: 1rem;
  }
  
  .conditions a:hover {
    color: #e03f23;
  }
  
  .conditions__item-icon svg {
    max-width: 25px;
    width: 100%;
    margin-right: 1rem;
  }
  
  .conditions__item-text {
    font-weight: 500;
  }

  .services {
    margin-top: 1rem;
  }

  .services__title {
    font-weight: 700;
  }
  
  .services__item {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
  }
  
  /* .services__item-top label {
    display: flex;
  } */
  
  .services__item-bottom {
    color: #9d9d9d;
    padding-left: 1.45em;
  }
  
  .services__item-top {
    margin-bottom: 0.5rem;
  }
  
  .services__item-top label {
    display: grid;
    grid-template-columns: 1em auto;
    /* align-items: center; */
    gap: 0.5em;
    cursor: pointer;
  }
  
  .services__item-top input[type="checkbox"] {
    appearance: none;
    background-color: #fff;
    margin: 0;
    font: inherit;
    color: currentColor;
    width: 1.15em;
    height: 1.15em;
    border: 0.15em solid currentColor;
    border-radius: 0.15em;
    transform: translateY(-0.075em);
    cursor: pointer;
  }
  
  .services__item-top input[type="checkbox"]::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 0.75em;
    height: 0.65em;
    transform-origin: bottom left;
    transform: scale(0) translate(-50%, -50%);
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em #303030;
  }
  
  .services__item-top input[type="checkbox"]:checked::before {
    transform: scale(1) translate(-50%, -50%);
  }

.containerWrap {
  display: block;
  width: 100%;
  min-width: 1230px; }
  .containerWrap .wrap {
    display: block;
    position: relative;
    width: 1200px;
    margin: 0 auto;
    padding: 0 15px; }
  .containerWrap .twoWrap {
    display: block; }
    .containerWrap .twoWrap:after, .containerWrap .twoWrap:before {
      display: block;
      content: '';
      clear: both; }
    .containerWrap .twoWrap .leftWrap {
      display: block;
      float: left;
      width: 285px; }
    .containerWrap .twoWrap .rightWrap {
      display: block;
      float: right;
      width: calc(100% - 305px); }
  .containerWrap .twoColsWraps {
    display: block; }
    .containerWrap .twoColsWraps:after, .containerWrap .twoColsWraps:before {
      content: '';
      display: block;
      clear: both; }
    .containerWrap .twoColsWraps .leftColWrap {
      display: block;
      float: left;
      width: calc(50% - 20px); }
    .containerWrap .twoColsWraps .rightColWrap {
      display: block;
      float: right;
      width: calc(50% - 20px); }
    .containerWrap.contactsPage .twoColsWraps .rightColWrap {
      display: block;
      float: right;
      width: 340px;
      padding-right: 100px; }

.popup-mask,
.popup-city-mask {
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 3900;
  visibility: hidden;
  opacity: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 0.3s;
  cursor: pointer; }
  .popup-mask.active,
  .popup-city-mask.active {
    visibility: visible;
    opacity: 1; }

.popup-form {
  display: block;
  /*
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
   */
  position: fixed;
  top: 60px;
  left: 50%;
  margin: 0 0 0 -332px;
  width: 664px;
  border-radius: 33px;
  background-color: #ebecec;
  z-index: 4000;
  visibility: hidden;
  transition: 0.3s;
  opacity: 0; }
  .popup-form.active {
    visibility: visible;
    opacity: 1;
	max-height: 90%;
    overflow-y: auto;
	}
  .popup-form .topBlock {
    display: block;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background: #df3c1f;
    padding: 35px 40px;
    border-radius: 33px 33px 0 0; }
    .popup-form .topBlock .heading {
      display: block;
      color: #ffffff;
      font-size: 28px;
      font-weight: 700;
      line-height: 40px; }
    .popup-form .topBlock .desc {
      display: block;
      margin-top: 10px;
      color: #ffffff;
      font-size: 15px;
      font-weight: 400;
      line-height: 21px; }
    .popup-form .topBlock .close,
    .popup-calc .close,
    .popup-calc-desktop .close,
    .popup-exit .close,
    .popup-city .close {
      display: block;
      position: absolute;
      top: 30px;
      right: 30px;
      z-index: 20;
      width: 21px;
      height: 21px;
      background: url("../images/close.png") no-repeat center;
      cursor: pointer;
      -webkit-transition-property: all;
      -moz-transition-property: all;
      -o-transition-property: all;
      transition-property: all;
      -webkit-transition-duration: 0.3s;
      -moz-transition-duration: 0.3s;
      -o-transition-duration: 0.3s;
      transition-duration: 0.3s; }
      .popup-calc .close,
      .popup-calc-desktop .close,
      .popup-exit .close {
        background: url(../images/close_w.png) no-repeat center center / 50%;
        top: 6px;
        right: 15px;
        width: 19px;
        height: 19px;
        padding: 5px;
      }
      .popup-form .topBlock .close:hover {
        opacity: .7; }
  .popup-form .bottomBlock {
    display: block;
/*    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    overflow: auto; */
    padding: 20px 40px 30px; }
    .popup-form .bottomBlock .cols {
      display: block;
      font-size: 0;
      letter-spacing: -.25em;
      margin: 0 0 0 -20px; }
      .popup-form .bottomBlock .cols .col {
        display: -moz-inline-stack;
        display: inline-block;
        vertical-align: top;
        zoom: 1;
        *display: inline;
        letter-spacing: normal;
        word-spacing: normal;
        font-size: medium;
        width: calc(50% - 20px);
        margin: 20px 0 0 20px; }
        .popup-form .bottomBlock .cols .col.big {
          width: calc(100% - 20px); }
        .popup-form .bottomBlock .cols .col.small {
          width: calc(33.33% - 20px); }
    .popup-form .bottomBlock .successText {
      display: block;
      padding: 50px 0; }
      .popup-form .bottomBlock .successText .icon {
        display: block;
        margin: 0 auto;
        width: 90px;
        height: 90px;
        background: url("../images/icon.png") no-repeat center; }
      .popup-form .bottomBlock .successText .heading {
        display: block;
        margin-top: 30px;
        color: #303030;
        font-size: 23px;
        font-weight: 400;
        line-height: 30px;
        text-align: center; }
      .popup-form .bottomBlock .successText .desc {
        display: block;
        color: #303030;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        text-align: center; }
      .popup-form .bottomBlock .successText .btn {
        display: block;
        margin: 30px auto 0;
        width: 134px;
        height: 40px;
        border-radius: 20px;
        background-image: linear-gradient(to top, #df3e23 0%, #cd301b 100%);
        color: #ffffff;
        font-size: 14px;
        font-weight: 700;
        line-height: 40px;
        text-align: center;
        cursor: pointer;
        text-decoration: none;
        -webkit-transition-property: all;
        -moz-transition-property: all;
        -o-transition-property: all;
        transition-property: all;
        -webkit-transition-duration: 0.3s;
        -moz-transition-duration: 0.3s;
        -o-transition-duration: 0.3s;
        transition-duration: 0.3s; }
        .popup-form .bottomBlock .successText .btn:hover {
          opacity: .7; }
    .popup-form .bottomBlock .inputRow {
      display: block;
      position: relative; }
    .popup-form .bottomBlock .errorBox {
      display: none;
      position: absolute;
      bottom: 100%;
      right: 0;
      box-shadow: 0 15px 25px rgba(0, 0, 0, 0.25);
      background-color: #e08e23;
      color: #ffffff;
      font-size: 13px;
      font-weight: 400;
      line-height: 18px;
      text-align: right;
      min-width: 160px;
      padding: 3px 14px 6px;
      border-radius: 10px;
      z-index: 3500; }
      .popup-form .bottomBlock .errorBox.active {
        display: block; }
      .popup-form .bottomBlock .errorBox:after {
        content: '';
        display: block;
        position: absolute;
        right: 10px;
        bottom: -5px;
        background-color: #e08e23;
        width: 15px;
        height: 15px;
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
        z-index: -1; }
    .popup-form .bottomBlock select {
      display: block;
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      box-sizing: border-box;
      width: 100%;
      height: 40px;
      border-radius: 20px;
      background: #ffffff url("../images/select.png") no-repeat right 8px center;
      border: none;
      padding: 0 30px 0 20px;
      cursor: pointer;
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none; }
      .popup-form .bottomBlock select::-ms-expand {
        display: none; }
      .popup-form .bottomBlock select:focus {
        outline: none; }
    .popup-form .bottomBlock .inputText {
      display: block;
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      box-sizing: border-box;
      width: 100%;
      height: 40px;
      border-radius: 20px;
      background-color: #ffffff;
      padding: 0 20px;
      border: none; }
      .popup-form .bottomBlock .inputText:focus {
        outline: none; }
    .popup-form .bottomBlock .heading {
      display: block;
      color: #303030;
      font-size: 18px;
      font-weight: 500;
      line-height: 24px; }
    .popup-form .bottomBlock .label {
      display: block;
      color: #303030;
      font-size: 14px;
      font-weight: 700;
      line-height: 21px; }
    .popup-form .bottomBlock .datepicker
	{
      display: block;
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      box-sizing: border-box;
      width: 100%;
      height: 40px;
      border-radius: 20px;
      padding: 0 20px;
      border: none;
      background: #ffffff url("../images/datepicker.png") no-repeat right 15px center; }
	.popup-form .bottomBlock .datepicker:focus {
        outline: none; }
    .popup-form .bottomBlock .inputCheckbox {
      display: block;
      position: relative;
      padding-left: 35px;
      cursor: pointer;
      color: #303030;
      font-size: 13px;
      font-weight: 400;
      line-height: 15px;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none; }
      .popup-form .bottomBlock .inputCheckbox input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0; }
      .popup-form .bottomBlock .inputCheckbox .checkmark {
        position: absolute;
        top: 0;
        left: 0;
        height: 26px;
        width: 26px;
        background-color: #ffffff;
        border-radius: 50%; }
        .popup-form .bottomBlock .inputCheckbox .checkmark:after {
          content: "";
          position: absolute;
          display: none;
          left: 6px;
          top: 6px;
          height: 14px;
          width: 14px;
          background-color: #ade023;
          border-radius: 50%; }
      .popup-form .bottomBlock .inputCheckbox input:checked ~ .checkmark:after {
        display: block; }
    .popup-form .bottomBlock .price {
      display: block; }
      .popup-form .bottomBlock .price .label {
        color: #303030;
        font-size: 14px;
        font-weight: 700;
        line-height: 15px; }
      .popup-form .bottomBlock .price .value {
        color: #303030;
        font-size: 25px;
        font-weight: 700;
        line-height: 25px; }
        .popup-form .bottomBlock .price .value span {
          font-size: 14px;
          font-weight: 400; }
    .popup-form .bottomBlock .inputSubmit {
      display: block;
      width: 100%;
      height: 40px;
      border-radius: 20px;
      background-color: #e9e9e9;
      background-image: linear-gradient(to top, #df3e23 0%, #cd301b 100%);
      color: #ffffff;
      font-size: 14px;
      font-weight: 700;
      text-align: center;
      cursor: pointer;
      border: none;
      -webkit-transition-property: all;
      -moz-transition-property: all;
      -o-transition-property: all;
      transition-property: all;
      -webkit-transition-duration: 0.3s;
      -moz-transition-duration: 0.3s;
      -o-transition-duration: 0.3s;
      transition-duration: 0.3s; }
      .popup-form .bottomBlock .inputSubmit:hover {
        opacity: .7; }
      .popup-form .bottomBlock .inputSubmit:focus {
        outline: none; }

.formatBlock {
  display: block;
  max-width: 100%;
  overflow: auto; }
  .formatBlock:after {
    display: block;
    content: '';
    clear: both; }
  .formatBlock:before {
    display: block;
    content: '';
    clear: both; }
  .formatBlock h1 {
    color: #303030;
    font-size: 32px;
    margin-bottom: .5rem;
    font-family: inherit;
    font-weight: 600;
    line-height: 1.2; }
  .formatBlock h2 {
    color: #303030;
    font-size: 28px;
    margin-bottom: .5rem;
    font-family: inherit;
    font-weight: 600;
    line-height: 1.2; }
  .formatBlock h3 {
    color: #303030;
    font-size: 18px;
    margin-bottom: .5rem;
    font-family: inherit;
    font-weight: 600;
    line-height: 1.2; }
  .formatBlock h4 {
    color: #303030;
    font-size: 22px;
    margin-bottom: .5rem;
    font-family: inherit;
    font-weight: 600;
    line-height: 1.2; }
  .formatBlock h5 {
    color: #303030;
    font-size: 18px;
    margin-bottom: .5rem;
    font-family: inherit;
    font-weight: 600;
    line-height: 1.2; }
  .formatBlock h6 {
    color: #303030;
    font-size: 16px;
    margin-bottom: .5rem;
    font-family: inherit;
    font-weight: 600;
    line-height: 1.2; }
  .formatBlock p {
    color: #303030;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
    margin-bottom: 1rem; }
  .formatBlock ol {
    list-style-type: decimal;
    padding: 0;
    margin: 0 0 1rem 1rem;
    color: #303030;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400; }
    .formatBlock ol li {
      margin-bottom: .5rem; }
  .formatBlock ul {
    padding: 0;
    margin: 0 0 1rem 0;
    color: #303030;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400; }
    .formatBlock ul li {
      margin-bottom: .5rem; }
      .formatBlock ul li:before {
        display: -moz-inline-stack;
        display: inline-block;
        vertical-align: top;
        zoom: 1;
        *display: inline;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        border-radius: 50%;
        content: '';
        width: 7px;
        height: 7px;
        background-color: #e03f23;
        margin: 8px 8px 0 0; }
      .formatBlock ul li.scndlvl {
        padding-left: 26px;
      }
      .formatBlock ul li.scndlvl:before {
        background-color: #000000;
      }

  .formatBlock a {
    color: #e03f23;
    text-decoration: underline;
    -webkit-transition-property: all;
    -moz-transition-property: all;
    -o-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s; }
    .formatBlock a:hover {
      text-decoration: none; }
    .formatBlock a:active {
      opacity: .7; }
    .formatBlock a.fancybox {
      text-decoration: none; }
  .formatBlock strong, .formatBlock b {
    font-weight: 700; }
  .formatBlock em {
    font-style: italic; }
  .formatBlock .alignleft {
    float: left;
    margin: 0.5em 1em 0.5em 0; }
  .formatBlock .alignright {
    float: right;
    margin: 0.5em 0 0.5em 1em; }
  .formatBlock .aligncenter {
    display: block;
    margin: 1em auto; }
  .formatBlock img {
    max-width: 100%;
    height: auto; }
  .formatBlock table {
    overflow-x: auto;
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    margin-bottom: 1rem; }
    .formatBlock table tr td, .formatBlock table tr th {
      color: #303030;
      font-size: 14px;
      line-height: 1.5;
      font-weight: 400;
      padding: .5rem;
      vertical-align: top; }
    .formatBlock table.table {
      width: 100%;
      border-collapse: collapse; }
      .formatBlock table.table tbody {
        width: 100%; }
      .formatBlock table.table tr {
        width: 100%; }
      .formatBlock table.table th {
        padding: 15px;
        color: #303030;
        font-size: 14px;
        font-weight: 700;
        line-height: 24px;
        text-align: left; }
      .formatBlock table.table td {
        padding: 15px;
        color: #303030;
        font-size: 14px;
        font-weight: 400;
        line-height: 24px;
        border-top: 1px solid #e9e9e9;
        text-align: left; }
        .formatBlock table.table td strong {
          font-weight: 700; }
        .formatBlock table.table td a {
          color: #e04227;
          font-size: 14px;
          font-weight: 700;
          line-height: 24px;
          text-decoration: none; }
          .formatBlock table.table td a:hover {
            text-decoration: underline; }
    .formatBlock table.strip tr td, .formatBlock table.strip tr th {
      border: 1px solid #f3f3f3; }
    .formatBlock table.nice tr td, .formatBlock table.nice tr th {
      background-color: #f3f3f3; }
      .formatBlock table.nice tr td:nth-child(2n), .formatBlock table.nice tr th:nth-child(2n) {
        background-color: #f0f0f0; }
    .formatBlock table.nice tr:nth-child(2n) td, .formatBlock table.nice tr:nth-child(2n) th {
      background-color: #f8f8f8; }
      .formatBlock table.nice tr:nth-child(2n) td:nth-child(2n), .formatBlock table.nice tr:nth-child(2n) th:nth-child(2n) {
        background-color: #f6f6f6; }
    .formatBlock table.nice tr.head td, .formatBlock table.nice tr.head th {
      font-weight: bold;
      border: 1px solid #e03f23; }
    .formatBlock table.price_table tr td, .formatBlock table.price_table tr th {
      background-color: #f1f3f6;
      border: 4px solid #ffffff;
      padding: 15px 20px;
      color: #3b3b3b;
      font-size: 14px;
      font-weight: 400;
      line-height: 20px;
      -webkit-transition-property: all;
      -moz-transition-property: all;
      -o-transition-property: all;
      transition-property: all;
      -webkit-transition-duration: 0.3s;
      -moz-transition-duration: 0.3s;
      -o-transition-duration: 0.3s;
      transition-duration: 0.3s; }
    .formatBlock table.price_table tr:first-child td, .formatBlock table.price_table tr:first-child th {
      background-color: #d7dbe0;
      border: 4px solid #ffffff;
      padding: 15px 20px;
      color: #3b3b3b;
      font-size: 14px;
      font-weight: 700;
      line-height: 20px; }
      .formatBlock table.price_table tr:first-child td:first-letter, .formatBlock table.price_table tr:first-child th:first-letter {
        text-transform: uppercase; }
    .formatBlock table.price_table tr:hover td, .formatBlock table.price_table tr:hover th {
      background-color: #f4f5f6; }
    .formatBlock table.price_table tr:hover:first-child td, .formatBlock table.price_table tr:hover:first-child th {
      background-color: #d7dbe0; }

header .wrap {
  height: 110px; }
header .logo {
  display: block;
  position: absolute;
  left: 15px;
  top: 50%;
  -moz-transform: translate(0px, -50%);
  -ms-transform: translate(0px, -50%);
  -webkit-transform: translate(0px, -50%);
  -o-transform: translate(0px, -50%);
  transform: translate(0px, -50%); }
  header .logo img {
    display: block;
    width: 205px;
    height: auto; }
header .citySelect {
  display: block;
  position: absolute;
  left: 270px;
  top: 13px;
  z-index: 3200; }
  header .citySelect:hover .cityList {
    visibility: visible;
    opacity: 1; }
  header .citySelect .selectedCity {
    display: block;
    position: relative;
    z-index: 3030;
    cursor: pointer; }
    header .citySelect .selectedCity i {
      font-size: 14px;
      color: #e03f23;
      line-height: 25px; }
    header .citySelect .selectedCity span {
      color: #5e5e5e;
      font-size: 14px;
      font-weight: 700;
      line-height: 25px;
      border-bottom: 1px dashed #5e5e5e; }
  header .citySelect .cityList {
    display: block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    width: calc(100% + 40px);
    min-width: 145px;
    left: -20px;
    top: -20px;
    padding: 50px 20px 20px 20px;
    z-index: 3015;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.25);
    border-radius: 7px;
    background-color: #ffffff;
    visibility: hidden;
    opacity: 0;
    -webkit-transition-property: all;
    -moz-transition-property: all;
    -o-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s; }
    header .citySelect .cityList .item {
      display: block;
      margin-top: 8px;
      color: #5e5e5e;
      font-size: 14px;
      font-weight: 400;
      line-height: 20px;
      text-decoration: none;
      -webkit-transition-property: all;
      -moz-transition-property: all;
      -o-transition-property: all;
      transition-property: all;
      -webkit-transition-duration: 0.3s;
      -moz-transition-duration: 0.3s;
      -o-transition-duration: 0.3s;
      transition-duration: 0.3s; }
      header .citySelect .cityList .item:hover {
        text-decoration: underline;
        color: #e03f23; }
header .adress {
  display: block;
  position: absolute;
  left: 270px;
  top: 40px;
  color: #303030;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px; }
  header .adress a {
    color: #303030;
    text-decoration: dashed;}
  header .adress strong {
    font-weight: 700; }
header .whatsapp {
  display: block;
  position: absolute;
  left: 580px;
  top: 50%;
  -moz-transform: translate(0px, -50%);
  -ms-transform: translate(0px, -50%);
  -webkit-transform: translate(0px, -50%);
  -o-transform: translate(0px, -50%);
  transform: translate(0px, -50%); }
  header .whatsapp .label a {
    color: #5e5e5e;
    font-size: 14px;
  }
  header .whatsapp .label {
    display: block;
    font-weight: 400;
    line-height: 21px; }
    header .whatsapp .label strong {
      font-weight: 700; }
    header .whatsapp .label i {
      color: #e03f23; }
  header .whatsapp .phone {
    display: block;
    margin-top: 8px;
    color: #ababab;
    font-size: 20px;
    font-weight: 300;
    line-height: 21px;
    text-decoration: none; }
    header .whatsapp .phone span {
      color: #303030;
      font-weight: 500; }
header .langs {
  display: block;
  position: absolute;
  left: 1020px;
  top: 50%;
  -moz-transform: translate(0px, -50%);
  -ms-transform: translate(0px, -50%);
  -webkit-transform: translate(0px, -50%);
  -o-transform: translate(0px, -50%);
  transform: translate(0px, -50%); }
header .langs a {
  color: #303030;
  text-decoration: none;
  line-height: 26px;
  font-weight: 700; }
header .phones {
  display: block;
  position: absolute;
  left: 580px;
  top: 50%;
  -moz-transform: translate(0px, -50%);
  -ms-transform: translate(0px, -50%);
  -webkit-transform: translate(0px, -50%);
  -o-transform: translate(0px, -50%);
  transform: translate(0px, -50%); }
  header .phones .phone {
    display: block;
    color: #ababab;
    font-size: 20px;
    font-weight: 300;
    line-height: 28px;
    text-align: right;
    text-decoration: none; }
    header .phones .phone span {
      color: #303030;
      font-weight: 500; }
header .btn {
  display: block;
  position: absolute;
  top: 60%;
  margin-top: -20px;
  right: 15px;
  width: 192px;
  height: 40px;
  border-radius: 20px;
  background-color: #ffffff;
  background-image: linear-gradient(to top, #df3e23 0%, #cd301b 100%);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  text-align: center;
  text-decoration: none;
  -webkit-transition-property: all;
  -moz-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s; }
  header .btn {
    display: none;
  }
  header .btn:hover {
    opacity: .7; }
header .selectLang {
  display: block;
  position: absolute;
  top: 0;
  right: 15px;
  width: 50px; }
  header .selectLang .selectedLang {
    display: block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 50px;
    background-color: #e9e9e9;
    padding: 2px 5px 5px;
    color: #ababab;
    border-radius: 0 0 4px 4px;
    cursor: pointer; }
  header .selectLang .langList {
    display: block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    background-color: #e9e9e9;
    padding-bottom: 5px;
    border-radius: 0 0 4px 4px;
    -webkit-transition-property: all;
    -moz-transition-property: all;
    -o-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    visibility: hidden;
    opacity: 0;
    z-index: 20; }
    header .selectLang .langList .item {
      display: block;
      padding: 2px 5px;
      color: #ababab;
      border-radius: 0 0 4px 4px;
      text-decoration: none;
      cursor: pointer;
      -webkit-transition-property: all;
      -moz-transition-property: all;
      -o-transition-property: all;
      transition-property: all;
      -webkit-transition-duration: 0.3s;
      -moz-transition-duration: 0.3s;
      -o-transition-duration: 0.3s;
      transition-duration: 0.3s; }
      header .selectLang .langList .item:hover {
        opacity: .7; }
  header .selectLang:hover .langList {
    visibility: visible;
    opacity: 1; }
  header .selectLang i {
    display: -moz-inline-stack;
    display: inline-block;
    vertical-align: middle;
    zoom: 1;
    *display: inline;
    color: #ababab;
    font-size: 12px; }
  header .selectLang .ru {
    display: -moz-inline-stack;
    display: inline-block;
    vertical-align: middle;
    zoom: 1;
    *display: inline;
    width: 18px;
    height: 15px;
    background: url("../images/ru.png") no-repeat;
    margin-right: 2px; }
  header .selectLang .en {
    display: -moz-inline-stack;
    display: inline-block;
    vertical-align: middle;
    zoom: 1;
    *display: inline;
    width: 18px;
    height: 15px;
    background: url("../images/en.png") no-repeat;
    margin-right: 2px; }

.fixed_menu header {
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  background: #ffffff;
  z-index: 3000; }

@media (min-width: 1024px) and (max-width: 5000px) {
  .whatsapp-block {
    position: absolute;
    top: 52%;
    margin-top: -20px;
    right: 225px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding-left: 30px;
    padding: 6px 8px 6px 45px;
    background-color: #E9E9E9;
    border-radius: 5px;
  }

  .whatsapp-block a {
    text-decoration: none;
    color: #666666;
    font-size: 12px;
  }

  .whatsapp-block a > span {
    display: block;
    width: 100%;
    text-decoration: underline;
  }

  .whatsapp-block span span {
    font-weight: bold;
  }

  .whatsapp-block__icon {
    position: absolute;
    top: 50%;
    left: 4px;
    width: 29px;
    height: 29px;
    background-image: url(/assets/images/max-icon.png);
    background-repeat: no-repeat;
    background-size: cover;
    transform: translateY(-50%);
  }

  .whatsapp-block__icon:after {
    position: absolute;
    content: "1";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 10px;
    height: 10px;
    background: #e30719;
    border-radius: 50%;
    color: #fff;
    font-size: 6px;
    line-height: 1;
    left: 22px;
    top: -2px;
    -webkit-animation: blinking 4s ease-in-out infinite;
    animation: blinking 4s ease-in-out infinite;
  }

  .mainMenu {
    display: block;
    position: relative;
    background-color: #303030;
    z-index: 150; }
    .mainMenu ul.menu {
      display: block;
      font-size: 0;
      letter-spacing: -.25em; }
      .mainMenu ul.menu > li {
        display: -moz-inline-stack;
        display: inline-block;
        vertical-align: top;
        zoom: 1;
        *display: inline;
        letter-spacing: normal;
        word-spacing: normal;
        font-size: medium;
        position: relative; }
        .mainMenu ul.menu > li > a {
          display: block;
          color: #ffffff;
          font-size: 16px;
          font-weight: 700;
          line-height: 50px;
          padding: 0 15px;
          text-decoration: none;
          -webkit-transition-property: all;
          -moz-transition-property: all;
          -o-transition-property: all;
          transition-property: all;
          -webkit-transition-duration: 0.3s;
          -moz-transition-duration: 0.3s;
          -o-transition-duration: 0.3s;
          transition-duration: 0.3s; }
        .mainMenu ul.menu > li.current > a {
          color: #e03f23; }
        .mainMenu ul.menu > li:hover > a {
          background-color: #e03f23;
          color: #ffffff; }
        .mainMenu ul.menu > li:hover > ul {
          display: block; }
        .mainMenu ul.menu > li > ul {
          display: none;
          position: absolute;
          left: 0;
          top: 100%;
          min-width: 200px;
          z-index: 100;
          background-color: #e03f23;
          border-top: 1px dashed #ff5c3b; }
          .mainMenu ul.menu > li > ul > li {
            display: block; }
            .mainMenu ul.menu > li > ul > li > a {
              display: block;
              color: #ffffff;
              font-size: 16px;
              font-weight: 500;
              line-height: 20px;
              padding: 15px 15px;
              text-decoration: none;
              -webkit-transition-property: all;
              -moz-transition-property: all;
              -o-transition-property: all;
              transition-property: all;
              -webkit-transition-duration: 0.3s;
              -moz-transition-duration: 0.3s;
              -o-transition-duration: 0.3s;
              transition-duration: 0.3s; }
            .mainMenu ul.menu > li > ul > li.current > a {
              color: #303030; }
            .mainMenu ul.menu > li > ul > li:hover > a {
              background-color: #303030;
              color: #ffffff; }
            .mainMenu ul.menu > li > ul > li > ul {
              display: none; }
    .mainMenu .searchform {
      display: block;
      position: absolute;
      top: 50%;
      right: 15px;
      margin-top: -20px;
      width: 260px;
      height: 40px;
      border-radius: 20px;
      background-color: #ffffff;
      z-index: 50; }
      .mainMenu .searchform .s {
        display: block;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        position: absolute;
        left: 0;
        top: 0;
        width: calc(100% - 40px);
        height: 100%;
        border: none;
        padding: 0 15px;
        border-radius: 20px 0 0 20px; }
        .mainMenu .searchform .s:focus {
          outline: none; }
      .mainMenu .searchform .searchsubmit {
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        width: 40px;
        height: 40px;
        background: url("../images/search.png") no-repeat center;
        border: none;
        cursor: pointer;
        border-radius: 0 20px 20px 0;
        -webkit-transition-property: all;
        -moz-transition-property: all;
        -o-transition-property: all;
        transition-property: all;
        -webkit-transition-duration: 0.3s;
        -moz-transition-duration: 0.3s;
        -o-transition-duration: 0.3s;
        transition-duration: 0.3s; }
        .mainMenu .searchform .searchsubmit:focus {
          outline: none; }
        .mainMenu .searchform .searchsubmit:hover {
          filter: invert(50%); }

  .fixed_menu .mainMenu {
    display: block;
    position: fixed;
    left: 0;
    top: 110px;
    z-index: 2900; } }
.frontSlider {
  display: block;
  position: relative;
  height: 462px;
  overflow: hidden; }
  .frontSlider .slick-prev {
    display: block;
    position: absolute;
    left: 20px;
    top: 50%;
    z-index: 200;
    width: 18px;
    height: 33px;
    margin-top: -16.5px;
    background: url("../images/prev.png") no-repeat center;
    font-size: 0;
    border: none; }
    .frontSlider .slick-prev:before {
      display: none; }
  .frontSlider .slick-next {
    display: block;
    position: absolute;
    right: 20px;
    top: 50%;
    z-index: 200;
    width: 18px;
    height: 33px;
    margin-top: -16.5px;
    background: url("../images/next.png") no-repeat center;
    font-size: 0;
    border: none; }
    .frontSlider .slick-next:before {
      display: none; }
  .frontSlider .slick-dots {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 30px;
    z-index: 200;
    text-align: center; }
    .frontSlider .slick-dots li {
      display: -moz-inline-stack;
      display: inline-block;
      vertical-align: top;
      zoom: 1;
      *display: inline;
      position: relative;
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      box-sizing: border-box;
      width: 12px;
      height: 12px;
      border: 2px solid #ffffff;
      font-size: 0;
      border-radius: 50%; }
      .frontSlider .slick-dots li button {
        display: none; }
        .frontSlider .slick-dots li button:before {
          display: none !important; }
      .frontSlider .slick-dots li.slick-active button {
        display: block;
        margin: 2px;
        width: 4px;
        height: 4px;
        padding: 0;
        background-color: #ffffff;
        border-radius: 50%; }
        .frontSlider .slick-dots li.slick-active button:before {
          display: none !important; }
  .frontSlider .sliderBlock {
    display: block;
    width: 100%; }
  .frontSlider .item {
    display: block;
    position: relative; }
    .frontSlider .item img {
      display: block;
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      -o-object-fit: cover; }
    .frontSlider .item .wrap {
      position: relative;
      height: 462px;
      z-index: 30; }
    .frontSlider .item .message {
      display: block;
      position: absolute;
      top: 100px;
      left: 20px; }
      .frontSlider .item .message .text {
        text-shadow: 2px 2px 2px #222, -1px -1px 2px grey;
        display: block;
        max-width: 760px; }
        .frontSlider .item .message .text .heading {
          display: block;
          color: #ffffff;
          font-size: 55px;
          font-weight: 700;
          line-height: 60px; }
        .frontSlider .item .message .text .desc {
          display: block;
          margin-top: 15px;
          color: #ffffff;
          font-size: 40px;
          font-weight: 400;
          line-height: 60px; }
      .frontSlider .item .message .btn {
        display: inline-block;
        margin-top: 25px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        min-width: 170px;
        height: 45px;
        box-shadow: 0 20px 35px rgba(0, 0, 0, 0.16);
        border-radius: 24px;
        padding: 0 60px 0 25px;
        color: #303030;
        font-size: 17px;
        font-weight: 700;
        line-height: 45px;
        text-decoration: none;
        background: #ffffff url("../images/slide_btn.png") no-repeat right 18px center;
        z-index: 20;
        -webkit-transition-property: all;
        -moz-transition-property: all;
        -o-transition-property: all;
        transition-property: all;
        -webkit-transition-duration: 0.3s;
        -moz-transition-duration: 0.3s;
        -o-transition-duration: 0.3s;
        transition-duration: 0.3s; }
        .frontSlider .item .message .btn:hover {
          background: #ffffff url("../images/slide_btn.png") no-repeat right 10px center; }
        .frontSlider .item .message .btn:focus {
          outline: none; }
  .frontSlider .form {
    display: block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    z-index: 300;
    top: 10px;
    right: calc(50% - 600px);
    width: 320px;
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.35);
    border-radius: 33px;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px 20px; }
    .frontSlider .form:after, .frontSlider .form:before {
      content: '';
      display: block;
      clear: both; }
    .frontSlider .form .heading {
      display: block;
      text-align: center;
      color: #ffffff;
      font-size: 18px;
      font-weight: 700; }
    .frontSlider .form .inputRow {
      display: block;
      position: relative; }
    .frontSlider .form .errorBox {
      display: none;
      position: absolute;
      right: 100%;
      margin-right: 5px;
      top: 0;
      box-shadow: 0 15px 25px rgba(0, 0, 0, 0.25);
      background-color: #e08e23;
      color: #ffffff;
      font-size: 14px;
      font-weight: 400;
      line-height: 18px;
      text-align: right;
      min-width: 160px;
      padding: 6px 14px;
      border-radius: 10px; }
      .frontSlider.popup-calc .form .errorBox {
        right: 0%;
        top: 50px;
        z-index: 1;
      }
      .frontSlider.popup-calc .form .errorBox::after {
        right: 50%;
        top: -7px;
      }
      .frontSlider .form .errorBox.active {
        display: block; }
      .frontSlider .form .errorBox:after {
        content: '';
        display: block;
        position: absolute;
        right: -5px;
        top: 13px;
        background-color: #e08e23;
        z-index: 10;
        width: 15px;
        height: 15px;
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg); }
    .frontSlider .form select {
      display: block;
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      box-sizing: border-box;
      margin-top: 25px;
      width: 100%;
      height: 40px;
      border-radius: 20px;
      background: #e9e9e9 url("../images/select.png") no-repeat right 8px center;
      border: none;
      padding: 0 30px 0 20px;
      cursor: pointer;
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none; }
      .frontSlider .form select::-ms-expand {
        display: none; }
      .frontSlider .form select:focus {
        outline: none; }
    .frontSlider .form .date {
      display: block;
      margin-top: 10px;
      padding-bottom: 20px; }
      .frontSlider .form .date:after, .frontSlider .form .date:before {
        content: '';
        display: block;
        clear: both; }
      .frontSlider .form .date .start {
        display: block;
        float: left;
        width: calc(50% - 10px); }
      .frontSlider .form .date .end {
        display: block;
        float: right;
        width: calc(50% - 10px); }
      .frontSlider .form .date .label {
        display: block;
        color: #ffffff;
        font-size: 14px;
        font-weight: 700;
        line-height: 20px; }
      .frontSlider.popup-calc .form .date .label {
        margin-bottom: 0.4rem;
      }
      .frontSlider .form .date input {
        display: block;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        width: 100%;
        height: 40px;
        border-radius: 20px;
        background: #e9e9e9 url("../images/datepicker.png") no-repeat right 15px center;
        border: none;
        padding: 0 20px; }
        .frontSlider .form .date input:focus {
          outline: none; }
    .frontSlider .form .inputText {
      display: block;
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      box-sizing: border-box;
      margin-top: 10px;
      width: 100%;
      height: 40px;
      border-radius: 20px;
      background-color: #e9e9e9;
      border: none;
      padding: 0 20px; }
      .frontSlider .form .inputText:focus {
        outline: none; }
    .frontSlider .form .inputCheckbox {
      display: block;
      margin-top: 15px;
      position: relative;
      padding-left: 35px;
      cursor: pointer;
      color: #ffffff;
      font-size: 13px;
      font-weight: 400;
      line-height: 15px;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none; }
      .frontSlider .form .inputCheckbox input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0; }
      .frontSlider .form .inputCheckbox .checkmark {
        position: absolute;
        top: 0;
        left: 0;
        height: 26px;
        width: 26px;
        background-color: #e9e9e9;
        border-radius: 50%; }
        .frontSlider .form .inputCheckbox .checkmark:after {
          content: "";
          position: absolute;
          display: none;
          left: 6px;
          top: 6px;
          height: 14px;
          width: 14px;
          background-color: #e03f23;
          border-radius: 50%; }
      .frontSlider .form .inputCheckbox input:checked ~ .checkmark:after {
        display: block; }
    .frontSlider .form .price {
      display: block;
      float: left;
      margin-top: 40px; }
      .frontSlider .form .price .label {
        color: #ffffff;
        font-size: 14px;
        font-weight: 700;
        line-height: 15px; }
      .frontSlider .form .price .value {
        color: #ffffff;
        font-size: 25px;
        font-weight: 700;
        line-height: 25px; }
        .frontSlider .form .price .value span {
          font-size: 14px;
          font-weight: 400; }
    .frontSlider .form .inputSubmit {
      display: block;
      float: right;
      margin-top: 40px;
      width: 120px;
      height: 40px;
      border-radius: 20px;
      background-color: #e9e9e9;
      background-image: linear-gradient(to top, #df3e23 0%, #cd301b 100%);
      color: #ffffff;
      font-size: 14px;
      font-weight: 700;
      line-height: 40px;
      cursor: pointer;
      text-align: center;
      border: none;
      -webkit-transition-property: all;
      -moz-transition-property: all;
      -o-transition-property: all;
      transition-property: all;
      -webkit-transition-duration: 0.3s;
      -moz-transition-duration: 0.3s;
      -o-transition-duration: 0.3s;
      transition-duration: 0.3s; }
      .frontSlider .form .inputSubmit:hover {
        opacity: .7; }
      .frontSlider .form .inputSubmit:focus {
        outline: none; }

.frontBlock1 {
  display: block;
  padding: 30px 0 50px; }
  .frontBlock1 .title {
    display: block;
    color: #303030;
    font-size: 35px;
    font-weight: 700;
    line-height: 40px; }
  .frontBlock1 .carsCategoriesBlock {
    padding-top: 35px; }

.frontBlock2 {
  display: block;
  padding: 50px 0 60px;
  background: url("../images/frontBlock2.jpg") repeat center; }
  .frontBlock2 .title {
    display: block;
    color: #303030;
    font-size: 35px;
    font-weight: 700;
    line-height: 42px; }
  .frontBlock2 .filterBlock {
    display: block;
    margin-top: 30px;
    margin-bottom: 0;
    padding: 0;
    border-radius: 0;
    background: none; }
  .frontBlock2 .carsBlock .items .item {
    background-color: #ffffff; }
  .archivePage .all_btn,
  .frontBlock2 .all_btn {
    display: block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 30px auto 0;
    width: 164px;
    height: 40px;
    border-radius: 20px;
    border: 2px solid #df3e23;
    color: #303030;
    font-size: 14px;
    font-weight: 700;
    line-height: 36px;
    text-decoration: none;
    text-align: center;
    -webkit-transition-property: all;
    -moz-transition-property: all;
    -o-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s; }
    .archivePage .all_btn:hover,
    .frontBlock2 .all_btn:hover {
      color: #df3e23; }

.frontBlock3 {
  display: block;
  padding: 50px 0 10px; }
  .frontBlock3 .title {
    display: block;
    color: #303030;
    font-size: 35px;
    font-weight: 700;
    line-height: 40px;
    text-align: center; }
  .frontBlock3 .plusesBlock {
    padding-top: 10px; }

.frontBlock4 {
  display: block;
  padding: 30px 0 50px; }
  .frontBlock4 .title {
    display: block;
    color: #303030;
    font-size: 35px;
    font-weight: 700;
    line-height: 40px; }
  .frontBlock4 .subtitle {
    display: block;
    color: #303030;
    font-size: 24px;
    font-weight: 500; }
  .frontBlock4 .twoCols {
    display: block; }
    .frontBlock4 .twoCols:after, .frontBlock4 .twoCols:before {
      content: '';
      display: block;
      clear: both; }
    .frontBlock4 .twoCols .leftCol {
      display: block;
      float: left;
      width: calc(50% - 10px); }
    .frontBlock4 .twoCols .rightCol {
      display: block;
      float: right;
      width: calc(50% - 10px); }
  .frontBlock4 .textBlock {
    display: block;
    padding-top: 45px; }
  .frontBlock4 .videoBlock {
    display: block;
    position: relative;
    width: 100%;
    height: 333px;
    border-radius: 7px;
    background-color: rgba(48, 48, 48, 0.5);
    background-color: #b8b7b7;
    overflow: hidden; }
    .frontBlock4 .videoBlock iframe, .frontBlock4 .videoBlock img, .frontBlock4 .videoBlock video {
      display: block;
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      -o-object-fit: cover; }

.requestBlock {
  display: block;
  background: url("../images/requestBlock.png") repeat center; }
  .requestBlock .wrap {
    height: 400px; }
  .requestBlock .text {
    display: block;
    position: absolute;
    left: 15px;
    top: 50%;
    -moz-transform: translate(0px, -50%);
    -ms-transform: translate(0px, -50%);
    -webkit-transform: translate(0px, -50%);
    -o-transform: translate(0px, -50%);
    transform: translate(0px, -50%);
    color: #ffffff;
    font-size: 25px;
    font-weight: 400;
    line-height: 40px; }
    .requestBlock .text strong {
      font-weight: 600; }
    .requestBlock .text .heading {
      display: block;
      font-size: 55px;
      font-weight: 700;
      padding-bottom: 15px; }
  .requestBlock .form {
    display: block;
    position: absolute;
    width: 260px;
    right: 70px;
    top: 50%;
    -moz-transform: translate(0px, -50%);
    -ms-transform: translate(0px, -50%);
    -webkit-transform: translate(0px, -50%);
    -o-transform: translate(0px, -50%);
    transform: translate(0px, -50%); }
    .requestBlock .form .inputBlock {
      display: block;
      padding: 5px 0; }
    .requestBlock .form .inputRow {
      display: block;
      position: relative; }
    .requestBlock .form .errorBox {
      display: none;
      position: absolute;
      right: 100%;
      margin-right: 5px;
      top: 0;
      box-shadow: 0 15px 25px rgba(0, 0, 0, 0.25);
      background-color: #e08e23;
      color: #ffffff;
      font-size: 14px;
      font-weight: 400;
      line-height: 18px;
      text-align: right;
      min-width: 160px;
      padding: 6px 14px;
      border-radius: 10px; }
      .requestBlock .form .errorBox.active {
        display: block; }
      .requestBlock .form .errorBox:after {
        content: '';
        display: block;
        position: absolute;
        right: -5px;
        top: 13px;
        background-color: #e08e23;
        z-index: 10;
        width: 15px;
        height: 15px;
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg); }
    .requestBlock .form .inputText {
      display: block;
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      box-sizing: border-box;
      width: 100%;
      height: 40px;
      border-radius: 20px;
      background-color: #ffffff;
      padding: 0 20px;
      border: none; }
      .requestBlock .form .inputText:focus {
        outline: none; }
    .requestBlock .form .inputCheckbox {
      display: block;
      position: relative;
      padding-left: 35px;
      cursor: pointer;
      color: #ffffff;
      font-size: 13px;
      font-weight: 400;
      line-height: 15px;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none; }
      .requestBlock .form .inputCheckbox input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0; }
      .requestBlock .form .inputCheckbox .checkmark {
        position: absolute;
        top: 0;
        left: 0;
        height: 26px;
        width: 26px;
        background-color: #ffffff;
        border-radius: 50%; }
        .requestBlock .form .inputCheckbox .checkmark:after {
          content: "";
          position: absolute;
          display: none;
          left: 6px;
          top: 6px;
          height: 14px;
          width: 14px;
          background-color: #ade023;
          border-radius: 50%; }
      .requestBlock .form .inputCheckbox input:checked ~ .checkmark:after {
        display: block; }
    .requestBlock .form .inputSubmit {
      display: block;
      width: 100%;
      height: 40px;
      border-radius: 20px;
      background-color: #303030;
      cursor: pointer;
      color: #ffffff;
      font-size: 14px;
      font-weight: 700;
      line-height: 40px;
      text-align: center;
      border: none;
      padding: 0;
      -webkit-transition-property: all;
      -moz-transition-property: all;
      -o-transition-property: all;
      transition-property: all;
      -webkit-transition-duration: 0.3s;
      -moz-transition-duration: 0.3s;
      -o-transition-duration: 0.3s;
      transition-duration: 0.3s; }
      .requestBlock .form .inputSubmit:hover {
        opacity: .7; }
      .requestBlock .form .inputSubmit:focus {
        outline: none; }

.frontBlock5 {
  display: block;
  margin-top: 10px; }
  .frontBlock5 .cols {
    display: block; }
    .frontBlock5 .cols:after, .frontBlock5 .cols:before {
      content: '';
      display: block;
      clear: both; }
    .frontBlock5 .cols .col {
      display: block;
      width: 33.33%;
      float: left; }
    .frontBlock5 .cols .col-1 {
      width: 40%; }
    .frontBlock5 .cols .col-2 {
      width: 20%; }
    .frontBlock5 .cols .col-3 {
      width: 40%; }
  .frontBlock5 .item-video {
    display: block;
    position: relative;
    width: 100%;
    float: left; }
    .frontBlock5 .item-video:after {
      content: '';
      display: block;
      padding-top: 70%; }
    .frontBlock5 .item-video iframe, .frontBlock5 .item-video img, .frontBlock5 .item-video video {
      display: block;
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      -o-object-fit: cover; }
  .frontBlock5 .item-img {
    display: block;
    position: relative;
    width: 50%;
    float: left;
    cursor: pointer; }
    .frontBlock5 .item-img.item-big-img {
      width: 100%; }
    .frontBlock5 .item-img:after {
      content: '';
      display: block;
      padding-top: 70%; }
    .frontBlock5 .item-img:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(48, 48, 48, 0.5);
      z-index: 50;
      -webkit-transition-property: all;
      -moz-transition-property: all;
      -o-transition-property: all;
      transition-property: all;
      -webkit-transition-duration: 0.3s;
      -moz-transition-duration: 0.3s;
      -o-transition-duration: 0.3s;
      transition-duration: 0.3s; }
    .frontBlock5 .item-img img {
      display: block;
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      -o-object-fit: cover; }
    .frontBlock5 .item-img:hover:before {
      opacity: 0; }

.frontBlock6 {
  display: block;
  padding: 40px 0 0; }

.frontBlock7 {
  display: block;
  padding: 50px 0 70px; }
  .frontBlock7 .title {
    display: block;
    color: #303030;
    font-size: 25px;
    font-weight: 700;
    line-height: 30px; }
    .frontBlock7 .title a {
      color: #3f83bc;
      font-weight: 400;
      text-decoration: underline; }
      .frontBlock7 .title a:hover {
        text-decoration: none; }
  .frontBlock7 .items {
    display: block;
    font-size: 0;
    letter-spacing: -.25em;
    padding-top: 10px;
    margin: 0 0 0 -30px; }
    .frontBlock7 .items .item {
      display: -moz-inline-stack;
      display: inline-block;
      vertical-align: top;
      zoom: 1;
      *display: inline;
      letter-spacing: normal;
      word-spacing: normal;
      font-size: medium;
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      box-sizing: border-box;
      position: relative;
      width: calc(25% - 30px);
      margin: 30px 0 0 30px;
      cursor: pointer;
      text-decoration: none;
      -webkit-transition-property: all;
      -moz-transition-property: all;
      -o-transition-property: all;
      transition-property: all;
      -webkit-transition-duration: 0.3s;
      -moz-transition-duration: 0.3s;
      -o-transition-duration: 0.3s;
      transition-duration: 0.3s; }
      .frontBlock7 .items .item:hover {
        opacity: .7; }
      .frontBlock7 .items .item:after {
        content: '';
        display: block;
        padding-top: 100%; }
      .frontBlock7 .items .item img {
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        -o-object-fit: cover; }

footer {
  display: block;
  background-color: #202020;
  padding: 80px 0 50px; }
  footer .cols {
    display: block; }
    footer .cols:after, footer .cols:before {
      content: '';
      display: block;
      clear: both; }
    footer .cols .col {
      display: block;
      float: left; }
    footer .cols .col-1 {
      width: 220px; }
    footer .cols .col-2, footer .cols .col-3 {
      width: 220px; }
    footer .cols .col-4 {
      width: 220px;
      margin-left: 100px; }
    footer .cols .col-5 {
      width: 195px;
      float: right; }
    footer .cols .col-6 {
      float: none;
      clear: both;
      width: 100%; }
  footer .logo {
    display: block; }
    footer .logo img {
      display: block;
      max-width: 100%;
      height: auto; }
  footer .adress {
    display: block;
    margin-top: 25px; }
    footer .adress .city {
      display: block;
      color: #ffffff;
      font-size: 14px;
      font-weight: 700;
      line-height: 25px; }
      footer .adress .city i {
        color: #e03f23; }
    footer .adress .street {
      display: block;
      color: #ffffff;
      font-size: 14px;
      font-weight: 400;
      line-height: 21px; }
    footer .adress .email {
      color: #ffffff;
      font-size: 14px;
      font-weight: 400;
      line-height: 21px;
      text-decoration: none; }
  footer .download_btn {
    display: block;
    margin-top: 30px;
    width: 192px;
    height: 40px;
    border-radius: 20px;
    border: 1px dashed #df3e23;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    line-height: 40px;
    text-align: center;
    text-decoration: none;
    -webkit-transition-property: all;
    -moz-transition-property: all;
    -o-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s; }
    footer .download_btn:hover {
      border: 1px solid #df3e23;
      color: #df3e23; }
  footer nav {
    display: block;
    padding-left: 80px; }
    footer nav ul {
      display: block; }
      footer nav ul li {
        display: block;
        margin-top: 10px; }
        footer nav ul li:first-child {
          margin-top: 0; }
        footer nav ul li a {
          color: #919191;
          font-size: 14px;
          font-weight: 400;
          line-height: 21px;
          text-decoration: none; }
          footer nav ul li a:hover {
            text-decoration: underline;
            color: #df3e23; }
  footer .whatsapp, footer .phones {
    display: block; }
    footer .whatsapp .label, footer .phones .label {
      display: block;
      color: #ffffff;
      font-size: 14px;
      font-weight: 700;
      line-height: 25px; }
      footer .whatsapp .label i, footer .phones .label i {
        color: #e03f23; }
    footer .whatsapp .phone, footer .phones .phone {
      display: block;
      color: #ababab;
      font-size: 20px;
      font-weight: 300;
      line-height: 26px;
      text-decoration: none; }
      footer .whatsapp .phone span, footer .phones .phone span {
        color: #ffffff;
        font-weight: 500; }
  footer .btn {
    display: block;
    width: 100%;
    height: 40px;
    border-radius: 20px;
    background-color: #ffffff;
    background-image: linear-gradient(to top, #df3e23 0%, #cd301b 100%);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    line-height: 40px;
    text-align: center;
    text-decoration: none;
    -webkit-transition-property: all;
    -moz-transition-property: all;
    -o-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s; }
    footer .btn:hover {
      opacity: .7; }
  footer .social {
    display: block;
    margin-top: 35px; }
    footer .social a {
      display: -moz-inline-stack;
      display: inline-block;
      vertical-align: top;
      zoom: 1;
      *display: inline;
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      box-sizing: border-box;
      width: 34px;
      height: 34px;
      border: 1px solid #353535;
      border-radius: 50%;
      text-align: center;
      line-height: 32px;
      text-decoration: none;
      color: #e03f23;
      font-size: 19px;
      font-weight: 400;
      -webkit-transition-property: all;
      -moz-transition-property: all;
      -o-transition-property: all;
      transition-property: all;
      -webkit-transition-duration: 0.3s;
      -moz-transition-duration: 0.3s;
      -o-transition-duration: 0.3s;
      transition-duration: 0.3s; }
      footer .social a:hover {
        color: #ffffff; }
  footer .copyright {
    display: block;
    padding-top: 60px;
    text-align: center;
    color: #525252;
    font-size: 14px;
    font-weight: 400;
    line-height: 30px; }
  footer .madeby {
    display: block;
    margin: 20px auto 0;
    width: 260px;
    text-align: left; }
    footer .madeby .madeLogo {
      display: block;
      height: 32px;
      float: left;
      margin-right: 15px; }
      footer .madeby .madeLogo img {
        display: block;
        width: 100px;
        height: auto;
        margin-top: 6px; }
    footer .madeby .madeLink {
      display: -moz-inline-stack;
      display: inline-block;
      vertical-align: top;
      zoom: 1;
      *display: inline;
      color: #5e5e5e;
      font-size: 13px;
      font-weight: 300;
      line-height: 16px;
      text-decoration: none;
      -webkit-transition-property: all;
      -moz-transition-property: all;
      -o-transition-property: all;
      transition-property: all;
      -webkit-transition-duration: 0.3s;
      -moz-transition-duration: 0.3s;
      -o-transition-duration: 0.3s;
      transition-duration: 0.3s; }
      footer .madeby .madeLink:hover {
        text-decoration: underline; }

.module_index .archivePage, .defaultPage.page_benefits {
  padding: 70px 0 70px; }
.archivePage, .defaultPage {
  display: block;
  padding: 0 0 70px; }
.module_cars .defaultPage {
  padding: 0px; }
  .archivePage .title, .defaultPage .title {
    display: block;
    color: #303030;
    font-size: 35px;
    font-weight: 700;
    line-height: 40px; }
  .module_index .defaultPage .conditionTab,
  .module_index .defaultPage .items .subtitle {
      display: none;
  }
  .defaultPage .items .subtitle {
      margin-left: 30px;
      padding-top: 26px;
  }
  .archivePage .subtitle, .defaultPage .subtitle {
    display: block;
    color: #303030;
    font-size: 25px;
    font-weight: 700; }
  .archivePage .newsArchiveBlock, .defaultPage .newsArchiveBlock {
    padding-top: 30px; }
  .archivePage .serviceArchiveBlock, .defaultPage .serviceArchiveBlock {
    padding-top: 30px; }
  .archivePage .newsArchiveBlock, .defaultPage .newsArchiveBlock {
    padding-top: 20px; }
  .archivePage .relatedCars, .defaultPage .relatedCars {
    padding-top: 30px; }
  .archivePage .carsBlock, .defaultPage .carsBlock {
    display: block;
    padding-top: 10px; }
  .archivePage .h30, .defaultPage .h30 {
    display: block;
    padding-top: 30px; }
  .archivePage .sepLine, .defaultPage .sepLine {
    display: block;
    clear: both;
    margin: 30px 0;
    height: 1px;
    background-color: #e9e9e9; }

.breadcrumbs {
  display: block;
  position: relative;
  padding: 15px 0 20px;
  z-index: 100; }
  .breadcrumbs a {
    display: -moz-inline-stack;
    display: inline-block;
    vertical-align: top;
    zoom: 1;
    *display: inline;
    margin: 10px 5px 0 0;
    color: #e03f23;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    text-decoration: none;
    -webkit-transition-property: all;
    -moz-transition-property: all;
    -o-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s; }
    .breadcrumbs a:hover {
      text-decoration: underline; }
  .breadcrumbs .sep {
    display: -moz-inline-stack;
    display: inline-block;
    vertical-align: top;
    zoom: 1;
    *display: inline;
    margin: 10px 5px 0 0;
    color: #c6c6c6;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px; }
  .breadcrumbs .breadcrumb_last {
    display: -moz-inline-stack;
    display: inline-block;
    vertical-align: top;
    zoom: 1;
    *display: inline;
    margin: 10px 0 0 0;
    color: #c6c6c6;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px; }

.pagination {
  display: block;
  padding-top: 20px;
  text-align: center; }
  .pagination .screen-reader-text {
    display: none; }
  .pagination span {
    display: -moz-inline-stack;
    display: inline-block;
    vertical-align: top;
    zoom: 1;
    *display: inline;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 10px 5px 0;
    width: 40px;
    height: 40px;
    border: 1px solid #303030;
    background-color: #303030;
    border-radius: 50%;
    line-height: 38px;
    text-align: center;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700; }
  .pagination a {
    display: -moz-inline-stack;
    display: inline-block;
    vertical-align: top;
    zoom: 1;
    *display: inline;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 10px 5px 0;
    width: 40px;
    height: 40px;
    border: 1px solid #e9e9e9;
    background-color: #e9e9e9;
    border-radius: 50%;
    line-height: 38px;
    text-align: center;
    text-decoration: none;
    color: #ababab;
    font-size: 14px;
    font-weight: 700;
    -webkit-transition-property: all;
    -moz-transition-property: all;
    -o-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s; }
    .pagination a:hover {
      border: 1px solid #e03f23; }
    .pagination a:active {
      color: #e03f23; }

.carsCategoriesBlock {
  display: block; }
  .carsCategoriesBlock .items {
    display: block;
    font-size: 0;
    text-align: center;
    letter-spacing: -.25em;
    margin: 0 0 0 -10px; }
    .carsCategoriesBlock .items .item {
      display: -moz-inline-stack;
      display: inline-block;
      vertical-align: top;
      zoom: 1;
      *display: inline;
      letter-spacing: normal;
      word-spacing: normal;
      font-size: medium;
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      box-sizing: border-box;
      position: relative;
      width: calc(16.66% - 10px);
      margin: 10px 0 0 10px;
      border-radius: 7px;
      border: 1px solid #e9e9e9;
      background-color: #ffffff;
      text-decoration: none;
      -webkit-transition-property: all;
      -moz-transition-property: all;
      -o-transition-property: all;
      transition-property: all;
      -webkit-transition-duration: 0.3s;
      -moz-transition-duration: 0.3s;
      -o-transition-duration: 0.3s;
      transition-duration: 0.3s; }
      .carsCategoriesBlock .items .item:hover {
        border: 3px solid #e03f23; }
        .carsCategoriesBlock .items .item:hover .heading {
          bottom: 80px; }
      .carsCategoriesBlock .items .item:after {
        content: '';
        display: block;
        padding-top: 55%; }
      .carsCategoriesBlock .items .item img {
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        object-fit: scale-down;
        -o-object-fit: scale-down;
        z-index: 10; }
      .carsCategoriesBlock .items .item .heading {
        display: block;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        position: absolute;
        left: 0;
        width: 100%;
        bottom: 5px;
        padding: 0 17px;
        text-align: center;
        z-index: 20;
        color: #303030;
        font-size: 14px;
        font-weight: 700;
        line-height: 20px;
        -webkit-transition-property: all;
        -moz-transition-property: all;
        -o-transition-property: all;
        transition-property: all;
        -webkit-transition-duration: 0.3s;
        -moz-transition-duration: 0.3s;
        -o-transition-duration: 0.3s;
        transition-duration: 0.3s; }

.plusesBlock {
  display: block; }
  .plusesBlock.with_cond {
    margin-top: 30px; }
    .plusesBlock.with_cond .items .item {
      width: calc(40% - 30px); }
  .plusesBlock .items {
    display: block;
    font-size: 0;
    letter-spacing: -.25em;
    margin: 0 0 0 -30px; }
    .plusesBlock .items .item {
      display: -moz-inline-stack;
      display: inline-block;
      vertical-align: top;
      zoom: 1;
      *display: inline;
      letter-spacing: normal;
      word-spacing: normal;
      font-size: medium;
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      box-sizing: border-box;
      position: relative;
      width: calc(33.33% - 30px);
      margin: 30px 0 0 30px;
      height: 215px;
      border-radius: 33px;
      border: 2px dotted #d4d4d4;
      background-color: #ffffff; }

      .module_conditions .page_conditions .plusesBlock .items .item .img {
        left: -110px;
      }
      .plusesBlock .items .item .img {
        display: block;
        position: absolute;
        top: 50%;
        left: 40px;
        -moz-transform: translate(0px, -50%);
        -ms-transform: translate(0px, -50%);
        -webkit-transform: translate(0px, -50%);
        -o-transform: translate(0px, -50%);
        transform: translate(0px, -50%); }
        .plusesBlock .items .item .img img {
          display: block;
          max-width: 80px;
          height: auto; }
      .plusesBlock .items .item .desc {
        display: block;
        position: absolute;
        left: 160px;
        top: 50%;
        width: calc(100% - 180px);
        color: #303030;
        font-size: 14px;
        font-weight: 400;
        line-height: 21px;
        -moz-transform: translate(0px, -50%);
        -ms-transform: translate(0px, -50%);
        -webkit-transform: translate(0px, -50%);
        -o-transform: translate(0px, -50%);
        transform: translate(0px, -50%); }
        .plusesBlock .items .item .desc .heading {
          display: block;
          color: #303030;
          font-size: 17px;
          font-weight: 700;
          line-height: 25px;
          padding-bottom: 10px; }

.conditionsBlock {
  display: block; }
  .module_index .plusesBlock.with_cond .items,
  .conditionsBlock .items {
    display: block;
    font-size: 0;
    letter-spacing: -.25em;
    margin: 0 0 0 -20px; }
    .module_index .plusesBlock.with_cond .items .item,
    .conditionsBlock .items .item {
      display: -moz-inline-stack;
      display: inline-block;
      vertical-align: top;
      zoom: 1;
      *display: inline;
      letter-spacing: normal;
      word-spacing: normal;
      font-size: medium;
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      box-sizing: border-box;
      position: relative;
      width: calc(25% - 20px);
      margin: 20px 0 0 20px;
      height: 315px;
      border-radius: 33px;
      border: 2px dotted #d4d4d4;
      background-color: #ffffff; }
      .module_index .plusesBlock.with_cond .items .item .desc,
      .conditionsBlock .items .item .desc {
        display: block;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        padding: 0 25px;
        color: #303030;
        font-size: 14px;
        font-weight: 400;
        line-height: 21px;
        -moz-transform: translate(0px, -50%);
        -ms-transform: translate(0px, -50%);
        -webkit-transform: translate(0px, -50%);
        -o-transform: translate(0px, -50%);
        transform: translate(0px, -50%);
        text-align: center; }
        .module_index .plusesBlock.with_cond .items .item .img {
            display: block;
            position: initial;
            -moz-transform: none;
            -ms-transform: none;
            -webkit-transform: none;
            -o-transform: none;
            transform: none;
        }
        .module_index .plusesBlock.with_cond .items .item img,
        .conditionsBlock .items .item .desc img {
          display: block;
          margin: 0 auto; }
        .module_index .plusesBlock.with_cond .items .item .desc .heading,
        .conditionsBlock .items .item .desc .heading {
          display: block;
          margin-top: 20px;
          font-size: 17px;
          font-weight: 700;
          line-height: 25px; }

.stocksArchiveBlock {
  display: block; }
  .stocksArchiveBlock .items {
    display: block;
    font-size: 0;
    letter-spacing: -.25em;
    margin: 0 0 0 -30px; }
    .stocksArchiveBlock .items .item {
      display: -moz-inline-stack;
      display: inline-block;
      vertical-align: top;
      zoom: 1;
      *display: inline;
      letter-spacing: normal;
      word-spacing: normal;
      font-size: medium;
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      box-sizing: border-box;
      position: relative;
      width: calc(33.33% - 30px);
      margin: 30px 0 0 30px;
      border-radius: 7px;
      background-color: #f3f3f3; }
      .stocksArchiveBlock .items .item .img {
        display: block;
        position: relative; }
        .stocksArchiveBlock .items .item .img:after {
          content: '';
          display: block;
          padding-top: 60%; }
        .stocksArchiveBlock .items .item .img img {
          display: block;
          position: absolute;
          left: 0;
          top: 0;
          width: 100%;
          height: 100%;
          object-fit: cover;
          -o-object-fit: cover;
          border-radius: 7px 7px 0 0; }
      .stocksArchiveBlock .items .item .text {
        display: block;
        padding: 25px 30px; }
        .stocksArchiveBlock .items .item .text .heading {
          display: block;
          color: #303030;
          font-size: 14px;
          font-weight: 700;
          line-height: 21px;
          height: 42px;
          text-decoration: none;
          overflow: hidden;
          -webkit-transition-property: all;
          -moz-transition-property: all;
          -o-transition-property: all;
          transition-property: all;
          -webkit-transition-duration: 0.3s;
          -moz-transition-duration: 0.3s;
          -o-transition-duration: 0.3s;
          transition-duration: 0.3s; }
          .stocksArchiveBlock .items .item .text .heading:hover {
            color: #de3e22; }
        .stocksArchiveBlock .items .item .text .date {
          display: block;
          margin-top: 10px;
          color: #e03f23;
          font-size: 13px;
          font-weight: 400;
          line-height: 21px; }
        .stocksArchiveBlock .items .item .text .desc {
          display: block;
          margin-top: 10px;
          color: #303030;
          font-size: 14px;
          font-weight: 400;
          line-height: 21px;
          height: 63px;
          overflow: hidden; }
        .stocksArchiveBlock .items .item .text .label1 {
          display: block;
          position: absolute;
          right: -7px;
          bottom: 15px;
          width: 162px;
          height: 44px;
          background: url("../images/label1.png") no-repeat right center;
          z-index: 20; }
        .stocksArchiveBlock .items .item .text .label2 {
          display: block;
          position: absolute;
          right: -10px;
          bottom: 12px;
          width: 190px;
          height: 47px;
          background: url("../images/label2.png") no-repeat right center;
          z-index: 20; }
        .stocksArchiveBlock .items .item .text .more {
          display: block;
          margin-top: 10px;
          width: 134px;
          height: 40px;
          border-radius: 20px;
          background-color: #ffffff;
          background-image: linear-gradient(to top, #df3e23 0%, #cd301b 100%);
          color: #ffffff;
          font-size: 14px;
          font-weight: 700;
          line-height: 40px;
          text-align: center;
          text-decoration: none;
          -webkit-transition-property: all;
          -moz-transition-property: all;
          -o-transition-property: all;
          transition-property: all;
          -webkit-transition-duration: 0.3s;
          -moz-transition-duration: 0.3s;
          -o-transition-duration: 0.3s;
          transition-duration: 0.3s; }
          .stocksArchiveBlock .items .item .text .more:hover {
            opacity: .7; }

.reviewsArchiveBlock {
  display: block; }
  .reviewsArchiveBlock .items {
    display: block;
    margin: -40px 0 0 0; }
    .reviewsArchiveBlock .items .item {
      display: block;
      margin: 40px 0 0 0; }
      .reviewsArchiveBlock .items .item .heading {
        display: block;
        color: #303030;
        font-size: 16px;
        font-weight: 500;
        line-height: 20px; }
        .reviewsArchiveBlock .items .item .heading i {
          color: #e03f23;
          font-size: 14px;
          font-weight: 400; }
      .reviewsArchiveBlock .items .item .date {
        display: block;
        margin-top: 10px;
        color: #d4d4d4;
        font-size: 14px;
        font-weight: 300;
        line-height: 20px; }
      .reviewsArchiveBlock .items .item .desc {
        display: block;
        margin-top: 10px;
        color: #000;
        font-size: 14px;
        font-weight: 400;
        line-height: 21px; }
      .reviewsArchiveBlock .items .item .answer b {
        color: #000;
      }
      .reviewsArchiveBlock .items .item .answer {
        display: block;
        margin-top: 10px;
        color: #c80c0c;
        font-size: 14px;
        font-weight: 400;
        line-height: 21px;
        font-style: italic; }

.serviceArchiveBlock {
  display: block; }
  .serviceArchiveBlock .items {
    display: block;
    font-size: 0;
    letter-spacing: -.25em;
    margin: 0 0 0 -20px; }
    .serviceArchiveBlock .items .item {
      display: -moz-inline-stack;
      display: inline-block;
      vertical-align: top;
      zoom: 1;
      *display: inline;
      letter-spacing: normal;
      word-spacing: normal;
      font-size: medium;
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      box-sizing: border-box;
      position: relative;
      width: calc(25% - 20px);
      margin: 20px 0 0 20px;
      border-radius: 7px; }
      .serviceArchiveBlock .items .item .img {
        display: block;
        position: relative; }
        .serviceArchiveBlock .items .item .img:after {
          content: '';
          display: block;
          padding-top: 100%; }
        .serviceArchiveBlock .items .item .img img {
          display: block;
          position: absolute;
          left: 0;
          top: 0;
          width: 100%;
          height: 100%;
          object-fit: cover;
          -o-object-fit: cover;
          border-radius: 7px 7px 0 0; }
      .serviceArchiveBlock .items .item .text {
        display: block;
        position: relative;
        padding: 15px 20px; }
        .serviceArchiveBlock .items .item .text .heading {
          display: block;
          color: #303030;
          font-size: 19px;
          font-weight: 700;
          line-height: 25px;
          text-decoration: none;
          overflow: hidden;
          -webkit-transition-property: all;
          -moz-transition-property: all;
          -o-transition-property: all;
          transition-property: all;
          -webkit-transition-duration: 0.3s;
          -moz-transition-duration: 0.3s;
          -o-transition-duration: 0.3s;
          transition-duration: 0.3s; }
          .serviceArchiveBlock .items .item .text .heading:hover {
            color: #de3e22; }
        .serviceArchiveBlock .items .item .text .desc {
          display: block;
          margin-top: 10px;
          color: #303030;
          font-size: 14px;
          font-weight: 400;
          line-height: 21px;
          max-height: 84px;
          overflow: hidden; }
        .h30 .more,
        .serviceArchiveBlock .items .item .text .more {
          display: block;
          margin-top: 10px;
          width: 134px;
          height: 40px;
          border-radius: 20px;
          background-color: #ffffff;
          background-image: linear-gradient(to top, #df3e23 0%, #cd301b 100%);
          color: #ffffff;
          font-size: 14px;
          font-weight: 700;
          line-height: 40px;
          text-align: center;
          text-decoration: none;
          -webkit-transition-property: all;
          -moz-transition-property: all;
          -o-transition-property: all;
          transition-property: all;
          -webkit-transition-duration: 0.3s;
          -moz-transition-duration: 0.3s;
          -o-transition-duration: 0.3s;
          transition-duration: 0.3s; }
          .h30 .more:hover,
          .serviceArchiveBlock .items .item .text .more:hover {
            opacity: .7; }
          .h30 a.more {display: inline-block;}

.newsArchiveBlock {
  display: block; }
  .newsArchiveBlock .items {
    display: block;
    font-size: 0;
    letter-spacing: -.25em;
    margin: 0 0 0 -20px; }
    .newsArchiveBlock .items .item {
      display: -moz-inline-stack;
      display: inline-block;
      vertical-align: top;
      zoom: 1;
      *display: inline;
      letter-spacing: normal;
      word-spacing: normal;
      font-size: medium;
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      box-sizing: border-box;
      position: relative;
      width: calc(50% - 20px);
      margin: 20px 0 0 20px;
      padding: 30px 30px 30px 270px;
      border-radius: 7px;
      background-color: #f3f3f3; }
      .newsArchiveBlock .items .item .img {
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        width: 240px;
        height: 100%; }
        .newsArchiveBlock .items .item .img img {
          display: block;
          position: absolute;
          left: 0;
          top: 0;
          width: 100%;
          height: 100%;
          object-fit: cover;
          -o-object-fit: cover;
          border-radius: 7px 0 0 7px; }
      .newsArchiveBlock .items .item .text {
        display: block; }
        .newsArchiveBlock .items .item .text .heading {
          display: block;
          color: #303030;
          font-size: 14px;
          font-weight: 700;
          line-height: 21px;
          height: 42px;
          text-decoration: none;
          overflow: hidden;
          -webkit-transition-property: all;
          -moz-transition-property: all;
          -o-transition-property: all;
          transition-property: all;
          -webkit-transition-duration: 0.3s;
          -moz-transition-duration: 0.3s;
          -o-transition-duration: 0.3s;
          transition-duration: 0.3s; }
          .newsArchiveBlock .items .item .text .heading:hover {
            color: #de3e22; }
        .newsArchiveBlock .items .item .text .date {
          display: block;
          margin-top: 10px;
          color: #e03f23;
          font-size: 13px;
          font-weight: 400;
          line-height: 21px; }
        .newsArchiveBlock .items .item .text .desc {
          display: block;
          margin-top: 10px;
          color: #303030;
          font-size: 14px;
          font-weight: 400;
          line-height: 21px;
          height: 84px;
          overflow: hidden; }
          .newsArchiveBlock .items .item .text .desc .more {
            color: #de3e22;
            font-weight: 400;
            text-decoration: none; }
            .newsArchiveBlock .items .item .text .desc .more:hover {
              text-decoration: underline; }

.filterBlock {
  display: block;
  margin-top: 20px;
  margin-bottom: 10px;
  border-radius: 33px;
  background-color: #ebecec;
  padding: 15px; }
  .filterBlock .cols {
    display: block;
    font-size: 0;
    letter-spacing: -.25em;
    margin: 0 0 0 -20px; }
    .filterBlock .cols .col {
      display: -moz-inline-stack;
      display: inline-block;
      vertical-align: top;
      zoom: 1;
      *display: inline;
      letter-spacing: normal;
      word-spacing: normal;
      font-size: medium;
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      box-sizing: border-box;
      width: calc(25% - 20px);
      margin: 0 0 0 20px; }
      .filterBlock .cols .col .subcols {
        display: block;
        font-size: 0;
        letter-spacing: -.25em;
        margin: 0 0 0 -10px; }
        .filterBlock .cols .col .subcols .subcol {
          display: -moz-inline-stack;
          display: inline-block;
          vertical-align: top;
          zoom: 1;
          *display: inline;
          letter-spacing: normal;
          word-spacing: normal;
          font-size: medium;
          -webkit-box-sizing: border-box;
          -moz-box-sizing: border-box;
          box-sizing: border-box;
          width: calc(50% - 10px);
          margin: 0 0 0 10px; }
  .filterBlock select {
    display: block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    height: 40px;
    border-radius: 20px;
    background: #ffffff url("../images/select.png") no-repeat right 8px center;
    border: none;
    padding: 0 30px 0 20px;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none; }
    .filterBlock select::-ms-expand {
      display: none; }
    .filterBlock select:focus {
      outline: none; }
  .filterBlock .inputText {
    display: block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    height: 40px;
    border-radius: 20px;
    background-color: #ffffff;
    padding: 0 20px;
    border: none; }
    .filterBlock .inputText:focus {
      outline: none; }
  .filterBlock .inputSubmit {
    display: block;
    width: 100%;
    height: 40px;
    border-radius: 20px;
    background-color: #e9e9e9;
    background-image: linear-gradient(to top, #df3e23 0%, #cd301b 100%);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    border: none;
    -webkit-transition-property: all;
    -moz-transition-property: all;
    -o-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s; }
    .filterBlock .inputSubmit:hover {
      opacity: .7; }
    .filterBlock .inputSubmit:focus {
      outline: none; }

.carsBlock {
  display: block; }
  .carsBlock .items {
    display: block;
    font-size: 0;
    letter-spacing: -.25em;
    margin: 0 0 0 -20px; }
    .carsBlock .items .item {
      display: -moz-inline-stack;
      display: inline-block;
      vertical-align: top;
      zoom: 1;
      *display: inline;
      letter-spacing: normal;
      word-spacing: normal;
      font-size: medium;
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      box-sizing: border-box;
      position: relative;
      width: calc(25% - 20px);
      margin: 20px 0 0 20px;
      border-radius: 7px;
      background-color: #ebecec;
      text-decoration: none; }
      .carsBlock .items .item:hover .img .heading {
        bottom: 140px;
        opacity: 0.8; }
      .carsBlock .items .item:hover .img .info {
        bottom: 0;
        opacity: 0.8; }
      .carsBlock .items .item .img {
        display: block;
        position: relative;
        overflow: hidden;
        border-radius: 7px 7px 0 0; }
        .carsBlock .items .item .img:after {
          content: '';
          display: block;
          padding-top: 85%; }
        .carsBlock .items .item .img img {
          display: block;
          position: absolute;
          left: 0;
          top: 0;
          width: 100%;
          height: 100%;
          object-fit: cover;
          -o-object-fit: cover;
          z-index: 10; }
        .carsBlock .items .item .img .heading {
          display: block;
          -webkit-box-sizing: border-box;
          -moz-box-sizing: border-box;
          box-sizing: border-box;
          position: absolute;
          bottom: 0;
          left: 0;
          width: 100%;
          height: 50px;
          background-image: linear-gradient(to right, #111111 13%, #111111 15%, rgba(17, 17, 17, 0) 100%);
          color: #ffffff;
          font-size: 18px;
          font-weight: 400;
          line-height: 50px;
          overflow: hidden;
          padding: 0 20px;
          z-index: 40;
          -webkit-transition-property: all;
          -moz-transition-property: all;
          -o-transition-property: all;
          transition-property: all;
          -webkit-transition-duration: 0.3s;
          -moz-transition-duration: 0.3s;
          -o-transition-duration: 0.3s;
          transition-duration: 0.3s; }
        .carsBlock .items .item .img .info {
          display: block;
          -webkit-box-sizing: border-box;
          -moz-box-sizing: border-box;
          box-sizing: border-box;
          position: absolute;
          left: 0;
          width: 100%;
          bottom: -140px;
          height: 140px;
          z-index: 30;
          padding: 0 20px;
          overflow: auto;
          background-image: linear-gradient(to right, #111111 13%, #111111 15%, rgba(17, 17, 17, 0) 100%);
          -webkit-transition-property: all;
          -moz-transition-property: all;
          -o-transition-property: all;
          transition-property: all;
          -webkit-transition-duration: 0.3s;
          -moz-transition-duration: 0.3s;
          -o-transition-duration: 0.3s;
          transition-duration: 0.3s; }
          .carsBlock .items .item .img .info ul {
            display: block; }
            .carsBlock .items .item .img .info ul li {
              display: block;
              position: relative;
              padding-left: 15px;
              color: #ffffff;
              font-size: 14px;
              font-weight: 400;
              line-height: 21px; }
              .carsBlock .items .item .img .info ul li:after {
                content: '';
                display: block;
                position: absolute;
                top: 50%;
                left: 0;
                width: 10px;
                height: 1px;
                background: #d93920; }
      .carsBlock .items .item .text {
        display: block;
        position: relative;
        padding: 20px; }
        .carsBlock .items .item .text:after, .carsBlock .items .item .text:before {
          content: '';
          display: block;
          clear: both; }
        .carsBlock .items .item .text .tag {
          display: -moz-inline-stack;
          display: inline-block;
          vertical-align: top;
          zoom: 1;
          *display: inline;
          height: 25px;
          border-radius: 13px;
          background-color: #c6c6c6;
          padding: 0 12px;
          color: #ffffff;
          font-size: 11px;
          font-weight: 400;
          line-height: 25px;
          text-transform: uppercase;
          text-align: center;
          text-decoration: none;
          -webkit-transition-property: all;
          -moz-transition-property: all;
          -o-transition-property: all;
          transition-property: all;
          -webkit-transition-duration: 0.3s;
          -moz-transition-duration: 0.3s;
          -o-transition-duration: 0.3s;
          transition-duration: 0.3s; }
          .carsBlock .items .item .text .tag:hover {
            background-color: #303030; }
        .carsBlock .items .item .text .date {
          display: block;
          float: right;
          color: #ababab;
          font-size: 15px;
          font-weight: 400;
          line-height: 25px; }
        .carsBlock .items .item .text .price {
          display: block;
          margin-top: 15px; }
          .carsBlock .items .item .text .price .label {
            display: block;
            color: #303030;
            font-size: 14px;
            font-weight: 700;
            line-height: 18px; }
          .carsBlock .items .item .text .price .value {
            display: block;
            color: #303030;
            font-size: 20px;
            font-weight: 400;
            line-height: 25px; }
            .carsBlock .items .item .text .price .value span {
              font-size: 24px;
              font-weight: 700; }
          .carsBlock .items .item .text .price .old {
            display: block;
            color: #9d9d9d;
            font-size: 17px;
            font-weight: 400;
            line-height: 25px;
            height: 25px;
            text-decoration: line-through; }
            .carsBlock .items .item .text .price .old span {
              font-weight: 700; }
        .carsBlock .items .item .text .btn {
          display: block;
          margin-top: 15px;
          border: 0px;
          width: 120px;
          height: 40px;
          border-radius: 20px;
          background-color: #e9e9e9;
          background-image: linear-gradient(to top, #df3e23 0%, #cd301b 100%);
          color: #ffffff;
          font-size: 14px;
          font-weight: 700;
          line-height: 40px;
          text-decoration: none;
          text-align: center;
          -webkit-transition-property: all;
          -moz-transition-property: all;
          -o-transition-property: all;
          transition-property: all;
          -webkit-transition-duration: 0.3s;
          -moz-transition-duration: 0.3s;
          -o-transition-duration: 0.3s;
          transition-duration: 0.3s; }
          .carsBlock .items .item .text .btn:hover {
            opacity: .7; }
        .carsBlock .items .item .text .label3 {
          display: block;
          position: absolute;
          right: -10px;
          bottom: 7px;
          width: 128px;
          height: 47px;
          background: url("../images/label3.png") no-repeat right; }
        .carsBlock .items .item .text .label4 {
          display: block;
          position: absolute;
          right: -10px;
          bottom: 7px;
          width: 86px;
          height: 47px;
          background: url("../images/label4.png") no-repeat right; }
        .carsBlock .items .item .text .label5 {
          display: block;
          position: absolute;
          right: -10px;
          bottom: 7px;
          width: 126px;
          height: 47px;
          background: url("../images/label5.png") no-repeat right; }
        .item .text .label3 span,
        .item .text .label4 span,
        .item .text .label5 span {
          font-family: "Avenir Next Cyr";
          font-size: 11px;
          font-weight: bold;
          padding: 8px 0 0 27px;
          color: white;
          display: block;
        }

.addReviewForm {
  display: block;
  margin-top: 50px;
  border-radius: 33px;
  background-color: #ebecec;
  padding: 40px;
  margin-bottom: 40px; }
  .addReviewForm .heading {
    display: block;
    color: #303030;
    font-size: 18px;
    font-weight: 500;
    padding-bottom: 10px; }
  .addReviewForm .rows {
    display: block; }
    .addReviewForm .rows:after, .addReviewForm .rows:before {
      content: '';
      display: block;
      clear: both; }
    .addReviewForm .rows .row-1 {
      display: block;
      float: left;
      width: 210px; }
    .addReviewForm .rows .row-2 {
      display: block;
      float: right;
      width: calc(100% - 230px); }
  .addReviewForm .inputRow {
    display: block;
    position: relative; }
  .addReviewForm .errorBox {
    display: none;
    position: absolute;
    bottom: 100%;
    right: 0;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.25);
    background-color: #e08e23;
    color: #ffffff;
    font-size: 13px;
    font-weight: 400;
    line-height: 18px;
    text-align: right;
    min-width: 160px;
    padding: 3px 14px 6px;
    border-radius: 10px;
    z-index: 500; }
    .addReviewForm .errorBox.active {
      display: block; }
    .addReviewForm .errorBox:after {
      content: '';
      display: block;
      position: absolute;
      right: 10px;
      bottom: -5px;
      background-color: #e08e23;
      width: 15px;
      height: 15px;
      -moz-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      -webkit-transform: rotate(45deg);
      -o-transform: rotate(45deg);
      transform: rotate(45deg);
      z-index: -1; }
  .addReviewForm .inputText {
    display: block;
    margin-top: 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    height: 40px;
    border-radius: 20px;
    background-color: #ffffff;
    padding: 0 20px;
    font-family: "Avenir Next Cyr";
    border: none; }
    .addReviewForm .inputText:focus {
      outline: none; }
  .addReviewForm .inputArea {
    display: block;
    margin-top: 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    height: 140px;
    border-radius: 20px;
    background-color: #ffffff;
    padding: 20px;
    font-family: "Avenir Next Cyr";
    border: none;
    resize: none; }
    .addReviewForm .inputArea:focus {
      outline: none; }
  .addReviewForm .inputCheckbox {
    display: block;
    margin-top: 17px;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    color: #303030;
    font-size: 13px;
    font-weight: 400;
    line-height: 26px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
    .addReviewForm .inputCheckbox input {
      position: absolute;
      opacity: 0;
      cursor: pointer;
      height: 0;
      width: 0; }
    .addReviewForm .inputCheckbox .checkmark {
      position: absolute;
      top: 0;
      left: 0;
      height: 26px;
      width: 26px;
      background-color: #ffffff;
      border-radius: 50%; }
      .addReviewForm .inputCheckbox .checkmark:after {
        content: "";
        position: absolute;
        display: none;
        left: 6px;
        top: 6px;
        height: 14px;
        width: 14px;
        background-color: #ade023;
        border-radius: 50%; }
    .addReviewForm .inputCheckbox input:checked ~ .checkmark:after {
      display: block; }
  .addReviewForm .inputSubmit {
    display: block;
    margin-top: 10px;
    width: 100%;
    height: 40px;
    border-radius: 20px;
    background-color: #e9e9e9;
    background-image: linear-gradient(to top, #df3e23 0%, #cd301b 100%);
    cursor: pointer;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    line-height: 40px;
    text-align: center;
    border: none;
    padding: 0;
    -webkit-transition-property: all;
    -moz-transition-property: all;
    -o-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s; }
    .addReviewForm .inputSubmit:hover {
      opacity: .7; }
    .addReviewForm .inputSubmit:focus {
      outline: none; }

.contactMessageForm {
  display: block;
  margin-top: 30px;
  border-radius: 33px;
  background-color: #ebecec;
  padding: 20px;
  margin-bottom: 40px; }
  .contactMessageForm .heading {
    display: block;
    color: #303030;
    font-size: 18px;
    font-weight: 500;
    padding-bottom: 10px; }
  .contactMessageForm .rows {
    display: block; }
    .contactMessageForm .rows:after, .contactMessageForm .rows:before {
      content: '';
      display: block;
      clear: both; }
    .contactMessageForm .rows .row-1 {
      display: block;
      float: left;
      width: 210px; }
    .contactMessageForm .rows .row-2 {
      display: block;
      float: right;
      width: calc(100% - 230px); }
  .contactMessageForm .inputRow {
    display: block;
    position: relative; }
  .contactMessageForm .errorBox {
    display: none;
    position: absolute;
    bottom: 100%;
    right: 0;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.25);
    background-color: #e08e23;
    color: #ffffff;
    font-size: 13px;
    font-weight: 400;
    line-height: 18px;
    text-align: right;
    min-width: 160px;
    padding: 3px 14px 6px;
    border-radius: 10px;
    z-index: 500; }
    .contactMessageForm .errorBox.active {
      display: block; }
    .contactMessageForm .errorBox:after {
      content: '';
      display: block;
      position: absolute;
      right: 10px;
      bottom: -5px;
      background-color: #e08e23;
      width: 15px;
      height: 15px;
      -moz-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      -webkit-transform: rotate(45deg);
      -o-transform: rotate(45deg);
      transform: rotate(45deg);
      z-index: -1; }
  .contactMessageForm .inputText {
    display: block;
    margin-top: 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    height: 40px;
    border-radius: 20px;
    background-color: #ffffff;
    padding: 0 20px;
    font-family: "Avenir Next Cyr";
    border: none; }
    .contactMessageForm .inputText:focus {
      outline: none; }
  .contactMessageForm .inputArea {
    display: block;
    margin-top: 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    height: 90px;
    border-radius: 20px;
    background-color: #ffffff;
    padding: 20px;
    font-family: "Avenir Next Cyr";
    border: none;
    resize: none; }
    .contactMessageForm .inputArea:focus {
      outline: none; }
  .contactMessageForm .inputCheckbox {
    display: block;
    margin-top: 17px;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    color: #303030;
    font-size: 13px;
    font-weight: 400;
    line-height: 15px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
    .contactMessageForm .inputCheckbox input {
      position: absolute;
      opacity: 0;
      cursor: pointer;
      height: 0;
      width: 0; }
    .contactMessageForm .inputCheckbox .checkmark {
      position: absolute;
      top: 0;
      left: 0;
      height: 26px;
      width: 26px;
      background-color: #ffffff;
      border-radius: 50%; }
      .contactMessageForm .inputCheckbox .checkmark:after {
        content: "";
        position: absolute;
        display: none;
        left: 6px;
        top: 6px;
        height: 14px;
        width: 14px;
        background-color: #ade023;
        border-radius: 50%; }
    .contactMessageForm .inputCheckbox input:checked ~ .checkmark:after {
      display: block; }
  .contactMessageForm .inputSubmit {
    display: block;
    margin-top: 10px;
    width: 100%;
    height: 40px;
    border-radius: 20px;
    background-color: #e9e9e9;
    background-image: linear-gradient(to top, #df3e23 0%, #cd301b 100%);
    cursor: pointer;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    line-height: 40px;
    text-align: center;
    border: none;
    padding: 0;
    -webkit-transition-property: all;
    -moz-transition-property: all;
    -o-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s; }
    .contactMessageForm .inputSubmit:hover {
      opacity: .7; }
    .contactMessageForm .inputSubmit:focus {
      outline: none; }

.mapSection {
  display: block;
  margin-top: -30px;
  height: 500px;
  overflow: hidden; }

.tariffTable {
  display: block;
  margin-top: 20px; }
  .tariffTable .heading {
    display: block;
    padding: 25px 30px;
    border-radius: 7px;
    background: #e9e9e9 url("../images/arbottom.png") no-repeat right 30px center;
    color: #303030;
    font-size: 24px;
    font-weight: 500;
    line-height: 27px;
    cursor: pointer;
    -webkit-transition-property: all;
    -moz-transition-property: all;
    -o-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s; }
  .tariffTable .table {
    display: none;
    width: 100%; }
    .tariffTable .table table {
      width: 100%;
      border-collapse: collapse; }
      .tariffTable .table table tbody {
        width: 100%; }
      .tariffTable .table table tr {
        width: 100%; }
      .tariffTable .table table th {
        padding: 15px;
        color: #303030;
        font-size: 14px;
        font-weight: 700;
        line-height: 20px;
        text-align: left; }
      .tariffTable .table table td {
        padding: 15px;
        vertical-align: middle;
        color: #303030;
        font-size: 14px;
        font-weight: 400;
        line-height: 20px;
        background-color: #e9e9e9;
        border-top: 2px solid #ffffff;
        border-right: 1px solid #ffffff;
        text-align: left; }
        .tariffTable .table table td:first-child {
          border-radius: 4px 0 0 4px; }
        .tariffTable .table table td:last-child {
          border-right: none;
          text-align: right;
          border-radius: 0 4px 4px 0; }
        .tariffTable .table table td strong {
          font-weight: 700; }
        .tariffTable .table table td a {
          color: #e04227;
          font-size: 14px;
          font-weight: 700;
          line-height: 24px;
          text-decoration: none; }
          .tariffTable .table table td a:hover {
            text-decoration: underline; }
        .tariffTable .table table td .btn {
          display: -moz-inline-stack;
          display: inline-block;
          vertical-align: middle;
          zoom: 1;
          *display: inline;
          width: 130px;
          height: 36px;
          border-radius: 4px;
          background-color: #e04227;
          color: #ffffff;
          font-size: 14px;
          font-weight: 700;
          line-height: 36px;
          text-align: center;
          padding: 0;
          -webkit-transition-property: all;
          -moz-transition-property: all;
          -o-transition-property: all;
          transition-property: all;
          -webkit-transition-duration: 0.3s;
          -moz-transition-duration: 0.3s;
          -o-transition-duration: 0.3s;
          transition-duration: 0.3s; }
          .tariffTable .table table td .btn:hover {
            opacity: .7;
            text-decoration: none; }
  .tariffTable.active .heading {
    border-radius: 7px 7px 0 0;
    background: #e04227 url("../images/artop.png") no-repeat right 30px center;
    color: #ffffff; }
  .tariffTable.active .table {
    display: block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 25px 30px;
    border: 2px solid #e04227;
    border-radius: 0 0 7px 7px; }

.conditionTab {
  display: block;
  width: 80%;
  margin-top: 20px; }
  .conditionTab .heading {
    display: block;
    padding: 25px 30px;
    border-radius: 7px;
    background: #e9e9e9 url("../images/arbottom.png") no-repeat right 30px center;
    color: #303030;
    font-size: 24px;
    font-weight: 500;
    line-height: 27px;
    cursor: pointer;
    -webkit-transition-property: all;
    -moz-transition-property: all;
    -o-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s; }
  .conditionTab .text {
    display: none; }
  .conditionTab.active .heading {
    border-radius: 7px 7px 0 0;
    background: #e04227 url("../images/artop.png") no-repeat right 30px center;
    color: #ffffff; }
  .conditionTab.active .text {
    display: block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 25px 30px;
    border: 2px solid #e04227;
    border-radius: 0 0 7px 7px; }

.singleCarBlock {
  display: block;
  padding-top: 50px; }
  .singleCarBlock:after, .singleCarBlock:before {
    content: '';
    display: block;
    clear: both; }
  .singleCarBlock .gallery {
    display: block;
    float: left;
    width: 590px;
    max-height: 680px;
    overflow: hidden; }
    .singleCarBlock .gallery .slick-prev {
      display: block;
      position: absolute;
      left: 20px;
      top: 50%;
      z-index: 200;
      width: 18px;
      height: 33px;
      margin-top: -16.5px;
      background: url("../images/prev.png") no-repeat center;
      font-size: 0;
      border: none; }
      .singleCarBlock .gallery .slick-prev:before {
        display: none; }
    .singleCarBlock .gallery .slick-next {
      display: block;
      position: absolute;
      right: 20px;
      top: 50%;
      z-index: 200;
      width: 18px;
      height: 33px;
      margin-top: -16.5px;
      background: url("../images/next.png") no-repeat center;
      font-size: 0;
      border: none; }
      .singleCarBlock .gallery .slick-next:before {
        display: none; }
    .singleCarBlock .gallery .mainImg {
      display: block; }
      .singleCarBlock .gallery .mainImg .img {
        display: block !important;
        position: relative; }
        .singleCarBlock .gallery .mainImg .img:after {
          content: '';
          display: block;
          padding-top: 70%; }
        .singleCarBlock .gallery .mainImg .img.active {
          display: block; }
        .singleCarBlock .gallery .mainImg .img img {
          display: block;
          position: absolute;
          left: 0;
          top: 0;
          width: 100%;
          height: 100%;
          object-fit: cover;
          -o-object-fit: cover;
          border-radius: 7px;
          z-index: 20; }
    .singleCarBlock .gallery .thubnailsList {
      display: block; }
      .singleCarBlock .gallery .thubnailsList .slick-current .img > div {
        border: 3px solid #e03f23; }
      .singleCarBlock .gallery .thubnailsList .img {
        display: block;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        position: relative;
        padding: 10px 5px 0; }
        .singleCarBlock .gallery .thubnailsList .img > div {
          display: block;
          position: relative;
          cursor: pointer;
          border-radius: 7px;
          overflow: hidden;
          border: 3px solid #ffffff;
          -webkit-transition-property: all;
          -moz-transition-property: all;
          -o-transition-property: all;
          transition-property: all;
          -webkit-transition-duration: 0.3s;
          -moz-transition-duration: 0.3s;
          -o-transition-duration: 0.3s;
          transition-duration: 0.3s; }
          .singleCarBlock .gallery .thubnailsList .img > div:hover {
            opacity: .7; }
          .singleCarBlock .gallery .thubnailsList .img > div:after {
            content: '';
            display: block;
            padding-top: 70%; }
        .singleCarBlock .gallery .thubnailsList .img img {
          display: block;
          position: absolute;
          left: 0;
          top: 0;
          width: 100%;
          height: 100%;
          object-fit: cover;
          -o-object-fit: cover;
          z-index: 20; }
  .singleCarBlock .productSummary {
    display: block;
    float: left;
    width: 300px;
    margin-left: 35px; }
    .singleCarBlock .productSummary .actionBlock {
      display: block;
      margin-top: 20px;
      border-radius: 33px;
      border: 2px dotted #d4d4d4;
      background-color: #ffffff;
      padding: 30px; }
      .singleCarBlock .productSummary .actionBlock .condBlock {
        display: block; }
        .singleCarBlock .productSummary .actionBlock .condBlock.active {
          background: #e9e9e9;
          border-radius: 20px; }
          .singleCarBlock .productSummary .actionBlock .condBlock.active .desc {
            display: block; }
        .singleCarBlock .productSummary .actionBlock .condBlock .heading {
          display: block;
          -webkit-box-sizing: border-box;
          -moz-box-sizing: border-box;
          box-sizing: border-box;
          width: 100%;
          height: 40px;
          border-radius: 20px;
          background: #e9e9e9 url("../images/select.png") no-repeat right 8px center;
          border: none;
          padding: 0 30px 0 20px;
          cursor: pointer;
          color: #303030;
          font-size: 14px;
          font-weight: 700;
          line-height: 40px;
          -webkit-transition-property: all;
          -moz-transition-property: all;
          -o-transition-property: all;
          transition-property: all;
          -webkit-transition-duration: 0.3s;
          -moz-transition-duration: 0.3s;
          -o-transition-duration: 0.3s;
          transition-duration: 0.3s; }
          .singleCarBlock .productSummary .actionBlock .condBlock .heading:focus {
            outline: none; }
          .singleCarBlock .productSummary .actionBlock .condBlock .heading:hover {
            color: #e03f23; }
        .singleCarBlock .productSummary .actionBlock .condBlock .desc {
          display: none;
          -webkit-box-sizing: border-box;
          -moz-box-sizing: border-box;
          box-sizing: border-box;
          color: #303030;
          font-size: 14px;
          font-weight: 400;
          line-height: 25px;
          padding: 0 20px 10px; }
      .singleCarBlock .productSummary .actionBlock .price {
        display: block;
        margin-top: 15px; }
        .singleCarBlock .productSummary .actionBlock .price .label {
          display: block;
          color: #303030;
          font-size: 14px;
          font-weight: 700;
          line-height: 18px; }
        .singleCarBlock .productSummary .actionBlock .price .value {
          display: block;
          color: #303030;
          font-size: 18px;
          font-weight: 400;
          line-height: 25px; }
          .singleCarBlock .productSummary .actionBlock .price .value span {
            font-size: 38px;
            font-weight: 700; }
        .singleCarBlock .productSummary .actionBlock .price .old {
          display: block;
          color: #9d9d9d;
          font-size: 17px;
          font-weight: 400;
          line-height: 25px;
          height: 25px;
          text-decoration: line-through; }
          .singleCarBlock .productSummary .actionBlock .price .old span {
            font-weight: 700; }
      .singleCarBlock .productSummary .actionBlock .redText {
        display: block;
        margin-top: 10px;
        color: #e03f23;
        font-size: 14px;
        font-weight: 700;
        line-height: 14px; }
      .singleCarBlock .productSummary .actionBlock .redText {
        display: block;
        color: #303030;
        font-size: 13px;
        font-weight: 700;
        line-height: 20px; }
      .singleCarBlock .productSummary .actionBlock .btn {
        display: block;
        margin-top: 15px;
        border: 0px;
        width: 100%;
        height: 40px;
        border-radius: 20px;
        background-color: #e9e9e9;
        background-image: linear-gradient(to top, #df3e23 0%, #cd301b 100%);
        color: #ffffff;
        font-size: 14px;
        font-weight: 700;
        line-height: 40px;
        text-decoration: none;
        text-align: center;
        -webkit-transition-property: all;
        -moz-transition-property: all;
        -o-transition-property: all;
        transition-property: all;
        -webkit-transition-duration: 0.3s;
        -moz-transition-duration: 0.3s;
        -o-transition-duration: 0.3s;
        transition-duration: 0.3s; }
        .singleCarBlock .productSummary .actionBlock .btn:hover {
          opacity: .7; }
  .singleCarBlock .productPropers {
    display: block;
    float: right;
    width: 240px; }

.productTabsBlock {
  display: block; }
  .productTabsBlock .btns {
    display: block; }
    .productTabsBlock .btns .btn {
      display: -moz-inline-stack;
      display: inline-block;
      vertical-align: top;
      zoom: 1;
      *display: inline;
      margin-right: 10px;
      height: 40px;
      border-radius: 20px;
      border: 1px solid #ababab;
      padding: 0 35px;
      color: #303030;
      font-size: 14px;
      font-weight: 700;
      line-height: 40px;
      cursor: pointer;
      -webkit-transition-property: all;
      -moz-transition-property: all;
      -o-transition-property: all;
      transition-property: all;
      -webkit-transition-duration: 0.3s;
      -moz-transition-duration: 0.3s;
      -o-transition-duration: 0.3s;
      transition-duration: 0.3s; }
      .productTabsBlock .btns .btn.active {
        color: #e03f23;
        border: 1px solid #e03f23; }
      .productTabsBlock .btns .btn:hover {
        opacity: .7; }
  .productTabsBlock .outs {
    display: block;
    padding-top: 30px; }
    .productTabsBlock .outs .out {
      display: none; }
      .productTabsBlock .outs .out.active {
        display: block; }

.requestBtn {
  display: -moz-inline-stack;
  display: inline-block;
  vertical-align: top;
  zoom: 1;
  *display: inline;
  margin-top: 10px;
  height: 40px;
  padding: 0 35px;
  border-radius: 20px;
  background-color: #ffffff;
  background-image: linear-gradient(to top, #df3e23 0%, #cd301b 100%);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  text-align: center;
  text-decoration: none;
  -webkit-transition-property: all;
  -moz-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s; }
  .requestBtn:hover {
    opacity: .7; }

.fzf_block {
  display: block;
  margin-top: 60px; }
  .fzf_block:after, .fzf_block:before {
    content: '';
    display: block;
    clear: both; }
  .fzf_block .img {
    display: block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    float: left;
    width: 30%;
    padding-right: 30px;
    color: #303030;
    font-size: 145px;
    font-weight: 300;
    text-align: right;
    border-right: 1px solid #f1f1f1;
    height: 380px; }
  .fzf_block .desc {
    display: block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    float: left;
    width: 70%;
    padding-left: 30px; }
    .fzf_block .desc .heading {
      display: block;
      color: #303030;
      font-size: 55px;
      font-weight: 300;
      line-height: 60px;
      padding-bottom: 20px; }

@media (min-width: 1024px) and (max-width: 1180px) {
  .whatsapp-block {
    display: none;
  }
  .popup-form {
    top: 20px; }
    .popup-form .bottomBlock .successText {
      display: block;
      padding: 20px 0; }

  .containerWrap {
    min-width: 1024px; }
    .containerWrap .wrap {
      width: 1000px;
      padding: 0 12px; }

  header .logo img {
    width: 205px; }
  header .citySelect {
    left: 270px; }
  header .adress {
    left: 270px; }
  header .whatsapp {
    display: block;
    position: absolute;
    left: 580px;
    top: 15px;
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0); }
  header .phones {
    left: 580px;
    top: 67px;
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0); }
  header .btn {
    right: 12px; }
  header .selectLang {
    right: 12px; }

  .mainMenu ul.menu > li > a {
    font-size: 15px;
    font-weight: 500;
    padding: 0 12px; }
  .mainMenu .searchform {
    right: 12px; }

  .frontSlider {
    height: 500px; }
  .fixed_menu .frontSlider {
    margin-top: 160px; }
    .frontSlider .slick-prev {
      left: 5px; }
    .frontSlider .slick-next {
      right: 5px; }
    .frontSlider .item .wrap {
      height: 500px; }
    .frontSlider .item .message {
      top: 60px;
      left: 40px; }
      .frontSlider .item .message .text {
        max-width: 550px; }
    .frontSlider .form {
      top: 20px;
      right: 40px;
      width: 360px;
      padding: 20px 25px; }

  .frontBlock1 {
    display: block; }

  .frontBlock2 {
    display: block; }

  .frontBlock3 {
    display: block; }

  .frontBlock4 {
    display: block; }

  .requestBlock .wrap {
    height: 350px; }
  .requestBlock .text {
    left: 12px;
    max-width: 700px; }
  .requestBlock .form {
    right: 70px; }

  .frontBlock5 {
    display: block; }

  .frontBlock6 {
    display: block; }

  .frontBlock7 {
    display: block; }

  footer .cols .col-3 {
    display: none; }

  .archivePage, .defaultPage {
    display: block; }

  .breadcrumbs {
    display: block; }

  .pagination {
    display: block; }

  .carsCategoriesBlock {
    display: block; }

  .plusesBlock {
    display: block; }
    .plusesBlock.with_cond {
      margin-top: 30px; }
      .plusesBlock.with_cond .items .item {
        width: calc(50% - 30px); }
    .plusesBlock .items {
      text-align: center; }
      .plusesBlock .items .item {
        width: calc(50% - 30px);
        height: 180px;
        text-align: left; }

  .conditionsBlock {
    display: block; }
    .conditionsBlock .items .item {
      height: 340px; }

  .stocksArchiveBlock .items {
    margin: 0 0 0 -20px; }
    .stocksArchiveBlock .items .item {
      width: calc(33.33% - 20px);
      margin: 30px 0 0 20px; }
      .stocksArchiveBlock .items .item .text {
        padding: 10px 10px; }
        .stocksArchiveBlock .items .item .text .label1 {
          right: -7px;
          bottom: 1px; }
        .stocksArchiveBlock .items .item .text .label2 {
          right: -10px;
          bottom: -3px; }

  .reviewsArchiveBlock {
    display: block; }

  .serviceArchiveBlock .items .item .text {
    padding: 10px 10px; }

  .newsArchiveBlock {
    display: block; }

  .filterBlock {
    display: block; }

  .carsBlock {
    display: block; }
    .carsBlock .items .item {
      width: calc(33.33% - 20px); }

  .addReviewForm {
    display: block; }

  .contactMessageForm {
    padding: 10px;
    border-radius: 10px; }
    .contactMessageForm .rows .row-1 {
      width: 160px; }
    .contactMessageForm .rows .row-2 {
      width: calc(100% - 180px); }

  .mapSection {
    display: block;
    height: 400px; }

  .tariffTable {
    display: block; }

  .conditionTab {
    display: block;
    width: 100%; }

  .singleCarBlock .gallery {
    width: 470px;
    max-height: 470px; }
    .singleCarBlock .gallery .slick-prev {
      left: 10px; }
    .singleCarBlock .gallery .slick-next {
      right: 10px; }
    .singleCarBlock .gallery .thubnailsList .slick-current .img > div {
      border: 2px solid #e03f23; }
    .singleCarBlock .gallery .thubnailsList .img {
      padding: 5px 2.5px 0; }
      .singleCarBlock .gallery .thubnailsList .img > div {
        border: 2px solid #ffffff; }
  .singleCarBlock .productSummary {
    float: right;
    width: 500px;
    margin-left: 0; }
  .singleCarBlock .productPropers {
    margin-top: 30px;
    width: 470px;
    float: left; }

  .productTabsBlock {
    display: block; }
    .productTabsBlock .btns {
      display: block; }
      .productTabsBlock .btns .btn {
        display: -moz-inline-stack;
        display: inline-block;
        vertical-align: top;
        zoom: 1;
        *display: inline;
        margin-right: 10px;
        height: 40px;
        border-radius: 20px;
        border: 1px solid #ababab;
        padding: 0 35px;
        color: #303030;
        font-size: 14px;
        font-weight: 700;
        line-height: 40px;
        cursor: pointer;
        -webkit-transition-property: all;
        -moz-transition-property: all;
        -o-transition-property: all;
        transition-property: all;
        -webkit-transition-duration: 0.3s;
        -moz-transition-duration: 0.3s;
        -o-transition-duration: 0.3s;
        transition-duration: 0.3s; }
        .productTabsBlock .btns .btn.active {
          color: #e03f23;
          border: 1px solid #e03f23; }
        .productTabsBlock .btns .btn:hover {
          opacity: .7; }
    .productTabsBlock .outs {
      display: block;
      padding-top: 30px; }
      .productTabsBlock .outs .out {
        display: none; }
        .productTabsBlock .outs .out.active {
          display: block; }
    .conditions {
      width: 100%;
    }

    .conditions a:first-child {
      margin-right: 0.5rem;
    }

    .conditions__item-text {
      font-size: 0.8rem;
    }
  }
@media (min-width: 768px) and (max-width: 1023px) {
  .whatsapp-block {
    display: none;
  }
  .containerWrap {
    min-width: 768px; }
    .containerWrap .wrap {
      width: 750px;
      padding: 0 9px; }
    .containerWrap .twoWrap .leftWrap {
      width: 100%; }
    .containerWrap .twoWrap .rightWrap {
      width: 100%; }
    .containerWrap .twoColsWraps .leftColWrap {
      width: 100%; }
    .containerWrap .twoColsWraps .rightColWrap {
      width: 100%; }

  .popup-form {
    top: 20px;
    margin: 0 0 0 -250px;
    width: 500px;
    border-radius: 20px; }
    .popup-form .topBlock {
      padding: 15px 15px;
      border-radius: 20px 20px 0 0; }
      .popup-form .topBlock .heading {
        font-size: 24px;
        line-height: 30px; }
      .popup-form .topBlock .desc {
        display: block; }
      .popup-form .topBlock .close {
        top: 15px;
        right: 15px; }
    .popup-form .bottomBlock {
      padding: 25px 10px 30px; }
      .popup-form .bottomBlock .cols .col {
        margin: 10px 0 0 20px;
        width: calc(100% - 20px); }
        .popup-form .bottomBlock .cols .col.small {
          width: calc(100% - 20px); }
      .popup-form .bottomBlock .successText {
        padding: 20px 0; }
        .popup-form .bottomBlock .successText .btn {
          margin: 20px auto 0; }
      .popup-form .bottomBlock .inputCheckbox {
        display: block;
        line-height: 26px; }
      .popup-form .bottomBlock .inputSubmit {
        display: block;
        margin: 15px auto 0; }

  header .wrap {
    height: 135px; }
  header .burgerBtn {
    display: block;
    position: absolute;
    left: 9px;
    top: 50%;
    margin-top: -10px;
    width: 20px;
    height: 20px;
    background: url("../images/burger.png") no-repeat center;
    cursor: pointer;
    z-index: 30;
    -webkit-transition-property: all;
    -moz-transition-property: all;
    -o-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s; }
    header .burgerBtn:hover {
      opacity: .7; }
  header .logo {
    left: 60px; }
    header .logo img {
      width: 165px; }
  header .citySelect {
    left: 260px; }
  header .adress {
    left: 260px; }
  header .whatsapp {
    left: auto;
    right: 9px;
    top: 20px;
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0); }
    header .whatsapp .phone {
      margin-top: 5px; }
  header .phones {
    display: none; }
  header .btn {
    top: auto;
    bottom: 20px;
    margin: 0;
    right: 9px;
    width: 178px; }
  header .selectLang {
    right: 9px; }

  .mainMenu {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 100000; }
    .mainMenu.active {
      display: block; }
    .mainMenu .close {
      display: block;
      position: absolute;
      right: 0;
      top: 0;
      width: 20%;
      height: 100%;
      cursor: pointer;
      background: rgba(0, 0, 0, 0.7); }
    .mainMenu .wrap {
      display: block;
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      box-sizing: border-box;
      position: absolute;
      left: 0;
      top: 0;
      width: 80%;
      height: 100%;
      overflow: auto;
      background: #303030;
      padding: 50px 0 0 0; }
    .mainMenu ul.menu {
      display: block;
      background: #ffffff; }
      .mainMenu ul.menu > li {
        display: block;
        position: relative;
        border-bottom: 1px solid #e1e2e2; }
        .mainMenu ul.menu > li > a {
          display: block;
          padding: 15px 20px 15px 20px;
          color: #2e2e2e;
          font-size: 18px;
          font-weight: 400;
          text-transform: uppercase;
          text-decoration: none; }
          .mainMenu ul.menu > li > a:hover {
            background-color: #d6371f;
            color: #ffffff; }
        .mainMenu ul.menu > li.current-menu-item > a {
          background-color: #d6371f;
          color: #ffffff; }
        .mainMenu ul.menu > li > ul {
          display: block; }
          .mainMenu ul.menu > li > ul > li {
            display: block; }
            .mainMenu ul.menu > li > ul > li > a {
              display: block;
              color: #2e2e2e;
              font-size: 16px;
              font-weight: 700;
              text-decoration: none;
              padding: 10px 20px 10px 30px; }
              .mainMenu ul.menu > li > ul > li > a:hover {
                color: #d6371f; }
            .mainMenu ul.menu > li > ul > li.current-menu-item > a {
              color: #d6371f; }
            .mainMenu ul.menu > li > ul > li > ul {
              display: block; }
              .mainMenu ul.menu > li > ul > li > ul > li {
                display: block; }
                .mainMenu ul.menu > li > ul > li > ul > li > a {
                  display: block;
                  color: #2e2e2e;
                  font-size: 15px;
                  font-weight: 400;
                  text-decoration: none;
                  padding: 10px 10px 10px 40px; }
                  .mainMenu ul.menu > li > ul > li > ul > li > a:hover {
                    color: #d6371f; }
                .mainMenu ul.menu > li > ul > li > ul > li.current-menu-item > a {
                  color: #d6371f; }
                .mainMenu ul.menu > li > ul > li > ul > li > ul {
                  display: none; }
    .mainMenu .searchform {
      display: block;
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      box-sizing: border-box;
      position: absolute;
      top: 5px;
      left: 10px;
      width: calc(100% - 20px);
      height: 40px;
      background-color: #ffffff;
      z-index: 50;
      border: 1px solid #303030; }
      .mainMenu .searchform .s {
        display: block;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        position: absolute;
        left: 0;
        top: 0;
        width: calc(100% - 40px);
        height: 100%;
        border: none;
        padding: 0 15px;
        border-radius: 20px 0 0 20px; }
        .mainMenu .searchform .s:focus {
          outline: none; }
      .mainMenu .searchform .searchsubmit {
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        width: 40px;
        height: 40px;
        background: url("../images/search.png") no-repeat center;
        border: none;
        cursor: pointer;
        border-radius: 0 20px 20px 0;
        -webkit-transition-property: all;
        -moz-transition-property: all;
        -o-transition-property: all;
        transition-property: all;
        -webkit-transition-duration: 0.3s;
        -moz-transition-duration: 0.3s;
        -o-transition-duration: 0.3s;
        transition-duration: 0.3s; }
        .mainMenu .searchform .searchsubmit:focus {
          outline: none; }
        .mainMenu .searchform .searchsubmit:hover {
          filter: invert(50%); }

  .frontSlider {
    height: 422px; }
    .frontSlider .slick-prev {
      left: 5px; }
    .frontSlider .slick-next {
      right: 5px; }
    .frontSlider .slick-dots {
      bottom: 15px; }
    .frontSlider .item {
      display: block;
      position: relative; }
      .frontSlider .item img {
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        -o-object-fit: cover; }
      .frontSlider .item .wrap {
        position: relative;
        height: 422px;
        z-index: 30; }
      .frontSlider .item .message {
        top: 60px;
        left: 10px; }
        .frontSlider .item .message .text {
          display: block;
          max-width: 360px; }
          .frontSlider .item .message .text .heading {
            font-size: 36px;
            line-height: 42px; }
          .frontSlider .item .message .text .desc {
            display: block;
            margin-top: 15px; }
        .frontSlider .item .message .btn {
          display: block;
          margin-top: 20px; }
    .frontSlider .form {
      top: 20px;
      right: 40px;
      width: 320px;
      border-radius: 20px;
      padding: 20px 20px; }
      .frontSlider .form .heading {
        display: block;
        text-align: center;
        color: #ffffff;
        font-size: 18px;
        font-weight: 700; }
      .frontSlider .form select {
        margin-top: 10px; }
      .frontSlider .form .date {
        display: block;
        margin-top: 10px;
        padding-bottom: 0; }
      .frontSlider .form .inputText {
        display: block;
        margin-top: 10px; }
      .frontSlider .form .inputCheckbox {
        display: block;
        margin-top: 10px; }
      .frontSlider .form .price {
        margin-top: 20px; }
      .frontSlider .form .inputSubmit {
        display: block;
        margin-top: 20px;
        width: 100px; }

  .frontBlock1 {
    display: block;
    padding: 30px 0 30px; }
    .frontBlock1 .title {
      font-size: 28px;
      line-height: 36px; }
    .frontBlock1 .carsCategoriesBlock {
      padding-top: 10px; }

  .frontBlock2 {
    padding: 30px 0 30px; }
    .frontBlock2 .title {
      font-size: 28px;
      line-height: 36px; }
    .frontBlock2 .filterBlock {
      display: block;
      margin-top: 30px; }
    .archivePage .all_btn,
    .frontBlock2 .all_btn {
      display: block; }

  .frontBlock3 {
    padding: 30px 0 0; }
    .frontBlock3 .title {
      font-size: 28px;
      line-height: 36px; }
    .frontBlock3 .plusesBlock {
      padding-top: 0; }

  .frontBlock4 {
    padding: 30px 0 30px; }
    .frontBlock4 .title {
      font-size: 28px;
      line-height: 36px; }
    .frontBlock4 .twoCols {
      display: block; }
    .frontBlock4 .textBlock {
      padding-top: 30px; }
    .frontBlock4 .videoBlock {
      height: 260px; }

  .requestBlock {
    display: block; }
    .requestBlock .wrap {
      height: 300px; }
    .requestBlock .text {
      left: 9px;
      color: #ffffff;
      font-size: 22px;
      font-weight: 400;
      line-height: 30px;
      max-width: 400px; }
      .requestBlock .text .heading {
        font-size: 28px; }
    .requestBlock .form {
      display: block;
      position: absolute;
      width: 260px;
      right: 9px;
      top: 50%; }

  .frontBlock5 {
    display: block; }

  .frontBlock6 {
    padding: 30px 0 0; }

  .frontBlock7 {
    display: block;
    padding: 30px 0 30px; }
    .frontBlock7 .title {
      display: block; }
    .frontBlock7 .items {
      padding-top: 20px;
      margin: 0 0 0 -10px; }
      .frontBlock7 .items .item {
        width: calc(25% - 10px);
        margin: 10px 0 0 10px; }

  footer {
    padding: 30px 0 50px; }
    footer .cols .col-2, footer .cols .col-3 {
      display: none; }

  .archivePage, .defaultPage {
    display: block;
    padding: 0 0 30px; }
    .archivePage .title, .defaultPage .title {
      font-size: 28px;
      line-height: 36px; }
    .archivePage .flampBlock, .defaultPage .flampBlock {
      padding-top: 30px; }
    .archivePage .newsArchiveBlock, .defaultPage .newsArchiveBlock {
      padding-top: 10px; }
    .archivePage .serviceArchiveBlock, .defaultPage .serviceArchiveBlock {
      padding-top: 10px; }
    .archivePage .newsArchiveBlock, .defaultPage .newsArchiveBlock {
      padding-top: 10px; }
    .archivePage .relatedCars, .defaultPage .relatedCars {
      padding-top: 30px; }
    .archivePage .carsBlock, .defaultPage .carsBlock {
      display: block;
      padding-top: 10px; }
    .archivePage .h30, .defaultPage .h30 {
      display: block;
      padding-top: 10px; }
    .archivePage .sepLine, .defaultPage .sepLine {
      display: block;
      clear: both;
      margin: 30px 0;
      height: 1px;
      background-color: #e9e9e9; }

  .breadcrumbs {
    display: block;
    border-top: 1px solid #303030; }

  .pagination {
    display: block; }

  .carsCategoriesBlock {
    display: block; }
    .carsCategoriesBlock .items {
      margin: 0 0 0 -20px; }
      .carsCategoriesBlock .items .item {
        width: calc(33.33% - 20px); }
        .carsCategoriesBlock .items .item:after {
          padding-top: 75%; }

  .plusesBlock {
    display: block; }
    .plusesBlock.with_cond {
      margin-top: 30px; }
      .plusesBlock.with_cond .items {
        margin: 0 0 0 -10px; }
        .plusesBlock.with_cond .items .item {
          width: calc(50% - 10px);
          margin: 30px 0 0 10px; }
    .plusesBlock .items {
      display: block; }
      .plusesBlock .items .item {
        width: calc(50% - 30px);
        margin: 30px 0 0 30px;
        height: 215px; }

  .conditionsBlock {
    display: block; }
    .conditionsBlock .items .item {
      width: calc(50% - 20px); }

  .stocksArchiveBlock {
    display: block; }
    .stocksArchiveBlock .items {
      display: block;
      font-size: 0;
      letter-spacing: -.25em;
      margin: 0 0 0 -30px; }
      .stocksArchiveBlock .items .item {
        width: calc(50% - 30px);
        margin: 30px 0 0 30px; }
        .stocksArchiveBlock .items .item .text {
          padding: 10px 10px; }
          .stocksArchiveBlock .items .item .text .label1 {
            bottom: 5px; }
          .stocksArchiveBlock .items .item .text .label2 {
            bottom: 2px; }

  .reviewsArchiveBlock {
    display: block; }

  .serviceArchiveBlock {
    display: block; }
    .serviceArchiveBlock .items .item {
      width: calc(33.33% - 20px); }
      .serviceArchiveBlock .items .item .text {
        display: block;
        padding: 10px 10px; }

  .newsArchiveBlock {
    display: block; }
    .newsArchiveBlock .items .item {
      width: calc(100% - 20px); }

  .filterBlock {
    display: block;
    margin-top: 30px;
    margin-bottom: 10px;
    border-radius: 20px;
    padding: 10px; }
    .filterBlock .cols {
      margin: 0 0 0 -10px; }
      .filterBlock .cols .col {
        width: calc(25% - 10px);
        margin: 0 0 0 10px; }
    .filterBlock .inputSubmit {
      display: block;
      font-size: 13px; }

  .carsBlock {
    display: block; }
    .carsBlock .items {
      margin: 0 0 0 -10px; }
      .carsBlock .items .item {
        width: calc(33.33% - 10px);
        margin: 20px 0 0 10px; }
        .carsBlock .items .item .text {
          padding: 10px; }
          .carsBlock .items .item .text .label3 {
            bottom: -3px; }
          .carsBlock .items .item .text .label4 {
            right: -10px;
            bottom: -3px; }
          .carsBlock .items .item .text .label5 {
            right: -10px;
            bottom: -3px; }

  .addReviewForm {
    margin-top: 30px;
    border-radius: 20px;
    padding: 15px;
    margin-bottom: 30px; }

  .contactMessageForm {
    display: block;
    margin-top: 15px;
    border-radius: 20px;
    padding: 15px;
    max-width: 60%;
    margin-bottom: 30px; }

  .mapSection {
    display: block;
    margin-top: -10px;
    height: 300px; }

  .tariffTable .heading {
    padding: 15px 15px;
    background: #e9e9e9 url("../images/arbottom.png") no-repeat right 15px center;
    font-size: 20px;
    line-height: 27px; }
  .tariffTable .table {
    display: none;
    width: 100%; }
    .tariffTable .table table th {
      padding: 5px; }
    .tariffTable .table table td {
      padding: 5px; }
  .tariffTable.active .heading {
    background: #e04227 url("../images/artop.png") no-repeat right 15px center; }
  .tariffTable.active .table {
    display: block;
    padding: 15px 5px; }

  .conditionTab {
    display: block;
    width: 100%; }

  .singleCarBlock {
    padding-top: 30px; }
    .singleCarBlock .gallery {
      display: block;
      clear: both;
      float: none;
      width: 600px;
      margin: 0 auto;
      max-height: 570px;
      overflow: hidden; }
    .singleCarBlock .productSummary {
      display: block;
      margin-top: 30px;
      float: left;
      width: calc(50% - 15px);
      margin-left: 0; }
      .singleCarBlock .productSummary .actionBlock {
        border-radius: 20px;
        padding: 15px; }
    .singleCarBlock .productPropers {
      display: block;
      margin-top: 30px;
      float: right;
      width: calc(50% - 15px); }

  .productTabsBlock {
    display: block; } }

@media (min-width: 320px) and (max-width: 767px) {
  .whatsapp-block {
    display: none;
  }
  .containerWrap {
    width: 100%;
    min-width: 100%; }
    .containerWrap .wrap {
      width: calc(100% - 20px);
      padding: 0 10px; }
    .containerWrap .twoWrap .leftWrap {
      width: 100%; }
    .containerWrap .twoWrap .rightWrap {
      width: 100%; }
    .containerWrap .twoColsWraps .leftColWrap {
      width: 100%; }
    .containerWrap .twoColsWraps .rightColWrap {
      width: 100%; }
    .containerWrap.contactsPage .twoColsWraps .rightColWrap {
      padding-right: 0;
      width: 100%; }

  .popup-form {
    top: 0;
    left: 0;
    margin: 0;
    width: 100%;
    border-radius: 0; }
    .popup-form .topBlock {
      padding: 15px 15px;
      border-radius: 0; }
      .popup-form .topBlock .heading {
        font-size: 20px;
        line-height: 24px; }
      .popup-form .topBlock .desc {
        display: block; }
      .popup-form .topBlock .close {
        top: 15px;
        right: 15px; }
    .popup-form .bottomBlock {
      padding: 25px 10px 30px;
      overflow: auto; }
      .popup-form .bottomBlock .cols .col {
        width: calc(100% - 20px);
        margin: 10px 0 0 20px; }
        .popup-form .bottomBlock .cols .col.small {
          width: calc(100% - 20px); }
      .popup-form .bottomBlock .successText {
        padding: 15px 0; }
        .popup-form .bottomBlock .successText .heading {
          margin-top: 15px;
          font-size: 20px;
          line-height: 24px;
          text-align: center; }
        .popup-form .bottomBlock .successText .desc {
          font-size: 14px;
          line-height: 18px;
          text-align: center; }
        .popup-form .bottomBlock .successText .btn {
          margin: 15px auto 0; }

  header {
    display: block;
    position: relative; }
    header:before {
      content: '';
      position: absolute;
      z-index: 10;
      lefT: 0;
      top: 0;
      width: 100%;
      height: 50px;
      background-color: #e9e9e9; }
    header .wrap {
      height: 115px;
      z-index: 501; }
    header .burgerBtn {
      display: block;
      position: absolute;
      left: 10px;
      top: calc(50% + 25px);
      margin-top: -10px;
      width: 20px;
      height: 20px;
      background: url("../images/burger.png") no-repeat center;
      cursor: pointer;
      z-index: 30;
      -webkit-transition-property: all;
      -moz-transition-property: all;
      -o-transition-property: all;
      transition-property: all;
      -webkit-transition-duration: 0.3s;
      -moz-transition-duration: 0.3s;
      -o-transition-duration: 0.3s;
      transition-duration: 0.3s; }
      header .burgerBtn:hover {
        opacity: .7; }
    header .logo {
      display: block;
      position: absolute;
      left: 50%;
      top: 58px;
      margin-left: -72px;
      -moz-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
      -webkit-transform: translate(0, 0);
      -o-transform: translate(0, 0);
      transform: translate(0, 0); }
      header .logo img {
        width: 144px; }
    header .citySelect {
      display: block;
      position: absolute;
      left: 10px;
      top: 11px; }
      header .citySelect .cityList {
        width: calc(100% + 20px);
        left: -10px; }
    header .adress {
      display: none; }
    header .whatsapp {
      left: auto;
      right: 10px;
      top: 5px;
      -moz-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
      -webkit-transform: translate(0, 0);
      -o-transform: translate(0, 0);
      transform: translate(0, 0); }
      header .whatsapp .label {
        display: block;
        font-size: 14px;
        line-height: 16px; }
      header .whatsapp .phone {
        display: block;
        margin-top: 4px;
        font-size: 15px;
        line-height: 16px; }
    header .phones {
      display: none; }
    header .btn {
      display: none; }
    header .btn--calculate {
      display: flex;
      align-items: center;
      position: absolute;
      font-size: 10px;
      padding: 0 15px;
      top: 25px;
      line-height: 1;
      width: 132px;
    }
    header .btn--calculate svg {
      width: 30px;
      margin-right: 11px;
    }
    header .selectLang {
      display: block;
      position: absolute;
      top: 70px;
      right: 10px;
      width: 50px; }
      header .selectLang .selectedLang {
        border-radius: 4px; }

  .fixed_menu header {
    display: block;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    background: #ffffff;
    box-shadow: 0 -5px 5px 5px rgba(0, 0, 0, 0.15); }

  .mainMenu {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 100000; }
    .mainMenu.active {
      display: block; }
    .mainMenu .close {
      display: block;
      position: absolute;
      right: 0;
      top: 0;
      width: 20%;
      height: 100%;
      cursor: pointer;
      background: rgba(0, 0, 0, 0.7); }
    .mainMenu .wrap {
      display: block;
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      box-sizing: border-box;
      position: absolute;
      left: 0;
      top: 0;
      width: 80%;
      height: 100%;
      overflow: auto;
      background: #303030;
      padding: 50px 0 0 0; }
    .mainMenu ul.menu {
      display: block;
      background: #ffffff; }
      .mainMenu ul.menu > li {
        display: block;
        position: relative;
        border-bottom: 1px solid #e1e2e2; }
        .mainMenu ul.menu > li > a {
          display: block;
          padding: 15px 20px 15px 20px;
          color: #2e2e2e;
          font-size: 18px;
          font-weight: 400;
          text-transform: uppercase;
          text-decoration: none; }
          .mainMenu ul.menu > li > a:hover {
            background-color: #d6371f;
            color: #ffffff; }
        .mainMenu ul.menu > li.current-menu-item > a {
          background-color: #d6371f;
          color: #ffffff; }
        .mainMenu ul.menu > li > ul {
          display: block; }
          .mainMenu ul.menu > li > ul > li {
            display: block; }
            .mainMenu ul.menu > li > ul > li > a {
              display: block;
              color: #2e2e2e;
              font-size: 16px;
              font-weight: 700;
              text-decoration: none;
              padding: 10px 20px 10px 30px; }
              .mainMenu ul.menu > li > ul > li > a:hover {
                color: #d6371f; }
            .mainMenu ul.menu > li > ul > li.current-menu-item > a {
              color: #d6371f; }
            .mainMenu ul.menu > li > ul > li > ul {
              display: block; }
              .mainMenu ul.menu > li > ul > li > ul > li {
                display: block; }
                .mainMenu ul.menu > li > ul > li > ul > li > a {
                  display: block;
                  color: #2e2e2e;
                  font-size: 15px;
                  font-weight: 400;
                  text-decoration: none;
                  padding: 10px 10px 10px 40px; }
                  .mainMenu ul.menu > li > ul > li > ul > li > a:hover {
                    color: #d6371f; }
                .mainMenu ul.menu > li > ul > li > ul > li.current-menu-item > a {
                  color: #d6371f; }
                .mainMenu ul.menu > li > ul > li > ul > li > ul {
                  display: none; }
    .mainMenu .searchform {
      display: block;
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      box-sizing: border-box;
      position: absolute;
      top: 5px;
      left: 10px;
      width: calc(100% - 20px);
      height: 40px;
      background-color: #ffffff;
      z-index: 50;
      border: 1px solid #303030; }
      .mainMenu .searchform .s {
        display: block;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        position: absolute;
        left: 0;
        top: 0;
        width: calc(100% - 40px);
        height: 100%;
        border: none;
        padding: 0 15px;
        border-radius: 20px 0 0 20px; }
        .mainMenu .searchform .s:focus {
          outline: none; }
      .mainMenu .searchform .searchsubmit {
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        width: 40px;
        height: 40px;
        background: url("../images/search.png") no-repeat center;
        border: none;
        cursor: pointer;
        border-radius: 0 20px 20px 0;
        -webkit-transition-property: all;
        -moz-transition-property: all;
        -o-transition-property: all;
        transition-property: all;
        -webkit-transition-duration: 0.3s;
        -moz-transition-duration: 0.3s;
        -o-transition-duration: 0.3s;
        transition-duration: 0.3s; }
        .mainMenu .searchform .searchsubmit:focus {
          outline: none; }
        .mainMenu .searchform .searchsubmit:hover {
          filter: invert(50%); }

	.frontSlider,.frontSlider .item .wrap {
		height: 240px !important;
        min-height: unset !important;
	}
    .frontSlider .slick-prev {
      left: 10px; }
    .frontSlider .slick-next {
      right: 10px; }
    .frontSlider .slick-dots {
      bottom: 10px; }

    .frontSlider .item .message {
      display: block;
      position: absolute;
      top: 50%;
      left: 30px;
      width: calc(100% - 50px);
      -moz-transform: translate(0px, -50%);
      -ms-transform: translate(0px, -50%);
      -webkit-transform: translate(0px, -50%);
      -o-transform: translate(0px, -50%);
      transform: translate(0px, -50%); }
      .frontSlider .item .message .text {
        max-width: 100%; }
        .frontSlider .item .message .text .heading {
          font-size: 22px;
          line-height: 24px; }
        .frontSlider .item .message .text .desc {
          display: block;
          margin-top: 10px;
          font-size: 15px;
          line-height: 18px; }
      .frontSlider .item .message .btn {
        margin-top: 15px;
        height: 35px;
        line-height: 35px; }
    .frontSlider .form {
      display: none; }
    .frontSlider.popup-calc .form {
      display: block;
      left: 50%;
      transform: translateX(-50%);
      right: auto;
      position: fixed;
      overflow: initial;
      height: auto;
      padding: 30px 30px 20px 30px;
    }
    .frontSlider.popup-calc .form .heading {
      font-size: 16px;
    }

  .frontBlock1 {
    padding: 30px 0 30px; }
    .frontBlock1 .title {
      font-size: 28px;
      line-height: 36px; }
    .frontBlock1 .carsCategoriesBlock {
      padding-top: 20px; }

  .frontBlock2 {
    padding: 30px 0 30px; }
    .frontBlock2 .title {
      font-size: 28px;
      line-height: 36px; }
    .archivePage .all_btn,
    .frontBlock2 .all_btn {
      display: block; }

  .frontBlock3 {
    padding: 30px 0 0; }
    .frontBlock3 .title {
      font-size: 28px;
      line-height: 36px; }
    .frontBlock3 .plusesBlock {
      padding-top: 10px; }

  .frontBlock4 {
    padding: 30px 0 30px; }
    .frontBlock4 .title {
      font-size: 28px;
      line-height: 36px; }
    .frontBlock4 .subtitle {
      font-size: 24px; }
    .frontBlock4 .twoCols .leftCol {
      width: calc(100% - 10px); }
    .frontBlock4 .twoCols .rightCol {
      width: calc(100% - 10px); }
    .frontBlock4 .textBlock {
      padding-top: 30px; }
    .frontBlock4 .videoBlock {
      height: 220px; }

  .requestBlock .wrap {
    height: auto;
    padding-top: 30px;
    padding-bottom: 30px; }
  .requestBlock .text {
    display: block;
    position: relative;
    left: auto;
    top: auto;
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
    font-size: 16px;
    line-height: 20px; }
    .requestBlock .text .heading {
      font-size: 28px;
      padding-bottom: 10px; }
  .requestBlock .form {
    display: block;
    position: relative;
    margin: 30px auto 0;
    width: 260px;
    right: auto;
    top: auto;
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0); }

  .frontBlock5 {
    display: none; }

  .frontBlock6 {
    display: none; }

  .frontBlock7 {
    padding: 30px 0 30px; }
    .frontBlock7 .title {
      display: block; }
    .frontBlock7 .items {
      padding-top: 20px;
      margin: 0 0 0 -10px; }
      .frontBlock7 .items .item {
        width: calc(50% - 10px);
        margin: 10px 0 0 10px; }

  footer {
    padding: 30px 0 30px; }
    footer .cols .col-1 {
      width: 100%; }
    footer .cols .col-2, footer .cols .col-3 {
      width: 100%; }
    footer .cols .col-4 {
      width: 100%;
      margin: 0; }
    footer .cols .col-5 {
      width: 100%; }
    footer .cols .col-6 {
      width: 100%; }
    footer .logo img {
      display: block;
      width: 160px;
      margin: 0 auto; }
    footer .adress {
      display: block;
      margin-top: 15px;
      text-align: center; }
    footer .download_btn {
      margin: 15px auto 0; }
    footer nav {
      display: none; }
    footer .whatsapp, footer .phones {
      display: block;
      margin: 15px 0 0;
      text-align: center; }
    footer .btn {
      display: block;
      margin: 15px auto 0;
      width: 280px;
      height: 40px;
      border-radius: 20px; }
    footer .social {
      margin-top: 15px;
      text-align: center; }
    footer .copyright {
      padding-top: 30px; }
    footer .madeby {
      display: block;
      margin: 20px auto 0; }

  .archivePage, .defaultPage {
    padding: 0 0 30px; }
    .archivePage .title, .defaultPage .title {
      font-size: 28px;
      line-height: 36px; }
    .archivePage .subtitle, .defaultPage .subtitle {
      display: block;
      font-size: 25px; }
    .archivePage .flampBlock, .defaultPage .flampBlock {
      margin-top: 30px; }
    .archivePage .newsArchiveBlock, .defaultPage .newsArchiveBlock {
      padding-top: 30px; }
    .archivePage .serviceArchiveBlock, .defaultPage .serviceArchiveBlock {
      padding-top: 0; }
    .archivePage .newsArchiveBlock, .defaultPage .newsArchiveBlock {
      padding-top: 20px; }
    .archivePage .relatedCars, .defaultPage .relatedCars {
      padding-top: 30px; }
    .archivePage .carsBlock, .defaultPage .carsBlock {
      display: block;
      padding-top: 10px; }
    .archivePage .h30, .defaultPage .h30 {
      display: block;
      padding-top: 0; }
    .archivePage .sepLine, .defaultPage .sepLine {
      display: block;
      clear: both;
      margin: 30px 0;
      height: 1px;
      background-color: #e9e9e9; }

  .breadcrumbs {
    border-top: 1px solid #303030;
    padding: 5px 0 15px; }
    .breadcrumbs a {
      font-size: 13px; }
    .breadcrumbs .sep {
      font-size: 13px; }
    .breadcrumbs .breadcrumb_last {
      font-size: 13px; }

  .pagination {
    display: block; }

  .carsCategoriesBlock .items {
    text-align: center; }
    .carsCategoriesBlock .items .item {
      width: 165px;
      margin: 5px 0 0 5px; }
    .carsCategoriesBlock .items .item .heading {
        bottom: 3px;
    }
    .carsCategoriesBlock .items .item:hover .heading {
        bottom: 70px;
    }

  .plusesBlock {
    display: block; }
    .plusesBlock.with_cond {
      margin-top: 30px; }
      .plusesBlock.with_cond .items .item {
        width: calc(100% - 30px); }
    .plusesBlock .items {
      margin: 0 0 0 -30px; }
      .plusesBlock .items .item {
        width: calc(100% - 30px);
        margin: 30px 0 0 30px; }
        .module_conditions .page_conditions .plusesBlock .items .item .img {
          left: -90px;
        }
        .plusesBlock .items .item .img {
          left: 20px; }
        .plusesBlock .items .item .desc {
          left: 120px;
          width: calc(100% - 140px); }

  .conditionsBlock .items .item {
    width: calc(100% - 20px);
    height: 260px; }

  .stocksArchiveBlock .items .item {
    width: calc(100% - 30px); }
    .stocksArchiveBlock .items .item .text {
      padding: 10px; }
      .stocksArchiveBlock .items .item .text .label1 {
        bottom: 1px; }
      .stocksArchiveBlock .items .item .text .label2 {
        bottom: -2px; }

  .reviewsArchiveBlock {
    display: block; }

  .serviceArchiveBlock .items {
    text-align: center; }
    .serviceArchiveBlock .items .item {
      width: calc(100% - 20px);
      text-align: left; }
      .serviceArchiveBlock .items .item .text {
        display: block;
        position: relative;
        padding: 10px; }

  .newsArchiveBlock .items .item {
    width: calc(100% - 20px);
    padding: 10px; }
    .newsArchiveBlock .items .item .img {
      display: block;
      position: relative;
      left: auto;
      top: auto;
      width: 240px;
      height: 240px; }
      .newsArchiveBlock .items .item .img img {
        border-radius: 7px; }
    .newsArchiveBlock .items .item .text {
      display: block;
      margin-top: 10px; }

  .filterBlock {
    display: block;
    margin-top: 30px;
    margin-bottom: 10px;
    border-radius: 20px;
    padding: 10px; }
    .filterBlock .cols {
      margin: -10px 0 0 -10px; }
      .filterBlock .cols .col {
        width: calc(50% - 10px);
        margin: 10px 0 0 10px; }
    .filterBlock select {
      display: block; }
    .filterBlock .inputText {
      display: block; }
    .filterBlock .inputSubmit {
      display: block;
      font-size: 12px; }

  .carsBlock .items {
    text-align: center; }
    .carsBlock .items .item {
      text-align: left;
      width: 280px; }

  .addReviewForm {
    position: relative;
    margin-top: 30px;
    border-radius: 10px;
    padding: 10px;
    padding-bottom: 60px;
    margin-bottom: 15px; }
    .addReviewForm .rows .row-1 {
      width: 100%; }
    .addReviewForm .rows .row-2 {
      width: 100%; }
    .addReviewForm .inputSubmit {
      display: block;
      position: absolute;
      left: 10px;
      bottom: 10px;
      width: calc(100% - 20px);
      margin: 0; }

  .contactMessageForm {
    display: block;
    position: relative;
    margin-top: 15px;
    border-radius: 10px;
    padding: 10px;
    padding-bottom: 60px;
    margin-bottom: 15px; }
    .contactMessageForm .rows .row-1 {
      width: 100%; }
    .contactMessageForm .rows .row-2 {
      width: 100%; }
    .contactMessageForm .inputSubmit {
      display: block;
      position: absolute;
      bottom: 10px;
      left: 10px;
      width: calc(100% - 20px);
      margin: 0; }

  .mapSection {
    margin-top: -15px;
    height: 300px; }

  .tariffTable .heading {
    padding: 15px 15px;
    background: #e9e9e9 url("../images/arbottom.png") no-repeat right 15px center;
    font-size: 20px;
    line-height: 27px; }
  .tariffTable .table {
    display: none;
    width: 100%; }
    .tariffTable .table table {
      width: 100%;
      border-collapse: collapse; }
      .tariffTable .table table tbody {
        width: 100%; }
      .tariffTable .table table tr {
        width: 100%; }
      .tariffTable .table table th {
        padding: 15px;
        color: #303030;
        font-size: 14px;
        font-weight: 700;
        line-height: 20px;
        text-align: left; }
      .tariffTable .table table td {
        padding: 15px;
        vertical-align: middle;
        color: #303030;
        font-size: 14px;
        font-weight: 400;
        line-height: 20px;
        background-color: #e9e9e9;
        border-top: 2px solid #ffffff;
        border-right: 1px solid #ffffff;
        text-align: left; }
        .tariffTable .table table td:first-child {
          border-radius: 4px 0 0 4px; }
        .tariffTable .table table td:last-child {
          border-right: none;
          text-align: right;
          border-radius: 0 4px 4px 0; }
        .tariffTable .table table td strong {
          font-weight: 700; }
        .tariffTable .table table td a {
          color: #e04227;
          font-size: 14px;
          font-weight: 700;
          line-height: 24px;
          text-decoration: none; }
          .tariffTable .table table td a:hover {
            text-decoration: underline; }
        .tariffTable .table table td .btn {
          display: -moz-inline-stack;
          display: inline-block;
          vertical-align: middle;
          zoom: 1;
          *display: inline;
          width: 130px;
          height: 36px;
          border-radius: 4px;
          background-color: #e04227;
          color: #ffffff;
          font-size: 14px;
          font-weight: 700;
          line-height: 36px;
          text-align: center;
          padding: 0;
          -webkit-transition-property: all;
          -moz-transition-property: all;
          -o-transition-property: all;
          transition-property: all;
          -webkit-transition-duration: 0.3s;
          -moz-transition-duration: 0.3s;
          -o-transition-duration: 0.3s;
          transition-duration: 0.3s; }
          .tariffTable .table table td .btn:hover {
            opacity: .7;
            text-decoration: none; }
  .tariffTable.active .heading {
    background: #e04227 url("../images/artop.png") no-repeat right 15px center; }
  .tariffTable.active .table {
    padding: 0;
    overflow: auto; }

  .conditionTab {
    width: 100%; }
    .conditionTab .heading {
      padding: 15px 15px;
      background: #e9e9e9 url("../images/arbottom.png") no-repeat right 15px center;
      font-size: 20px;
      line-height: 27px; }
    .conditionTab.active .heading {
      background: #e04227 url("../images/artop.png") no-repeat right 15px center; }
    .conditionTab.active .text {
      padding: 15px 15px; }

  .singleCarBlock {
    padding-top: 30px; }
    .singleCarBlock .gallery {
      width: 100%;
      float: none; }
      .singleCarBlock .gallery .slick-prev {
        left: 5px; }
      .singleCarBlock .gallery .slick-next {
        right: 5px; }
      .singleCarBlock .gallery .thubnailsList .slick-current .img > div {
        border: 1px solid #e03f23; }
      .singleCarBlock .gallery .thubnailsList .img {
        padding: 5px 2.5px 0; }
        .singleCarBlock .gallery .thubnailsList .img > div {
          border: 1px solid #ffffff; }
    .singleCarBlock .productSummary {
      display: block;
      float: none;
      width: 100%;
      margin: 15px auto 0; }
      .singleCarBlock .productSummary .actionBlock {
        display: block;
        margin-top: 10px;
        border-radius: 10px;
        border: 2px dotted #d4d4d4;
        background-color: #ffffff;
        padding: 10px; }
    .singleCarBlock .productPropers {
      display: block;
      float: none;
      width: 100%;
      margin: 15px auto 0; }

  .productTabsBlock {
    display: block; }
    .productTabsBlock .btns {
      display: block; }
      .productTabsBlock .btns .btn {
        margin-right: 5px;
        height: 30px;
        border-radius: 15px;
        padding: 0 15px;
        line-height: 30px; }
    .productTabsBlock .outs {
      padding-top: 15px; }

  .requestBtn {
    margin-top: 10px;
    padding: 0 15px; }

  .fzf_block {
    margin-top: 30px; }
    .fzf_block .img {
      width: 100%;
      padding: 0;
      font-size: 70px;
      text-align: left;
      border: none;
      height: auto; }
    .fzf_block .desc {
      margin-top: 20px;
      width: 100%;
      padding: 0; }
      .fzf_block .desc .heading {
        display: none; }
  
  .conditions {
    width: 100%;
  }

  .conditions__item-text {
    font-size: 12px;
  }
}

.fa-fb:before {
    content: "\f09a";
}
.fa-yt:before {
    content: "\f167";
}
.fa-ig:before {
    content: "\f16d";
}
i.fa.fa-fl {
    background-image: url(/assets/images/flampico.png);
    width: 34px;
    height: 34px;
}

.frontSlider .form .inputText.phonemask,
.requestBlock .form .inputText.phonemask,
.addReviewForm .inputText.phonemask,
.popup-form .bottomBlock .inputText.phonemask {
    padding: 0 20px 0 48px;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder { color: #bbbbbb; }

li.country span.dial-code,
li.country span.country-name {
    font-size: 11px;
}

.popup-calc.frontSlider,
.popup-calc-desktop.frontSlider {
  display: none;
}

.popup-form.active.frontSlider,
.popup-calc-desktop.frontSlider {
  display: block;
}

.popup-calc-btn {
  position: fixed;
  bottom: 15px;
  left: 15px;
  max-width: 74px;
  background: #D1341D;
  box-shadow: 0px -5px 1px -2px #FF6953;
  border-radius: 10px;
  padding: 6px 9px;
  cursor: pointer;
  z-index: 50;
}

.popup-calc-btn img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 8px;
}

.popup-calc-btn p {
  width: 100%;
  font-size: 8px;
  text-align: center;
  color: #fff;
}

.popup-calc-desktop {
  width: 100%;
  max-width: 685px;
  border-radius: 33px;
  background-color: #000;
}

.popup-calc-desktop .close {
  top: 16px;
  right: 20px;
}

.popup-calc-desktop__inner {
  display: flex;
  padding: 56px 43px 40px 35px;
  margin-top: 0;
  height: auto;
  background-image: url('/assets/css/images/popup-calc-bg.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 33px;
}

.popup-calc-desktop__inner.frontSlider {
  margin-top: 0;
}

.popup-calc-desktop__item {
  width: 50%;
}

.popup-calc-desktop__heading {
  margin-bottom: 46px;
  font-weight: 700;
  color: #fff;
  font-size: 24px;
  line-height: 28px;
}

.popup-calc-desktop__desc {
  position: relative;
  font-weight: 400;
  font-size: 20px;
  line-height: 23px;
  color: #fff;
  z-index: 1;
}

.popup-calc-desktop__desc::after,
.popup-exit__desc::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: -7px;
  background-image: url('/assets/css/images/popup-calc-text.svg');
  background-repeat: no-repeat;
  width: 306px;
  height: 50px;
  z-index: -1;
}

.popup-calc-desktop__desc span {
  color: #E03F23;
}

.popup-calc-desktop__item .form {
  padding: 0;
  position: static;
  background-color: transparent;
  box-shadow: none;
  max-width: 280px;
  margin-left: auto;
}

.popup-calc-desktop__item .form select {
  margin-top: 0;
}

.popup-calc-desktop__item .form .price {
  position: relative;
}

.popup-calc-desktop__item .form .price::after {
  content: '';
  position: absolute;
  left: -100%;
  top: -50%;
  transform: translate(-50%, -50%);
  width: 209px;
  height: 115px;
  background-image: url('/assets/css/images/popup-calc-arrow.svg');
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 1024px) {
  .popup-calc-btn {
    display: none;
  }
}

@media (min-width: 1025px) {
  .phone-buttons {
    display: none;
  }
}

@media (max-width: 1024px) {
  .phone-buttons {
    position: fixed;
    bottom: 0;
    top: auto;
    left: auto;
    display: flex;
    width: 100%;
    z-index: 500;
  }

  .phone-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    background: #D1341D;
    box-shadow: 0px -5px 0px #FF6953;
    border-radius: 5px;
    color: white;
    min-height: 35px;
    line-height: 1;
    text-decoration: none;
  }

  .phone-buttons a.wa {
    background: #0967C7;
    box-shadow: 0px -5px 0px #107CEA;
  }

  .phone-buttons a.wa svg {
    height: 35px;
    width: 35px;
  }

  .phone-buttons a span {
    margin-left: 0.5rem;
    font-size: 14px;
    margin-top: 2px;
  }

  .phone-buttons a.wa span {
    margin-top: 0;
  }
}

@media (max-width: 360px) {
  .phone-buttons a span {
    font-size: 10px;
  }
}

.working-hours {
  position: absolute;
  display: flex;
  width: 100%;
  align-items: center;
  top: -20px;
  padding-left: 6px;
  background: #E9E9E9;
  border-radius: 15px;
  font-size: 12px;
  line-height: 14px;
}

.working-hours span {
  top: 12px;
  left: 12px;
  width: 8px;
  height: 8px;
  background: #D1341D;
  border-radius: 50%;
  margin-right: 9px;
  animation: blinker .7s cubic-bezier(.5, 0, 1, 1) infinite alternate;
}

.popup-exit {
    background-image: url('images/popup-exit.jpg');
    background-repeat: none;
    background-size: cover;
    text-align: center;
    color: #FFFFFF;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 44px;
    padding-bottom: 47px;
    max-width: 570px;
}

.popup-exit .close {
  width: 30px;
  height: 30px;
  background: url(images/exit.svg) no-repeat center center / 100%;
}

.popup-exit__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.popup-exit__title {
    width: 100%;
    font-weight: 700;
    font-size: 32px;
    line-height: 38px;
    margin-bottom: 31px;
}

.popup-exit__desc {
  position: relative;
  width: 100%;
  max-width: 370px;
  font-weight: 400;
  font-size: 24px;
  line-height: 28px;
  margin-bottom: 40px;
}

.popup-exit__desc span {
  color: #D1341D;
}

.popup-exit__desc::after {
  width: 333px;
  height: 60px;
  left: auto;
  right: 10px;
  background-image: url("images/popup-exit-text.svg");
}

.popup-exit__btn {
    display: flex;
    max-width: 270px;
    background: rgba(9, 199, 103, 0.73);
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    line-height: 30px;
    padding-left: 40px;
    padding-right: 46px;
    padding-top: 5px;
    padding-bottom: 5px;
    color: #fff;
    text-decoration: none;
    align-items: center;
}

.popup-exit__btn span {
    line-height: 0;
    margin-right: 5px;
}

.popup-exit {
    background-image: url('images/popup-exit.jpg');
    background-repeat: none;
    background-size: cover;
    text-align: center;
    color: #FFFFFF;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 44px;
    padding-bottom: 47px;
    max-width: 570px;
}

.popup-exit .close {
  width: 30px;
  height: 30px;
  background: url(images/exit.svg) no-repeat center center / 100%;
}

.popup-exit__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.popup-exit__title {
    width: 100%;
    font-weight: 700;
    font-size: 32px;
    line-height: 38px;
    margin-bottom: 31px;
}

.popup-exit__desc {
  position: relative;
  width: 100%;
  max-width: 370px;
  font-weight: 400;
  font-size: 24px;
  line-height: 28px;
  margin-bottom: 40px;
}

.popup-exit__desc span {
  color: #D1341D;
}

.popup-exit__desc::after {
  width: 333px;
  height: 60px;
  left: auto;
  right: 10px;
  background-image: url("images/popup-exit-text.svg");
}

.popup-exit__btn {
  display: flex;
  max-width: 270px;
  background: rgba(9, 199, 103, 0.73);
  border-radius: 25px;
  font-weight: 700;
  font-size: 14px;
  line-height: 30px;
  padding-left: 40px;
  padding-right: 46px;
  padding-top: 5px;
  padding-bottom: 5px;
  color: #fff;
  text-decoration: none;
  align-items: center;
}

.popup-exit__btn span {
    line-height: 0;
    margin-right: 5px;
}

/* popup-city */
.popup-city {
  background-image: url('images/popup-city.png');
  background-repeat: none;
  background-size: cover;
  text-align: center;
  color: #FFFFFF;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 55px 35px 42px 35px;
  width: 100%;
  max-width: 615px;
  overflow: hidden;
  box-shadow: 0px 20px 35px 0px rgba(0, 0, 0, 0.35);
  margin: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 33px;
  visibility: visible !important;
  opacity: 1 !important;
}

.popup-city::after {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0, 0.69);
}

.popup-city__inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  z-index: 1;
}

.popup-city__title {
  width: 100%;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: left;
  margin-bottom: 21px;
}

.popup-city__title span {
  display: inline-flex;
  position: relative;
  color: #D1341D;
}

.popup-city__title span::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% + 8px);
  height: 100%;
  left: -5px;
  right: auto;
  border-radius: 5px;
  background-color: rgba(217, 217, 217, 0.79);
  z-index: -1;
  top: 3px;
}

.popup-city__content {
  display: flex;
  width: 100%;
  margin-right: 55px;
  margin-bottom: 46px;
}

.popup-city__list:first-of-type {
  margin-right: auto;
}

.popup-city__list li {
  text-align: left;
  display: flex;
  align-items: start;
  margin-top: 10px;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal; 
  width: 245px;
}

.popup-city__list li a {
  display: block;
  text-decoration: none !important;
  border-radius: 11.184px;
  background: linear-gradient(180deg, #CD301B 0%, #DF3E23 100%);
  width: 65px;
  text-align: center;
  font-size: 8px;
  font-weight: 700;
  line-height: 10px;
  margin-left: auto;
  color: white !important;
  padding-top: 6px;
  padding-bottom: 6px;
}

.popup-city__list li:first-child {
  margin-top: 0;
}

@media (max-width: 767px) {
  .popup-city {
    top: 20px;
    padding: 35px;
    max-width: 400px;
    background-position: right;
  }

  .popup-city__title {
    font-size: 16px;
  }

  .popup-city__content {
    flex-wrap: wrap;
    margin-right: 0;
    margin-bottom: 0;
  }

  .popup-city__list {
    width: calc(50% - 10px);
    margin-bottom: 10px;
  }

  .popup-city__list:first-of-type {
    width: 50%;
    padding-right: 10px;
  }

  .popup-city__list li {
    font-size: 16px;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .popup-city {
    max-width: 230px;
  }

  .popup-city__content {
    flex-wrap: wrap;
  }

  .popup-city__list {
    width: 100% !important;
    padding-right: 0 !important;
  }
}

/* */

.metro,
.districts {
  padding-top: 60px;
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 40px;
  margin-left: -15px;
  margin-right: -15px;
}

.districts {
  padding-top: 30px;
}

.metro__item,
.districts__item {
  width: 25%;
  max-width: 25%;
  padding: 0 15px;
  margin-bottom: 1rem;
  box-sizing: border-box;
}

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

.districts__item ul {
  display: flex;
  flex-wrap: wrap;
}

.districts__item li {
  width: 50%;
}

.metro__item-title {
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.metro__item[data-line="Солнцевская"] li::before {
  background-color: #FAC618;
}

.metro__item[data-line="Сокольническая"] li::before {
  background-color: #DA2128;
}

.metro__item[data-line="Калужско-Рижская"] li::before {
  background-color: #F58220;
}

.metro__item[data-line="Бутовская"] li::before {
  background-color: #ACBFE3;
}

.metro__item[data-line="Серпуховско-Тимирязевская"] li::before {
  background-color: #A1A2A3;
}

.metro__item[data-line="Замоскворецкая"] li::before {
  background-color: #48B85E;
}

.metro__item[data-line="Люблинско-Дмитровская"] li::before {
  background-color: #9ACE01;
}

.metro--similar,
.districts--similar {
  margin-left: 0;
  margin-right: 0;
}

.metro--similar .metro__item,
.districts--similar .districts__item {
  width: 100%;
  max-width: 100%;
  padding: 0;
}

.metro--similar .subtitle,
.districts--similar .subtitle {
  margin-bottom: 2rem;
}

.metro--similar ul,
.districts--similar ul {
  display: flex;
  flex-wrap: wrap;
  /* margin-left: -20px;
  margin-right: -20px; */
}

.metro--similar li,
.districts--similar li {
  width: calc(25% - 20px);
  /* padding: 0 20px; */
  margin: 10px 20px 0 0;
}

@media (max-width: 1024px) {
  .metro:not(.metro--similar) .metro__item,
  .districts:not(.metro--similar) .districts__item {
    width: 33.33%;
    max-width: 33.33%;
  }

  .metro--similar li,
  .districts--similar li {
    width: calc(33.33% - 20px);
  }
}

@media (max-width: 767px) {
  .metro:not(.metro--similar) .metro__item
  .districts:not(.districts--similar) .districts__item {
    width: 50%;
    max-width: 50%;
  }

  .metro--similar li,
  .districts--similar li {
    width: calc(50% - 20px);
  }
}

@media (max-width: 600px) {
  .districts__item li {
    width: 100%;
  }

  .districts:not(.districts--similar) .districts__item,
  .metro:not(.metro--similar) .metro__item {
    width: 100%;
    max-width: 100%;
  }

  .metro--similar li,
  .districts--similar li {
    width: calc(100% - 20px);
  }
}

.text-block {
  padding-top: 60px;
}

.text-block h2,
.text-block h3,
.text-block h4,
.text-block h5,
.text-block h6 {
  margin-bottom: 2rem;
}

.medium-text,
.aboutPage .medium-text {
  font-weight: 500;
}

.bigmb,
.aboutPage .bigmb {
  margin-bottom: 50px;
}

.aboutPage {
  overflow: visible;
}

.aboutPage h1 {
  margin-bottom: 18px;
}

.aboutPage h2 {
  font-weight: 400;
  font-size: 24px;
  line-height: 24px;
  margin-bottom: 40px;
  margin-top: 20px;
  font-weight: 500;
}

.aboutPage ul {
  margin-left: 2rem;
  margin-bottom: 2rem;
}

.aboutPage ul > li:before {
  margin-right: 1rem;
}

.aboutPage ul > li {
  line-height: 21px;
}

.blockquote {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 56px 90px;
  margin-bottom: 57px;
}

.blockquote::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 142px;
  height: 116px;
  background-image: url('/assets/css/images/quote.svg');
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.3;
  z-index: -1;
}

.blockquote p {
  width: 100%;
  font-weight: 700;
  font-size: 40px;
  line-height: 60px;
  letter-spacing: -0.025em;
  color: #111827;
}

.blockquote span {
  width: 100%;
  text-align: right;
}

.timeline {

}

.timeline__inner {
  display: flex;
  margin-top: 30px;
  padding-top: 220px;
  padding-bottom: 220px;
  margin-bottom: 30px;
}

.timeline-item {
  position: relative;
  background-color: #E03F23;
  width: 240px;
  height: 40px;
}

.timeline-item:first-child {
  border-radius: 20px 0px 0px 20px;
}

.timeline-item:last-child {
  border-radius: 0px 20px 20px 0px;
}

.timeline-item::after {
  content: '';
  position: absolute;
  top: auto;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);

  border-left: 26px solid transparent;
  border-right: 26px solid transparent;
  border-top: 36px solid #E03F23;
  z-index: -1;
}

.timeline-item:nth-child(2n) {
  background-color: #303030;
}

.timeline-item:nth-child(2n)::after {
  top: -20px;
  bottom: auto;
  border-top: none;
  border-left: 26px solid transparent;
  border-right: 26px solid transparent;
  border-bottom: 36px solid #303030;
}

.timeline-item__circle,
.timeline-item__text {
  position: absolute;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.timeline-item__circle {
  top: -220px;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  background-color: #E03F23;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  color: #FFF2F2;
  text-align: center;
}

.timeline-item__circle div {
  width: 100%;
  line-height: 1.2;
}

.timeline-item__circle::after {
  content: '';
  position: absolute;
  bottom: -80px;
  height: 65px;
  border: 2px solid #E03F23;
  border-radius: 10px;
}

.timeline-item:nth-child(2n) .timeline-item__circle {
  top: auto;
  bottom: -220px;
  background-color: #303030;
}

.timeline-item:nth-child(2n) .timeline-item__circle::after {
  bottom: auto;
  top: -80px;
  border-color: #303030;
}

.timeline-item__text {
  bottom: -150px;
  width: 150px;
  text-align: center;
}

.timeline-item__text span {
  display: block;
  color: #E03F23;
  font-weight: 700;
  margin-bottom: 18px;
}

.timeline-item:nth-child(2n) .timeline-item__text {
  top: -150px;
  bottom: auto;
}

.timeline-item:nth-child(2n) .timeline-item__text span {
  color: #303030;
}

.timeline-item:nth-child(2n) .timeline-item__text--bigtext {
  /* top: -250px; */
  width: 340px;
}

.timeline-item:last-child .timeline-item__text {
  width: 210px;
  bottom: -190px;
}

.advantages {

}

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

.advantages__item {
  width: 33.33333%;
  flex: 0 0 33.33333%;
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
  margin-bottom: 60px;
}

.advantages__item-inner {
  display: flex;
  align-items: center;
  padding: 44px 40px;
  border: 2px solid #D4D4D4;
  border-radius: 33px;
  height: 71px;
}

.advantages__img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-right: 50px;
}

.advantages__item-inner p {
  margin-bottom: 0;
  font-weight: 700;
}

.team {
  margin-bottom: 3rem;
}

.team__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-left: -130px;
  margin-right: -130px;
  padding-bottom: 130px;
}

.team__item {
  padding-left: 15px;
  padding-right: 15px;
  width: 33.3333%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  box-sizing: border-box;
  text-align: center;
  margin-bottom: -70px;
  cursor: pointer;
}

.team__item-name {
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
  max-width: 195px;
  margin: 0 auto;
  margin-bottom: 1rem;
}

.team__item-text {
  max-width: 230px;
  line-height: 24px;
  margin: 0 auto;
}

.team__item-img {
  border-radius: 100%;
  margin-bottom: 1rem;
}

.gallery {
  margin-bottom: 50px;
}

.gallery__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-left: -25px;
  margin-right: -25px;
}

.gallery__item {
  width: 50%;
  padding: 0 25px;
  margin-bottom: 2rem;
  box-sizing: border-box;
}

.gallery__item img {
  display: block;
  margin: 0 auto;
}

.gallery__item--border img {
  border: 3px solid #E03E23;
}

@media (max-width: 1600px) {
  .team,
  .advantages,
  .gallery {
    overflow: hidden;
  }
  .team__inner {
    margin-left: -15px;
    margin-right: -15px;
  }
  .team__item {
    margin-bottom: 1rem;
  }
}

@media (max-width: 1024px) {
  .blockquote {
    padding: 30px;
    margin-bottom: 0;
  }
  .blockquote::before {
    width: 68px;
    height: 68px;
  }
  .blockquote p {
    font-size: 30px;
    line-height: 38px;
    letter-spacing: -0.025em;
  }
  .advantages__item {
    width: 50%;
    flex: 0 0 50%;
    margin-bottom: 14px;
  }
  .advantages__item-inner {
    padding: 36px 30px;
  }
  .advantages__img {
    margin-right: 18px;
  }
  .timeline-item__text p {
    font-size: 12px;
    max-width: 250px;
    margin: 0 auto;
  }
  .team__inner {
    padding-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }
  .team__item {
    width: 50%;
    flex: 0 0 50%;
    margin-bottom: 30px;
  }
  .gallery__item img {
    box-sizing: border-box;
  }
}

@media (max-width: 767px) {
  .timeline {
    margin-bottom: 4rem;
  }
  .timeline__inner {
    flex-wrap: wrap;
    padding-top: 1rem;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .timeline-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    background-color: transparent !important;
    margin-bottom: 1rem;
  }
  .timeline-item::after,
  .timeline-item__circle::after {
    content: none !important;
  }
  .timeline-item__circle {
    margin-bottom: 1rem;
  }
  .timeline-item__circle,
  .timeline-item__text {
    position: static;
    transform: none;
  }
  .timeline-item__text {
    width: 100%;
  }
  .timeline-item__text p {
    max-width: 300px;
    font-size: 16px;
  }
  .timeline-item__text,
  .timeline-item:last-child .timeline-item__text {
    width: 100%;
  }
  .timeline-item:nth-child(2n) .timeline-item__text {
    order: 2;
  }
  .timeline-item:nth-child(2n) .timeline-item__circle {
    order: 1;
  }
  .timeline-item:nth-child(2n) .timeline-item__text--bigtext {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .advantages__item,
  .team__item,
  .gallery__item {
    width: 100%;
    flex: 0 0 100%;
  }

  .blockquote p {
    font-size: 20px;
    line-height: 28px;
  }
}

@keyframes blinker {
  from {
    transform: scale(1, 1);
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: scale(.2, .2);
  }
}

@keyframes blinking{
  0%, to {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

	/*блок социальные сети в формах*/
	.popup_social_wrap
	{
		display: block;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
		width: 100%;
		border-radius: 20px;
		padding: 10px 20px;
		border: none;
		background: #fff
	}
	.custom-checkbox {
		position: absolute;
		z-index: -1;
		opacity: 0;
	}
	.popup_social_heading
	{
		min-height:30px;
		padding-right:30px;
		font-style: normal;
		font-weight: 400;
		font-size: 13px;
		line-height: 15px;
		color: #303030;
		padding-right: 20px;
	}

	.popup_social_heading.open
	{
	}

	.popup_social_heading+.popup_social_links {
		margin-top:10px;
		padding:10px;
		display:block;
	}

	.popup_social_heading.open+.popup_social_links
	{
		display:block;
	}

	.popup_social_links label
	{
		display: inline-flex;
		align-items: center;
		user-select: none;
	}
	.popup_social_links label::before {
		content: '';
		display: inline-block;
		width: 40px;
		height: 40px;
		flex-shrink: 0;
		flex-grow: 0;
		margin-right: 10px;
		background-repeat: no-repeat;
		background-position: center center;
		background-size: auto;
		cursor:pointer;
		background-image:url("../images/sprite.png");
	}
	.popup_social_links .custom-checkbox+label.soc_max::before {
		width: 40px;
		height: 40px;
		background-image:url("../images/max-icon.png");
		background-color: transparent;
	}
	.popup_social_links .custom-checkbox+label.soc_telegram::before {
		background-position: -1px -82px;
	}
	.popup_social_links .custom-checkbox+label.soc_whatsapp::before {
		background-position: -42px -82px;
	}
	.popup_social_links .custom-checkbox+label.soc_phone::before {
		background-position: -83px -82px;
	}
	.popup_social_links .custom-checkbox:not(:disabled):not(:checked)+label.soc_telegram:hover::before {
		background-position: 0 -40px;
	}
	.popup_social_links .custom-checkbox:not(:disabled):not(:checked)+label.soc_whatsapp:hover::before {
		background-position: -41px -41px;
	}
	.popup_social_links .custom-checkbox:not(:disabled):not(:checked)+label.soc_phone:hover::before {
		background-position: -82px -41px;
	}

	.popup_social_links .custom-checkbox:checked+label.soc_max::before {
        background-color: #4d81ce;
        border-radius: 8px;
	}
	.popup_social_links .custom-checkbox:checked+label.soc_telegram::before {
		background-position: 0 0;
	}
	.popup_social_links .custom-checkbox:checked+label.soc_whatsapp::before {
		background-position: -41px 0;
	}
	.popup_social_links .custom-checkbox:checked+label.soc_phone::before {
		background-position: -82px 0;
	}
	/*поля ввода времени*/
	input.clock
	{
		display: block;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
		width: 100%;
		height: 40px;
		border-radius: 20px;
		padding: 0 20px;
		border: none;
		background-image: url("../images/popup_clock.png") !important;
		background-color: #ffffff;
		background-repeat:no-repeat;
		background-position:right 15px center;
		margin-top:5px;
	}
	.col .inputBlock + .inputBlock
	{
		margin-top:20px;
	}
	.inputRow .popup_social_wrap
	{
		margin-top: 10px;
	}
	/*Форма на главной в слайдере*/
	.frontSlider.containerWrap,
	.frontSlider .item .wrap
	{
		/*
		min-height: 700px;
		height:auto;
		*/
	}
	.frontSlider.containerWrap .form
	{
		height: 90%;
		overflow-y: auto;
		right: 45px;
	}
	/*Убрать полосу прокрутки у элемента*/
	.frontSlider.containerWrap .form::-webkit-scrollbar {
		width: 0;
	}


	.slider_form .form .popup_social_wrap {
		background: #E9E9E9;

	}

	/*попап с расчетом на десктопах */
	.popup-calc-desktop .inputRow.social_wrap
	{
		margin-top: 10px;
	}

	@media (min-width: 320px) and (max-width: 767px) {
		.popup-calc-desktop
		{
			max-width: none;
			max-height: 100%;
			overflow-y: auto;
		}
		.popup-calc-desktop__inner
		{
			background-attachment: fixed;
		}
		.popup-calc-desktop .popup-calc-desktop__inner {
			flex-wrap:wrap;
		}
		.popup-calc-desktop .popup-calc-desktop__inner .popup-calc-desktop__item
		{
			width: 100%;
			margin-bottom: 30px;
		}
		.popup-calc-desktop__item .form
		{
			display:block;
			margin-left:unset;
			max-width: none;
			margin-left: unset;
			width: 100%;
		}

	}

	/*попап с экспресс заявка */

	.popup-req .popup_social_heading
	{
		font-size:16px
	}

	@media (min-width: 320px) and (max-width: 767px)
	{
		.popup-form .bottomBlock
		{
			box-sizing: border-box;
			max-height: 90vh;

		}

		.popup-form.popup-formslider_popup {
			top: 0;
			left: 0;
			margin: 0;
			width: 100%;
			border-radius: 0;
		}

		.popup-form .bottomBlock .cols .col
		{
			margin: 20px 0 0 20px;
		}

	}
