/*!
Theme Name: izitachka
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: izitachka
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

izitachka is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
:root {
  --primary: #FF8500;
  --primary2: #4D8CAD;
  --dark: #121212;
  --light: #EEF2F5;
  --white: #ffffff;
  --gray: #242525;
  --gray-txt: #919191;
  --border-color: #AAAAAA;
  --radius: 32px; 
  --gap: 20px;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}
 
@font-face {
  font-family: 'Gilroy';
  src: url('./fonts/Gilroy-SemiBold.woff') format('woff'), url('fonts/OpenSans-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  list-style: none;
  box-sizing: border-box;
}

.no_pc {
  display: none;
}

body { 
  font-family: "Lato", sans-serif;
  color: var(--light); 
  font-weight: 400;
  background: #191A1A;
  font-size: 15px;
}

main {
  display: flex;
  flex-direction: column;
  gap: 140px;
}

button {
  border: none;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Gilroy', sans-serif;
}
h1 {
    font-weight: 600;
    font-size: 63px;
    line-height: 1.2;
    padding-top: 36px;
    padding-bottom: 31px; 
}
h3 {
  font-weight: 600;
  font-size: 34px;
  line-height: 130%;

}

h2 {
    font-weight: 600;
    font-size: 48px;
    color: var(--white);
    padding-bottom: 25px;
}

h4 {
  font-weight: 600;
  font-size: 18px;
  line-height: 130%;
}

h5 {
  font-weight: 600;
  font-size: 16px;
  line-height: 130%;

}
.grey {
  color: var(--gray-txt);
} 
.white, a {
  color: var(--white);
    text-decoration: none;
}
a, button {
  transition: var(--transition);
}
.btn {
    padding: 15px 25px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    color: white;
}

    .reviews-slider {
      display: none;
    }
/*Мобильное меню*/

  .pc-nav {
    display: none;
  }
  .not_pc {
    display: block;
  }
  body.open,
  body:after {
    overflow: hidden;
  }
  .b-nav,
  body:after {
    position: absolute;
    right: 0;
  }
  .b-brand,
  .b-link {
    font-size: 18px;
    font-weight: 700;
    margin-left: 0;
    text-decoration: none;
    font-family: "Roboto Slab", serif;
    text-transform: uppercase;
  }
  @-webkit-keyframes slideInLeft {
    0% {
      -webkit-transform: translate3d(345px, 0, 0);
      transform: translate3d(345px, 0, 0);
    }
    100% {
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
      visibility: visible;
    }
  } /*
@keyframes slideInLeft {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}*/
  * {
    box-sizing: border-box;
  }
  body:after {
    background: #000;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0;
    padding: 0;
    top: 0;
    visibility: hidden;
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
    width: 100%;
  }
  body.open:after {
    z-index: 10;
    opacity: 0.65;
    height: 100000%;
    visibility: visible;
  }
  .b-nav {
    background: white;
    position: absolute;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 11;
    padding-top: 100px;
    padding-bottom: 20px;
  }
  .b-nav {
    animation-duration: 0.4s;
    animation-fill-mode: both;
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft;
  }
  .b-nav ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--gap); 
  }
  .b-nav li {
    list-style-type: none;
    padding: 2px 10px 2px 0;
    text-align: left;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    text-transform: uppercase;
  }
  .b-nav li a {
    color: rgb(255, 255, 255);
  }
  .b-nav li:not(.open) {
    animation-duration: 0.4s;
    animation-fill-mode: both;
    -webkit-animation-name: slideOutLeft;
    animation-name: slideOutLeft;
  }
  .b-nav li:not(.open),
  .b-nav.open li {
    -webkit-animation-duration: 0.4s;
    -webkit-animation-fill-mode: both;
  }
  .b-nav li:first-child {
    margin-top: 0px;
  }
  .b-nav nav {
    position: relative;
  }
  .b-nav.open {
    visibility: visible;
    animation-duration: 0.4s;
    animation-fill-mode: both;
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft;
    
    background: #191a1ae8;
  }
  .b-nav:not(.open) {
    visibility: hidden;
    animation-duration: 0.4s;
    animation-fill-mode: backwards;
    -webkit-animation-name: slideOutLeft;
    animation-name: slideOutLeft;
  }
  .b-nav.open li {
    animation-duration: 0.2s;
    animation-fill-mode: both;
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft;
  }
  .b-link {
    background: 0 0;
    border-left: rgba(255, 255, 255, 0) solid 2px;
    color: #fff;
    transition: all 0.4s ease;
    width: auto;
  }
  .b-link,
  .b-menu {
    -webkit-transition: all 0.4s ease;
  }
  .b-nav li {
    width: 100%;
  }
 
  .b-menu {
    cursor: pointer;
    display: flex;
    height: 18px;
    position: relative;
    transition: all 0.4s 
ease 0s;
    width: 24px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
  .b-bun--bottom,
  .b-bun--mid,
  .b-bun--top {
    height: 2px;
    width: 21px;
  }
  .b-container.open .b-main,
  .b-menu:hover {
  }
  .b-bun {
    background: #ffffff;
  }
  .home .b-bun {
    background: #fff;
  }
  .b-bun {
    transition: all 0.4s ease;
  }
  .b-brand,
  .b-bun {
    position: relative;
    -webkit-transition: all 0.4s ease;
  }
  .b-bun--top {
    top: -6px;
  }
  .b-bun--mid {
    top: 0px;
  }
  .b-bun--bottom {
    top: 6px;
  }
  .b-brand {
    color: #2196f3;
    top: -21.43px;
    transition: all 0.4s ease;
    z-index: 13;
  }
  .b-container {
    z-index: 13;
    position: relative;
    background-color: var(--dark);
    padding: 15px 12px;
    border-radius: 12px;
}
  .b-container:hover:not(.open) .bun-bottom,
  .b-container:hover:not(.open) .bun-mid,
  .b-container:hover:not(.open) .bun-top {
    background: #2196f3;
  }
  .b-container.open .b-bun--top {
    background: #ffffff;
    top: 3px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .b-container.open .b-bun--mid {
    opacity: 0;
  }
  .b-container.open .b-bun--bottom {
    background: #ffffff;
    top: 0px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .b-container.open .b-brand {
    color: #fff;
  }
  .vis .b-bun {
    background: #000000;
  }
.heafer_mob_top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
}
.header_mob_contetnt {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.b-nav.open .container {
    height: 100%;
    padding-bottom: 30px;
}
.heafer_mob_bottom .socs {
    display: none;
}
  /*конец моб меню*/
.container {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto; 
  position: relative;
}
 

/* Шапка */
.header {
  position: sticky;
  top: 0px;
  left: 0;
  width: 100%;
  z-index: 1000; 
    background: #191A1A;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0px;
    z-index: 12;
}
.header_item {
    display: flex;
    gap: 25px;
    align-items: center;
}
.logo img {
    height: 20px;
  width: auto;
}

.nav ul {
  display: flex;
  gap: 25px;
}
header a {
  font-weight: 500;
}
.nav a {
  text-decoration: none;  
}

.nav a:hover {
  color: var(--primary);
}

.header-contact {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    flex-direction: column;
}
.header-contact a:hover {
    color: var(--primary);
}
.socs img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    object-position: center center;
}
 .socs a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 11px;
    border-radius: 50px;
    background-color: var(--primary);
}
.socs a:hover { 
    background-color: var(--primary2);
}
.socs{
  display: flex;
  gap: var(--gap);
  flex-direction: row;
  align-items: center;
}

.btn {     
  transition: var(--transition);
}

.btn:hover { 
  transform: translateY(-2px);
}
.btn_blue {
  background-color: var(--primary2);
}
.btn_dark {
  background-color: var(--dark);
}
.btn_yellow {
  background-color: var(--primary);
}
.btn_blue:hover {
  background-color: var(--primary);
}
.btn_dark:hover {
  background-color: var(--primary);
}
.btn_yellow:hover {
  background-color: var(--primary2);
}

/* Главный экран */
 .hero-bg {
  
position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--radius);
    mask-image: url(https://izitachka.com/wp-content/uploads/2026/01/subtract.png);
    background-size: cover;
    mask-size: 100% 100%;
    z-index: 0;
    background-position: center center;
 }
 .hero_content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gap);
    height: 682px;
    position: relative;
}
.hero_right {
    position: relative;
}
h1 span {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    gap: var(--gap);
    color: var(--white);
}
.h1_circls {
    height: 62px;
    width: auto;
}
.h1_border {
    height: 58px;
    border-radius: 100px;
    border-width: 2px;
    border-style: dashed;
    border-color: #AAAAAA;
    border-spacing: 2px;
    padding: 2px;
}
.hero_desc {
    font-size: 20px;
    line-height: 100%;
    padding-bottom: 40px;
}
.btns_row {
    display: flex;
    align-items: center;
    gap: var(--gap);
}
.feature {
    background: var(--gray);
    padding: 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    height: 130px;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap);
    position: absolute;
    left: 0;
    bottom: 81px;
    width: 850px;
}
.feature-icon {
    width: 26px;
    height: 26px;
    object-fit: contain;
}
.dashed {
  width: 100%;
  height: 2px;
  background-image: url(https://izitachka.com/wp-content/uploads/2026/01/vector-1-1.svg); 
}
.hero_left .dashed {
    position: absolute;
    left: 0;
    bottom: 30px;
}
.hero_left {
    position: relative; 
}
.car-card {
    background-color: var(--gray);
    padding: 20px;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    position: relative;
    gap: 15px;
}
.car-card-top   { 
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}
.car-card-top > img {
    height: 233px;
    width: 100%;
    object-fit: contain;
}
.car-badge {
    position: absolute;
    padding: 5px 12px;
    background: #363838;
    border-radius: 20px;
    font-weight: 500;
    right: 20px;
    top: 20px;
}
.car-specs {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 5px;
}


.uto_name.grey {
    font-weight: 500;
    font-size: 18px;
}
.car_name, .h3 {
    font-weight: 600;
    font-size: 28px; 
}
.car_name, .h3 { 
    margin-top: -4px;
}
.car-specs > span {
    display: flex;
    align-items: center;
    gap: 5px;
}
.car-specs > span img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}
.car-card-top .price {
    font-weight: 600;
    font-size: 32px;
    padding-bottom: 5px;
}
.price-left .grey {
    font-size: 13px;
}
.raschet_content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--gap);
}
.raschet_border {
    border-width: 2px;
    border-style: dashed;
    border-color: #AAAAAA;
    border-radius: var(--radius);
       padding: 10px; 
}
.raschet_action  {
    border-radius: 28px;
    background: var(--dark);
    padding: 15px;
} 
.raschet_left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: var(--gap);
}
.raschet_action .h3{
  padding-bottom: 10px;
}
.raschet_action .btn{
  margin-top: 20px;
}
.raschet_right {   
    position: relative;
}
.raschet_right form {   
    
    height: 100%;
    padding: 35px; 
}
.raschet_right-bg {
   background-color: var(--gray);
    mask-image: url(https://izitachka.com/wp-content/uploads/2026/01/subtract-3.png);
     position: absolute;
     left: 0;
     right: 0;
     z-index: 0;
    mask-size: 100% 100%;  
    width: 100%;
    height: 100%;
    background-position: center center;
}
.h3, .h4 {
  
    font-family: 'Gilroy', sans-serif;
}
.h4  {  
    font-weight: 600;
    font-size: 22px;
}
form .h4{
  padding-bottom: 15px;
}
.input_row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap);
    align-items: center;
}
.input_row label p, .row label p {
    padding-bottom: 10px;
}
.raschet_right .wpcf7-acceptance label {
    max-width: 550px;
    display: block;
}
form .btn {
  width: fit-content;
}
label {
  font-weight: 500 ;
}
input[type="tel"], input[type="text"], textarea, select, .wpcf7-radio label {
    padding: 15px;
    background-color: #363838;
    border: none;
    border-radius: 12px;
	color:white;
	width:100%;
}
.wpcf7-radio label {
    display: flex;
    align-items: center;
    gap: 10px;
}
.row {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: flex-start;
}
.form_item label {
    display: flex;
    flex-direction: column;
    gap: var(--gap);
}
.wpcf7-spinner {
	display:none;
}
.form_label {
    width: 100%;
}
form a {
	text-decoration:underline;
}
form {
    display: flex;
    flex-direction: column;
    gap: var(--gap);
    z-index: 1;
    align-items: stretch;
    position: relative;
    justify-content: space-between;
}
.raschet_right .btn-submit {
    position: absolute;
    right: 0;
    bottom: 0;
}
.about_container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gap);
    min-height: 560px;
}
.about_left, .about_left_bottom {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: var(--gap);
}
.about_right_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
    height: 100%;
    
}
.about_right_item {
    display: grid;
    gap: var(--gap);
    height: 100%;
    justify-content: space-between;
    grid-template-rows: repeat(2, 1fr);
}
.about_right_item > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
}
.about_right_item:nth-child(2) > img {
    order: 2;
}
.about_right_item:nth-child(1) {
    grid-template-rows: 4fr 3fr;
}
.about_right_item:nth-child(3) {
    grid-template-rows: 2fr 3fr;
}
.about_right_item_desc {
    padding: 20px;
    background: var(--gray);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--gap);
    height: 100%;
    justify-content: space-between;
}
.about_right_item_desc img {
  width: 90px;
  height: 90px;
  object-fit: contain;
}
.about_right_item:nth-child(3) > img {
    border-width: 2px;
    border-style: dashed;
    border-color: #AAAAAA;
    border-spacing: 2px;
    padding: 10px;
}
.pluss_grid {
    display: grid;
    gap: var(--gap);
    position: relative;
    grid-template-columns: repeat(5, 1fr);
    justify-content: space-between;
}
.sticky {
    position: sticky; 
}
.etaps_car .sticky { 
    top: 100px;
    text-align: center;
}
.plus_item img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    padding: 10px;
    border-radius: 12px;
    background-color: var(--gray);
    margin-bottom: 10px;
}
.etaps_container {
    display: grid;
    gap: var(--gap);
    grid-template-columns: 2fr 1fr;
}
.etap_item {
    display: flex;
    gap: var(--gap);
    align-items: stretch;
}
.etap_numb {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    background-color: var(--primary2);
    aspect-ratio: 1 / 1;
    
    min-width: 107px;
    font-family: 'Gilroy', sans-serif;
    font-size: 50px;
    font-weight: 600;
}
.etaps_lists {
    display: flex;
    flex-direction: column;
    gap: var(--gap);
}
.etap_txt {
      display: flex; 
      gap: 10px;
    border-radius: var(--radius);
    background-color: var(--gray);
    padding: 25px;
    width: 100%;
    flex-direction: column;
}
.preimushestva_gris {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap);
}
.preimushestvo {
    background-color: var(--gray);
    padding: 20px;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 35px;
    transition: var(--transition);
}
.preimushestvo img {
    width: 46px;
    height: 46px;
    object-fit: contain;
}
.preim_txt {
    background: #363838;
    border-radius: 20px;
    padding: 12px;
}
.preim_border {
    border-width: 2px;
    border-style: dashed;
    border-color: #AAAAAA;
    border-spacing: 2px;
    padding: 10px;
    border-radius: var(--radius);
}
.preimushestvo:hover {
    background-color: var(--primary); 
}
.preimushestvo:hover .preim_txt {
    background: #ffffff; 
}
.preimushestvo:hover .preim_txt p{ 
    color: var(--dark);
}
.preimushestvo:hover img { 
    filter: grayscale(1) brightness(0) invert(1);
}
.preim_txt .h4 {
padding-bottom: 7px;
}
.reviews_grid {
    padding-top: 25px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
}
.reviews_item {
    border-radius: var(--radius);
    overflow: hidden;
    height: 254px;
}
.reviews_item > * {
   
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: var(--dark);
    object-position: center center;
}
.tamojna_content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gap);
}
.tamojna_nums {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gap);
}
.tamojna_right img {
  width: 100%;
  height: 100%;
  object-fit: contain;
    border-radius: var(--radius);
}
.t_numb {
    border-radius: var(--radius);
    padding:  20px 20px 0 20px;
    background-color: var(--gray);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.t_numb .numb_b {
    font-family: 'Gilroy', sans-serif;
    font-size: 100px;
    color: var(--dark);
    text-align: right;
    margin-top: 4px;
    line-height: 65px;
}
.contact_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gap);
}
.contact-left {
    padding: 35px;
    border-radius: var(--radius);
    background-color: var(--gray);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: var(--gap);
}
.cont_top {
    display: flex;
    flex-direction: column;
    gap: var(--gap);
}
.contact-item {
    display: flex;
    flex-direction: row;
    gap: 7px;
}
.contact-item img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}
.contact-right {
    padding: 35px;
    border-radius: var(--radius);
    background-color: var(--dark);
}
.contact-right form {
    margin-top: 20px;
}
.img_car {
  opacity: 0;
  z-index: 3;
  position: relative;
  transform: translateY(-550px); /* Начинаем выше на 50px */
  transition: opacity 1.2s ease, transform 0.8s ease-out;
}
.etaps {
    position: relative;
    z-index: 3;
}
.img_car.visible {
  opacity: 1;
  transform: translateY(0);
}
.img_car.hidden {
  opacity: 0;
  transform: translateY(1550px); /* Уходит вниз */
}
/* Свайперы */
.swiper {
  margin-bottom: 40px;
}

.swiper-wrapper {
  align-items: stretch;
}

.swiper-slide {
  height: auto;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 0;
}

.swiper {
  margin-bottom: 0;
  padding-bottom: 30px;
}

.swiper-pagination-bullet-active {
  background: var(--primary);
}
.swiper-button-next, .swiper-button-prev {
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 57px;
    height: 57px;
    border-radius: 100px;
    
    top: 30px;
    background: var(--primary);
}
.swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: unset;
    right: 80px;
}
.swiper-button-next:after, .swiper-button-prev:after { 
    font-size: 19px;
    font-weight: 900;
}
/* Футер */
.footer {
  margin-top: 100px;
  padding: 35px 0;
  background: var(--dark);
  color: white;
}

.footer a {
  color: white;
}

.footer-grid {
  display: grid;
  justify-content: space-between;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.footer-grid a {
  text-decoration: none;
}

.footer-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

 

footer .grey {
    padding-bottom: 20px;
}

.footer-grid .footer-left h4 {
  padding-bottom: 0px;
}

.footer_contacts a {
    display: flex;
    padding-bottom: 20px;
    align-items: center;
    gap: 7px;
}

.footer_menu ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
}
.footer_btn {
    text-align: right;
}
.footer_bottom {
  padding-top: 20px;
  display: flex;
  justify-content: flex-end;
  flex-direction: row;
  flex-wrap: wrap;
  gap: var(--gap);
}
/* Модальные окна */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  align-items: center;
  justify-content: center;
}

.modal-content {
    background: var(--dark);
    padding: 30px;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative; 
}

.close {
    position: absolute;
    top: 5px;
    right: 15px;
    font-size: 32px;
    cursor: pointer;
    color: white;
}

.modal-content h3 {
  margin-bottom: 10px;
}

.modal-content p {
  color: white;
  margin-bottom: 10px;
}

 p#booking-model {
    font-size: 22px;
}

.checkbox-label {
  display: block; 
  line-height: 1;
}
.checkbox-label a {
    color: var(--light);
    text-decoration: underline;
}
 .raschet_right .checkbox-label {
    max-width: 80%;
}

 
@media (max-width: 1360px) {
  :root {  
  --gap: 15px; 
}
  .no_pc {
    display: block;
  }

  .container {
    max-width: 1060px;
  }
 .pc_nav {
  display: none;
 }
 h1 {
    font-weight: 600;
    font-size: 43px;
    line-height: 1.2;
    padding-top: 26px;
    padding-bottom: 21px;
}
.hero_content { 
    height: 582px; 
}
.features-grid { 
    bottom: 65px;
    width: 665px;
}
.feature { 
    padding: 15px; 
    height: 120px;
}
.feature p {
    font-size: 13px;
}
main { 
    gap: 100px;
}
h2 { 
    font-size: 40px; 
    padding-bottom: 20px;
}
.about_container { 
    min-height: 460px;
}
.etap_txt { 
    padding: 15px; 
}
.t_numb .numb_b { 
    font-size: 70px; 
    line-height: 45px;
}
.t_numb { 
    padding: 15px 15px 0 15px; 
}
.swiper-button-next, .swiper-button-prev { 
    top: 20px; 
}
}
 @media (max-width: 1200px) {
  .container {
    max-width: 600px;
  }
.header-container { 
    padding: 20px 0px; 
}
   .hero_content  {
    padding-top: 40px;
}
.hero_content { 
    grid-template-columns: 100%;
    gap: 25px;
    height: auto; 
}
.features-grid { 
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gap);
    position: static; 
    width: 100%;
    margin-top: 30px;
}
.hero_left .dashed {
    position: static; 
    margin-top: 28px;
}
.hero_right { 
    height: 360px;
}
  .contact_grid   {
    grid-template-columns: 100%;
    gap: 16px;
  }

  .footer {
    margin-top: 70px;
    ;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-bg { 
    mask-image: none; 
}
h1 { 
        font-size: 55px; 
        padding-top: 0;
        padding-bottom: 21px;
    }
    .h1_circls {
    height: 54px;
    width: auto;
}
.h1_border {
    height: 52px; 
}
.hero_desc {
    font-size: 18px; 
    padding-bottom: 30px;
}
    .feature {
        padding: 20px;
        height: 112px;
    }
    .heafer_mob_bottom .btns_row { 
    align-items: stretch; 
    flex-direction: column;
}
main {
        gap: 70px;
    }
 .section-title {
    max-width: 70%;
}
    .swiper-button-next, .swiper-button-prev {
        top: 70px;
        width: 48px;
        height: 48px;
    }
    .car-card-top > img {
    height: 154px; 
}
.car-card-top { 
    gap: 10px;
}
.uto_name.grey { 
    font-size: 17px;
}
.car_name, .h3 { 
    font-size: 22px;
}
.car-specs > span img {
    width: 18px;
    height: 18px; 
}
.car-specs > span {
    font-size: 13px;
}
.car-specs { 
    justify-content: flex-start; 
}
.car-card-top .price { 
    font-size: 26px; 
}
.car-card { 
    padding: 15px 10px; 
}
.raschet_content { 
    grid-template-columns: 100%; 
}
.raschet_right-bg { 
    mask-image: url(https://izitachka.com/wp-content/uploads/2026/01/subtract-1-1.png); 
}
.about_container, .tamojna_content { 
    grid-template-columns: 100%; 
}
.pluss_grid { 
    grid-template-columns: repeat(2, 1fr); 
}
.etap_item { 
    align-items: flex-start;
    flex-direction: column;
}
.etap_numb { 
    border-radius: 12px; 
    font-size: 26px; 
    min-width: 44px;
}
.h4 { 
    font-size: 18px;
}
.img_car { 
    width: 196px;
    height: auto;
}
.etaps_container { 
    gap: 66px; 
}
.preimushestva_gris, .reviews_grid { 
    grid-template-columns: repeat(2, 1fr); 
}
.reviews_item { 
    height: 168px;
}
.t_numb .numb_b { 
    font-size: 100px; 
    line-height: 65px;
}
.t_numb { 
    padding: 20px 20px 0 20px; 
}
.contact-left, .contact-right, .etap_txt, .raschet_right form {
    padding: 20px; 
}
    .feature p {
        font-size: 14px;
    }
    .about_right_item_desc img {
    width: 76px;
    height: 76px; 
}
	 .raschet_right .wpcf7-acceptance label {
    max-width: 350px; 
}
	 .input_row { 
    grid-template-columns: 100%; 
}
	 .form_label span {
    width: 100%;
}
	 .wpcf7-list-item { 
    margin: 0  ;
}
	 .wpcf7-radio { 
    display: flex;
    gap: 15px;
}
}
@media (max-width: 768px) {
.heafer_mob_bottom .socs {
    display: flex;
}
.header-container .socs, .header-container .pc_header-contact {
  display: none;
}
    .container {
        max-width: 330px;
    }
        .header-container {
        padding: 15px 0px;
    }
        .hero_content {
        padding-top: 15px;
    }
        h1 {
        font-size: 31px; 
        padding-bottom: 15px;
    }
    .h1_circls {
        height: auto;
        width: 80px;
    }
        .h1_border {
        height: auto;
        width: 144px;
    }
    .hero_desc {
        font-size: 15px;
        padding-bottom: 15px;
    }
    .btn {
    padding: 15px 20px; 
    font-size: 15px; 
}
.btns_row { 
    justify-content: space-between;
}
:root { 
    --gap: 10px; 
}
    .features-grid { 
        margin-top: 15px;
    }
        .feature {
        padding: 12px;
        height: 124px;
    }
    .hero_left .dashed { 
        margin-top: 15px;
    }
    .hero_content { 
        gap: 15px; 
    }
    .hero_right {
        height: 198px;
    }
        main {
        gap: 50px;
    }
        h2 {
        font-size: 28px;
        padding-bottom: 15px;
    }
    .swiper-button-prev, .swiper-rtl .swiper-button-next { 
    right: 70px;
}
    .section-title {
        max-width: 190px;
    }
    .car-card-top > img {
        height: 170px;
    }
    .car-card-top {
        gap: 8px;
    }
    .car-specs { 
    gap: 30px;
}
.input_row { 
    grid-template-columns: 100%; 
}
.contact-left, .contact-right, .etap_txt {
        padding: 15px;
    }
    .form_item label { 
    gap:8px;
}
    .raschet_right-bg {
        mask-image: url(https://izitachka.com/wp-content/uploads/2026/01/subtract-2-1.png);
    }
    .raschet_right .checkbox-label {
    max-width: 100%;
}
.raschet_right form {
        padding: 15px 15px 83px 15px;
    }
    .about_left  { 
    gap: 20px;
}
.about_right_grid {
    display: flex; 
    flex-direction: row;
    flex-wrap: wrap;
    height: 600px;
}
.about_right_grid .about_right_item:nth-child(1), .about_right_grid .about_right_item:nth-child(2) {
    width: 48%;
        height: 420px;
}
.about_right_grid .about_right_item:nth-child(3) {
  width: 100%;
        height: 152px;
        grid-template-rows: 1fr;
        grid-template-columns: 1fr 1fr;
}
.about_right_item_desc img {
    width: 62px;
    height: 62px; 
}
.about_right_item_desc {
    padding: 15px; 
} 
:root { 
    --radius: 20px;  
}
.plus_item img {
    width: 48px;
    height: 48px; 
    padding: 8px; 
}
p {
  font-size: 14px;
}
.pluss_grid { 
    gap: 15px; 
}
.img_car {
        width: 100px; 
    }
        .etaps_container {
        gap: 10px;
    }
        .h4 {
        font-size: 16px;
    }
        .etap_numb { 
        font-size: 18px;
        min-width: 35px;
    }
        .preimushestva_gris, .reviews_grid {
        grid-template-columns: 100%;
    }
    .preimushestvo { 
    padding: 15px; 
    gap: 15px; 
}
.preimushestvo img {
    width: 37px;
    height: 37px; 
}
.reviews_item {
        height: 190px;
    }
    .reviews-slider {
      display: block;
      padding-top: 15px;
    }
    .reviews_grid {
      display: none;
    }
    .tamojna_nums { 
    grid-template-columns: 100%; 
}
.t_numb .numb_b {
        font-size: 85px;
        line-height: 50px;
    }
        .car_name, .h3 {
        font-size: 18px;
    }
    .socs img {
    width: 22px;
    height: 22px; 
}
.cont_top { 
    gap: 15px ;
}
.raschet_right form .btn {
    width: fit-content;
}
form .btn {
    width: 100%;
}
    .footer-grid {
        grid-template-columns: 100%;
    }
.footer_btn .btn {
    width: 100%;
}
.heafer_mob_bottom .btns_row { 
        flex-direction: row;
    }
	.row { 
    gap: 15px; 
    flex-direction: column;
}
	.form_label span.wpcf7-radio { 
        flex-wrap: wrap; 
        width: fit-content;
    }
	
	.form_label span.wpcf7-radio > span{  
        width: fit-content;
    }
	form .h4 {
    padding-bottom: 10px;
    padding-top: 5px;
}
}