@media (max-width: 1279px) {
  /* Reboot */
  html {
    font-size: 12px;
  }

  h2,
  .h2 {
    font-size: 26px;
    line-height: 32px;
  }

  input {
    padding: 14px;
    font-size: 13px;
  }

  select {
    padding: 18px 42px 17px 16px;
    font-size: 13px;
  }

  /* Utils */
  .only-desk {
    display: none;
  }

  .only-mob {
    display: block;
  }

  .grid-2col,
  .grid-4col {
    grid-template-columns: 1fr;
  }

  .mb-60 {
    margin: 0 0 30px;
  }

  /* Button */
  .button,
  .button-show-more span:first-child {
    font-size: 13px;
  }

  /* Header */
  .header {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
  }

  .header__top-left,
  .header__bottom .button {
    display: none;
  }

  .header__top {
    background-color: inherit;
    color: var(--color-black-pearl);
  }

  .header__top .container {
    padding: 0;
  }

  .header__top-wrapper {
    padding: 0;
  }

  .header__top-right {
    display: grid;
    grid-template-columns: repeat(4, 38px);
    gap: 5px;
  }

  .header__top a {
    margin: 0 !important;
    color: var(--color-black-pearl);
  }

  .header__tel {
    width: 38px;
    height: 38px;
    background-color: #f1f0ee;
    border-radius: 100px;
  }

  .header__top-right .header__tel svg {
    width: 20px;
    height: 20px;
    color: var(--color-black-pearl);
  }

  .header__top-right svg {
    margin: 0;
    width: 38px;
    height: 38px;
  }

  .header__wa {
    order: 3;
  }

  .header__wa svg {
    color: #48cf65;
  }

  .header__tg svg {
    color: #35a2e7;
  }

  .header__mob-menu {
    order: 4;
  }

  .toggle {
    position: relative;
    padding: 0;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: none;
    background-color: var(--color-black-pearl);
  }

  .toggle span {
    display: block;
    width: 24px;
    height: 2px;
    border-radius: 12px;
    background-color: var(--color-default-white);
    opacity: 1;
  }

  .toggle::after,
  .toggle::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 2px;
    border-radius: 12px;
    background-color: var(--color-default-white);

    transition: var(--easy);
    -moz-transition: var(--easy);
    -o-transition: var(--easy);
    -webkit-transition: var(--easy);
  }

  .toggle::before {
    top: 12px;
  }

  .toggle::after {
    bottom: 12px;
  }

  .toggle.is-open span {
    opacity: 0;
  }

  .toggle.is-open::before {
    top: 18px;
    transform: translateX(-50%) rotate(-45deg);
  }

  .toggle.is-open::after {
    bottom: 18px;
    transform: translateX(-50%) rotate(45deg);
  }

  .header__bottom .container {
    padding: 0;
  }

  .header__bottom-wrapper {
    padding: 0;
  }

  .header__bottom img {
    width: 155px;
    height: 33px;
    object-fit: contain;
  }

  .header__menu {
    position: absolute;
    top: 74px;
    left: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 20px;
    width: 100vw;
    height: auto;
    max-height: 0;
    background-color: var(--color-default-white);
    border-top: 1px solid #ebebeb;
    z-index: 100;
    overflow: hidden;

    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
  }

  .header__menu.is-open {
    padding: 20px;
    max-height: calc(100vh - 74px);
    overflow-y: scroll;
  }

  .header__menu li::after {
    content: none;
  }

  /* Sub-menu */
  .sub-menu {
    position: static;
    padding: 0 !important;
    border-radius: 0;
    box-shadow: none;
  }

  .sub-menu-auto {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .header__menu li.is-open .sub-menu {
    max-height: 100%;
  }

  .sub-menu__item span {
    font-size: 12px;
    line-height: 15px;
  }

  .sub-menu-services .sub-menu__item a {
    padding: 5px 0;
  }

  /* Breadcrumbs */
  .breadcrumbs__list {
    flex-wrap: nowrap;
    margin: 0 -20px;
    padding: 0 20px;
    width: 100vw;
    overflow-x: scroll;

    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .breadcrumbs__list::-webkit-scrollbar {
    display: none;
  }

  .breadcrumbs__list li {
    flex-shrink: 0;
  }

  /* Intro */
  .intro::after {
    height: 400px;
  }

  .intro__wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .intro__banner h1 {
    margin: 0 0 15px;
    font-size: 34px;
    line-height: 40px;
  }

  .intro__green-frame {
    margin: 0 0 23px -2px;
    padding: 0px 9px 2px 9px;
    width: 100%;
    max-width: max-content;
    font-size: 18px;
  }

  .intro__banner p:nth-child(3) {
    font-size: 20px;
    line-height: 24px;
  }

  .intro__banner p:nth-child(4) {
    margin: 0 0 181px;
    font-size: 13px;
  }

  .intro__banner p:nth-child(5) {
    font-size: 34px;
  }

  .intro__banner p:nth-child(6) {
    font-size: 20px;
    line-height: 24px;
  }

  .intro__banner p:nth-child(6) br {
    display: none;
  }

  .intro__image-wrapper {
    bottom: -58px;
    right: -50px;
    width: 425px;
    height: 304px;
  }

  .intro__advantages {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: -10px 0 0;
    padding: 15px;
  }

  .intro__advantages li {
    gap: 18px;
  }

  .intro__advantages-image-wrapper {
    min-height: 65px;
  }

  .intro__advantages-image-wrapper img {
    width: 113px;
    height: auto;
  }

  .intro__advantages p {
    font-size: 13px;
    line-height: 17px;
  }

  .intro__yandex {
    padding: 20px 15px;
  }

  .intro__yandex a {
    font-size: 13px;
    line-height: 17px;
  }

  /* Tags */
  .tags-block__list {
    margin: 0 0 3px;
  }

  .tags li {
    margin: 0 0 2px;
  }

  .tags li:not(:last-child) {
    margin: 0 2px 2px 0;
  }

  .tags a {
    padding: 10px 16px;
    font-size: 13px;
  }

  /* Tags-block */
  .tags-block__list {
    max-height: 126px;
  }

  /* Form */
  .form {
    gap: 20px;
    padding: 20px;
  }

  .form p {
    font-size: 20px;
    line-height: 24px;
  }

  .form .form__text {
    font-size: 12px;
    line-height: 20px;
  }

  .form__checkboxes-wrapper p {
    margin: 0 0 11px;
    font-size: 13px;
  }

  .form__checkboxes-list {
    gap: 12px 30px;
    justify-content: start;
    max-width: 225px;
  }

  .form__checkboxes-list label {
    font-size: 13px;
  }

  .form .form__personal-data {
    margin: -10px 0 0;
    font-size: 10px;
  }

  /* Welcome */
  .welcome .block-sidebar__wrapper.grid-2col {
    gap: 40px;
  }

  /* Simple-text */
  .simple-text h2 br {
    display: none;
  }

  .simple-text p {
    line-height: 20px;
  }

  .simple-text strong {
    font-size: 20px;
    line-height: 24px;
  }

  .simple-text ul,
  .simple-text ol {
    line-height: 20px;
  }

  /* Buying */
  .buying__wrapper.grid-40 .grid-40,
  .buying__wrapper.grid-40 .grid-30 {
    gap: 20px;
  }

  .buying p {
    font-size: 20px;
    line-height: 24px;
  }

  .buying__list-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 30px;
    padding: 15px 15px 30px;
  }

  .buying__list-top::before,
  .buying__list-top li:not(:nth-child(4n))::before {
    content: none;
  }

  .buying__list-top li.pb-20,
  .buying__list-top li.pt-20 {
    padding: 0;
  }

  .buying__top-image-wrapper {
    width: 113px;
    height: 64px;
  }

  .buying__top-image-wrapper img {
    object-fit: cover;
  }

  .buying__list-top span,
  .buying__list-bottom span {
    font-size: 13px;
    line-height: 17px;
  }

  .buying__list-bottom {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    align-items: center;
    max-height: 282px;
  }

  .buying button {
    margin: 3px auto 0;
  }

  /* Cars */
  .cars h2 {
    margin: 0 0 20px;
  }

  .blog.cars h1 {
    margin-top: 50px;
  }

  .cars__list:not(.blog .cars__list) {
    display: flex;
    gap: 0;
    margin: 0 0 0 -20px;
    width: 100vw;
    overflow-x: scroll;
  }

  .blog .cars__list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .car:not(.blog .car) {
    flex-shrink: 0;
    margin: 0 20px 0 0;
    width: 250px;
  }

  .car:first-child:not(.blog .car) {
    margin: 0 20px;
  }

  .car__image-wrapper {
    max-height: 175px;
  }

  .blog .car__image-wrapper {
    height: 140px;
  }

  .car__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .car__status {
    font-size: 14px;
  }

  .car__price {
    font-size: 20px;
  }

  .car__model {
    font-size: 13px;
  }

  .cars .button {
    margin: 40px auto 0;
  }

  /* Reasons */
  .reasons .grid-2col,
  .reasons__wrapper.grid-40 {
    gap: 20px;
  }

  .reasons p {
    line-height: 20px;
  }

  .reasons__list span {
    font-size: 20px;
    line-height: 24px;
  }

  .reasons__list.grid-30 {
    gap: 15px;
  }

  /* Offer */
  .offer__wrapper {
    gap: 0;
    padding: 0 0 15px;
  }

  .offer__wrapper .form__input-wrapper {
    grid-template-columns: 1fr;
  }

  .offer__wrapper .button {
    margin: 3px 0 0;
  }

  .offer__wrapper .form .form__personal-data {
    margin: -9px 0 0;
  }

  .send-for-text {
    grid-column: span 1;
  }

  /* Estimation */
  .estimation .grid-2col {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .estimation__image-wrapper img {
    margin: 0 auto;
    width: auto;
    max-height: 316px;
  }

  .estimation__content {
    gap: 50px;
    padding: 0;
  }

  .estimation__content span {
    font-size: 20px;
    line-height: 24px;
  }

  .estimation__content .grid-40 {
    gap: 30px;
  }

  .estimation__list {
    gap: 30px;
  }

  .estimation__list li {
    min-height: 38px;
    font-size: 13px;
  }

  .estimation__list li::before {
    top: 0;
    transform: translateY(0);
  }

  .estimation__content .estimation__social span:first-child {
    font-size: 22px;
    line-height: 26px;
  }

  /* Stages */
  .stages__top p,
  .stages__item-content span {
    font-size: 20px;
  }
  .stages__list {
    grid-template-columns: repeat(4, 250px);
    margin: 0 -20px;
    padding: 0 20px;
    width: 100vw;
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .stages__list::-webkit-scrollbar {
    display: none;
  }
  .stages__item {
    gap: 10px;
  }
  .stages__item-content {
    gap: 5px;
  }
  .stages__item img {
    width: 130px;
    height: auto;
  }

  /* Advantages */
  .advantages__wrapper.grid-40 {
    gap: 22px;
  }

  .advantages__wrapper .grid-2col {
    gap: 22px;
  }

  .advantages__list {
    gap: 13px;
  }

  .advantages__list li {
    gap: 13px;
  }

  .advantages__list span {
    font-size: 20px;
    line-height: 24px;
  }

  .advantages__list p {
    line-height: 20px;
  }

  /* Documents */
  .documents__wrapper {
    gap: 20px;
    padding: 20px 0;
  }

  .documents__content {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 20px;
  }

  .documents__image-wrapper {
    display: none;
  }

  .documents__block span {
    font-size: 20px;
    line-height: 24px;
  }

  .documents__list {
    gap: 18px;
  }

  .documents__list li {
    font-size: 13px;
    line-height: 20px;
  }

  /* Benefits  */
  .block-sidebar__wrapper.grid-2col {
    gap: 20px;
  }

  .block-sidebar__form .form__checkboxes-list {
    padding: 0;
  }

  /* Reviews */
  .reviews {
    padding: 23px 0;
  }

  .reviews h2 {
    margin: 0 0 20px;
  }

  .reviews .swiper-wrapper {
    margin: 0 0 0 -20px;
    width: 100vw;
  }

  .review {
    margin: 0 20px 0 0;
    width: 250px;
    height: 280px;
  }

  .review:first-child {
    margin: 0 20px 0;
  }

  .review__name {
    font-size: 12px;
    line-height: 20px;
  }

  .review__text {
    line-height: 20px;
  }

  /* Cities  */
  .all-cities.mb-60 {
    margin: 0 0 30px;
  }

  .all-cities__wrapper {
    position: relative;
    max-height: 260px;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  }

  .all-cities__wrapper.is-open {
    max-height: 10000px;
    transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
  }

  .all-cities__wrapper::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 141px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 89.06%);
    z-index: 2;
  }

  .all-cities__wrapper.is-open::before {
    content: none;
  }

  .cities__list-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 40px;
  }

  .cities.regions {
    margin: 0;
  }

  .cities__column {
    max-width: 147px;
  }

  .cities__list {
    gap: 4px;
  }

  .cities__list li {
    font-size: 13px;
  }

  .all-cities .button-show-more {
    display: flex;
  }

  .all-cities .button-show-more__text {
    display: none;
  }

  .all-cities .button-show-more__text::before {
    content: "Показать все города";
  }

  .all-cities.is-open .button-show-more__text::before {
    content: "Скрыть";
  }

  /* Map  */
  .map iframe {
    height: 326px;
  }

  /* FAQ  */
  .faq.grid-40 {
    gap: 20px;
  }

  .faq__accordions {
    gap: 10px;
  }

  .faq__accordion-top span {
    margin: 0 10px 0 0;
    font-size: 20px;
    line-height: 24px;
  }

  .faq__accordion-item button {
    align-self: flex-start;
  }

  .faq__accordion-bottom-wrapper {
    padding: 10px 0 20px;
    line-height: 20px;
  }

  /* Services */
  .services__item-top img {
    width: 50px;
    height: 61px;
  }

  .services__item-top span {
    font-size: 16px;
    line-height: 20px;
  }

  /* Good */
  .good h1 {
    font-size: 26px;
    line-height: 32px;
  }

  .good__card,
  .good__images-block {
    grid-template-columns: 1fr;
  }

  .good__content {
    gap: 10px;
    font-size: 14px !important;
    line-height: 22px !important;
  }

  .good__main-img {
    order: 0;
  }

  .good__slider.swiper {
    overflow: initial;
  }

  .good__slider .swiper-wrapper {
    display: flex;
    gap: 0;
    overflow: initial;
    overflow-y: scroll;
    margin: 0 -20px;
    width: 100vw;
  }

  .good__slide {
    flex-shrink: 0;
    margin: 0 20px 0 0;
    max-width: 150px;
  }

  .good__slide:first-of-type {
    margin: 0 20px;
  }

  /* Footer */
  .footer__wrapper {
    padding: 20px 0;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 0;
  }

  .footer__title {
    font-size: 13px;
  }

  .footer__menu {
    order: 1;
    display: grid;
    gap: 10px;
    grid-row: span 2;
    padding: 0;
    max-width: 100%;
    font-size: 13px;
  }

  .footer__logo {
    order: 2;
  }

  .footer__logo img {
    width: 148px;
    object-fit: contain;
    height: 31px;
  }

  .footer__contacts-social {
    position: relative;
    order: 2;
    grid-row: span 1;
    padding: 0 0 113px;
  }

  .footer__contacts {
    gap: 16px;
  }

  .footer__phones {
    font-size: 16px;
    line-height: 14px;
  }

  .footer__contacts .button {
    padding: 16px 10px;
  }

  .footer__social {
    position: absolute;
    bottom: 0;
    left: -100%;
    gap: 8px;
  }

  .footer__addresses {
    order: 3;
    grid-column: span 2;
    grid-template-columns: 1fr;
    margin: 30px 0 0;
  }

  .footer__addresses::before {
    top: -20px;
  }

  .footer__addresses .footer__title {
    grid-column: span 1;
  }

  .footer__list {
    -moz-column-count: 1;
    -webkit-column-count: 1;
    column-count: 1;
  }

  .footer__addresses li {
    line-height: 20px;
  }

  .footer__copyright-wrapper {
    order: 4;
    grid-column: span 2;
    padding: 0;
  }

  .footer__copyright-wrapper::before {
    top: 0;
  }

  .footer__copyright {
    display: grid;
    gap: 10px;
    padding: 25px 0 0;
  }

  /* Table */
  .table-wrapper {
    margin: 0 -20px;
    padding: 0 20px;
    width: 100vw;
  }

  .table-wrapper table {
    width: auto;
  }

  .table-wrapper th,
  .table-wrapper td {
    padding: 15px 29px 14px 30px;
  }

  .table-wrapper th {
    font-size: 18px;
    line-height: 20px;
  }

  .table-wrapper td {
    font-size: 14px;
    line-height: 18px;
  }

  /* Other */
  .publ-one__wrapper {
    padding: 30px 0 0;
  }

  /* Benefits */
  .benefits__top p,
  .benefits__item span {
    line-height: 20px;
  }
  .benefits__list {
    grid-template-columns: 1fr;
  }
  .benefits__item {
    padding: 20px;
  }
  .benefits__item svg {
    bottom: 0;
    right: 10px;
    width: 80px;
    height: 80px;
  }
  .benefits__item--1 svg,
  .benefits__item--6 svg,
  .benefits__item--7 svg {
    bottom: 10px;
  }
}
