@font-face {
  font-family: "ChangAnunitype-Regular";
  src: url("../fonts/ChangAnunitype-Regular.woff2") format("opentype");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: "ChangAnunitype-Bold";
  src: url("../fonts/ChangAnunitype-Bold.woff2") format("opentype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
.m-0 {
  margin: 0 !important;
}

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

.mb-1 {
  margin-bottom: 5px !important;
}

.mb-2 {
  margin-bottom: 10px !important;
}

.mb-3 {
  margin-bottom: 15px !important;
}

.mb-4 {
  margin-bottom: 20px !important;
}

.mb-5 {
  margin-bottom: 25px !important;
}

.mb-6 {
  margin-bottom: 30px !important;
}

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

.mr-1 {
  margin-right: 5px !important;
}

.mr-2 {
  margin-right: 10px !important;
}

.mr-3 {
  margin-right: 15px !important;
}

.mr-4 {
  margin-right: 20px !important;
}

.mr-5 {
  margin-right: 25px !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 5px !important;
}

.mt-2 {
  margin-top: 10px !important;
}

.mt-3 {
  margin-top: 15px !important;
}

.mt-4 {
  margin-top: 20px !important;
}

.mt-5 {
  margin-top: 25px !important;
}

.p-0 {
  padding: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 5px !important;
}

.pb-2 {
  padding-bottom: 10px !important;
}

.pb-3 {
  padding-bottom: 15px !important;
}

.pb-4 {
  padding-bottom: 20px !important;
}

.pb-5 {
  padding-bottom: 25px !important;
}

.pb-6 {
  padding-bottom: 30px !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.pr-1 {
  padding-right: 5px !important;
}

.pr-2 {
  padding-right: 10px !important;
}

.pr-3 {
  padding-right: 15px !important;
}

.pr-4 {
  padding-right: 20px !important;
}

.pr-5 {
  padding-right: 25px !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.pl-1 {
  padding-left: 5px !important;
}

.pl-2 {
  padding-left: 10px !important;
}

.pl-3 {
  padding-left: 15px !important;
}

.pl-4 {
  padding-left: 20px !important;
}

.pl-5 {
  padding-left: 25px !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 5px !important;
}

.pt-2 {
  padding-top: 10px !important;
}

.pt-3 {
  padding-top: 15px !important;
}

.pt-4 {
  padding-top: 20px !important;
}

.pt-5 {
  padding-top: 25px !important;
}

.jc-sb {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 500px) {
  .jc-sb {
    flex-wrap: wrap;
  }
}

.jc-e {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 500px) {
  .jc-e {
    flex-wrap: wrap;
    margin-top: 20px;
  }
}

.f-c {
  display: flex;
  flex-direction: column;
}

.jc-c {
  display: flex !important;
  justify-content: center !important;
}

.ai-c {
  display: flex;
  align-items: center;
}

.ai-e {
  display: flex;
  align-items: flex-end;
}

.ai-s {
  display: flex;
  align-items: flex-start;
}

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

.ta-l {
  text-align: left !important;
}
@media screen and (max-width: 475px) {
  .ta-l {
    text-align: center !important;
  }
}

.ta-r {
  text-align: right !important;
}
@media screen and (max-width: 475px) {
  .ta-r {
    text-align: left !important;
  }
}

.fs-xl {
  font-size: 25px;
}

.bold {
  font-weight: bold;
}

.content-show {
  display: none;
}

.dark-font {
  color: #333 !important;
}

.light-font {
  color: #979797;
}

.very-light-font {
  color: white;
}
.very-light-font * {
  color: inherit;
}

*:focus,
*:active {
  outline: none !important;
}

.no-scroll {
  overflow: hidden;
  height: 100%;
}

.small {
  font-size: 14px;
}

.nowrap {
  white-space: nowrap;
}

.hide {
  display: none;
}

.color-red {
  color: red;
}

.ruble {
  font-family: "PT Sans", Arial, sans-serif;
  font-size: inherit;
  font-weight: inherit !important;
}

.animation {
  transition: 0.25s ease-out;
}
.animation:hover {
  z-index: 5;
}
.animation_box:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.animation_offset:hover {
  transform: translateY(-10px);
}
@media screen and (max-width: 768px) {
  .animation_offset:hover {
    transform: none;
  }
}
.animation_offset_small:hover {
  transform: translateY(-5px);
}

@keyframes test-drive {
  8%, 24% {
    transform: rotate(20deg);
  }
  16% {
    transform: rotate(-20deg);
  }
  32% {
    transform: rotate(0deg);
  }
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 102, 181, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(0, 102, 181, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 102, 181, 0);
  }
}
@keyframes scroll {
  0%, 100% {
    bottom: 15px;
  }
  50% {
    bottom: 27px;
  }
}
@keyframes tyreRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
@keyframes tyreDeccelerate {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}
@keyframes flashingLights {
  0%, 80% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
}
@keyframes flashingLightsLong {
  0%, 10%, 20% {
    opacity: 0;
  }
  5%, 15% {
    opacity: 1;
  }
}
.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(100%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.header_scrolled .image__logo_dealer img {
  height: 23px;
}
@media screen and (max-width: 430px) {
  .header_scrolled .image__logo_dealer img {
    height: 15px;
  }
}
.header__item {
  margin-right: 20px;
}
@media screen and (max-width: 430px) {
  .header__item {
    margin-right: 10px;
  }
}
.header__item:nth-of-type(1) {
  order: 1;
}
.header__item:nth-of-type(2) {
  order: 2;
}
@media screen and (max-width: 768px) {
  .header__item:nth-of-type(2) {
    display: block;
    order: 4;
    margin-right: 0;
  }
}
.header__item:nth-of-type(3) {
  order: 2;
}
@media screen and (max-width: 768px) {
  .header__item:nth-of-type(3) {
    display: block;
    order: 3;
  }
}
.header__item:nth-of-type(4) {
  order: 3;
}
@media screen and (max-width: 768px) {
  .header__item:nth-of-type(4) {
    order: 2;
    flex-grow: 1;
  }
}
.header__item:last-child {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .header .hamburger {
    display: inline-block;
    vertical-align: middle;
  }
}

.menu {
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .menu {
    justify-content: flex-start;
  }
}

.dealer {
  width: 100%;
  padding: 15px 20px;
  border-bottom: 1px solid #E4EBF2;
  cursor: pointer;
  background: white;
}
.dealer.active {
  background: #0066B5;
}
.dealer.active > * {
  color: white;
}
.dealer:last-child {
  border-bottom: none;
}
.dealer__title {
  font-weight: bold;
  margin-bottom: 15px;
  padding-top: 15px;
}
.dealer__title:first-child {
  padding-top: 0;
}
.dealer__text {
  margin-bottom: 10px;
}
.dealer__phone {
  font-size: 1rem;
}
.dealer__info {
  position: absolute;
  top: -1px;
  height: calc(100% + 2px);
  width: 300px;
  left: 0;
  background: white;
  border: 1px solid #E4EBF2;
  padding: 15px;
  transition: left 0.3s ease-in-out;
  z-index: 0;
}
.dealer__info.active {
  left: -300px;
}
.dealer__close {
  position: relative;
  width: 20px;
  height: 20px;
  margin-left: auto;
  cursor: pointer;
}
.dealer__close:hover:before {
  transform: translate(-50%, -50%) rotate(90deg);
}
.dealer__close:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  background-image: url(/static/images/svg/close.svg);
  background-repeat: no-repeat;
  background-position: center center;
  transition: transform 0.3s ease-in-out;
}

.dealer-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 11;
  will-change: padding, height;
  height: auto;
  background-color: white;
  transition: height 0.15s linear;
  display: flex;
  align-items: center;
  opacity: 1;
  justify-content: center;
  min-height: 70px;
}
@media screen and (max-width: 768px) {
  .dealer-header {
    display: block;
    top: 50px;
    left: 100%;
    width: 400px;
    background-color: white;
    transition: left 0.6s cubic-bezier(0.86, 0, 0.07, 1);
    height: calc(100% - 50px);
    max-height: calc(100% - 50px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
    overflow: auto;
  }
  .dealer-header::-webkit-scrollbar {
    width: 0;
    border-radius: 0;
    background: transparent;
    display: none;
  }
  .dealer-header::-webkit-scrollbar-track {
    width: 0;
    border-radius: 0;
    height: 0;
    background: transparent;
    display: none;
  }
  .dealer-header::-webkit-scrollbar-thumb {
    width: 0;
    border-radius: 0;
    height: 0;
    background: transparent;
    display: none;
  }
}
@media screen and (max-width: 400px) {
  .dealer-header {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .dealer-header.active {
    left: calc(100% - 400px);
  }
}
@media screen and (max-width: 400px) {
  .dealer-header.active {
    left: 0;
  }
}
.dealer-header + .header {
  top: 70px;
}
@media screen and (max-width: 768px) {
  .dealer-header + .header {
    top: 0;
  }
}
.dealer-header.header_scrolled {
  height: 0;
  opacity: 0;
}
@media screen and (max-width: 992px) {
  .dealer-header.header_scrolled {
    height: 50px;
  }
}
.dealer-header.header_scrolled + .header {
  top: 0 !important;
}
.dealer-header.header_scrolled .menu__item {
  padding: 8px 0;
}
.dealer-header__item {
  margin-right: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .dealer-header__item {
    margin-right: 0;
    padding: 10px 0;
    border-bottom: 1px solid #f3f3f3;
    width: 100%;
    position: relative;
  }
  .dealer-header__item::after {
    content: attr(data-phone);
    display: inline-block;
    text-transform: none;
    cursor: pointer;
    text-decoration: none;
    color: #333;
    transition: 0.25s ease;
    font-size: 1rem;
    display: none;
  }
}
.dealer-header__item:last-child {
  margin-right: 0;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .dealer-header__item_last {
    display: none;
  }
}
.dealer-header__item > * {
  margin-right: 10px;
  font-size: 0.8rem;
}
.dealer-header__item > *:last-child {
  margin-right: 0;
}
.dealer-header__item p {
  font-size: 0.7rem;
  margin-bottom: 5px;
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .dealer-header__item p {
    font-size: 1rem;
  }
}
.dealer-header__item .btn-block {
  display: none;
}
@media screen and (max-width: 768px) {
  .dealer-header__item .btn-block {
    margin-top: 10px;
    display: flex;
    justify-content: center;
  }
}
@media screen and (max-width: 992px) {
  .dealer-header__item .btn:not(.btn_dealer) {
    width: 35px;
    position: relative;
    font-size: 0;
  }
  .dealer-header__item .btn:not(.btn_dealer):before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background-image: url(/static/images/svg/phone-white.svg);
    background-repeat: no-repeat;
    background-position: center center;
  }
}
@media screen and (max-width: 768px) {
  .dealer-header__item .btn:not(.btn_dealer):before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background-image: url(/static/images/svg/phone.svg);
    background-repeat: no-repeat;
    background-position: center center;
  }
}
@media screen and (max-width: 768px) {
  .dealer-header__item .link {
    font-size: 1rem;
  }
}
.dealer-header__address {
  color: #999;
}
.dealer-header__line {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .dealer-header__line {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-bottom: 90px;
  }
}

@media screen and (max-width: 430px) {
  .image__logo img {
    width: auto;
    height: 20px;
  }
}
.image__logo_dealer {
  padding-left: 10px;
  padding-right: 0;
  text-align: center;
}
@media screen and (max-width: 430px) {
  .image__logo_dealer {
    padding-left: 0;
  }
}
.image__logo_dealer img {
  height: 30px;
  width: auto;
}
@media screen and (max-width: 992px) {
  .image__logo_dealer img {
    height: 20px;
  }
}
@media screen and (max-width: 768px) {
  .image__logo_dealer img {
    margin: 0;
  }
}
@media screen and (max-width: 430px) {
  .image__logo_dealer img {
    height: 15px;
  }
}
.image__logo_dealer span {
  font-size: 0.7rem;
  color: #979797;
  font-weight: 300;
}

.page-wrapper__content {
  padding-top: 135px;
}
@media screen and (max-width: 992px) {
  .page-wrapper__content {
    padding-top: 120px;
  }
}
@media screen and (max-width: 768px) {
  .page-wrapper__content {
    padding-top: 50px;
  }
}

.dealer-hamburger {
  display: none;
}
@media screen and (max-width: 768px) {
  .dealer-hamburger {
    margin-right: 10px;
    display: inline-block;
    vertical-align: middle;
    padding: 0;
    border: none;
    width: auto;
  }
  .dealer-hamburger::after {
    display: none;
  }
}
