span.productInfo__yt-text.h7 {
    font-size: 15px;
}

.nested-section {
    max-height: 200px;
    max-width: 490px;
}
.utp__inner {
    margin-top: 20px;
    margin-bottom: 20px;
}
.catalog1__body-item {
    position: relative; /* Делаем блок контекстом для позиционирования */
}
.catalog1__body-item-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Размещаем ссыллю под остальным контентом */
    /* Можно добавить opacity: 0; для отладки, чтобы увидеть, где она находится */
}
.catalog1__body-title .h5 {
    position: relative; /* Поднимаем заголовок над ссылкой-оверлеем */
    z-index: 2;
}
.contactsPage__content-item a {
    color: black;
}
.nested-section-text {
    font-size: 14px;
}
.nested-section-main {
   display: flex;
    flex-direction: column; 
    gap: 20px;
   color: black;
}
.pek__city__link a {
    color: black;
    text-decoration: underline;
    transition: .3s ease;
    cursor: pointer;
    
    &:hover {
        color: #43a96e;
    }
}
.pek__city__link {
    display: flex;
    align-items: flex-end;
}
#city-name {
    font-weight: bold;
    color: #102631;
    font-size: 24px;
}
.pek__city__select {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.pek__delivery {
    margin-top: 5px;
}
.footer__phones a {
    color: black;
}
.article__info__video {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding-top: 56.25%; /* Это соотношение сторон для видео 16:9 */
    background-color: #000; /* Черный фон для видеоблока */
    overflow: hidden;
}

.article__info__video iframe, 
.article__info__video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Видео или iframe будет обрезаться по размеру блока, сохраняя пропорции */
}

.article__info__video.fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.8); /* затемнение фона */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.article__info__video.fullscreen iframe, 
.article__info__video.fullscreen video {
    object-fit: contain; /* В полноэкранном режиме видео будет масштабироваться без обрезки */
}

.footer__contacts a {
    color: black;
}
.footer__info__main {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
html {
	scroll-behavior: smooth; 
}
.blog-item {
	border: 1px solid #43A96E;
	padding: 25px;
	height: 590px;
}
.credit--sale {
    border: 1px solid black;
    padding: 10px;
}
.credit__info__inner {
    display: flex;
    gap: 40px;
}
.credit__sale__product, .credit__time__product {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.credit--time button {
    background-color: transparent;
    border: 1px solid black;
    border-radius: 5px;
    cursor: pointer;
    height: 40px;
    width: 40px;
    transition: .3s ease;

    &:hover {
        background-color: #43a96e;
        color: white;
        border: 1px solid #43a96e;
    }
}
.otzivy__inner form {
    display: flex;
    flex-direction: column;
    margin-top: 40px;
    gap: 10px;
    margin-bottom: 100px;
}
.product__credit-info__inner {
    margin-top: 50px;
}
.otzivy__inner {
    margin-top: 100px;
    max-width: 700px;
}
.label--name  {
    font-size: 40px;
    font-weight: 800;
    text-transform: uppercase;
    font-family: "SONGER SemiExpanded";
    line-height: 120%;
    color: #102631;
}
.otzivy__inner input:focus {
    outline: none;
}
.label--name-two {
    font-size: 25px;
    display: flex;
    font-weight: 500;
}
.input-file--one {
    display: inline-block;
    cursor: pointer;
}
.custom-file-label svg {
    cursor: pointer;
    transition: all 0.3s ease;
}
.custom-file-label {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 1px solid black;
    padding: 30px 35px;
    border-radius: 10px;
}
.custom-file-label:hover svg {
    transform: scale(1.1);
}

.input-file--btn-one {
    display: none !important; /* Скрываем стандартный input */
    cursor: pointer;
}

.label-otzv--name {
    width: 100%;
    display: flex;
    flex-direction: column;
    font-weight: 500;
    gap: 15px;
}
.label-otzv--content {
    display: flex;
    flex-direction: column;
    font-weight: 500;
    gap: 15px;
    margin-top: 20px;
}
.label--name-two div {
    font-size: 20px;
}
.otzivy__input--name {
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
    border: 1px solid black;
    border-radius: 10px;
}
.otzivy__input--content {
    max-width: 100%;
    padding-top: 15px;
    padding-right: 15px;
    height: 100px;
    padding-left: 15px;
    border: 1px solid black;
    border-radius: 5px;
}
.input-file--two {
    display: inline-block;
}

.custom-file-label-two {
    cursor: pointer;
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
    position: relative;
}

.input-file--two--span-one {
    font-weight: 500;
    text-decoration: underline;
    transition: all .3s ease;
    
    &:hover {
        color: #43A96E;
    }
}

.input-file--two--span-two {
    font-size: 14px;
    font-weight: 300;
}
.otzv__input__inner {
    display: flex;
    gap: 30px;
    align-items: center;
}
.input-file--btn-two {
    display: none; /* скрываем input */
}
.otzv--btns {
    margin-top: 10px;
    display: flex;
    gap: 30px;
}
.otzv--div--main {
    display: flex;
    gap: 100px;
    justify-content: space-between;
    font-weight: 500;
}






.rating-stars {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rating-label {
    font-weight: 500;
    margin-bottom: 4px;
}

.stars {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-start;
    gap: 4px;
}

.stars input {
    display: none;
}

.stars label {
    font-size: 30px;
    color: #ccc;
    cursor: pointer;
    transition: color 0.2s;
}

.stars input:checked ~ label,
.stars label:hover,
.stars label:hover ~ label {
    color: black;
}













@media (max-width: 600px) {
    .otzv--div--main {
        flex-direction: column;
        gap: 15px;
    }
        .stars {
        flex-direction: row;
    }
}
@media (max-width: 475px) {
    .otzv--btns {
        flex-direction: column;
        gap: 15px;
    }
    .otmena-btn {
        max-width: 100% !important;
    }
}
@media (max-width: 430px) {
    .label--name {
        font-size: 30px;
    }
    .custom-file-label {
        padding: 20px 25px;
    }
    .custom-file-label svg {
        width: 75px;
        height: 55px;
    }
    .otzv__input__inner {
        gap: 10px;
    }
}
@media (max-width: 345px) {
    .custom-file-label {
        padding: 15px 15px;
    }
}
@media (max-width: 330px) {
    .label--name {
        font-size: 27px;
    }
}






/* Кнопка с индикатором загрузки */
.otzivy-btn.loading {
    pointer-events: none;
    opacity: 0.6;
    position: relative;
}

.otzivy-btn.loading::after {
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    width: 16px;
    height: 16px;
    border: 2px solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spinner 0.6s linear infinite;
    transform: translateY(-50%);
}

@keyframes spinner {
    to {
        transform: rotate(360deg) translateY(-50%);
    }
}

/* Стили предпросмотра фото */
.preview-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.preview-container img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 1px solid #ccc;
    border-radius: 8px;
}









.otzivy-btn {
  padding: 20px 20px;
  background-color: #43A96E;
  color: white;
  font-size: 16px;
  border: 1px solid #43A96E;
  border-radius: 10px;
  cursor: pointer;
  max-width: 100%;
  transition: background 0.3s ease; 
  
  &:hover {
     background-color: white;
     color: black;
     border: 1px solid black;
  }
}
.otmena-btn {
  padding: 20px 20px;
  background-color: white;
  color: black;
  font-size: 16px;
  border: 1px solid black;
  border-radius: 10px;
  cursor: pointer;
  max-width: 30%;
  transition: background 0.3s ease; 
  
  &:hover {
     background-color: #43A96E;
     color: white;
     border: 1px solid #43A96E;
  }
}
.otzivy__input--file {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
    font-weight: 500;
}
.otzivy__input--city {
    max-width: 30%;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
    border: 1px solid black;
}
.otzivy__input--delivery {
    max-width: 30%;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
    border: 1px solid black;
}
.otzivy__input--stars {
    max-width: 30%;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
    border: 1px solid black;
    appearance: none; /* убираем дефолтную стрелку */
    -webkit-appearance: none;
    -moz-appearance: none;
}
.productInfo__title--brand-hidden {
	visibility: hidden;
}
.blog-item .images {
   box-shadow: -8px 12px 15px rgba(0, 0, 0, 0.15);
}
.visually-hidden {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}
.questionCall__title {
	font-size: 30px;
}
.aboutStudy--span {
	font-size: 40px;
    line-height: 44px;
}
.main__btn-up {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #2A3531;
    align-items: center;
    display: flex;
    justify-content: center;
    position: fixed;
    right: -30px;
    bottom: 100px;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
    visibility: hidden;
    transform: translateX(50px);
    &:hover {
        background-color: #43a96e;
    }
}
.main__btn-up svg path {
    transition: all 0.2s ease;
}
.main__btn-up:active svg path {
    stroke: black;
}
.main__btn-up svg {
    animation: arrow-move 1s infinite ease-in-out;
}
@keyframes arrow-move {
    0% { transform: translateY(0); }
    50% { transform: translateY(-5px); } /* Двигаем вправо */
    100% { transform: translateY(0); } /* Возвращаем обратно */
}
.main__btn-up.visible {
    display: flex;
    transform: translateX(-50px);
	visibility: visible;
}
.header-email a {
	transition: all .3s ease;
	text-decoration: underline;

	&:hover {color: #647279;}
}
.header-phone__button-text {
	transition: all .3s ease;
	text-decoration: underline;

	&:hover {color: #647279;}
}
.header-link-whatsapp {
	transition: all .3s ease;
	text-decoration: underline;
	color: white; 
	font-weight: bold; 
	width: 100% !important;
	background: none !important;

	&:hover {color: #647279;}
}

.productInfo__banners-item {
    display: flex;
    align-items: center;
    height: 70px;
}

.desktop {
    display: block;}

.mobile {
    display: none;
}

@media (max-width: 767px) {
    .mobile {
        display: block;
    }

    .desktop {
        display: none;
    }
}




.popup-notification {
    opacity: 0;
    position: fixed;
    right: 20px;
    top: 5%;
    width: 570px;
    background: #fff;
    border: 1px solid #ccc;
    padding: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: opacity 0.3s, transform 0.3s;
    transform: translateX(100%);
    z-index: 9999;
    display: flex;
    gap: 20px;
    align-items: center;
}
.popup-notification.active {
    opacity: 1;
    transform: translateX(0);
}
.popup-image {
    width: 100px;
    max-height: 100px;
}
.popup-user {
    font-size: 14px;
    color: #555;
    margin: 0 0 5px 0;
}
.user-name {
    font-weight: bold;
    color: #000;
}
.user-city {
    font-style: italic;
}
.popup-name a {
    color: #000;
    text-decoration: none;
    font-weight: bold;
}
.popup-price {
    color: red;
    font-weight: bold;
    margin: 5px 0;
}
.popup-link {
    color: #43a96e;
    font-weight: 500;
    transition: .3s ease;
    
    &:hover {
        color: red;
    }
}

@media (max-width: 650px) {
    .popup-notification {
        width: 400px;
    }
}
@media (max-width: 470px) {
    .popup-notification {
        width: 300px;
    }
    .popup-name a {
        font-size: 12px;
    }
    .user-name {
        font-size: 12px;
    }
    .user-city {
        font-size: 12px;
        margin-right: 3px;
    }
    .user-name-iz {
        font-size: 12px;
    }
}
@media (max-width: 350px) {
    .popup-notification {
        width: 250px;
    }
    .popup-name a {
        font-size: 10px;
    }
    .user-name {
        font-size: 10px;
    }
    .user-city {
        font-size: 10px;
    }
    .popup-image {
        width: 50px;
        max-height: 50px;
    }
    .user-name-iz {
        font-size: 10px;
    }
    .user-city {
        font-size: 10px;
        margin-right: 3px;
    }
}
.pek__inner__main {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px;
    flex-direction: column;
    gap: 15px;
    background-color: rgba(217, 217, 217, 0.1);
    border-radius: 25px;
}
.pek__inner {
    margin-top: 50px;
    display: flex;
    width: 100%;
    
}
.pek__delivery--main {
    margin-left: 20px;
}
@media (max-width: 450px) {
    .pek__delivery--time {
        font-size: 10px !important;
    }
    .pek__delivery--name {
        font-size: 14px !important;
    }
}
.pek__delivery--name {
    color: #102631;
}
.pek__city, .pek__delivery {
    padding-bottom: 5px;
}
.pek__delivery {
    display: flex;
    justify-content: space-between;
}
.pek__delivery:last-child {
    border-bottom: none;
}
.pek__city a {

}

.pek__delivery__title {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.pek__city {
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
}
.pek__form__btn {
    margin-top: 5px;
}
.pek__delivery--price {
    font-weight: bold;
    color: #27C840;
    font-size: 25px;
}
.pek__delivery--time {
    color: #ccc;
    font-size: 12px;
}
.pek__delivery--main {
    display: flex;
    flex-direction: column;
    align-items:end;
}
.moto__name--color {
    color: #43A96E;
}
.moto__info__inner {
    margin-top: 50px;
    margin-bottom: 50px;
}
.moto__name__text {
    font-weight: bold;
    font-size: 20px;
}
.moto__name {
    max-width: 900px;
}
.moto__content__text--number {
    border: 2px solid black;
    min-width: 30px;
    min-height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}
.moto__content__text--main {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 200px;
}
.moto__content__blocks {
    display: flex;
    align-items: center;
    gap: 15px;
}
.moto__content {
    margin-top: 50px;
}
.moto__text--color_name {
    font-size: 16px;
    font-weight: bold;
}
.moto__text--gray {
    font-size: 12px;
    font-weight: 400;
}
.moto__content__text {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.moto__content {
    display: flex;
    justify-content: space-between;
}
.moto__content__img img {
    max-width: 500px;
}
.moto__form__wrap {
    background-color: #43A96E;
    margin-top: 40px;
    border-radius: 20px;
    color: white;
}
.moto__form__name span:nth-child(1) {
    font-size: 20px;
    font-weight: bold;
}
.moto__form__name span:nth-child(2) {
    font-size: 11px;
    font-weight: bold;
}
.moto__form__name {
    display: flex;
    flex-direction: column;
    gap: 65px;
}
.moto__form__btn button {
    color:#43A96E;
    background-color: white;
    border: 1px solid white;
    border-radius: 20px;
    border: none;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-right: 36px;
    padding-left: 36px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    &:hover {
        background-color: #43A96E;
        color: white;
        border: 1px solid white;
    }
}
.moto__form__wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
}
.moto__prava__wrap {
    background-color: #43A96E;
    border-radius: 20px;
    color: white;
    font-size: 23px;
    font-weight: bold;
    padding: 70px;
    text-align: center;
}
.moto__prava__wrap span {
    max-width: 700px;
    display: block;
    margin: 0 auto;
}
.form__sneg--name {
    font-size: 20px;
    font-weight: 700;
}
.form__sneg__inner {
    margin-top: 80px;
}
.form__sneg--name-inherit {
    font-size: 24px;
    font-weight: bold;
}
.form__sneg {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.form__sneg--form span {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    display: block;
}
.form__sneg--form {
    width: 50%;
}
@media (max-width: 1070px) {
    .moto__content__img img {
        max-width: 300px;
    }
    .moto__content__img {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
@media (max-width: 850px) {
    .moto__content__img {
        order: 1;
    }
    .moto__content__text {
        order: 2;
        margin-top: 40px;
    }
    .moto__content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .moto__content__img img {
        max-width: 500px;
    }
}
@media (max-width: 520px) {
    .moto__content__img img {
        max-width: 300px;
    }
}
@media (max-width: 500px) {
    .moto__form__wrap {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }
    .moto__form__name {
        gap: 30px;
    }
}
.article__img {
    margin-top: 50px;
}
.article-menu__images {
    display: flex;
    gap: 10px;
}
.article-menu__images img {
    max-height: 500px;
}
.form__user--img img {
    border-radius: 50%;
    max-width: 80px;
}
.form__sneg__user {
    display: flex;
    gap: 20px;
    align-items: center;
}
.form__user--text span {
    flex-direction: column;
    display: flex;
}
.form__user--text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.user__text--spel {
    max-width: 300px;
}
.form__sneg__tel {
    color: black;
    border: 1px solid #43A96E;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 10px;
    padding-right: 10px;
    max-width: 180px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.form__sneg__tel a {
    color: black;
    transition: .3s ease;
    &:hover {
        color: #43A96E;
    }
}
.form__sneg__main {
    display: flex;
    align-items: center;
    gap: 100px;
}
.form__sneg__users {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
@media (max-width: 850px) {
    .form__sneg__main {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    .form__sneg--form {
        width: 100%;
    }
}
.video__inner {
    display: grid;
    grid-template-columns: 0.5fr 0.5fr;
    gap: 30px;
}
.productDetail__video__inner {
    margin-top: 80px;
    margin-bottom: 80px;
}
.product__video video {
    width: 100%;
}
.snegokat__banner img {
    width: 100%;
}
.snegokat__banner {
    margin-bottom: 50px;
}
.pek__form__btn button {
	background-color: #43A96E;
	border: none;
	width: 100%;
    border-radius: 16px;
	padding: 15px;
    margin-top: 10px;
    color: white;
    font-weight: 800;
    cursor: pointer;
    transition: .3s ease;
    border: 1px solid #43A96E;

    &:hover {
        background-color: white;
        color: black;
    }
}
.arrow__pek {
    color: red;
    font-size: 64px;
}
.arrow__pek__text {
    margin-top: 25px;
}
.bot__main {
    display: flex;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
    background-color: white;
}
.bot__img:before {
    content: "";
    width: 13px;
    height: 13px;
    background-color: #1FDF34;
    border-radius: 50%;
    position: absolute;
    right: 5px;
    top: 8px;
}
.bot__img {
    position: relative;
}
.bot__text {
    background-color: #EBEBEB;
    border-radius: 20px;
    padding: 25px;
    position: relative;
    display: inline-block;
    max-width: 80%;
    word-wrap: break-word;
}
.bot__text:after {
  content: "";
  position: absolute;
    width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-right: 25px solid #EBEBEB; /* Цвет треугольника */
  border-left: 0;
  top: 70%;
  transform: translateY(-70%);
  left: -20px;
}
.bot__text1 {
    display: inline-flex; ;
    flex-direction: column;
    gap: 15px;
}
.bot__main {
    display: flex;
    gap: 14px;
    padding: 55px 80px 55px 35px;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
}
.bot__inner {
    margin-top: 100px;
    margin-bottom: 100px;
}
.bot__content__inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    max-width: 700px;
}
.bot__pechat {
    font-size: 14px;
    font-weight: 400;
    color: #B1B1B1;
    margin-top: 30px;
    margin-bottom: 50px;
}
@keyframes pechat {
    0% { content: ""; }
    25% { content: "."; }
    50% { content: ".."; }
    75% { content: "..."; }
    100% { content: ""; }
}
.bot__pechat {
    display: inline-flex;
    align-items: center;
}

.bot__pechat::after {
    content: "";
    display: inline-block;
    width: 1ch;
    text-align: left;
    animation: pechat 1.5s steps(4, end) infinite;
}
.user__text {
    background-color: #919DC7;
    border-radius: 30px;
    padding: 20px 25px;
    position: relative;
    display: inline-block;
    max-width: 80%;
    word-wrap: break-word;
    color: white;
    text-transform: uppercase;
    
}
.user__text:after {
  content: "";
  position: absolute;
    width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-right: 25px solid #919DC7; /* Цвет треугольника */
  border-left: 0;
  top: 40%;
  transform: translateY(-40%);
  right: -13px;
  transform: rotate(180deg);
}
.user__bot__inner {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-top: 20px;
    gap: 20px;
}
.bot__user__inner {
    font-size: 14px;
}
.button-container {
    grid-template-columns: repeat(2, 180px);
    justify-items: center;
    row-gap: 10px;
    column-gap: 170px;
    justify-content: center;
    margin-top: 66px;
    padding-bottom: 50px;
  }

  .button-container .btn {
    padding: 15px 25px;
    border: none;
    border-radius: 25px;
    color: white;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    width: 317px;
    transition: background 0.3s;
  }

  .btn-black {
    background-color: #000;
  }

  .btn-black:hover {
    background-color: #333;
  }

  .btn-blue {
    background-color: #0033cc;
    grid-column: span 2;
  }

  .btn-blue:hover {
    background-color: #002299;
  }
.bot__main {
    overflow-y: auto;
    height: 650px;
    overflow-x: hidden;
}
.chat__container {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.button-container--socials {
    display: flex;
    column-gap: 25px;
    margin-top: 25px;
    max-width: 500px;
}

.button-container--form {
    justify-content:flex-start;
}
.kviz__form {
    border: 2px solid #919dc723;
    border-radius: 23px;
    max-width: 553px;
    padding: 33px;
}
.kviz_span {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 16px;
    display: block;
}
.inputKviz {
    border-radius: 56px;
    width: 300px;
    height: 53px;
    padding-left: 30px;
    border: none;
    background-color: #919dc788;
    font-weight: bold;
}
.inputKviz ::placeholder {
    color: white;
}
.KvizButton {

    background-color: #012BBD;
    border-radius: 30px;
    width: 182px;
    height: 53px;
    color: white;
    border: none;
    cursor: pointer;
}
.kviz__field {
    display: flex;
    gap: 6px;
}
.kviz__field label {
    font-size: 16px;
    font-weight: 500;
}
input[name="form_checkbox_CHECKBOX_KVIZ[]"] {
    width: 50px;
    height: 28px;
    border-radius: 20px;
    background-color: #00000082;
} 
.button-container--moto {
    display: flex;
    justify-content: center !important;
    align-items: center !important;
    gap: 20px !important; /* Расстояние между кнопками */
    padding-bottom: 50px !important;
    flex-wrap: wrap !important;
}
@media (max-width: 1450px) {
    .catalog1__body-item {
        height: 500px;
    }
}
@media (max-width: 905px) {
    .catalog1__body-item {
        height: 550px;
    }
}









/* Анимации для сообщений */
.bot__content__inner, 
.user__bot__inner {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}

/* Анимация для печатающего сообщения */
.bot__pechat {
    opacity: 0;
    animation: fadeIn 0.3s ease forwards, pulse 1.5s infinite;
}

/* Анимации для кнопок */
.button-container {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}

.button-container--start,
.button-container--izmelchiteli,
.button-container--izmelchiteli--sad,
.button-container--socials,
.button-container--form,
.button-container--izmelchiteli--prom,
.button-container--izmelchiteli--fizlic,
.button-container--izmelchiteli--urlic,
.button-container--izmelchiteli--zapchast,
.button-container--moto,
.button-container--moto--moto,
.button-container--moto--trisikly,
.button-container--motosnegokati,
.button-container--motosnegokati--korotkaya,
.button-container--motosnegokati--korotkaya-20,
.button-container--motosnegokati--korotkaya-20Zad,
.button-container--motosnegokati--dlinnaya-gus {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}

/* Ключевые кадры анимаций */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Анимация для кнопок при наведении */
.btn {
    transition: all 0.3s ease;
    transform: scale(1);
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Задержки для последовательного появления кнопок */
.button-container .btn {
    opacity: 0;
    animation: fadeInUp 0.4s ease forwards;
}

/* Последовательное появление кнопок с задержкой */
.button-container .btn:nth-child(1) { animation-delay: 0.1s; }
.button-container .btn:nth-child(2) { animation-delay: 0.2s; }
.button-container .btn:nth-child(3) { animation-delay: 0.3s; }
.button-container .btn:nth-child(4) { animation-delay: 0.4s; }
.button-container .btn:nth-child(5) { animation-delay: 0.5s; }

@media (max-width: 1000px) {
    .bot__main {
        flex-direction: column;
        gap: 30px;
        justify-content: flex-start;
    }
    .bot__img:before {
        left: 70px;
        top: 8px;
    }
}


/* Базовые стили для контейнеров кнопок */
.button-container {
    display: none;
}

/* Класс для показа контейнеров */
.button-container.show {
    display: grid;
}

/* Специальные случаи для flex контейнеров */
.button-container--socials.show,
.button-container--form.show,
.button-container--moto.show,
.button-container--moto--moto.show,
.button-container--motosnegokati--korotkaya.show,
.button-container--motosnegokati--korotkaya-20.show,
.button-container--motosnegokati--korotkaya-20Zad.show,
.button-container--motosnegokati--dlinnaya-gus.show {
    display: flex;
}

/* Класс для скрытия контейнеров */
.button-container.hide {
    display: none !important;
}

/* Медиа-запросы для мобильных устройств */
@media (max-width: 850px) {
    .button-container.show {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .bot__main {
    padding: 55px 30px 55px 35px;
}
}
@media (max-width: 500px) {
    .bot__user__inner {
        font-size: 12px;
    }
}
@media (max-width: 420px) {
    .button-container .btn {
        width: 200px;
    }
}
@media (max-width: 350px) {
    .bot__user__inner {
        font-size: 10px;
    }
}
@media (max-width: 700px) {
    .kviz__field {
        display: flex;
        flex-direction: column;
    }
    input[name="form_checkbox_CHECKBOX_KVIZ[]"] {
    width: 30px;
    height: 28px;
    border-radius: 20px;
    background-color: #00000082;
}
}
@media (max-width: 500px) {
    .inputKviz {
    width: 200px;
    font-size: 10px;
}
}
@media (max-width: 370px) {
    .kviz__field label {
    font-size: 12px;
}
.inputKviz {
    width: 150px;
    font-size: 8px;
    padding-left: 15px;
}
.KvizButton {
    width: 150px;
}
}


/* Стили для модального окна */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}

.modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.modal__container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal__close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 50px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    color: white;
}

.form__wrapper {
    display: flex;
    flex-direction: column;
    background-color: rgba(35, 41, 4, 0.7);
    max-width: 650px;
    border-radius: 16px;
    padding: 16px;
    max-height: 140px;
}
@media (max-width: 340px) {
    .form__wrapper {
        max-height: 160px;
    }
    .form-banner-block {
        padding-bottom: 40px;
    }
}
.form-banner-block {
    gap: 20px;
}
.credit-price {
    cursor: pointer;
    transition: .3s ease;
    
    &:hover {
        color: #43A96E;
    }
}
.nested-section-icons img {
    width: 30% !important;
    margin-top: -30px !important;
    padding-left: 0px !important;
}
.popup-close {
    z-index: 999;
}
.popup-close {
    position: absolute;
    top: 5px;
    right: 10px;
    width: 20px;
    height: 20px;
    /* background: rgba(0,0,0,0.5); */
    color: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 40px;
    line-height: 1;
    z-index: 10;
}

.popup-close:hover {
    background: rgba(0,0,0,0.7);
}


.rassroch__block {
    background-color: #F6F6F6;
    border-radius: 15px;
    padding: 15px 20px 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.rassroch__block--svg {
    cursor: pointer;
}
.rassroch__block--text {
    font-weight: 500;
}
.rassroch__block--text span {
    color: #FF383C;
}
.rassroch__inner {
    display: flex;
    flex-direction: column;
    gap: 23px;
}
.rassroch__btn {
    border: 1px solid rgba(0, 0, 0, 0.07);
    background-color: white;
    font-size: 20px;
    cursor: pointer;
    transition: .3s ease;
    font-weight: 500;
    color: #444444;
    padding: 17px;
    display: flex;
    justify-content: center;
    border-radius: 25px;

    &:hover {
        border: 1px solid #43A96E;
        color: #43A96E;
    }
}
.rassroch__svg__text {
    position: absolute;
    max-width: 350px;
    padding: 25px 35px 25px 35px;
    border-radius: 15px;
    right: -25px;
    white-space: nowrap;
    top: -130px;
    color: white;
    font-weight: 500;
    flex-direction: column;
    background-color: #272626;
}
.rassroch__svg__text::after {
    content: "";
    position: absolute;
    bottom: -12px; /* расстояние вниз */
    right: 30px; /* смещение влево/вправо */
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid #272626; /* цвет хвостика == цвет фона блока */
}
.rassroch__svg__text span {
    display: block;
}
.rassroch__block--svg {
    position: relative;
}
.utsenka__inner {
    background-color: #43A96E;
    padding: 50px;
    text-align: center;
    color: white;
    border-radius: 20px;
    margin-top: 50px;
    margin-bottom: 50px;
    gap: 30px;
    display: flex;
    flex-direction: column;
}
.utsenka__inner--title {
    text-transform: uppercase;
    font-size: 60px;
    font-weight: bold;
}
.utsenka__inner--description {
    text-transform: uppercase;
    font-size: 40px;
    font-weight: 700;
}
.container-dillers {
    max-width: 1380px;
    margin: 0 auto;
}
.header__dillers {
    color: white;
    background-position: center;
    min-width: 100vh;
    min-height: 130vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(/upload/posadka/посадочная.png);
}
.header__dillers--title {
    font-size: 64px;
    font-weight: bold;
    max-width: 1200px;
    text-transform: uppercase;
}
.header__dillers__content {
    padding-top: 200px;
    padding-left: 181px;
}
.header__dillers--description {
    font-size: 18px;
    font-weight: bold;
    max-width: 750px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.header__dillers--description p {
    font-size: 18px;
    font-weight: bold;
}
.header__dillers--btn {
    font-size: 20px;
    font-weight: bold;
}
.header__dillers__text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.header__dillers__content {
    display: flex;
    flex-direction: column;
    gap: 86px;
}
.header__dillers--btn {
    max-width: 309px;
    color: white;
    background-color: black;
    border: none;
    cursor: pointer;
    border-radius: 27px;
    padding: 30px 83px 30px 83px;
    transition: .3s ease;

    &:hover {
        background-color: #43A96E;
    }
}
.dillers__about__title {
    font-size: 64px;
    font-weight: bold;
    max-width: 1255px;
    text-align: center;
}
.dillers__about__description {
    font-size: 18px;
    font-weight: 500;
    max-width: 880px;
    text-align: center;
}
.dillers__about__inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    opacity: 1;
    transition: all 0.8s ease;
    position: fixed;
    top: 100px;
    z-index: -1;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
}

.dillers {
    position: relative;
}
.dillers__photos {
    background-color: white;
    z-index: 999;
    position: relative;
}
.dillers__sliders__inner {
    display: flex;
    margin-top: 120px;
    margin-bottom: 220px;
    gap: 35px;
}
.diller__benefits__inner {
    margin-bottom: 200px;
}
.benefits--text-one, .benefits--text--name {
    font-size: 41px;
    font-weight: bold;
    text-transform: uppercase;
}
.benefits--text-two {
    font-size: 18px;
    font-weight: 500;
}
.diller__benefits__inner {
    display: flex;
    gap: 15px;
}
.diller__benefits__block--one {
    background: linear-gradient(90deg, 
    #000000 7%, 
    #001457 71%, 
    #012BBD 100%
  );
  padding: 30px 110px 30px 110px;
  border-radius: 25px;
  color: white;
}
.benefits--text-two {
    text-transform:none;
    max-width: 352px;
    display: block;
    line-height: 1;
}
.benefits__text__two--name {
    display: flex;
    align-items: center;
    gap: 20px;
}
.diller__benefits__block__two--content {
    display: flex;
}
.diller__benefits__block--two {
    display: flex;
    justify-content: space-between;
}
.diller__benefits__imgs {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.diller-one {
    background: linear-gradient(50deg, 
    #000000 22%, 
    #012BBD 100%
  );
}
.diller-two {
    background: linear-gradient(120deg, 
    #012BBD 4%, 
    #000516 42%,
    #000000 64%, 
    #012BBD 100%
  );
}
.diller-three {
    background: linear-gradient(180deg, 
    #000000 25%, 
    #012BBD 100%
  );
}
.diller__benefits__block--two {
    color: white;
}
.diller__benefits__block__two--content {
    max-width: 267px;
    border-radius: 25px;
    max-height: 208px;
}
.diller__benefits__block__two--content img {
    width: 100%;
    max-height: 144px;
    margin-top: -40px;
}
.diller__benefits__block__two--content span {
    padding-left: 25px;
    padding-top: 72px;
    padding-bottom: 22px;
    font-size: 14px;
}
.diller__benefits__block__three--content {
    background: linear-gradient(180deg, 
    #000000 25%, 
    #012BBD 100%
  );
  border-radius: 25px;
}
.diller__benefits__block--three {
    display: flex;
    justify-content: space-between;
    gap: 25px;
}
.diller__benefits__block__three--content span {
    display: block;
    color: white;
    padding-top: 45px;
    padding-left: 35px;
    padding-bottom: 30px;
}
.diller__benefits__block__three--content {
    display: flex;
    padding-bottom: 15px;
    padding-right: 10px;
    width: 50%;
    justify-content: space-between;
}
.dillers__job {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    max-height: 1314px;
    height: 1314px;
    margin-bottom: 100px;
    background-image: url(/upload/posadka/обои2.png);
}
.dillers__job--title {
    font-size: 64px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    color: white;
    max-width: 636px;
    margin: 0 auto;
    padding-top: 96px;
}
.dillers__job__block {
    display: flex;
    gap: 15px;
    align-items: flex-end;
}
.dillers__job__text__wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.dillers__job__block-two {
    width: 798px;
}
.dillers__job__block-one {
    width: 610px;
}
.dillers__job--content {
    display: flex;
    max-width: 1366px;
    margin: 0 auto;
    margin-top: 76px;
}
.dillers__job__number {
    color: #012BBD;
    font-size: 141px;
    font-weight: bold;
}
.dillers__job__text__content--title {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
    max-width: 404px;
}
.dillers__job__text__content--description {
    font-size: 18px;
    font-weight: 500;
    color: white;
}

.dillers__job__block {
    border-radius: 105px;
}

.dillers__job__block-one {
    padding: 37px 55px 37px 55px;
}

.dillers__job__block-two {
    padding: 33px 68px 33px 68px;
}

.dillers__job__block {
  /* Эффект размытия */
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);

  box-shadow:
    /* Нижний и правый эффект глубины */
    inset -0.75px -0.5px rgba(255, 255, 255, 0.1),
    /* Верхний и левый эффект глубины */
    inset +0.75px +0.5px rgba(255, 255, 255, 0.025),
    /* Эффект тени */
    3px 2px 10px rgba(0, 0, 0, 0.25),
    /* Короткий подповерхностный эффет */
    inset 0px 0px 10px 5px rgba(255, 255, 255, 0.025),
    /* Длинный подповерхностный эффект */
    inset 0px 0px 40px 5px rgba(255, 255, 255, 0.025);

  /* Позволяем дочерним элементам заполнять родительский */
  position: relative;

  /* Скрываем углы заголовка */
  overflow: hidden;
}

.dillers__job__block::before {
  /* Заставляем элемент рендериться */
  content: "";

  /* Применяем фоновое изображение */
  background-image: url(path/to/light.png);
  background-repeat: repeat;
  background-size: 750px;

  /* Регулируем яркость */
  opacity: 0.075;

  /* Заполняем фоновое пространство */
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;

  /* Рендерим за другими дочерними элементами */
  z-index: -1;

  /* Исправляем отражение в экран */
  background-attachment: fixed;
}

.diller__start--title {
    font-size: 51px;
    font-weight: bold;
    text-transform: uppercase;
    padding-left: 70px;
    padding-top: 70px;
    white-space: nowrap;
}
.diller__start--title-block {
    background-color: #EDEEEE;
    border-radius: 30px;
    width: 688px;
}
.diller__start--btn button {
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    font-weight: bold;
    background-color: #012BBD;
    border-radius: 27px;
    width: 100%;
    border: none;
    padding: 35px;

    &:hover {
        background-color: #43A96E;
    }
}
.dillers__start__inner {
    display: flex;
    gap: 16px;
    margin-bottom: 200px;
}
.diller__start--title-block {
    display: flex;
    gap: 66px;
    max-height: 240px;
}
.diller__start--img {
    margin-top: -150px;
}
.diller__start__block {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.diller__start__content {
    display: flex;
    gap: 30px;
    align-items: center;
}
.diller__start__block-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: #EDEEEE;
    border-radius: 30px;
    padding: 30px 34px 30px 55px;
}
.diller__start__number {
    background-color: #012BBD;
    border-radius: 50%;
    color: white;
    min-width: 28px;
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    font-weight: 500;
}
.diller__start__text {
    font-size: 18px;
    font-weight: bold;
    max-width: 528px;
}
.diller__start--color {
    color: #012BBD;
}
.dillers__start__inner {
    margin-top: 200px;
}
.diller__ben__img {
    background: linear-gradient(120deg, 
    #000000 59%, 
    #012BBD 100%
  );
  color: white;
  border-radius: 25px;
  max-height: 650px;
}
.diller__ben__img img {
    margin-top: -130px;
}
.diller__benefits__img--main--title {
    padding-top: 68px;
    padding-left: 68px;
    max-width: 250px;
}
.diller__ben__block--one {
    display: flex;
    align-items: center;
    padding-left: 0;
    padding-top: 0;
    padding-bottom: 0;
    height: 210px;
}
.diller__ben__block__two--content {
    width: 267px;
    height: 207px;
}
.diller__ben__block__two--content img {
    width: 257px;
    min-height: 207px;
    margin-top: 0;
}
.diller__ben__block__two--content span {
    max-width: 175px;
}
.dill-one span {
    padding-top: 47px !important;
}
.dill-three span {
    padding-top: 91px !important;
}
.diller__ben__block--three {
    padding-bottom: 0 !important;
    max-height: 207px;
}
.diller__benefit__three--content span {
    padding-top: 0 !important;
    padding-bottom: 10px !important;
}
.diller__benefit__three--content {
    align-items: flex-end;
}
.diller__benefit__three--content img {
    transform: translateY(15px);
}
.diller__snegokat6 {
    display: flex;
    justify-content: flex-end;
}
.dillers__about__inner {
    margin-bottom: 120px;
}
.grade__block {
    max-width: 535px;
    max-height: 505px;
    border-radius: 25px;
    background-color: #EDEEEE;
}
.grade__block--img {
    border-radius: 25px;
    overflow: hidden;
    height: 350px;
}
.grade__title {
    font-size: 64px;
    font-weight: bold;
    margin-bottom: 80px;
    max-width: 1174px;
}
.grade__block--span {
    font-weight: bold;
    margin-top: 20px;
    max-width: 450px;
    padding-left: 20px;
}
.grade__block--btn button {
    background-color: #012BBD;
    color: white;
    font-weight: bold;
    border-radius: 25px;
    padding: 10px;
    padding-right: 20px;
    padding-left: 20px;
    border: none;
    cursor: pointer;
    transition: .3s ease;

    &:hover {
        background-color: #43A96E;
    }
}
.grade__block--btn {
    padding-bottom: 30px;
    margin-top: 15px;
    display: flex;
    justify-content: right;
    padding-right: 20px;
}
.grade__slider__inner {
    display: flex;
    gap: 20px;
    overflow: hidden;
    overflow-x: scroll;
    align-items: center;
}
.grade__block__screen img {
    width: 100%;
    border-radius: 20px;
}
.grade__block__screen {
    width: 270px;
    height: 575px;
}
.diller__citys {
    height: 1050px;
    margin-top: 200px;
    margin-bottom: 200px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(/upload/posadka/photos.png);
}
.diller__citys__inner {
    display: flex;
    border-radius: 105px;
  /* Эффект размытия */
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);

  box-shadow:
    /* Нижний и правый эффект глубины */
    inset -0.75px -0.5px rgba(255, 255, 255, 0.1),
    /* Верхний и левый эффект глубины */
    inset +0.75px +0.5px rgba(255, 255, 255, 0.025),
    /* Эффект тени */
    3px 2px 10px rgba(0, 0, 0, 0.25),
    /* Короткий подповерхностный эффет */
    inset 0px 0px 10px 5px rgba(255, 255, 255, 0.025),
    /* Длинный подповерхностный эффект */
    inset 0px 0px 40px 5px rgba(255, 255, 255, 0.025);

  /* Позволяем дочерним элементам заполнять родительский */
  position: relative;

  /* Скрываем углы заголовка */
  overflow: hidden;
  max-width: 1384px;
  height: 760px;
}


.diller__citys {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* На всю высоту экрана */
    padding: 20px;
    box-sizing: border-box;
}

.diller__citys__inner {
    display: flex;
    justify-content: space-between;
    width: 1380px; /* Ограничение максимальной ширины */
}
.diller__citys__block {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    font-size: 23px;
    font-weight: bold;
}
.diller__citys__slider {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-left: 100px;
    margin-top: 200px;
    max-height: 430px;
    overflow: hidden;
}
.diller__citys__map {
    padding-right: 95px;
    margin-top: 128px;
    display: flex;
    flex-direction: column;
    gap: 65px;
}
.diller__citys__map--title {
    color: white;
    text-align: right;
    font-weight: bold;
    font-size: 53px;
    text-transform: uppercase;
}
.diller__citys__group {
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.5s ease;
}


.diller__citys__arrow--next, .diller__citys__arrow--prev {
    position: absolute;
    cursor: pointer;
    transition: .3s ease;

    &:hover {
        transform: scale(1.2);
    }
}

.diller__citys__arrow--next {
    background-color: transparent;
    border: none;
}

.diller__citys__arrow--prev {
    background-color: transparent;
    border: none;
}

.diller__citys__arrow--next {
    bottom: 70px;
    left: 180px;
}

.diller__citys__arrow--prev {
    top: 120px;
    left: 180px;
}


/* Стиль модального окна */
.modal-diller {
    display: none; /* Скрываем модальное окно по умолчанию */
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4); /* Черный фон с прозрачностью */
    padding-top: 60px;
}

.modal-content-diller {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}

.close-btn-diller {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close-btn-diller:hover,
.close-btn-diller:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}














.dillers__sliders__container {
            position: relative;
            overflow: hidden;
            width: 100%;
            padding: 20px 0;
        }
        
        .dillers__sliders__inner {
            display: flex;
        }
        
        .diller__slider {
            flex-shrink: 0;
            box-sizing: border-box;
        }
        
        .diller__slider img {
            width: 100%;
            display: block;
        }
        
        /* Стили для навигации Swiper */
        .swiper-button-next,
        .swiper-button-prev {
            position: absolute;
            top: 90%;
            transform: translateY(400%);
            width: 40px;
            height: 40px;
            color: white;
            z-index: 10;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .swiper-button-next:after,
        .swiper-button-prev:after {
            font-size: 20px;
            font-weight: bold;
        }
        
        .swiper-button-next {
            right: 10px;
        }
        
        .swiper-button-prev {
            left: 10px;
        }
        
        .swiper-pagination {
            position: absolute;
            bottom: 10px;
            left: 0;
            width: 100%;
            text-align: center;
        }
        
        .swiper-pagination-bullet {
            width: 10px;
            height: 10px;
            background: #000;
            opacity: 0.3;
            border-radius: 50%;
            display: inline-block;
            margin: 0 5px;
            cursor: pointer;
        }
        
        .swiper-pagination-bullet-active {
            opacity: 1;
            background: #007bff;
        }

@media (max-width: 1050px) {
    .header__dillers__content {
        padding-left: 50px;
    }
}
@media (max-width: 900px) {
    .header__dillers--title {
        font-size: 40px;
        max-width: 500px;
    }
    .header__dillers--description {
        font-size: 14px;
        max-width: 500px;
    }
}
@media (max-width: 620px) {
    .header__dillers--title {
        font-size: 20px;
        max-width: 300px;
    }
    .header__dillers--description {
        font-size: 11px;
        max-width: 300px;
    }
}
@media (max-width: 390px) {
    .header__dillers--title {
        font-size: 20px;
        max-width: 300px;
    }
    .header__dillers--description {
        font-size: 11px;
        max-width: 250px;
    }
    .header__dillers__content {
        padding-left: 20px;
        padding-top: 100px;
    }
    .header__dillers--btn {
        max-width: 200px;
        padding: 30px 0px 30px 0px;
    }
}
@media (max-width: 670px) {
    .dillers__about__title {
        font-size: 40px;
        max-width: 900px;
    }
    .dillers__about__description {
        font-size: 14px;
        max-width: 400px;
    }
}
@media (max-width: 430px) {
    .dillers__about__title {
        font-size: 16px;
        min-width: 351px;
    }
    .dillers__about__description {
        font-size: 10px;
        min-width: 275px;
    }
}
@media (max-width: 350px) {
    .dillers__about__title {
        font-size: 16px;
        max-width: 300px;
    }
    .dillers__about__description {
        font-size: 10px;
        max-width: 200px;
        margin: 0 auto;
        margin-top: 10px;
    }
}


.dillers__video {
        position: relative;
        width: 100%;
        max-width: 1380px; /* Максимальная ширина как у оригинального iframe */
        margin: 600px auto 0; /* Сохраняем отступ сверху */
        padding: 0 15px; /* Отступы по бокам на мобильных */
        box-sizing: border-box;
    }
    
.dillers__video::before {
        content: "";
        display: block;
        padding-bottom: 52.17%; /* Соотношение 720/1380 = 0.5217 (52.17%) */
    }
    
.dillers__video iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #000;
        border: none;
        display: block;
    }
    
    /* Адаптивность для разных устройств */
    @media (max-width: 1200px) {
        .dillers__video {
            max-width: 1000px;
        }
    }
    
    @media (max-width: 992px) {
        .dillers__video {
            margin-top: 400px; /* Уменьшаем отступ на планшетах */
        }
    }
    
    @media (max-width: 768px) {
        .dillers__video {
            margin-top: 200px; /* Еще меньше на мобильных */
            padding: 0 10px;
        }
    }
    
    @media (max-width: 480px) {
        .dillers__video {
            margin-top: 100px; /* Минимальный отступ на маленьких экранах */
            padding: 0 5px;
        }
    }

@media (max-width: 1137px) {
    .swiper-button-next {
        padding-right: 20px;
    }
    .swiper-button-prev {
        padding-left: 20px;
    }
}
.diller__benefits__block--one-two {
    display: none;
}
@media (max-width: 1550px) {
    .diller__benefits__inner {
        flex-direction: column;
    }
    .diller__benefits__block--one {
        display: none;
    }
    .diller__benefits__block--one-two {
        display: block;
    }
    .diller__benefits__block--two {
        flex-direction: column;
        gap: 20px;
    }
    .diller__benefits__block--three {
        flex-direction: column;
    }
    .diller__benefits__img--main img {
        width: 100%;
    }
    .diller__benefits__block__two--content {
        width: 100%;
        max-width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 175px;
    }
    .diller__benefits__block__two--content img {
        width: auto;
    }
    .diller__benefits__block__two--content span {
        padding-top: 0px;
        padding-bottom: 0px;
    }
    .diller__benefits__block__three--content {
        width: 100%;
        align-items: center;
        height: 175px;
    }
    .diller__benefits__block__three--content span {
        padding-top: 0px;
        padding-bottom: 0px;
    }
    .diller__benefits__block__two--content img {
        transform: translateX(0px) !important;
    }
    .diller__benefits__imgs img {
        height: 130px !important;
        width: 130px !important;
    }
    .diller__benefits__block__two--content img {
        margin-top: 0px;
    }
    .diller__benefits__block__two--content img {
        padding-right: 10px;
    }
}
@media (max-width: 600px) {
    .benefits--text-one {
        font-size: 20px;
    }
    .benefits--text--name {
        font-size: 20px;
    }
    .benefits--text-two {
        font-size: 10px;
    }
    .diller__benefits__block__three--content img {
        margin-left: 15px !important;
    }
    .diller__benefits__block__two--content img {
        margin-left: 15px !important;
    }
    .diller__benefits__block--one {
        padding: 30px 50px 30px 50px;
    }
}
@media (max-width: 420px) {
    .diller__benefits__block--one {
        padding: 30px 20px 30px 20px;
    }
}
@media (max-width: 310px) {
    .benefits__text__two--name {
        display: flex;
        flex-direction: column;
        text-align: left;
        align-items: start;
    }
}
@media (max-width: 1000px) {
    .dillers__job {
        display: none;
    }
}
.diller__start--btn-two {
    display: none;
}
@media (max-width: 1420px) {
    .dillers__start__inner {
        flex-direction: column;
    }
    .diller__start--btn {
        display: none;
    }
    .diller__start--btn-two {
        display: block;
    }
    .diller__start--title-block {
        width: 100%;
        justify-content: space-between;
    }
}
@media (max-width: 700px) {
    .diller__start--title {
        font-size: 25px;
        padding-left: 30px;
        padding-top: 0;
    }
    .diller__start--title-block {
        align-items: center;
    }
}
@media (max-width: 500px) {
    .diller__start--title-block {
        gap: 0px;
    }
    .diller__start--img img {
        width: 100%;
    }
    .diller__start--img {
        width: 150px;
    }
    .diller__start__block {
        height: 119px;
    }
    .diller__start--img {
        margin-top: -100px;
    }
    .diller__start__text {
        font-size: 10px;
    }
}
.diller__benefits__block--one-twos {
    display: none;
}
@media (max-width: 1550px) {
    .diller__benefits__block--one-twos {
        display: flex;
    }
    .diller__ben__img {
        display: flex;
        justify-content: space-between;
    }
    .snegokat2__img {
        width: auto !important;
    }
    .diller__ben__img--twos {
        height: 427px;
    }
    .adaptive-one {
        display: flex;
        justify-content: center;
    }
    .diller__ben__block__two--content span {
        max-width: 100%;
        padding-top: 0 !important;
        padding-left: 0 !important;
    }
    .diller__ben__block__two--content img {
        height: auto !important;
        width: auto !important;
    }
    .diller__ben__block__two--content {
        height: 264px !important;
        display: flex;
        justify-content: center;
    }
    .diller__benefit__three--content span {
        font-size: 12px;
        padding-top: 30px !important;
    }
    .diller__ben__block__two--content {
        padding: 30px;
    }
    .diller__snegokat6 {
        padding-right: 0 !important;
    }
    .diller__snegokat6 img {
        width: auto !important;
    }
}
@media (max-width: 800px) {
    .benefits--text-one {
        font-size: 20px;
    }
    .diller__benefits__block__one--img img {
        width: 80%;
    }
}
@media (max-width: 600px) {
    .diller__benefits__block--one {
        padding: 0px 20px 0px 0px;
    }
    .diller__benefits__block-adaptive {
        padding: 30px 50px 30px 50px !important;
    }
}
@media (max-width: 345px) {
    .diller__benefit__three--content span {
        font-size: 10px;
    }
}
@media (max-width: 730px) {
    .diller__benefits__img--main--title {
        padding-left: 30px;
        font-size: 12px;
    }
    .diller__ben__img img {
        margin-top: 0px;
    }
    .diller__ben__img--twos {
        height: 600px;
        position: relative;
    }
    .diller__ben__img img {
        position: absolute;
        right: 1px;
    }
}
@media (max-width: 540px) {
    .diller__ben__img img {
        width: 70% !important;
    }
    .diller__ben__img--twos {
        height: 450px;
        position: relative;
    }
}
@media (max-width: 430px) {
    .diller__ben__img--twos {
        height: 350px;
        position: relative;
    }
}
@media (max-width: 340px) {
    .diller__ben__img--twos {
        height: 270px;
        position: relative;
    }
}
@media (max-width: 1000px) {
    .container-dillers {
        padding-right: 15px;
        padding-left: 15px;
    }
}
@media (max-width: 800px) {
    .grade__title {
        font-size: 40px;
    }
}
@media (max-width: 520px) {
    .grade__title {
        font-size: 20px;
    }
}
@media (max-width: 700px) {
    .grade__block {
        max-width: 335px;
    }
    .grade__block--img iframe {
        width: 335px;
        height: 250px;
    }
    .grade__block--img {
        height: 250px;
    }
    .grade__block {
        height: 400px;
    }
}
@media (max-width: 450px) {
    .grade__title {
        margin-bottom: 0;
    }
    .grade__block {
        max-width: 235px;
    }
    .grade__block--img iframe {
        width: 235px;
        height: 250px;
    }
    .grade__block--img {
        height: 250px;
    }
    .grade__block {
        height: 400px;
    }
    .grade__block--btn {
    margin-top: 0px;
}
}
@media (max-width: 1300px) {
    .diller__citys__map--title {
        text-align: center;
    }
    .diller__citys__inner {
        flex-direction: column;
    }
    .diller__citys__map {
        order: -1;
    }
    .diller__citys__slider {
        display: flex;
        flex-direction: row;
        gap: 20px;
        padding-left: 100px;
        margin-top: 0px;
        max-height: 430px;
        overflow: hidden;
    }
    .diller__citys__group {
        display: flex;
        flex-direction: row;
    }
    #mapService {
        margin: 0 auto;
    }
    .diller__citys__map {
        margin-top: 50px;
        padding-right: 0;
    }
    .diller__citys__inner {
        justify-content: normal;
        gap: 40px;
    }
    .diller__citys__slider {
        margin-top: 40px;
    }
    .diller__citys__slider {
        padding-left: 0px;
        max-width: 530px;
        margin: 0 auto;
    }
    .diller__citys__arrow--prev {
        bottom: 160px;
        left: 160px;
        top: auto;
        right: auto;
        transform: rotate(-90deg) !important;
    }
    .diller__citys__arrow--next {
        bottom: 160px;
        right: 160px;
        left: auto;
        transform: rotate(-90deg) !important;
    }
}
@media (max-width: 1050px) {
    .diller__citys__arrow--prev {
        left: 100px;
    }
    .diller__citys__arrow--next {
        right: 100px;
    }
}
@media (max-width: 1050px) {
    .diller__citys__arrow--prev {
        left: 30px;
        bottom: 200px;
    }
    .diller__citys__arrow--next {
        right: 30px;
        bottom: 200px;
    }
    .diller__citys__map--title {
        font-size: 20px;
    }
}
@media (max-width: 900px) {
    #mapService {
        width: 500px !important;
    }
}
@media (max-width: 740px) {
    .diller__citys__block {
        font-size: 10px;
    }
    .diller__citys__slider {
        padding-left: 0px;
        max-width: 300px;
        margin: 0 auto;
    }
    .diller__citys__arrow--prev {
        left: 30px;
        bottom: 225px;
    }
    .diller__citys__arrow--next {
        right: 30px;
        bottom: 225px;
    }
    .diller__citys__inner {
        border-radius: 25px;
    }
}
@media (max-width: 600px) {
    #mapService {
        width: 300px !important;
    }
    .diller__citys__arrow--prev {
        left: 70px;
        bottom: 170px;
    }
    .diller__citys__arrow--next {
        right: 70px;
        bottom: 170px;
    }
}
@media (max-width: 385px) {
    #mapService {
        width: 250px !important;
    }
    .diller__citys__group {
        gap: 10px;
    }
    .diller__citys__block {
        gap: 5px;
    }
}
.card-button__add .basketIconButton svg rect {
    stroke: white;
    fill: white;
}
.card-button__add .basketIconButton svg path {
    stroke: white;
}
.support__number {
    display: flex;
    align-items: center;
    gap: 10px;
}
.ng {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    pointer-events: none;
}
.ng img {
    max-width: 150px; /* Настройте размер по необходимости */
    height: auto;
}


.ng2 {
    position: fixed;
    bottom: -5px;
    left: 0;
    z-index: 1000;
    pointer-events: none;
}
.ng2 img {
    max-width: 150px; /* Настройте размер по необходимости */
    height: auto;
}

.ng3 {
    left: 0;
    width: 100%;
    margin-top: auto;
    pointer-events: none;
}

.ng3 img {
    width: 100%; /* Растягивает на всю ширину */
    height: auto;
    display: block;
}
.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
    color: black;
}
.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
    opacity: 1;
}
.mini-slider-next {
    cursor: pointer;
}
.mini-slider-prev {
    cursor: pointer;
}
.arrows__slider__main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.mini-slider-prev:hover svg path,
.mini-slider-next:hover svg path {
    stroke: #444444 !important;
    transition: stroke 0.3s ease;
}
.draxter-element .productInfo__miniSliderCustom {
    /* margin: 20px 0 0; */
    margin-top: 0 !important;
}
/* Скрываем стрелки, если слайдов нет или они все видны */
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled,
.mini-slider-next.swiper-button-disabled,
.mini-slider-prev.swiper-button-disabled {
	opacity: 0;
}













.container-benefits--izm {
    max-width: 1420px;
    padding-right: 20px;
    padding-left: 20px;
    margin: 0 auto;
}

.benefits__izm__inner {
    position: relative;
}

.benefits__izm__title {
    border-radius: 20px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 64px;
    color: white;
    padding: 100px 122px 72px 72px;
    background: linear-gradient(135deg, #012BBD 21%, #000000 100%);
}
.benefits__izm__img img {
    width: 100%;
}
.benefits__izm__img {
    margin-top: -83px;
    position: absolute;
    right: 120px;
    z-index: 5;
}

.container-benefits--izm {
    margin-bottom: 200px;
    margin-top: 200px;
}
.benefits__engine__title span {
    font-size: 64px;
    font-weight: bold;
    text-transform: uppercase;
}
.benefits__engine {
    margin-top: 156px;
}
.engine__price__card {
    position: absolute;
    font-size: 40px;
    color: white;
    font-weight: bold;
    background-color: #012BBD;
    border-radius: 33px;
    padding: 13px 33px 13px 33px;
    left: 30px;
    top: 195px;

}
.benefits__engine__price {
    margin-top: 50px;
}
.benefits__inner__cards {
    display: flex;
    gap: 15px;
}
.engine__card {
    position: relative;
    border-radius: 37px;
    background-color: #EDEEEE;
    width: 426px;
    max-height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.engine__card img {
    width: 100%;
}

.baza__title {
    font-size: 64px;
    font-weight: bold;
    text-transform: uppercase;
}
.benefits__baza {
    margin-top: 70px;
}
.baza__cards__inner {
    margin-top: 50px;
}
.baza__card {
    background-color: #EDEEEE;
    border-radius: 37px;
    max-width: 319px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 405px;
}
.baza__card img {
    width: 100%;
    margin-top: 25px;
}
.baza__card__title {
    background-color: #012BBD;
    border-radius: 33px;
    color: white;
    font-weight: bold;
    font-size: 30px;
    padding: 17px 30px 17px 30px;
    margin-top: auto;
    text-align: center;
    width: 100%;
}
.baza__cards__inner {
    display: flex;
    gap: 15px;
}
.sito__title {
    font-size: 64px;
    font-weight: bold;
    text-transform: uppercase;
}
.sito__inner {
    margin-top: 60px;
}
.sito__card span {
    font-size: 40px;
    font-weight: bold;
    background-color: #012BBD;
    padding: 13px 20px 13px 20px;
    border-radius: 53px;
    color: white;
    max-width: 212px;
    display: block;
    text-align: center;
    line-height: 100%;
    position: absolute;
    top: 87%;
}
.sito__card__one {
    top: 80% !important;
}
.sito__card {
    background-color: #EDEEEE;
    border-radius: 37px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 321px;
    height: 266px;
    position: relative;
    width: 100%;
}
.sito__cards {
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
}
.dop__inner {
    margin-top: 240px;
}
.dop__title {
    font-size: 64px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 120%;
    max-width: 1237px;
}
.dop__main {
    margin-top: 110px;
}
.dop__main__left--h1 {
    font-size: 40px;
    font-weight: bold;
    line-height: 120%;
}
.dop__main__left--h2 {
    font-size: 24px;
    line-height: 120%;
    font-weight: 600;
    margin-top: 25px;
    max-width: 411px;
    display: block;
}
.dop__main__left {
    display: flex;
    flex-direction: column;
    background-color: #EDEEEE;
    border-radius: 20px;
    max-width: 576px;
    padding-left: 52px;
    padding-top: 60px;
    padding-right: 113px;
}
.dop__main__left img {
    width: 100%;
    margin-left: 50px;
    margin-top: -20px;
}
.main__right__double {
    background-color: #EDEEEE;
    border-radius: 20px;
    max-width: 359px;
    max-height: 317px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.main__right__double img {
    margin-top: -20%;
}
.dop__main__right__double {
    display: flex;
    gap: 45px;
}
.dop__main {
    gap: 50px;
    display: flex;
}
.dop__main__right {
    display: flex;
    flex-direction: column;
    gap: 45px;
}
.dop__main__right__solo span {
    color: white;
    font-size: 24px;
    font-weight: 600;
    line-height: 120%;
    display: block;
    margin-top: auto;
    max-width: 512px;
    padding-bottom: 50px;
    padding-left: 50px;
}
.dop__main__right__solo {
    height: 317px;
    display: flex;
    border-radius: 20px;
    background-color: black;
    background-position: bottom center;
    background-repeat: no-repeat;
    background-image: url(/upload/dop4.png);
}

@media (max-width: 1000px) {
    .benefits__izm__img {
        right: 0px;
    }
}
@media (max-width: 1200px) {
    .benefits__engine {
        margin-top: 300px;
    }
}
@media (max-width: 1050px) {
    .benefits__engine__title span {
        font-size: 40px;
    }
}
@media (max-width: 800px) {
    .benefits__engine__title span {
        font-size: 20px;
    }
    .benefits__izm__title {
        font-size: 40px;
    }
}
@media (max-width: 550px) {
    .benefits__izm__title {
        font-size: 20px;
        padding-top: 20px;
        padding-left: 10px;
        padding-right: 10px;
        padding-bottom: 10px;
        height: 153px;
    }
    .benefits__izm__img {
        margin-top: -33px;
    }
}
@media (max-width: 450px) {
    .benefits__engine {
        margin-top: 180px;
    }
}
@media (max-width: 380px) {
    .benefits__engine {
        margin-top: 140px;
    }
}
@media (max-width: 400px) {
    .benefits__izm__title {
        height: 200px;
    }
    .benefits__izm__img {
        margin-top: -30px;
    }
}
@media (max-width: 360px) {
    .benefits__izm__title {
        height: 300px;
    }
    .benefits__izm__img {
        margin-top: -30px;
    }
}
@media (max-width: 700px) {
    .benefits__izm__img img {
        width: 70%;
    }
    .benefits__izm__img {
        display: flex;
        justify-content: right;
    }
}
@media (max-width: 1400px) {
    .benefits__inner__cards {
        gap: 15px;
        overflow-x: auto;
        -ms-overflow-style: none; /* IE и Edge */
        scrollbar-width: none; /* Firefox */
    }
    
    /* Для Chrome, Safari, Opera */
    .benefits__inner__cards::-webkit-scrollbar {
        display: none;
    }
}
@media (max-width: 800px) {
    .engine__card {
        width: 300px;
    }
    .engine__price__card {
        font-size: 20px;
        top: 140px;
    }
}
@media (max-width: 500px) {
    .engine__card {
        width: 200px;
    }
    .engine__price__card {
        font-size: 16px;
        top: 100px;
        display: flex;
        padding: 5px 10px 5px 10px;
    }
}
@media (max-width: 1400px) {
    .baza__cards__inner {
        gap: 15px;
    }
}
/* @media (max-width: 1300px) {
    .baza__card {
        max-width: 200px;
        height: 405px;
    }
    .baza__card__title {
        font-weight: bold;
        font-size: 18px;
        padding: 17px 30px 17px 30px;
        margin-top: auto;
    }
} */

@media (max-width: 1300px) {
    .baza__cards__inner {
        overflow-x: auto;
        -ms-overflow-style: none; /* IE и Edge */
        scrollbar-width: none; /* Firefox */
        padding-bottom: 150px;
    }
    .baza__cards__inner::-webkit-scrollbar {
        display: none;
    }
}
@media (max-width: 600px) {
    .baza__card {
        max-width: 200px;
        height: 405px;
    }
    .baza__card__title {
        font-weight: bold;
        font-size: 18px;
        padding: 17px 30px 17px 30px;
        margin-top: auto !important;
    }
}
@media (max-width: 450px) {
    .baza__card {
        max-width: 100px;
        height: 126px;
        border-radius: 11px;
    }
    .baza__card img {
       margin-top: 0;
       width: 60%;
       padding-bottom: 20px;
       transform: translateY(20px) !important;
    }
    .baza__card__title {
        font-weight: bold;
        font-size: 8px;
        padding: 7px 10px 7px 10px;
        margin-top: auto !important;
        border-radius: 15px;
    }
    .baza__cards__inner {
        padding-bottom: 20px;
    }
}
.white-space {
    white-space: nowrap;
}
@media (max-width: 1400px) {
    .sito__cards {
        gap: 15px;
        padding-bottom: 70px;
        overflow-x: auto;
        -ms-overflow-style: none; /* IE и Edge */
        scrollbar-width: none; /* Firefox */
    }
    .sito__cards::-webkit-scrollbar {
        display: none;
    }
}
@media (max-width: 1100px) {
    .sito__card span {
        font-size: 30px;
        padding: 13px 20px 13px 20px;
        border-radius: 53px;
        max-width: 212px;
        line-height: 100%;
        top: 87%;
    }
    .sito__card img {
        padding-left: 20px;
        padding-right: 20px;
    }
}
@media (max-width: 600px) {
    .sito__card {
        width: 250px;
        height: 150px;
        border-radius: 11px;
    }
    .sito__card img {
        width: 100px;
        height: 45px;
        padding-left: 20px;
        padding-right: 20px; 
    }
    .sito__card span {
        font-size: 20px;
        padding: 4px 10px 4px 10px;
        border-radius: 10px;
        max-width: 212px;
        line-height: 100%;
        top: 87%;
    } 
}
@media (max-width: 1050px) {
    .dop__title span {
        line-height: 90%;
    }
}
@media (max-width: 800px) {
    .dop__title span {
        line-height: 1;
    }
}
@media (max-width: 1300px) {
    .dop__main {
        flex-direction: column;
    }
    .dop__main__left {
        max-width: none;
    }
    .main__right__double {
        max-width: none;
        width: 100%;
    }
}
@media (max-width: 900px) {
    .main__right__double img {
        width: 100%;
    }
}
@media (max-width: 800px) {
    .dop__main__left--h1 {
        font-size: 22px;
    }
    .dop__main__left--h2 {
        font-size: 13px;
    }
    .dop__main__right__solo span {
        font-size: 12px;
    }
}
@media (max-width: 500px) {
    .dop__main__left {
        padding-top: 30px;
        padding-left: 30px;
        padding-right: 65px;
    }
}
@media (max-width: 600px) {
    .dop__main__right__solo span {
        padding-left: 20px;
        padding-right: 25px;
        padding-bottom: 30px;
    }
}

.productInfo__card {
    position: relative;
}
.block__btn__social {
    width: 100%;
    background-color: #F6F6F6;
    height: 140px;
    margin-top: -30px;
    border-radius: 25px;
}
.productInfo__card {
    background-color: white;
}
.btn__block__main {
    padding-top: 50px;
    display: flex;
    align-items: center;
    padding-left: 85px;
    gap: 62px;
}
.btn__block__content--btn {
    display: flex;
    gap: 23px;
}
.btn__block__content {
    font-size: 24px; 
    font-weight: 500;
}
.btn__block__content--btn button {
    padding: 12px 80px 12px 80px;
    height: 67px;
    cursor: pointer;
    background-color: white;
    border-radius: 15px;
    border: 2px solid rgba(0, 0, 0, 0.07);
}
@media (max-width: 1650px) {
    .btn__block__main {
        padding-left: 40px;
    }   
}
@media (max-width: 1600px) {
    .btn__block__main {
        padding-left: 30px;
    }
    .btn__block__main {
        gap: 20px;
    }
    .btn__block__content {
        font-size: 20px;
    }
}
@media (max-width: 375px) {
    .btn__block__content {
        font-size: 14px !important;
    }
}
@media (max-width: 1400px) {
    .btn__block__main {
        padding-left: 30px;
    }
    .btn__block__main {
        gap: 20px;
    }
    .btn__block__content {
        font-size: 18px;
    }
    .btn__block__content--btn button {
        padding: 7px 60px 7px 60px;
    }
}
@media (max-width: 1200px) {
    .btn__block__main {
        padding-left: 30px;
    }
    .btn__block__main {
        gap: 20px;
    }
    .btn__block__content {
        font-size: 18px;
    }
    .btn__block__content--btn button {
        padding: 7px 50px 7px 50px;
    }
}
@media (max-width: 1100px) {
    .btn__block__main {
        padding-left: 30px;
    }
    .btn__block__main {
        gap: 20px;
    }
    .btn__block__content {
        font-size: 16px;
    }
    .btn__block__content--btn button {
        padding: 7px 45px 7px 45px;
    }
}
@media (max-width: 980px) {
    .btn__block__main {
        padding-left: 30px;
    }
    .btn__block__main {
        gap: 20px;
    }
    .btn__block__content--btn button {
        padding: 7px 30px 7px 30px;
    }
}
@media (max-width: 840px) {
    .btn__block__main {
        padding-left: 30px;
    }
    .btn__block__main {
        gap: 20px;
    }
    .btn__block__content--btn button {
        padding: 7px 20px 7px 20px;
    }
}
@media (max-width: 768px) {
    .btn__block__main {
        padding-left: 30px;
    }
    .btn__block__main {
        gap: 20px;
    }
    .btn__block__content--btn button {
        padding: 7px 45px 7px 45px;
    }
}
.catalogSheporez-body__main-item .card {
    height: 700px; 
}
@media (max-width: 500px) {
    .btn__block__content--btn button {
        padding: 0;
        width: 85px;
        height: 65px;
    }
    .btn__block__content--btn svg {
    width: 30px; /* размер на экранах до 500px */
  }
}
@media (max-width: 390px) {
    .btn__block__content--btn button {
        padding: 7px 15px 7px 15px;
    }
    .btn__block__content--btn svg {
    width: 30px; /* размер на экранах до 500px */
  }
  .btn__block__content--btn {
    gap: 15px;
  }
}


.cards__number--span-h {
	font-size: 15px;
	font-weight: 400;
    max-width: 267px;
	color: rgba(177, 177, 177, 1);
}
.cards__number--span-main a {
    text-decoration: none;
	font-size: 35px;
	font-weight: bold;
    white-space: nowrap;
	color: rgba(52, 199, 89, 1);
}
.cards__number__block {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.cards__number__main {
	display: flex;
	gap: 22px;
    align-items: center;
}
.cards__number__block {
    margin-top: 20px;
    border-radius: 20px;
    padding: 25px;
    max-width: 413px;
    box-shadow: 0px 4px 10.9px 0px rgba(0, 0, 0, 0.07);
}
.cards__number__main svg {
    cursor: pointer;
    transition: all .3s ease;
    &:hover {
        transform: scale(1.1);
    }
}
@media (max-width: 1000px) {
    .cards__number--span-main a {
	    font-size: 25px;
    }
}
@media (max-width: 768px) {
    .cards__number__block {
        max-width: none;
        width: 100%;

    }
    .cards__number__main {
        justify-content: space-between;
    }
}
@media (max-width: 385px) {
    .cards__number--span-main a {
	    font-size: 20px;
    }
}

.wb__ozon__inner {
    display: flex;
    gap: 17px;
    justify-content: right;
    margin-bottom: 10px;
    margin-top: 30px;
}
.marketplace_product {
    display: flex;
    align-items: center;
    gap: 13px;
    border: 2px solid #EDEDED;
    border-radius: 16px;
    padding: 12px 14px;
}
.productInfo__card {
    margin-top: 30px !important;
}
.wb__ozon__inner a span {
    font-weight: 500;
    color: black;
    white-space: nowrap;
}
.wb__ozon__inner a {
    transition: all .3s ease;
}
.wb__ozon__inner a:hover {
    transform: scale(1.1);
}
@media (max-width: 450px) {
    .wb__ozon__inner a span {
        font-size: 10px;
    }
}
@media (max-width: 380px) {
    .marketplace_product {
        padding: 8px;
        gap: 5px;
    }
    .marketplace_product img {
        width: 35px;
        height: 35px;
    }
}



.mobile-len-fon {
	display: none;
}



.header__landing {
	width: 100%;
	display: flex;
	position: relative;
    width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.header__landing img {
	width: 100%;
	object-fit: contain; /* аналог contain */
}
.header__landing__content {
	position: absolute;
	margin-top: 200px;
	margin-left: 200px;
}
.header__landing__title {
	background-color: rgba(0, 0, 0, 0.3);
	border-radius: 15px;
	padding: 35px 40px;
	width: auto;
}
.header__landing__title h1 {
    font-size: 64px;
    color: white;
    max-width: 680px;
    font-weight: bold;
    line-height: 120%;
	font-family: "Montserrat";
	text-transform: uppercase;
}
.header__landing_prom h1 {
    font-size: 50px;
}
.header__landing__title p {
    font-size: 25px;
    color: white;
    text-transform: uppercase;
    font-weight: bold;
    max-width: 450px;
    margin-top: 41px;
}
.header__landing__content button {
    margin-top: 58px;
}
.header__landing__content button {
    font-size: 20px;
    color: white;
    background-color: black;
    padding: 30px 67px;
    border: none;
    cursor: pointer;
    transition: all .3s ease;
    border-radius: 6px;
}

.header__landing__content button:hover {
    background-color: #43A96E;
}
@media (max-width: 1350px) {
	.header__landing__content {
		margin-left: 100px;
		margin-top: 100px;
	}
}
@media (max-width: 1170px) {
	.header__landing__content {
		margin-left: 50px;
		margin-top: 50px;
	}
}
@media (max-width: 1050px) {
	.header__landing__title h1 {
		font-size: 40px;
	}
	.header__landing__title p {
		font-size: 20px;
	}
}
@media (max-width: 900px) {
	.header__landing__title p {
		margin-top: 15px;
	}
	.header__landing__title h1 {
		max-width: 500px;
	}
	.header__landing__content button {
		margin-top: 20px;
	}
}
@media (max-width: 800px) {
	.header__landing__title h1 {
		font-size: 30px;
	}
	.header__landing__title p {
		font-size: 16px;
	}
	.header__landing__title h1 {
		max-width: 400px;
	}
	.header__landing__title p {
		max-width: 300px;
	}
	.header__landing__content button {
		padding: 15px 30px;
		font-size: 16px;
	}
	.header__landing__title {
		padding: 20px;
	}
	.header__landing__content {
		margin-top: 25px;
		margin-left: 25px;
	}
}
@media (max-width: 560px) {
	.desktop-len-fon {
		display: none;
	}
	.header__landing__title {
		background-color: transparent;
		padding: 0;
	}
	.header__landing__content {
		top: 430px;
	}
	.header__landing__content button {
		width: 100%;
		padding-top: 24px;
		padding-bottom: 24px;
	}
	.mobile-len-fon {
		display: block;
	}
	.header__landing__content {
		margin-right: 25px;
	}
}
@media (max-width: 380px) {
	.header__landing__title h1 {
		font-size: 20px;
	}
	.header__landing__title h1 {
		max-width: 200px;
	}
	.header__landing__title p {
		font-size: 12px;
	}
}
@media (max-width: 530px) {
	.header__landing__content {
		top: 350px;
	}
}
@media (max-width: 470px) {
	.header__landing__content {
		top: 300px;
	}
}
@media (max-width: 430px) {
	.header__landing__content {
		top: 250px;
	}
}
@media (max-width: 400px) {
	.header__landing__content {
		top: 200px;
	}
}
@media (max-width: 330px) {
	.header__landing__content {
		top: 150px;
	}
}
.traktor__text {
    font-size: 25px;
}
.color__title__span {
    font-size: 40px;
}
.colors__cards__img {
    width: 100%;
}