/*!
Theme Name: Expo
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: expo
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.

Expo 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: #FF9819;
  --primary2: #8BB0BA;
  --dark: #181819;
  --light: #FDFFFF;
  --white: #ffffff;
  --gray: #242525;
  --gray-txt: #919191;
  --border-color: #AAAAAA;
  --radius: 20px; 
  --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(--dark); 
  font-weight: 400;
  background: var(--light);
  font-size: 16px;
  
    line-height: 1;
}

main {
  display: flex;
  flex-direction: column;
  gap: 120px;
  background-image: url(./images/convertio.in_узор.webp);
  background-size: 100%;
  background-position: center top;
}

button {
  border: none;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Gilroy', sans-serif;
}
h1 { 
    font-weight: 700;
    font-size: 58px; 
}
h3 {
  font-weight: 600;
  font-size: 23px; 

}

h2 {
    font-weight: 700;
    font-size: 45px; 
    padding-bottom: 25px;
}     

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

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

}
p {
  line-height: 1.3;
}
.grey {
  color: var(--gray-txt);
} 
a { 
    text-decoration: none;
    color: var(--dark); 
}
a, button {
  cursor: pointer;
}
.white{
  color: var(--white);
}
a, button {
  transition: var(--transition);
}
.btn {
    padding: 20px 25px;
    border-radius: var(--radius);
    font-size: 22px;
    font-weight: 500;
    text-decoration: none;
    color: white;
}

   
/*Мобильное меню*/

  .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;
  }
  .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: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%;
    border-radius: var(--radius);
    padding: 30px;
    background-color: var(--light);
}
.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: fixed;
    top: 20px;
    left: 0;
    width: 100vw;
    z-index: 1000; 
}

.header-container {
  margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 20px;
    z-index: 12;
    border-radius: var(--radius);
    background-color: var(--light);
}
.header_item {
    display: flex;
    gap: 40px;
    align-items: center;
}
.logo img  {
    height: 28px;
    width: auto;
}

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

.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 a {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    background-color: var(--primary);
    width: 67px;
    height: 67px;
}
.socs a:hover { 
    background-color: var(--primary2);
}
.socs img {
    width: auto;
    height: 27px;
    object-fit: contain;
    object-position: center center;
}
.header-container .socs a { 
    width: 48px;
    height: 48px;
} 
.header-container .socs img { 
    height: 18px; 
}
.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 {
    padding: 220px 0 70px;
    height: 100vh;
    color: var(--light);
}
 .hero_content {
    display: grid;
    justify-content: space-between;
    grid-template-columns: auto 430px;
    gap: 40px;
    align-items: stretch;
    height: 100%;
}
.hero_right_item  {
  padding: 30px;
  color: var(--dark);
    border-radius: var(--radius);
}

 
.hero_adress {
    background-color: var(--light); 
}
.hero_time {
  background: linear-gradient(133.94deg, #8BB0BA 41.85%, #FF9819 126.69%);

    color: var(--light);
}
.hero_title {
    display: flex;
    flex-direction: row;
    margin-bottom: 20px;
    justify-content: space-between;
}
.hero_content_right {
    display: flex;
    flex-direction: column;
    gap: var(--gap);
    justify-content: flex-end;
}
.hero_title svg {
    width: 50px;
    height: 50px;
}
.hero_title h3 {
    width: 210px;
}
.hero_content_left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.hero ul li {
    list-style: disc;
} 
.hero h1{
  padding-bottom: var(--gap);
  color: var(--light);
    line-height: 1.3;
}
.hero_adress ul {
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
::marker {
	color: var(--primary2);
	font-size: 18px;
}
.hero_desc {
    font-weight: 500;
    font-size: 34px;
}
.btn_row {
    display: flex;
    flex-direction: row;
    gap: var(--gap);
    align-items: stretch;
}
.hero .container {
    height: 100%;
}
.about_container {
    display: grid;
    gap: var(--gap);
    grid-template-columns: 1fr 1fr;
}
.about_right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 28px;
}
.about_left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    gap: var(--gap);
}
.numbs_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap);
    margin-top: 15px;
}
.logo_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
}
.numbs {
    padding: 15px 20px;
    border-radius: var(--radius);
    background: #F0F3F4;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.numbs p { 
    font-weight: 500;
}
.numbs p.numb {
    color: var(--primary);
    font-weight: 700;
    font-size: 37px;
    font-family: 'Gilroy', sans-serif;
}
.numbs p { 
    font-weight: 500;
}
.jdet_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
}
.jdet_item {
    min-height: 256px;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    gap: var(--gap);
    padding: 18px;
    background-size: cover;
    background-position: center center;
}
.jdet_item_img {
    text-align: right;
}
.jdet_item img {
    height: 148px;
    width: 148px;
    object-fit: contain;
}
.jdet_item p {
    font-family: 'Gilroy', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: white;
    padding-left: 14px;
    border-left: 4px solid var(--white);
}
.jdet_item_last {
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    gap: var(--gap);
}
.jdet_item_last_p {
    width: 100%;
}
.about_teams_container {
    display: grid;
    gap: var(--gap);
    grid-template-columns: 58% 40%;
}
.about_teams_right {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius);
    padding: 25px;
    align-content: end;
    background-size: cover ;
    background-position: center center;
}
.about_teams_right_desc svg {
    width: 32px;
    height: auto;
    margin-bottom: 15px;
}
.about_teams_right_desc {
    padding: 20px;
    border-radius: var(--radius);
    background-color: #8BB0BA;
    color: var(--white);
    font-size: 18px;
}
.about_teams_left {
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: var(--gap);
}
.vistavka_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap);
}
form .h4{
  padding-bottom: 15px;
}
.input_row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap);
    align-items: center;
}
.vistavka_item {
    background: #8BB0BA;
    border-radius: 28px;
    align-items: center;
    overflow: hidden;
    min-height: 116px;
    align-content: center;
    padding: 25px 15px;
    position: relative;
    color: var(--white);
}
.vistavka_item_img img {
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    width: 100px;
    object-fit: cover;
}
.vistavka_item p {
    padding-left: 106px;
}
.why_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
}
.why_item {
    padding: 25px;
    border-radius: var(--radius);
    background: #F0F3F4;
}
.why_item img {
    width: 42px;
    height: 42px;
    padding: 9px;
    border-radius: 8px;
    background-color: var(--primary);
    object-fit: contain;
}
.p_title {
    font-weight: 600;
    font-size: 20px;
    line-height: 1.3;
    padding-top: 15px;
    padding-bottom: 10px;
}
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
}
.calendar-card-top img {
    width: 100%;
    height: 178px;
    object-fit: cover;
    object-position: center center;
    border-radius: var(--radius);
}
.calendar_name {
    font-weight: 700;
    font-size: 32px;
    line-height: 1.3;
    padding: 12px 0 17px;
}
.calendar-card {
    padding: 20px;
    border-radius: var(--radius);
    background: #F0F3F4;
}
.calendar-specs {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 50px;
    row-gap: 15px;
}
.calendar-specs svg {
    height: 26px;
    width: auto;
}
.calendar-specs > span {
    display: flex;
    gap: 8px;
    align-items: center;
}
.calendar-card {
    padding: 20px;
    border-radius: var(--radius);
    background: #F0F3F4;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
}
.uchastnikam_grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--gap);
    margin-top: 25px;
}
.uchastnikam_item img {
    width: 42px;
    height: 42px;
    padding: 9px;
    border-radius: 8px;
    background-color: var(--primary2);
    object-fit: contain;
}
.format_right {
    width: 100%;
    height: 100%;
    border-radius: var(--radius);
    padding: 25px;
    align-content: end;
    background-size: cover;
    background-position: center center;
}
.format_content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gap);
}
.format_left, .contact-right {
    padding: 30px;
    border-radius: var(--radius);
    background: #F0F3F4;
    position: relative;
}
.format_left img {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 0;
    max-height: 90%;
    width: auto;
}
.format_left *:not(img) { 
    z-index: 1;
    position: relative;
}
.format_left h4, .contact-right .h3 {
    font-size: 22px;
}
.h3 { 
    font-weight: 600;
}
.format_left ul {
    padding-top: 20px;
    padding-bottom: 35px;
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.format_left ul li {
    list-style: disc;
}
.contact_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gap);
}
.contact-left {
    display: flex;
    flex-direction: column;
     gap: var(--gap);
    justify-content: space-between;
}
.row {
    display: flex;
     gap: var(--gap);
}
.contact-right .h3 {
  padding-bottom: 20px;
}
.soprovojdenie_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap);
    margin-top: 20px;
}
.soprovojdenie_item {
    padding: 20px 20px 0 20px;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.soprovojdenie_item > div {
    text-align: right;
}
.soprovojdenie_item:nth-child(1) {
border: 2px solid #F0F3F4
}
.soprovojdenie_item:nth-child(2) {
background: #F0F3F4; 
}
.soprovojdenie_item:nth-child(3) {
background: var(--primary2); 
color: var(--white);
}
.soprovojdenie_item:nth-child(4) {
background: var(--primary);
color: var(--white);
}
form .btn {
  width: fit-content;
}
label {
  font-weight: 500 ;
}
input[type="tel"], input[type="text"], textarea {
    padding: 15px;
    background-color: var(--white);
    border: none;
    border-radius: 12px;
}
.form_item label {
    display: flex;
    flex-direction: column;
    gap: var(--gap);
}
form {
    display: flex;
    flex-direction: column;
    gap: var(--gap);
    z-index: 1;
    align-items: stretch;
    position: relative;
    justify-content: space-between;
}
 
/* Свайперы */
.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);
}
.dashed {
    width: 100%;
    height: 2px;
    background: #DFDFDF;
}
/* Модальные окна */
.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: white;
    padding: 30px;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    background-color: #F5F5F5;
}

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

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

.modal-content p {
  color: var(--gray);
  margin-bottom: 20px;
}

.modal-content input,
.modal-content textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: var(--radius);
}

.checkbox-label {
  display: block; 
  line-height: 1;
}
.checkbox-label a {
    color: var(--dark);
    text-decoration: underline;
}
 .raschet_right .checkbox-label {
    max-width: 80%;
}
.soprovojdenie_item img {
    width: 92px;
    height: auto;
}
 
@media (max-width: 1360px) {
  :root {  
  --gap: 15px; 
}
  .no_pc {
    display: block;
  }

  .container {
    max-width: 1160px;
  }
 .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;
} 
.swiper-button-next, .swiper-button-prev { 
    top: 20px; 
}
.header_item { 
    gap: var(--gap); 
}
.jdet_item img {
    height: 128px;
    width: 128px; 
}
}
 @media (max-width: 1200px) {
  .container {
    max-width: 600px;
  }
.header-container { 
        padding: 20px;
}
   .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: 42px; 
        padding-top: 0;
        line-height: 1;
        padding-bottom: 15px;
    }
    .h1_circls {
    height: 54px;
    width: auto;
}
.hero {
    padding:153px 0 25px;
    height: auto; 
}
.h1_border {
    height: 52px; 
}
.hero_desc {
    font-size: 26px; 
    padding-bottom: 30px;
}
.hero_title h3 {
    width: fit-content;
} 
    .heafer_mob_bottom .btns_row { 
    align-items: stretch; 
    flex-direction: column;
}
h3 { 
    font-size: 28px;
}
.hero_title { 
    align-items: center;
    margin-bottom: 5px;
}
    h2 {
        font-size: 38px;
        padding-bottom: 15px;
    }
main {
        gap: 70px;
    }
    .numbs p.numb { 
    font-size: 32px; 
}
 .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-specs > span img {
    width: 18px;
    height: 18px; 
}
.car-specs > span {
    font-size: 13px;
} 
.car-card { 
    padding: 15px 10px; 
}
.raschet_content { 
    grid-template-columns: 100%; 
}
.raschet_right-bg { 
    mask-image: url(./images/Subtract\ \(2\).png); 
}
.about_container, .tamojna_content { 
    grid-template-columns: 100%; 
}  
.h4 { 
    font-size: 18px;
} 
.contact-left, .contact-right, .etap_txt, .raschet_right form {
    padding: 20px; 
} 
    .about_right_item_desc img {
    width: 76px;
    height: 76px; 
}
.about_right img { 
    height: 389px; 
}
.jdet_grid { 
    grid-template-columns: repeat(2, 1fr); 
}
.jdet_item {
    min-height: 225px; 
}
.jdet_item img {
        height: 107px;
        width: 107px;
    }
    .jdet_item p { 
    font-size: 22px; 
}
.about_teams_container, .format_content, .why_grid, .catalog-grid { 
    grid-template-columns: 100%;
}
.about_teams_left {
    padding-top: 0; 
}
.about_teams_right { 
    height: 446px; 
}
.vistavka_grid { 
    grid-template-columns: repeat(2, 1fr); 
}

    .section-title {
        max-width: 100%;
    }
    .uchastnikam_grid, .soprovojdenie_grid { 
    grid-template-columns: repeat(2, 1fr); 
    margin-top: 20px;
}
.format_right { 
    height: 403px; 
}
.btn { 
    font-size: 16px; 
}
.heafer_mob_bottom .btns_row .btn {
width: 100%;
}
.b-nav li a{ 
    font-size: 26px; 
    text-transform: capitalize;
} 
.heafer_mob_top .footer_contacts {
    font-size: 20px;
}
.nav a {
  font-weight: 500;
}
.heafer_mob_top .header_socs{
    display: none;
}
}
@media (max-width: 768px) {
  body { 
    font-size: 14px; 
}
.heafer_mob_bottom .socs {
    display: flex;
}
.header-container .socs, .header-container .pc_header-contact {
  display: none;
}
    .container {
        max-width: 350px;
    }
    .logo img {
    height: 24px; 
}
         .header-container {
        padding: 12px 22px;
    }
    .b-container { 
    padding: 13px 10px;
    border-radius: 12px;
}
.b-container.open .b-bun--top { 
    top: 2px; 
}
.b-container.open .b-bun--bottom { 
    top: -2px; 
}
.header_mob_contetnt { 
    padding: 20px; 
}
    .b-nav li a {
        font-size: 22px; 
    }
        .heafer_mob_top .footer_contacts {
        font-size: 17px;
    }
   .heafer_mob_top  .footer_contacts a { 
    padding-bottom: 15px; 
}
.heafer_mob_top .header_socs{
    display: flex;
}
.heafer_mob_top .socs a { 
    width: 40px;
    height: 40px;
}
    .hero {
        padding: 113px 0 15px;
        height: 100vh;
    }
        .hero_content {
        padding-top: 15px;
    }
        h1 {
        font-size: 28px; 
        padding-bottom: 10px;
    }
    .h1_circls {
        height: auto;
        width: 80px;
    }
        .h1_border {
        height: auto;
        width: 144px;
    }
    .hero_desc {
        font-size: 16px;
        padding-bottom: 20px;
    }
.btn {
        padding: 15px 20px;
        font-size: 14px;
        border-radius: 12px;
    }
.btns_row { 
    justify-content: space-between;
}
:root { 
    --gap: 10px; 
    --radius: 16px
}
.hero_title svg {
    width: 29px;
    height: 29px;
}
    h3 {
        font-size: 16px;
    }
    .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: 26px;
        padding-bottom: 15px;
    }
    .swiper-button-prev, .swiper-rtl .swiper-button-next { 
    right: 70px;
} 
    .car-card-top > img {
        height: 170px;
    }
    .car-card-top {
        gap: 8px;
    } 
.input_row { 
    grid-template-columns: 100%; 
}
.contact-left, .contact-right, .etap_txt {
        padding: 15px;
    }
    .form_item label { 
    gap:8px;
} 
    .about_left  { 
    gap: var(--gap);
}
.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; 
}   
p {
  font-size: 14px;
}  
        .h4 {
        font-size: 16px;
    } 
        .h3 {
        font-size: 18px;
    }
    .socs img {
    width: auto;
    height: 18px; 
}
.cont_top { 
    gap: 15px ;
} 
.socs a { 
    width: 48px;
    height: 48px;
}
form .btn {
    width: 100%;
}
    .footer-grid {
        grid-template-columns: 100%;
    }
.footer_btn .btn, .section-title {
    width: 100%;
}
.heafer_mob_bottom .btns_row { 
        flex-direction: row;
    }
    .numbs_grid { 
    grid-template-columns: repeat(2, 1fr); 
}
.numbs { 
    gap: 0;
}
    .about_right img {
        height: 213px;
    }
    .jdet_grid, .vistavka_grid, .uchastnikam_grid, .soprovojdenie_grid  {
        grid-template-columns: 100%;
    }
        .jdet_item img {
        height: 65px;
        width: 65px;
    }
        .jdet_item {
        min-height: 144px;
    }
    .jdet_item_last {
    padding: 0px; 
    align-items: stretch; 
}
.about_teams_right { 
    height: 273px; 
    padding: 10px; 
}
.about_teams_right_desc svg {
    width:28px; 
    margin-bottom: 10px
}
.about_teams_right_desc {
    padding:15px; 
}
.vistavka_item_img img { 
    width: 90px; 
}
.vistavka_item p {
    padding-left: 90px;
}
.vistavka_item { 
    border-radius: var(--radius); 
    min-height: 78px; 
    padding: 20px; 
}
.why_item, .format_left, .contact-right {
    padding: 15px; 
}
.why_item img, .uchastnikam_item img {
    width: 38px;
    height: 38px; 
}
.p_title { 
    font-size: 16px; 
    padding-top: 7px;
    padding-bottom: 7px;
}
.calendar-card {
    padding: 12px; 
}
.calendar-card-top img { 
    height: 97px; 
}
.calendar_name { 
    font-size: 18px; 
    padding: 10px 0 12px;
}
.calendar-specs svg {
    height: 23px; 
}
.calendar-specs { 
    column-gap: 33px;
    row-gap: 14px;
}
h4, .format_left h4, .contact-right .h3 { 
    font-size: 16px; 
}
.format_left ul {
    padding-top: 12px;
    padding-bottom: 15px; 
    gap: 10px;
}
.format_left img { 
    max-height: 80%; 
}
.format_right {
        height: 221px;
    }
    .row { 
    flex-direction: column;
}
.soprovojdenie_item img {
    width: 72px;
    height: auto;
}
.footer_bottom { 
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: var(--gap);
    font-size: 14px;
}
}