@charset "UTF-8";
html {
  scrollbar-width: 5px;
  -ms-overflow-style: auto;
}

::-webkit-scrollbar {
  /* chrome based */
  width: 5px;
  /* ширина scrollbar'a */
  background: #858585;
  /* опционально */
}

::-webkit-scrollbar-thumb {
  background: #b9b9b9;
}

body {
  -webkit-tap-highlight-color: transparent;
}

/*** delete after develop */
/*** end delete ***********/
@font-face {
  font-family: 'PragmaticaC';
  font-style: normal;
  font-weight: 200;
  src: url("../fonts/PragmaticaC.eot?#iefix") format("embedded-opentype"), url("../fonts/PragmaticaC.woff") format("woff"), url("../fonts/PragmaticaC.woff2") format("woff2");
  font-display: auto;
}

@font-face {
  font-family: 'LADAPragmatica';
  font-style: normal;
  font-weight: 200;
  src: url("../fonts/PragmaticaLightC.otf");
  font-display: auto;
}

@font-face {
  font-family: 'LADAPragmatica';
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/LADA_Pragmatica-Bold.otf");
  font-display: auto;
}

@font-face {
  font-family: 'LADAPragmatica';
  font-style: normal;
  font-weight: normal;
  src: url("../fonts/LADA_Pragmatica-Regular.otf");
  font-display: auto;
}

.header {
  height: 80px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all .6s ease;
  transition: all .6s ease;
  z-index: 15;
  font-family: 'LADAPragmaticaC', Roboto, sans-serif;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(transparent));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent);
  color: #fff;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2000;
}

.header a {
  text-decoration: none;
  color: #66727d;
}

.header__logo {
  margin-right: 70px;
}

.header__container,
.submenu-container {
  max-width: 1371px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
}

.logo__img {
  width: 190px;
  height: 40px;
}

.logo-mobile {
  display: none;
}

.navList {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #fff;
  padding-bottom: 8px;
}

.navList .nav__item {
  position: relative;
  text-decoration: none;
  font-style: normal;
  font-weight: 700;
  font-size: 11px;
  line-height: 21px;
  letter-spacing: .02em;
  text-transform: uppercase;
  margin-right: 34px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: #fff;
}

.navList .nav__item:hover {
  color: #e37639;
}

.navList .nav__item.active {
  color: #e37639;
}

.navList .nav__item.active::after {
  content: "";
  position: absolute;
  top: 20px;
  z-index: 10;
  left: calc(50% - 16px);
  border: 16px solid transparent;
  border-bottom-color: #f7f8f8;
}

.nav__item {
  cursor: pointer;
  font-family: 'LADAPragmatica';
}

.navDesktop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
}

.active-header {
  background: #fff;
  color: #66727d;
}

.active-header .navList {
  border-bottom: 1px transparent solid;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.active-header .nav__item {
  color: #66727d;
}

.menu-mob-burger {
  display: none;
}

.menu-mobile {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.6s, visibility 0s linear 0.3s;
  transition: opacity 0.6s, visibility 0s linear 0.3s;
}

.navList ul {
  list-style: none;
}

.menu-mobile {
  position: fixed;
}

.submenu {
  position: absolute;
  background: #f7f8f8;
  width: 100%;
  top: -5000px;
  left: 0;
  padding: 0 20px;
  height: auto;
  opacity: 0;
  -webkit-transition: height,opacity .5s;
  transition: height,opacity .5s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: -22;
  overflow-y: scroll;
}

.submenu.active {
  top: 79px;
  opacity: 1;
  z-index: 2;
  max-height: calc(100vh - 80px);
}

.submenu-content {
  width: 100%;
  height: 100%;
  padding-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.shadowOverlay {
  content: "";
  display: none;
  /* height: calc(100% - 81px); */
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  background: rgba(1, 1, 1, 0.5);
  z-index: -1;
  min-height: 100px;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

.shadowOverlay.active {
  display: block;
}

.submenu-cars,
.submenu-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 0 40px 0;
}

.cars__car {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-size: 0 0;
  padding: 35px 15px 20px;
  background-repeat: no-repeat;
  opacity: 1;
  width: 25%;
}

.cars__car:hover {
  background-color: #fff;
}

.close-submenu-button {
  position: absolute;
  top: 10px;
  right: 15px;
  border: none;
  background: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}

.close-submenu-button:hover {
  background-color: #e37639;
}

.close-submenu-button:hover path {
  fill: #fff;
}

.back-mobile {
  display: none;
}

.add-services {
  margin-top: 20px;
  padding: 0 0 60px;
}

.services-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: auto;
}

.services__item {
  position: relative;
  height: auto;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  -ms-flex-preferred-size: calc(25% + 1px);
      flex-basis: calc(25% + 1px);
  margin-left: -1px;
  background-color: #fff;
  color: inherit;
}

.services__item:first-child {
  margin-left: 0;
}

.car__background {
  width: 100%;
  height: 130px;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
}

.cars__car:hover .car__background {
  opacity: 1;
}

.item__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 168px;
  border: 1px solid #d9dcdc;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-transform: uppercase;
  font-family: 'LADAPragmatica';
  font-weight: 700;
}

.item__img {
  width: 40px;
  height: 40px;
  margin: 0 0 15px 0;
}

.background__img {
  height: 100%;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.car__img {
  text-align: left;
  position: relative;
}

.car__img img {
  width: 100%;
  margin-top: -15px;
}

.car__mods {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.car__mods a,
.car__mods span {
  text-transform: uppercase;
  padding: 5px 0 0 0;
  font-weight: 700;
  font-family: 'LADAPragmatica', Roboto, sans-serif;
  display: inline;
  width: 100%;
  color: inherit;
  font-size: 17px;
}

.car__mods a svg,
.car__mods span svg {
  display: none;
}

.tabs__menu {
  list-style: none;
  width: auto;
  border-right: 1px solid #d9dcdc;
  display: inline-block;
  width: auto;
}

.submenu-nav {
  font-weight: 400;
}

.tabs__item {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 14px 0;
  font-size: 16px;
  line-height: 1;
  color: #66727d;
  cursor: pointer;
  height: 40px;
  position: relative;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-right: 38px;
}

.tabs__item span {
  display: inline;
  color: inherit;
  font-size: inherit;
  font-weight: normal;
  width: auto;
}

.tabs__item:hover {
  color: #e37639;
}

.tabs__item.active {
  color: #e37639;
}

.tabs__item.active::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: -1px;
  content: "";
  width: 4px;
  -webkit-transition: all .15s;
  transition: all .15s;
  background-color: #e37639;
}

.submenu-nav__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-left: 100px;
  display: none;
}

.submenu-nav__menu.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.submenu-nav__list {
  list-style: none;
}

.submenu-nav__item {
  font-size: 16px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 14px;
}

.submenu-nav__item a:hover {
  color: #e37639;
}

.mob {
  display: none;
}

.myLada {
  position: absolute;
  top: 0;
  right: 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 70px;
  height: 20px;
  background: #e37639;
}

.myLada a {
  font-size: 12px;
  color: #fff;
  text-transform: uppercase;
}

@media screen and (max-width: 1170px) {
  .logo__img {
    width: 110px;
    height: inherit;
  }
}

@media screen and (max-width: 1030px) {
  .navList .nav__item {
    margin-right: 20px;
  }
}

@media screen and (max-width: 900px) {
  .pc {
    display: none;
  }
  .mob {
    display: block;
  }
  .navDesktop {
    display: none;
  }
  .header__container {
    padding: 0;
  }
  .header.active {
    background: #fff;
  }
  /* Кнопка бургера */
  .menu-mob-burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .menu-mob-burger #menu__toggle {
    display: none;
  }
  .menu-mob-burger .menu__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
    width: 24px;
    height: 19px;
    cursor: pointer;
    z-index: 1;
  }
  .menu-mob-burger .menu__btn > span {
    width: 24px;
    height: 3px;
    background-color: #e37639;
    display: block;
    -webkit-transition: all .3s;
    transition: all .3s;
  }
  .menu-mob-burger #menu__toggle:checked ~ .menu__btn > span {
    opacity: 0;
  }
  .menu-mob-burger #menu__toggle:checked ~ .menu__btn > span:first-child {
    top: 0;
    -webkit-transform: translateY(8px) rotate(45deg);
            transform: translateY(8px) rotate(45deg);
    opacity: 1;
  }
  .menu-mob-burger #menu__toggle:checked ~ .menu__btn > span:last-child {
    top: 0;
    -webkit-transform: translateY(-8px) rotate(-45deg);
            transform: translateY(-8px) rotate(-45deg);
    opacity: 1;
  }
  .menu-mob-burger #menu__toggle:checked ~ .menu__box {
    visibility: visible;
    left: 0;
  }
  .navList {
    border: none;
  }
  .header {
    padding-left: 20px;
    padding-right: 20px;
    background: rgba(255, 255, 255, 0.75);
    height: 56px;
    color: #66727d;
  }
  .logo-pc {
    display: none;
  }
  .logo-mobile {
    display: block;
  }
  .menu-mobile {
    position: absolute;
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
    top: 55px;
    left: 0;
    width: 100%;
    height: calc(100vh - 55px);
    overflow-y: scroll;
    overflow: hidden;
    background-color: #fff;
    border-top: 1px #eaefef solid;
  }
  .menu-mobile.active {
    visibility: visible;
    opacity: 1;
  }
  .menu-mobile__container {
    height: 100%;
    overflow-y: scroll;
  }
  .menu-mobile__container .add-services {
    padding: 0 15px 60px;
  }
  .nav__item {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
    padding: 20px 40px;
    display: block;
    border-bottom: 1px #eaefef solid;
  }
  .navMobile .nav__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .submenu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-top: 1px solid #eaefef;
    height: calc(100vh - 56px);
    overflow-y: scroll;
    -webkit-transition: all 0s;
    transition: all 0s;
    padding: 0;
  }
  .submenu.active {
    top: 56px;
    max-height: 100vh;
  }
  .close-submenu-button {
    display: none;
  }
  .submenu-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .submenu-content {
    padding-top: 0;
  }
  .back-mobile {
    display: block;
    width: 100%;
    cursor: pointer;
    border-bottom: 1px solid #eaefef;
    background-color: #fff;
    padding: 20px 40px 19px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
    text-align: center;
  }
  .back-mobile svg {
    position: absolute;
    left: 30px;
  }
  .item__img {
    width: 40px;
    height: 40px;
    margin: 0 20px 0 24px;
  }
  .submenu-nav__menu {
    padding-left: 0;
    display: block;
    padding: 0 0 20px;
    margin-top: 20px;
    border-bottom: 1px solid #d9dcdc;
  }
  .submenu-nav__menu h4 {
    color: #848e98;
    font-size: 13px;
    line-height: 21px;
    font-weight: 400;
    margin-bottom: 8px;
  }
  .submenu-nav__menu.active {
    display: block;
  }
  .submenu-nav {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .submenu-nav__item {
    font-size: 16px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0;
  }
  .myLada {
    top: 0;
    right: calc(50% - 55px);
    width: 70px;
    height: 20px;
  }
  .myLada a {
    font-size: 12px;
  }
}

@media screen and (max-width: 1025px) {
  .services-content {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .services__item,
  .services__big-item {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -ms-flex-negative: 1;
        flex-shrink: 1;
    -ms-flex-preferred-size: calc(50%);
        flex-basis: calc(50%);
    margin: -1px -1px 0 0;
  }
  .item__content {
    height: 128px;
  }
  .cars__car {
    width: calc(100% / 3);
  }
  .cars__car:hover {
    background-color: #f7f8f8;
  }
  .cars__car:hover .car__background {
    opacity: 0;
  }
  .car__mods a {
    padding-top: 10px;
    font-weight: 700;
  }
  .car__mods a svg {
    display: inline-block;
  }
}

@media screen and (max-width: 500px) {
  .services__item,
  .services__big-item {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -ms-flex-negative: 1;
        flex-shrink: 1;
    -ms-flex-preferred-size: calc(100%);
        flex-basis: calc(100%);
    margin: -1px 0 0 0;
  }
  .item__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    height: 88px;
    position: relative;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

@media screen and (max-width: 768px) {
  .cars__car {
    width: 50%;
  }
}

@media screen and (max-width: 575px) {
  .cars__car {
    width: 100%;
    padding: 15px 0;
  }
}
/*# sourceMappingURL=header.css.map */