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

carbag 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.
 */

@font-face {  
    font-family: 'Colus';  
    src: url('https://carbags.ru/wp-content/themes/carbag/fonts/Colus-Regular.woff2') format('woff2');   
}  
:root {
    --primary: #FF0000;
    --text: #000000; 
    --transition: all 0.3s ease;
    --gap: 24px;
}


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

.no_pc {
    display: none;
}

body {
  font-family: "Arimo", sans-serif;
    color: var(--text);
    font-weight: 500;
    background: var(--white);
    font-size: 16px;
    line-height: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
} 

button {
    border: none;
    font-size: 14px;
}

section {
    position: relative;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Lora", sans-serif;
    font-weight: 700;
} 

h1 {
    font-size: 69px;
    text-transform: uppercase;
}
h1 span{
    font-size: 100px; 
}
h2 {
    font-size: 52px;
}
.hero h1 {
    color: white;
}
h1.entry-title {
    font-size: 32px;
}
.entry-content h2 {
    padding-bottom: 20px;
    padding-top: 40px;
    font-size: 22px;
}
h3 {
    font-size: 21px;
}


h4 {
    font-size: 16px;
}


p {
    line-height: 1.3;
}
img {
width: 100%;
height: 100%;
object-fit: contain;
}
.grey {
    color: var(--gray-txt);
}

a {
    text-decoration: none;
    color: black;
}

a,
button {
    cursor: pointer;
    border: none;
    background: none;
}

.white {
    color: var(--white);
}

a,
button {
    transition: var(--transition);
}

input,
input:focus,
input:active {
    border: none;
    outline: none;
}
.entry-header {
    padding: 40px 0px;
}
.entry-content h2 {
    padding-bottom: 20px;
    padding-top: 40px;
}
.entry-content {
    padding-bottom: 50px;
}
.btn {
    padding: 20px;
    font-size: 21px;
    text-decoration: none;
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 10px;
    white-space: nowrap;
    text-align: center;
    justify-content: center;
    line-height: 1;
    width: 303px;
}

.btn_primary {
    border: 1px solid var(--primary);
    background-color: var(--primary);
    color: white;
}

.btn_primary:hover {
    background-color: var(--white);
    color: var(--primary);
}

.btn_border_red {
    border: 1px solid var(--primary);
    color: white;
    width: 303px;
}

.btn_border_red:hover,
.btn_border_red.active {
    background-color: var(--primary);
}
.btn_border_white {
    color: white;
    border: 1px solid white;
}
.btn_border_white:hover,
.btn_border_white.active {
    border: 1px solid var(--primary);
    background-color: var(--primary); 
}

.btn_grey {
    color: white;
    background: #CFCFCF;
}

.btn_grey:hover {
    background-color: var(--primary); 
}
/*Мобильное меню*/

  .pc-nav {
    display: none;
  }
  .not_pc { 
  }
  .not_mob {
    display: none; 
  }
  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: 120px;
  }
  .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: #000000;
} 
  .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: transparent;
    padding: 10px 7px;
    border-radius: 8px;
    border: 1px solid #000000;
}

.b-container.open {
    border: 1px solid #ffffff;

}
  .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: -1px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .b-container.open .b-brand {
    color: #fff;
  }
  .vis .b-bun {
    background: #000000;
  } 
.header_mob_contetnt {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.b-nav.open .container {
    height: 100%;
    padding-bottom: 30px;
} 
  /*конец моб меню*/
 
/* Модальные окна */
.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: #000000;
    padding: 30px;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.modal-content p {
  color: var(--gray); 
}

/*конец модальных окон*/
/*форма*/
.wpcf7-submit {
    width: 100%;
    margin-bottom: 16px;
    font-size: 16px;
}
form input:not([type="checkbox"]):not([type="submit"]),
form textarea, form select {
    width: 100%;
    padding: 10px 20px;
    margin-bottom: 15px;
    border: 1px solid #fff;
    border-radius: var(--radius);
    background: transparent;
    color: white;
    position: relative;
} 
.wpcf7-acceptance label { 
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
	font-size:10px;
    align-items: center;
}
.wpcf7-acceptance a { 
    color:white;
	text-decoration:underline;
}

.wpcf7-acceptance > span { 
   margin:0;
}
form label {
	display:flex;
	flex-direction:column;
	gap:10px;
}
option {
    background: black;
    color: white;
}
span.wpcf7-spinner {
    display: none;
}
select {
  appearance: none;
  @supports (appearance: base-select) {
    &,
    &::picker(select) {
      appearance: base-select;
    }
  }
}

select {
  display: flex;
  justify-content: space-between; 
  align-items: center;
  color: white;
  padding-block: 10px;
  padding-inline: 10px 30px;
  border-radius: 5px;
  border: 2px solid plum;
  cursor: pointer;
  font-weight: 700;
  background: hotpink
    url("http://carbags.ru/wp-content/uploads/2026/06/vector-3-1.svg")
    right 10px center / 20px no-repeat;
  @supports (appearance: base-select) {
    padding-inline: 10px;
    background-image: none;
    &::picker-icon {
      content: "";
      width: 20px;
      height: 20px;
      background-image: url("http://carbags.ru/wp-content/uploads/2026/06/vector-3-1.svg");
      transition: rotate 0.2s ease-out;
            background-position: center;
            background-repeat: no-repeat;
    }
    &:open::picker-icon {
      rotate: 180deg;
    }
    &::picker(select) {
      padding: 0;
      margin-top: 5px;
      border: 2px solid #80747a;
      background: white;
      border-radius: 5px;
      font-weight: 400;

      opacity: 0;
      height: 0;
      overflow: clip;
      transition: height 0.5s ease-out, opacity 0.5s ease-out, overlay 0.5s,
        display 0.5s;

      transition-behavior: allow-discrete;
    }
    &:open::picker(select) {
      opacity: 1;
      height: auto;
      overflow: auto;
      @starting-style {
        opacity: 0;
        height: 0;
      }
    }
    option {
      padding: 10px;
      border-top: 1px solid #818181;
      cursor: pointer;
      transition-property: color, background;
      transition-duration: 0.2s;
      transition-timing-function: ease-out;
      &:where(:hover, :focus, :active) {
        background: #373737;
        color: white;
      }
      &:checked {
        background: #373737;
        color: white;
      }
      &::checkmark {
        display: none;
      }
      &:first-child {
        border: 0;
      }
    }
  }
} 
/*Слайдеры*/
.product_slider1 .swiper-slide {
    background-color: white;
    border-radius: var(--radius);
} 
.prod_thimb {
    height: 100%;
    width: 100%;
}
.swiper.product_slider2 {
    width: 646px;
    margin: 0;
}
.swiper-thumbs_container {
    width: 144px;
}
.product_slider {
    display: flex;
    flex-direction: row;
    height: 537px;
    width: 100%;
    gap: var(--gap); 
}
.swiper.product_slider2 .swiper-slide { 
    background-color: white; 
    border-radius: var(--radius);
	padding:0;
}
.swiper-slide-thumb-active {
    border: 1px solid var(--primary);
}
.swiper.product_slider1 {
    padding: 0;
    width: 100%;
}
.product_slider2 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
} 
.prod_swiper-button-next, .prod_swiper-button-prev {
    position: absolute;
    top: 47%;
    z-index: 2;
}
.prod_swiper-button-next {
    right: 20px;
}
.prod_swiper-button-prev {
    left: 20px;
}
.prod_swiper-button-next:after, .prod_swiper-button-prev:after {
    display:none;
}
.product_slider1 {
    height: 85%;
}
/* Свайперы */
.swiper {
    margin-bottom: 40px;
}

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

.swiper-slide {
    height: auto;
}

.swiper-pagination-bullet  {
    transition: all 0.3s;
    width: 6px;
    border-radius: 0px;
    background-color: white;
    height: 22px;
    opacity: 1;
}
.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 30px;
}

.swiper {
    margin-bottom: 0; 
}

.swiper-pagination-bullet-active {
    background: var(--primary);
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 71px;
    height: 71px;
    border-radius: 100px;
    background: white;
    box-shadow: 0px 20px 50px 0px #10071F33;
    top: 50%;
}
 

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
    left: -40px;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
    right: -40px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 26px;
    font-weight: 200;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 3px;
}

.swiper-pagination-bullet-active {
    height: 46px;
}
/*конец слайдеров*/
 
/* Табы */
.tabs {
    display: flex;
    gap: 32px;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-start;
    padding: 23px 0 40px;
} 

.tab:hover { 
    color: var(--primary);
}
.tab::after {
    position: absolute;
    content: '';
    bottom: 0px;
    background-image: url(../images/Group\ 20.svg);
    left: 0;
    height: 9px;
    width: 100%;
    background-size: contain;
    background-position: left;
}

.tab.active::after, .tab:hover::after { 
    background-image: url('http://carbags.ru/wp-content/uploads/2026/06/group-35.svg'); 
}
.tab.active {
    color: var(--primary);
}
.tab {
    font-size: 28px;
    color: white;
    position: relative;
    width: 183px;
    transition: var(--transition);
    padding-bottom: 10px;
    font-family: "Lato", sans-serif;
}

.tab.active svg path {
    fill: var(--primary);
}

.left_tab {
    text-align: left;
}

.left_tab>span {
    font-size: 24px;
    font-weight: 500;
}

.tarif_container {
    display: grid;
    gap: 32px;
    grid-template-columns: 3fr 7fr;
}

.tab-content {
    animation: fadeIn 0.4s ease;
    position: relative;
    display: none;
}

/* Контент табов */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Страницы */

.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
}
 .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 0;
}
header .logo {
    font-family: "Colus", sans-serif;
    font-size: 45px;
    text-transform: uppercase;
    line-height: 1;
}
.header_left {
    z-index: 13;
    position: relative;
}
 header .logo a{
	transition:var(--transition);
}
.open header .logo a{
    color:white;
}
.header_right nav ul {
    display: flex;
    gap: 80px;
    font-size: 18px;
}
.header_right nav ul a{
    transition: var(--transition);
}
.header_right nav ul a:hover{
    color: var(--primary);
}
.hero_item {
    height: calc(100vh - 72px);
    padding: 76px 0;
    background-position: center;
    background-size: cover;
    position: relative;
    text-align: center;
}
.hero_main_bg {
    background: linear-gradient(173.93deg, #000000 6.43%, rgba(0, 0, 0, 0) 35.24%);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.hero_desc {
    color: white;
    font-size: 28px;
    padding-top: 10px;
}
.hero_content {
    justify-items: center;
}
.hero_content .btn{
    margin-top: 30px;
}
.reheniya {
    background-image: url(http://carbags.ru/wp-content/uploads/2026/06/16aab025eddc5da8e6877735ef38a2b12e903895-scaled.jpg);
    padding: 62px 0 103px;
    background-position: center;
    background-size: cover;
}
.main_title {
    display: flex;
    gap: 16px;
    margin-bottom: 36px;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
h2.ramka {
    position: relative;
}
h2.ramka::after {
    position: absolute;
    right: -30px;
    top: -10px;
    width: 48px;
    height: 45px;
    content: '';
    background-image: url(http://carbags.ru/wp-content/uploads/2026/06/vector-8.svg);
}
h2.ramka::before {
    position: absolute;
    left: -30px;
    bottom: -10px;
    width: 48px;
    height: 45px;
    content: '';
    background-image: url(http://carbags.ru/wp-content/uploads/2026/06/vector-9.svg);
}
.ixi {
    height: 9px;
    width: 240px;
    background-size: contain;
    background-position: left;
}

.ixi_black {
background-image: url(http://carbags.ru/wp-content/uploads/2026/06/group-11.svg);
}.ixi_white {
background-image: url(http://carbags.ru/wp-content/uploads/2026/06/group-20.svg);
}
.reheniya_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap);
}
.reheniya_item {
    padding: 20px;
    color: white;
    align-content: end;
    height: 394px;
    background-position: center;
    background-size: cover;
    transition: var(--transition);
}
.reheniya_item h3 {
    text-transform: uppercase;
    padding-bottom: 6px;
    font-family: "Arimo", sans-serif;
}
.reheniya_item_desc {
    font-size: 14px;
}
.reheniya_item_content .btn_border_white {
    font-size: 14px;
    padding: 12px;
    width: 210px;
    margin-top: 13px;
}
.reheniya_item:hover {
    scale: 1.1;
}
.sborka {
    background-image: url(http://carbags.ru/wp-content/uploads/2026/06/510f37cce04bbb5197ead0e30babcf9ff88b2268-scaled.png);
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 28px 0 0;
    color: white;
}
.sborka_bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0.64));
}
.title_desc {
    max-width: 1083px;
    font-size: 21px;
}
.sprka_content {
    position: relative;
    height: 100vh;
    padding: 100px 0 120px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    background-size: cover;
    background-position: center;
}
.sprka_content::before {
    position: absolute;
    content: '';
    top: -4px;
background-image: url(http://carbags.ru/wp-content/uploads/2026/06/group-20.svg);
    height: 9px;
    width: 100%;
    background-size: contain;
    background-position: left;
}
.sborka_item {
    backdrop-filter: blur(12.899999618530273px);
    padding: 16px;
    border-radius: 15px;
    display: flex;
    gap: 10px;
    position: absolute;
    max-width: 431px;
    align-items: center;
}
.sborka_item_img {
    width: 78px;
    min-width: 78px;
    height: 78px;
    background-color: white;
    justify-items: center;
    align-content: center;
    border-radius: 50%;
    text-align: center;
    padding: 15px;
}
p#booking-model {
    font-size: 24px;
    color: var(--primary);
    font-weight: 700;
}
.sborka_item_img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.sborka_item_txt_title {
    font-size: 24px;
}
.sborka_item_txt_desc {
    font-size: 21px;
} 
.sborka_item:nth-child(1) {
    top: 40%;
    bottom: auto;
    margin: auto;
    left: 10vw;
}
.sborka_item:nth-child(2) {
    top: 10%;  
    left: 47vw;
}
.sborka_item:nth-child(3) {
    top: 40%;
    bottom: auto;
    margin: auto;
    right: 10vw;
}
.perks {
    padding: 109px 0;
}
.perks_content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
}
.perk_item_txt {
    border-left: 7px solid var(--primary);
    padding-left: 17px;
}
.perk_item_txt_title {
    font-weight: 700;
    font-size: 24px;
    padding-bottom: 16px;
    text-transform: uppercase;
}
.perk_item_img {
    padding-left: 24px;
    margin-bottom: 12px;
}
.perk_item_img img {
    width: 80px;
    height: 80px;
}

.models {
    background-image: url(http://carbags.ru/wp-content/uploads/2026/06/510f37cce04bbb5197ead0e30babcf9ff88b2268-scaled.png);
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
    padding: 37px 0 60px;
}
.model_conteiner {
    display: flex;
    width: 100%;
    gap: var(--gap);
    flex-direction: row;
    justify-content: space-between;
}
.product_slider img {
    object-fit: cover;
}
.prodt_swiper-button-next {
    text-align: center;
    padding-top: 30px;
}
.about_model {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}
.about_model h3 {
    font-family: "Lato", sans-serif;
    font-size: 28px;
}
.model_char {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.model_char::after, .model_char::before {
    background: linear-gradient(90deg, #FFFFFF 0%, #000000 100%);
    content: '';
    height: 1px;
    width: 226px;
}
.model_price {
    color: #999999;
    margin-bottom: 45px;
}
.prod_price {
    color: var(--primary);
    font-size: 35px;
    display: block;
}
.customiz {
    background-image: url(http://carbags.ru/wp-content/uploads/2026/06/16aab025eddc5da8e6877735ef38a2b12e903895-scaled.jpg);
    padding: 110px 0 160px;
    background-position: center;
    background-size: cover;
    height: 887px;
}
.customiz_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap);
}
.customiz_item_img {
    padding: 20px;
    height: 428px;
    align-content: end;
    background-size: cover;
    background-position: center;
    color: white;
    text-transform: uppercase;
    font-weight: 700;
    transition: var(--transition);
}
.customiz_item_img h3{
    
    font-family: "Arimo", sans-serif;
    transition: var(--transition);
}

 
.customiz_item:hover .customiz_item_img { 
    height: 465px; 
}
.customiz_item:hover .customiz_item_img h3 { 
    font-size: 30px; 
}

.customiz_item:hover .btn_grey  {
    background-color: var(--primary); 
}
.customiz_item {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
}
.customiz_item a {
    font-size: 16px;
    width: 100%;
}
.main_form {
    padding: 56px 0;
}
.form_bg {
    position: absolute;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    top: 0;
    left: 0;
}
.form_bg_item {
    position: relative;
    background-size: cover;
    background-position: center;
}
.form_bg .form_bg_item:nth-child(1)::after {
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #000000C4;

}
.form_container {
    color: white;
    padding: 32px;
    background-color: black;
    max-width: 605px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-left: 6vw;
}
.form_container h2 {
    font-size: 40px;
    line-height: 1.2;
}
.gallery_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.gallery_grid a {
    height: 25vw;
}
.gallery_grid a img{
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
}
.gallery_grid a img:hover {
scale: 1.1;
}

.action_form {
    background-image: url(http://carbags.ru/wp-content/uploads/2026/06/510f37cce04bbb5197ead0e30babcf9ff88b2268-scaled.png);
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
    padding: 50px 0;
}
.main_action_grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: var(--gap);
    width: 880px;
    margin: auto;
}
.main_action_circls {
    display: flex;
    flex-direction: column;
}

.main_action_circls_right {
    align-items: flex-end;
}
.main_action_circls img {
    width: 159px;
    height: 159px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}
.main_action_grid .main_action_circls_left img:nth-child(2) {
    margin: -70px 0 0 20px;
}
.main_action_grid .main_action_circls_left img:nth-child(3) {
    margin: -70px 0 0 40px;
}
.main_action_grid .main_action_circls_right img:nth-child(2) {
    margin: -70px 20px 0 0 ;
}
.main_action_grid .main_action_circls_right img:nth-child(3) {
    margin: -70px 40px 0 0 ;
}
.main_action_center img {
    text-align: center;
    height: 254px;
}
.main_action_center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--gap);
}
.main_action_center a {
    width: 90%;
    display: block;
}

.footer {
    background: #121212;
    color: white;
    padding: 31px 0;
}
.footer-grid {
    display: flex;
    gap: var(--gap);
    flex-direction: row;
    justify-content: space-between;
}
.footer-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    font-size: 14px;
}
.footer-left .logo a {
    font-family: "Colus", sans-serif;
    font-size: 45px;
    text-transform: uppercase;
    color: white;
}
 .footer_links {
    display: flex;
    gap: 24px;
    flex-direction: column;
    justify-content: space-between;
}
.footer_menu ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 120px;
    justify-content: space-between;
}
.footer_center {
    display: flex;
    gap: 7vw;
}

.footer_menu ul a{
    color: white;
    font-size: 18px;
    white-space: nowrap;
}
.footer_menu ul a:hover{
    text-decoration: underline;
}
.footer_links a {
font-size: 14px;
    text-decoration: underline;
    color: white;
}

@media (max-width: 1320px) {
.container { 
    max-width: 1140px; 
}
.header_right nav ul { 
    gap: 40px; 
}
h1 {
    font-size: 49px; 
}
h1 span{
    font-size: 70px; 
}
.hero_desc { 
    font-size: 22px; 
}
h2 {
    font-size: 38px;
}
h3, .title_desc {
    font-size: 18px;
}
.sborka_item_txt_desc {
    font-size: 16px;
}
.sborka_item_txt_title {
    font-size: 22px;
}
.sborka_item_img {
    width: 58px;
    min-width: 58px;
    height: 58px; 
    padding: 10px;
}
.perk_item_img img {
    width: 60px;
    height: 60px;
}
.tab {
    font-size: 22px; 
    width: 133px; 
}
.product_slider { 
    height: 437px; 
}
.swiper.product_slider2 {
    width: 486px; 
}
.swiper-thumbs_container {
    width: 114px;
}
}

@media (max-width: 1160px) {
    .container { 
        max-width: 780px; 
    }
.no_pc {
    display: block;
}
.no_mob {
    display: none;
}
    h1 {
        font-size: 40px;
    }
h1 span{
    font-size: 60px; 
}
.reheniya_grid { 
    grid-template-columns: repeat(2, 1fr); 
}
.reheniya_item { 
    height: 434px; 
}
    h3 {
        font-size: 24px;
    }
    .sborka_item:nth-child(3) {
    top: 60%; 
    right: 5vw;
}
.sborka_item:nth-child(1) {
    top: 35%; 
    left: 5vw;
}
.perk_item_txt {
    border-left: 5px solid var(--primary);
    padding-left: 12px;
}
.perk_item_txt_title { 
    font-size: 20px;
    padding-bottom: 10px; 
}
.perk_item_img {
    padding-left: 14px;
    margin-bottom: 10px;
}
.model_conteiner {  
    flex-direction: column; 
}
.product_slider {
        height: 487px;
    justify-content: space-between;
    }
    .swiper.product_slider2 {
        width: 100%;
    }
        .swiper-thumbs_container { 
        width: 27%;
    }
    .customiz_grid { 
    grid-template-columns: repeat(2, 1fr); 
}
.customiz_item:hover .customiz_item_img {
    height: 495px;
}

.customiz_item_img { 
    height: 468px; 
}
.customiz { 
    height: 1487px;
}
.main_action_grid { 
    width: 100%; 
}
.main_action_circls img {
    width: 109px;
    height: 109px; 
}
.main_action_grid .main_action_circls_right img:nth-child(2) {
    margin: -40px 15px 0 0;
}
.main_action_grid .main_action_circls_right img:nth-child(3) {
    margin: -40px 30px 0 0;
}
.main_action_grid .main_action_circls_left img:nth-child(2) {
    margin: -40px 0 0 15px;
}
.main_action_grid .main_action_circls_left img:nth-child(3) {
    margin: -40px 0 0 30px;
}
.footer-grid { 
    flex-wrap: wrap;
}
.footer_links {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}
}
@media (max-width: 768px) {
    .container {
        max-width: 360px;
    }
    h1 span {
        font-size: 50px;
    }
        h1 {
        font-size: 26px;
        line-height: 1.2;
    }
    .hero_desc {
        font-size: 16px;
    }
        .reheniya_grid {
        grid-template-columns: 1fr;
    }
    .reheniya_item_desc {
    font-size: 18px;
}
.sborka_item:nth-child(2) {
    top: 10%;
    left: auto;
}
    .sborka_item:nth-child(1) {
        top: 30%;
        left: auto;
    }
        .sborka_item:nth-child(3) {
        top: 50%;
        right: auto;
    }
    .sborka_item { 
    max-width: 360px; 
}
.perks_content { 
    grid-template-columns: 1fr; 
}
    .tab { 
        width: 100%;
    }
    .tabs { 
    width: 100%;
    gap: 20px;
}
.product_slider {
    display: flex;
    flex-direction: column;
        height: 437px;
    width: 100%;
    gap: var(--gap);
}
    .swiper-thumbs_container {
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 30px;
    }
    .product_slider1 {
    height: 80px;
}
.prodt_swiper-button-next {
    text-align: center;
    padding-top: 0;
    transform: rotate(269deg);
}
    .customiz_grid {
        grid-template-columns: 1fr;
    }
        .customiz {
        height: 2687px;
    }
    .form_container { 
    padding: 20px; 
    margin-left: 0;
}
.form_container h2 {
    font-size: 30px;
    line-height: 1.2;
}
.gallery_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.gallery_grid a {
    height: 50vw;
}
.main_action_grid {
    display: flex;  
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}
.main_action_center { 
    order: 3;
}
.footer_center::after, .footer_center::before {
    background: linear-gradient(90deg, #FFFFFF 0%, #000000 100%);
    content: '';
    height: 1px;
    width: 226px;
}
    .footer_center {
        position: relative;
        gap: 24px;
        display: flex;
    flex-direction: column;
    }
	.footer_menu ul { 
    gap: 24px 20px; 
    width: 100%;
}
	.footer_menu, .footer_menu nav, .footer_center {
    width: 100%;
}
	h2.ramka::after { 
    right: 0px; 
}
	h2.ramka::before { 
    left: 0px; 
}
	.customiz { 
    background-size: 220%; 
}
	.modal-content { 
    padding: 30px 20px; 
}
	h1.entry-title {
    font-size: 22px;
}
}