

/* Start:/local/templates/nash/styles.css?175024745561787*/

@font-face {
    font-family: "Museo Sans Cyrl";
    src: local("MuseoSansCyrl-500"),
         url("/local/templates/nash/fonts/MuseoSansCyrl-500.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: "Museo Sans Cyrl";
    src: local("MuseoSansCyrl-500Italic"),
         url("/local/templates/nash/fonts/MuseoSansCyrl-500italic.woff") format("woff");
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}


@font-face {
    font-family: "Museo Sans Cyrl";
    src: local("MuseoSansCyrl-700"),
         url("/local/templates/nash/fonts/MuseoSansCyrl-700.woff") format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: "Museo Sans Cyrl";
    src: local("MuseoSansCyrl-900"),
         url("/local/templates/nash/fonts/MuseoSansCyrl-900.woff") format("woff");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --font-size: clamp(1.5rem, 1.5rem + 0vw, 1.5rem);
    --font-size-small: clamp(0.875rem, 0.831rem + 0.1878vw, 1rem);
    --line-height: 28.8px;
    --sl-line-height: 21.8px;
    --sx-line-height: 19.2px;
    --sm-line-height: 16.8px;
}

*,
*::after,
*::before {
    box-sizing: border-box;
}

h1,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li {
    margin: 0;
    padding: 0;
}

a {
    color: inherit;
}

button,
input {
    color: currentColor;
    font-family: inherit;
    font-size: inherit;
}

ul,
ol {
    list-style: none;
}

.visually-hidden {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    inline-size: 1px;
    block-size: 1px;
    clip-path: inset(50%);
    white-space: nowrap;
}

* {
    margin: 0;
    padding: 0;
}

body {
    position: relative;
    width: 100%;
    color: #333333;
    font-family: "Museo Sans Cyrl", "Arial", sans-serif;
    font-weight: 400;
    font-size: 16px;
}

hr {
    width: auto;
    height: 1px;
    border: none;
    color: #333333;
}

/* Основные стили для десктопного меню */
.container {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 3.5rem;
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
}

/* HEADER */
.header {
    /* position: fixed;
    top: 0;
    left: 0;
    z-index: 9999; */
    width: 100%;
    padding: 10px 20px;
    background-color: #63E7FF;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Фон для header при открытом меню */
.header.open {
    background-color: white;
}

.nav-item {
    position: relative;
    /* flex: 1; */
}

.nav-menu {
    flex: 3;
}

.nav-menu ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    line-height: 19.2px;
    list-style: none;
}

.nav-menu li {
    white-space: nowrap;
}

.nav-menu a {
    color: #333;
    text-decoration: none;
}

/* Основной контейнер для подменю, скрыт по умолчанию */
.left-menu>li {
    position: relative;
}

.left-menu>li>ul {
    position: absolute;
    top: calc(100% - 5px);
    left: 0;
    z-index: 1000;
    display: none;
    padding: 10px 0;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    list-style: none;
    background-color: #BAF4FF;
}

/* Показываем подменю при наведении на родительский элемент или на само подменю */
.left-menu>li:hover>ul,
.left-menu>li>ul:hover {
    display: block;
}

/* Стили для элементов подменю */
.left-menu li ul li {
    padding: 8px 20px;
}

.left-menu li ul li a {
    color: #333;
    text-decoration: none;
}


.logo {
    font-weight: bold;
}

.nav-item .phone,
.footer-contacts .phone {
    color: inherit;
    font-size: 24px;
    text-decoration: none;
    white-space: nowrap;
}

.container .nav-item:last-child {
    text-align: end;
}

.footer .nav-item a {
    text-decoration: none;
}

.phone-container {
    display: flex;
    align-items: center;
    column-gap: 20px;
}

/* Скрытие мобильного меню по умолчанию */
.mobile-menu {
    position: relative;
    display: none;
    width: 100%;
    margin: 9px auto 0;
    padding: 10px 0;
    background-color: white;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    width: auto;
    padding: 0;
    text-align: center;
    list-style: none;
}

.mobile-menu li {
    margin: 10px 0;
    font-size: 16px;
}

.mobile-menu a {
    color: #333;
    text-decoration: none;
}

/* Настройка кнопки-бургера */
.burger-menu {
    position: absolute;
    right: 20px;
    display: none;
}

/* HERO */
.hero {
    position: relative;
    z-index: 1;
    padding: 100px 20px 20px; /* 100px сверху вместо 20px */
    overflow: hidden;
    background-color: #63E7FF;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3.4em;
    margin: 8.125em auto 1em;
    color: #333;
}

.hero-content h1 {
    font-weight: 400;
    font-size: 3.875em;
}

.hero-content p {
    font-size: 1.5em;
}

.hero__btn {
    display: flex;
    flex-direction: column;
    align-items: baseline;
}

.hero__btn p {
    margin-bottom: 2.5em;
    color: #FFFFFF;
    font-size: 1.125em;
}

.hero__btn a {
    border-radius: 1em;
    padding: 15px 20px;
    color: inherit;
    text-decoration: none;
    background-color: #FFFFFF;
}

.hero__btn a:hover {
    background-color: #BAF4FF;
}

.decorative-element {
    position: absolute;
    z-index: -1;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* Левый декоративный элемент */
.decorative-element-left {
    top: -10%;
    left: -28%;
    width: 80%;
    height: 80%;
    background-image: url('/local/templates/nash/images/bubble.png');
}

/* Верхний правый элемент */
.decorative-element-right-top {
    top: 0;
    right: -10%;
    width: 40%;
    height: 40%;
    opacity: 0.6;
    background-image: url('/local/templates/nash/images/bubble-med.png');
}

/* Нижний правый элемент */
.decorative-element-right-bottom {
    top: -25%;
    right: -10%;
    z-index: -2;
    width: 40%;
    height: 80%;
    background-image: url('/local/templates/nash/images/bubble-1.png');
}

.solutions {
    display: none;
    flex-wrap: wrap;
    gap: 20px;
}

.solutions-item {
    width: 25%;
    margin-bottom: 45px;
}

.solutions-item h3 {
    margin: 17px 0;
}

/* Основной стиль для карусели */
.carousel {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
}

/* Лента изображений */
.carousel-track {
    display: flex;
    width: 300%;
    transition: transform 0.5s ease-in-out;
}

/* Каждое изображение занимает всю ширину и высоту карусели */
.carousel-item {
    flex: 1 0 100%;
    height: 100%;
}

.carousel-item img {
    border-radius: 16px;
    object-fit: cover;
}

/* Контейнер для кнопок */
.carousel-buttons {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-block-end: 92px;
    border-radius: 16px;
}

/* Кнопки навигации */
.carousel-button {
    border: none;
    background: none;
    cursor: pointer;
}

/* VIDEO */
.hero-media {
    background: linear-gradient(180deg, rgba(99, 231, 255, 1) 0%, rgba(103, 229, 254, 1) 60%, rgba(102, 133, 249, 1) 95%);
}

.hero-media h2 {
    margin-bottom: 36px;
    padding-top: 64px;
    font-weight: 400;
    text-align: center;
}

.hero-media div {
    height: auto;
    text-align: center;
}

video {
    border-radius: 1em;
}

/* PROFITS */
.main-profits {
    position: relative;
    overflow: hidden;
}

.main-container {
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 65px auto 0;
    padding: 24px;
}

.main-profits .main-container {
    padding: 24px 0;
}

.profits__decorative-element {
    right: -40%;
    bottom: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    background-image: url('/local/templates/nash/images/bubble-2.svg');
}

.main-profits h2,
.suppliers h2 {
    margin: 64px 0;
    font-weight: 400;
    font-size: 2em;
}

.advantages {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    box-sizing: border-box;
    margin-bottom: -136px;
    grid-gap: 30px;
}

.block {
    position: relative;
    align-self: start;
    box-sizing: border-box;
    height: 100%;
    border: 3px solid #63E7FF;
    border-radius: 16px;
    padding: 30px 30px 20px 97px;
    counter-increment: block-counter;
}

.mini-block {
    height: auto;
}

.block-title {
    font-weight: 400;
    font-size: 24px;
    line-height: 28.8px;
}

.block::before {
    content: counter(block-counter);
    position: absolute;
    top: 40px;
    left: 7px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    margin: 0 30px;
    border-radius: 50%;
    color: black;
    font-weight: 400;
    font-size: clamp(3.875rem, 3.831rem + 0.1878vw, 4rem);
}

.block ul {
    margin-top: 30px;
    margin-left: 20px;
    font-size: 14px;
    line-height: 16.8px;
    text-align: left;
    text-underline-position: from-font;
    list-style-type: disc;
}

.block li {
    margin-bottom: 10px;
}

.block ul:nth-last-child() {
    margin-bottom: 0;
}

.content-container {
    display: grid;
    grid-template-columns: auto;
    width: 100%;
    max-width: 1170px;
    line-height: 1.35em;
}

/* Suppliers */

.suppliers-blue {
    position: relative;
    z-index: 1;
    overflow: hidden;
    background-color: #63E7FF;
}

.suppliers__decorative-element-left {
    top: 30%;
    left: -25%;
    z-index: -2;
    width: 80%;
    height: 80%;
    background-image: url('/local/templates/nash/images/bubble-blue-lf.svg');
}

.suppliers__decorative-element-right {
    top: 0;
    right: -35%;
    z-index: -2;
    width: 100%;
    height: 100%;
    background-image: url('/local/templates/nash/images/bubble-blue-rt.svg');
}

.suppliers__decorative-element-top {
    top: -15%;
    right: 7%;
    z-index: -1;
    width: 80%;
    max-width: 260px;
    height: 100%;
    background-image: url('/local/templates/nash/images/doz.png');
}

.suppliers {
    padding: 92px 0;
}

.suppliers-info__advantages {
    margin-top: 65px;
    margin-bottom: 92px;
}

.suppliers-info__advantages-text {
    position: relative;
    width: 75%;
    margin-bottom: 35px;
    margin-left: 100px;
    font-size: 42px;
    text-align: left;
}

.suppliers-info__advantages-text::before {
    content: url('/local/templates/nash/images/btn.png');
    position: absolute;
    left: -10%;
}

.suppliers-info__more-advantages {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
    width: 75%;
    margin-left: 100px;
}

.suppliers-info__more-advantages p {
    border: 1px solid #000000;
    border-radius: 30px;
    padding: 14px 20px;
    font-size: 14px;
}


.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.carousel-item {
    flex-shrink: 0;
    min-width: 100%;
}

.news-list {
    display: grid;
    grid-template-columns: repeat(3, auto);
    justify-content: space-between;
    row-gap: 5.625em;
    column-gap: 5.625em;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 65px;
    line-height: 1.35em;
}

.news-list:last-child {
    margin-right: 0;
}

.news-item {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    align-items: stretch;
    min-height: 47.08em;
    border-radius: 15px;
}

.news-item img {
    float: left;
    width: 100%;
    margin: 0 !important;
}

.action {
    display: grid;
    grid-template-columns: auto;
    justify-content: center;
    align-content: center;
    min-height: 4.938em;
    margin-block-start: 0.4em;
    border-radius: 0 0 15px 15px;
    background-color: #BAF4FF;
}

.download {
    display: grid;
    justify-content: center;
    align-content: center;
    min-width: 183px;
    height: 44px;
    border-radius: 15px;
    padding: 10px 22px;
    background: #63E7FF;
}

.download_file {
    display: grid;
    justify-content: center;
    align-content: center;
    margin-top: 12px;
    text-decoration: none;
}

.download_file a {
    color: #6764F6;
    text-decoration: none;
}

/* PRODUCTION */
.production {
    grid-column: 1;
    margin: 65px auto 68px;
}

.production .production-title {
    font-weight: 400;
    font-size: 32px;
}

.production-title {
    display: inline-block;
    margin-bottom: 75px;
    border-radius: 16px;
    border-bottom-left-radius: 0;
    padding: 16px 30px;
    background-color: #63E7FF;
}

details {
    margin-bottom: 10px;
    overflow: hidden;
}

details:not(:last-child) {
    border-bottom: 1px solid #9B9B9B;
}

summary {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 27px 15px 11px;
    font-weight: normal;
    font-size: 18px;
    cursor: pointer;
}

summary::after {
    content: url('/local/templates/nash/images/arrow.svg');
    color: #333;
    font-weight: bold;
    font-size: 24px;
    transform: rotate(180deg);
}

details[open] summary::after {
    content: url('/local/templates/nash/images/arrow.svg');
    transform: none;
}

details p {
    margin: 0;
    padding: 11px 15px;
    color: #9B9B9B;
    font-size: 14px;
    line-height: 1.5;
}

/* ABOUT */
.about,
.about-mob,
.catalog,
.basket,
.vacancies,
.sertificat {
    position: relative;
    padding: 0 36px;
    overflow: hidden;
}

.about-mob {
    display: none;
}

.about-mob details p {
    margin: 0;
    padding: 11px 15px;
    color: #333;
    font-size: 14px;
    line-height: 16.8px;
}

.about-mob details {
    border-bottom: 1px solid #9B9B9B;
}

.about-mob .production-item ul {
    margin-left: 15px;
    list-style: disc;
}

.about .content-container:nth-child(2) {
    position: relative;
    display: grid;
    justify-content: start;
    margin: auto;
    margin-block-end: 41.5em;
}

.main-contacts {
    position: relative;
    padding: 36px 36px 36px 136px;
    overflow: hidden;
}

.main-title {
    position: relative;
    display: grid;
    justify-content: start;
    align-content: center;
    width: 100%;
}

.about-title {
    margin: 65px auto;
    font-weight: 400;
    line-height: 100%;
}

.excursion h1,
h2 {
    font-weight: 400;
}

.about-item {
    margin-bottom: 72px;
}

.about-item h2, .about-video h2 {
    margin: 36px 0;
}

.about-item ul {
    margin-left: 20px;
    padding-left: 0.625em;
    text-align: left;
}

.about .about-item ul {
    margin: 0 8px;
    list-style: disc;
}

.about__decorative-element {
    right: 0;
    bottom: -10%;
    width: 100%;
    height: 75%;
    background-image: url(/local/templates/nash/images/building.png);
    background-size: cover;
}

.grid-container {
    position: relative;
    display: grid;
    grid-template-columns: 70% 30%;
    row-gap: 30px;
    max-width: 1170px;
    margin: 0 auto;
}

.about .grid-container {
    column-gap: 30px;
}

/* Стили для элементов в сетке */
.grid-item {
    position: relative;
    height: auto;
}

.grid-item:nth-child(1) {
    grid-column: 1 / span 2;
}

.grid-item:nth-child(1)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: 1;
    width: 100vw;
    border-bottom: 1px solid #63E7FF;
    transform: translateX(-50%);
}

.grid-item:nth-child(2),
.grid-item:nth-child(3),
.grid-item:nth-child(4) {
    grid-column: 1;
}

.grid-item:nth-child(5) {
    grid-column: 2;
    grid-row: 2 / span 1;
    height: auto;
    margin-top: 89px;
    border-radius: 16px;
    padding: 0 36px 24px;
    background: #F4F4F4;
    background-size: cover;
    background-attachment: fixed;
}

.grid-item:nth-child(6) {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    grid-column: 2;
    grid-row: 3 / span 1;
    align-content: center;
}

.news-list .grid-item:nth-child(2) {
    grid-column: 1 / span 2;
}

.present {
    display: block;
    max-width: 21.438em;
    height: 2.25em;
    margin-top: 2.25em;
    border-radius: 15px;
    padding: 5px 10px;
    color: #FFFFFF;
    text-align: center;
    text-decoration: none;
    background: #6764F6;
}


/* Каталог */
.catalog .content-container {
    grid-template-columns: 1fr;
}

.catalog-item_preview-text {
    width: 100%;
    margin: 20px 0;
}

.catalog-item_preview-text h3 {
    min-height: 2.699em;
}

/*vacancies*/
.vacancies__decorative-element {
    right: -27%;
    bottom: -35%;
    z-index: -1;
    width: 80%;
    height: 80%;
    background-image: url(/local/templates/nash/images/bubble-about.png);
    background-position: bottom;
}

/* sert */
.sert-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: auto;
    margin-block-end: 185px;
}

.sert-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px;
    padding: 16px 32px;
    background-color: #F4F4F4;
}

.sert-item a {
    border: none;
    border-radius: 20px;
    padding: 5px 10px;
    color: black;
    text-decoration: none;
    background-color: #63E7FF;
    cursor: pointer;
}

.sert-item a:hover {
    background-color: #00b0d1;
}

/* contacts */
.contacts-address {
    display: flex;
    flex-direction: column;
}

.contacts-address::after {
    content: "";
    position: absolute;
    top: 15rem;
    left: 50%;
    z-index: 1;
    width: 100vw;
    border-bottom: 1px solid #63E7FF;
    transform: translateX(-50%);
}

.contacts-address h2 {
    margin-bottom: 20px;
    color: #9B9B9B;
    font-weight: 400;
    font-size: 14px;
}

.contacts-address__item {
    margin: 18px 0;
}

.item-flex {
    display: flex;
    justify-content: space-between;
    width: 80%;
}

.contacts-phones {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    box-sizing: border-box;
    width: 80%;
    margin: 65px 0 94px;
    grid-gap: 30px;
}

.contacts-phones-item {
    display: flex;
    flex-direction: column;
    border: 2px solid #63E7FF;
    border-radius: 15px;
    padding: 20px;
}

.contacts-phones-item h2 {
    margin-bottom: 30px;
    font-weight: 400;
    font-size: 24px;
}

.main-contacts .contacts-phones-item h2 {
    line-height: 28.8px;
}

.contacts-phones-item a {
    color: inherit;
    line-height: 1.5;
    text-decoration: none;
}

/* distrib */
.distrib-content {
    width: auto;
    line-height: 1.8em;
}

.anketa {
    max-width: 780px;
}

.distrib-content-title {
    margin-block-end: 24px;
    font-size: 24px;
    line-height: 28.8px;
}

.distrib-content p {
    margin-block-start: 36px;
    margin-block-end: 36px;
    font-size: 18px;
    line-height: 21.6px;
}

.distrib-content h3 {
    grid-column: span 2;
    margin-block-end: 64px;
}

.distrib-content .contact-form {
    max-width: 804px;
    padding: 0;
}

.distrib-content .contact-form:first-of-type {
    grid-row: 1 / -1;
}

.distrib-content .contact-form label,
input,
textarea,
select {
    max-width: 307px;
}

/* Форма обратной связи */
.contact-form {
    max-width: 410px;
    margin-bottom: 92px;
    padding: 20px;
    font-weight: 400;
}

.contact-form h2 {
    margin-bottom: 30px;
}

.contact-form h3 {
    font-weight: 400;
    font-size: 24px;
}

.distrib-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: end;
    column-gap: 64px;
}

.distrib-form h3 {
    font-size: 14px;
}

.distrib-form .Checkbox {
    grid-column: 1 / span 2;
    max-width: 770px !important;
    margin-top: 24px;
}

label {
    display: block;
    grid-row: 2 / span 2;
    margin-top: 20px;
}

input,
textarea,
select {
    display: block;
    box-sizing: border-box;
    width: 100%;
    max-width: 410px;
    height: 35px;
    margin: 10px 0;
    border: 1px solid #9B9B9B;
    border-radius: 8px;
    padding: 0 10px;
    color: #495057;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 35px;
    background-color: #fff;
}

input[type="radio"] {
  padding: 0;
}

textarea {
    max-width: 410px;
    height: 131px;
}

.Checkbox {
    position: relative;
    display: flex;
    align-items: start;
    gap: 10px;
}

.basket .Checkbox {
    width: 420px;
}

.Checkbox input {
    width: 20px;
    height: 20px;
    border: 1px solid #333333;
    border-radius: 6px 0px 0px 0px;
    padding-top: 3px;
}

.Checkbox a {
    color: rgba(103, 100, 246, 1);
    text-decoration: none;
}

button {
    width: 100%;
    margin-top: 10px;
    margin-top: 30px;
    border: none;
    border-radius: 5px;
    padding: 10px;
    background-color: #63E7FF;
    cursor: pointer;
}

button:hover {
    background-color: #00b0d1;
}

.captcha {
    grid-column: 1;
    margin-block-start: 64px;
}

.contact-form button {
    grid-column: 1;
    max-width: 307px;
}

.span-wrap {
    display: block;
    height: 4em;
}

.distrib-form label {
    font-size: 14px;
    line-height: 16.8px;
}

/* Модальное окно */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    display: none;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    width: 80%;
    max-width: 300px;
    margin: 15% auto;
    border: 1px solid #888;
    padding: 20px;
    text-align: center;
    background-color: white;
}

.close {
    float: right;
    color: #aaa;
    font-weight: bold;
    font-size: 28px;
}

.close:hover,
.close:focus {
    color: black;
    cursor: pointer;
}


/* Экскурсии */
.excursion .main-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: 1;
    width: 100vw;
    border-bottom: 1px solid #63E7FF;
    transform: translateX(-50%);
}

.excursion .content-container:nth-child(2) {
    margin-block-end: 92px;
}

.excursion-list {
    position: relative;
    margin-block-start: 36px;
}

.excursion-list img {
    width: 670px;
    height: 589px;
    margin-bottom: 15px;
    border-radius: 16px;
}

.news-wrap {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-inline-start: 0;
}

ol.news-wrap {
    counter-reset: item;
}

ol.news-wrap li.excursion-item {
    counter-increment: item;
}

ol.news-wrap li.excursion-item::before {
    content: counter(item) "";
    position: absolute;
    top: 45px;
    left: 30px;
    font-size: clamp(1.5rem, 0.6197rem + 3.7559vw, 4rem);
}

.excursion-item {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    width: 100%;
}

.excursion-item div {
    width: 100%;
}

.excursion-item> :nth-child(1) {
    order: 2;
}

.excursion-item h2 {
    font-size: 24px;
}

.excursion-item p {
    text-align: right;
}

.preview_text {
    text-align: left !important;
}

.suppliers-info__more-advantages {
    margin-top: 36px;
}

.suppliers-info__advantages p:first-child {
    margin-bottom: 0;
    font-size: 42px;
}

.suppliers-info__more-advantages p:first-child {
    font-size: 14px;
}

.excursion-item p,
p:first-child {
    /* margin-bottom: 12px; */
    font-size: 18px;
}

.excursion-item span {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    height: auto;
    min-height: 106px;
    border-radius: 16px;
    padding: 30px 30px 30px 97px;
    font-size: 24px;
    line-height: 28.8px;
    background: #F4F4F4;
}

.catalog_end-block {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto 36px;
    color: #9B9B9B;
}

.catalog_end-block p {
    font-size: 14px;
}


/* Корзина */
.contein-basket {
    max-width: 770px;
    height: auto;
}

.contein-basket .order {
    flex-direction: row;
    width: 100%;
}

.headline {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 24px;
    width: 47.25em;
    height: 10px;
    padding: 0px;
}

.p {
    top: 0px;
    left: 0px;
    display: flex;
    align-self: flex-start;
    width: 505.453125px;
    border-style: hidden;
    vertical-align: text-top;
    outline: none;
    color: #9b9b9b;
    font-size: 14px;
    line-height: 16.799999237060547px;
    text-align: left;
}

.p2 {
    top: 0px;
    left: 529.45px;
    display: flex;
    align-self: flex-start;
    width: 104px;
    border-style: hidden;
    vertical-align: text-top;
    outline: none;
    color: #9b9b9b;
    font-size: 14px;
    line-height: 16.799999237060547px;
    text-align: left;
}

.order-items ul {
    list-style-type: none;
}

.order-items_name {
    flex-direction: row;
}

.basket__decorative-element {
    width: 100%;
    margin-left: calc((100% - 1200px) / 2);
    border-bottom: 1px solid #63E7FF;
}

.contein-basket .order-form {
    width: 100%;
}

.drop-list {
    display: flex;
}

/*Страница 404 */
.error_404 {
    display: grid;
    align-items: center;
    align-content: center;
    height: 87vh;
    background: url(/local/templates/nash/images/bg_404.svg);
    background-position: center;
    background-size: cover;
}

.page-title {
    display: flex;
    flex-direction: column;
    gap: 64px;
    margin-left: 8.438em;
}

.text-error_404 {
    height: 19px;
}

.text-error_404 a {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 1em;
    text-decoration: none;
}

.text-error_404 span {
    color: #6764F6;
}

.text-error_404 img {
    width: 24px;
    height: 24px;
}

/*THANK YOU PAGE*/
.thpage-container {
    min-height: 600px;
}

.thpage {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 203px auto 203px 135px;
}

.thpage-content {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.thpage__decorative-element {
    right: -57px;
    bottom: -30%;
    width: 106%;
    height: 101%;
    background-image: url(/images/bubles20.svg);
    background-size: cover;
}

.basket .thpage__decorative-element_true {
    right: -57px;
    bottom: -30%;
    width: 106%;
    height: 101%;
    background-image: url(/images/buble-thp.svg);
    background-size: cover;
}

.thpage-content h2 {
    font-size: 32px;
    line-height: 43.2px;
}

.app-text p,
.app-text a {
    font-size: 24px;
    line-height: 28.8px;
    text-decoration: none;
}

.text-error_404 span {
    font-size: 16px;
}

.app-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Корзина */
.basket {
    font-size: 14px;
}

.contein-basket {
    position: relative;
    display: flex;
    flex-direction: column;
    row-gap: 36px;
    max-width: 770px;
    height: auto;
}

.contein-basket .order {
    flex-direction: row;
    width: 100%;
}

.orders {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.order-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 616px;
    height: auto;
    padding: 0px;
}

.drop-list_basket {
    max-width: 676px;
}

.headline {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.string {
    display: flex;
    align-self: flex-start;
    border-style: hidden;
    vertical-align: text-top;
    outline: none;
    color: #9b9b9b;
    font-family: Museo Sans Cyrl;
    font-size: 14px;
    line-height: 16.799999237060547px;
    text-align: left;
}

.lineproduct3 {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    column-gap: 24px;
}

.basket-items {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    row-gap: 2px;
    width: 506px;
}

.basket-items_name {
    position: relative;
    border-radius: 8px 0px 0px 8px;
}

.basket-item_name {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 470px;
    height: 26px;
    padding-left: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    background: #F4F4F4;
    white-space: nowrap;
}

.basket-item_name-tail {
    position: absolute;
    top: 0px;
    right: 0;
    width: 30px;
    height: 26px;
    background: linear-gradient(90deg, rgba(244, 244, 244, 0) 0.49%, #F4F4F4 71.24%);
}

.basket .content-container {
    position: relative;
    grid-template-columns: 1fr;
    row-gap: 36px;
    margin: 0 auto 65px;
}

.basket .grid-container:nth-child(2) {
    grid-column: 1 / span 2;
}

.controlupdown {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contein-basket button {
    width: 36px;
    height: 26px;
    margin-top: 0px;
    border: none;
    border-radius: 0px;
    padding: 0px;
    background: #F4F4F4;
    cursor: pointer;
}

.contein-basket button:hover {
    background: #F4F4F4;
}

.count {
    margin: 0 auto;
}

.count1 {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    column-gap: 24px;
}

.count2 {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    background: #F4F4F4;
}

.controlupdown {
    border-radius: 0px 8px 8px 0px;
    border-left: 1px solid #FFFFFF;
}

.controlupdown {
    position: relative;
    display: inline-block;
}

#toggleButton {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 8px 12px;
    color: #333;
    font-size: 16px;
    background-color: #63E7FF;
    cursor: pointer;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 100;
    display: none;
    width: 100%;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
}

.dropdown select {
    width: 100%;
    border: none;
    padding: 8px;
    font-size: 16px;
    cursor: pointer;
}

.dropdown.show {
    display: block;
}

.subtop {
    flex-direction: column;
    align-items: baseline !important;
    width: auto;
    border-radius: 0px 15px 15px 15px;
    padding: 12px 30px 12px 0;
    background: #BAF4FF;
}

.controlupdown_open {
    display: none;
}

.controlleft2,
.controlright4 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 31px;
    height: 26px;
}

.controlleft2 {
    border-radius: 8px 0px 0px 8px;
    border-right: 1px solid #FFFFFF;
}

.controlright4 {
    border-radius: 0px 8px 8px 0px;
    border-left: 1px solid #FFFFFF;
}

.num2 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 26px;
}

.wastebasket {
    background: white !important;
}

.basket .contact-form {
    max-width: 470px;
    margin-bottom: 92px;
    padding: 0;
}

.comeback_link {
    max-width: 307px;
    border: 1px solid black;
    border-radius: 5px;
    padding: 10px;
    text-decoration: none;
    cursor: pointer;
}

/* .phone-container {
    display: flex;
    align-items: center;
    gap: 20px;
} */

.cart-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 65px;
    height: 48px;
    border-radius: 15px;
    background: #BAF4FF;
}

.cart-count {
    margin-right: 2.5px;
    font-weight: bold;
    font-size: 12px;
}

.h-captcha {
    margin-block-start: 64px;
}

.button {
    margin-top: 30px;
    border: none;
    border-radius: 5px;
    padding: 10px;
    text-decoration: none;
    background-color: #63E7FF;
    cursor: pointer;
}

.download .button {
    margin: 0;
}

/* Вакансии */
.vacancies__description {
    display: flex;
    flex-direction: column;
    row-gap: 64px;
    min-height: 653px;
}

/* FOOTER */

.footer {
    padding: 32px 24px;
    color: #9B9B9B;
    background-color: #333333;
}

.footer .container {
    align-items: flex-start;
}

.footer-logo {
    margin-bottom: 10px;
}

.footer-menu {
    display: flex;
    flex: 3;
    justify-content: center;
    gap: 65px;
}

.footer-menu ul {
    color: #63E7FF;
    font-weight: 700;
    list-style: none;
}

.footer-menu li {
    margin: 10px 0;
}

.footer-menu a {
    color: #FFFFFF;
    font-weight: 400;
    text-decoration: none;
}

.footer-contacts .phone,
.footer-contacts__mail {
    display: block;
    margin-bottom: 10px;
    color: #FFFFFF;
    text-decoration: none;
}

.phone-mob {
    display: none;
}

/*404*/

.page-title_404 {
    display: flex;
    flex-direction: column;
    gap: 64px;
    margin: 0 auto;
}


@media (width >=1600px) {
    .about__decorative-element {
        height: 90%;
    }

    .about .content-container:nth-child(2) {
        margin-block-end: 58.5em;
    }

    .excursion .content-container:nth-child(2) {
        margin-block-end: 0;
    }
}

@media (min-width: 1500px) {

    .about,
    .catalog,
    .basket,
    .vacancies,
    .sertificat {
        padding: 0 36px;
    }

    .suppliers__decorative-element-left {
        left: -30%;
    }

    .suppliers__decorative-element-right {
        right: -40%;
    }
}

@media (min-width: 1300px) {
    .suppliers {
        padding: 36px;
    }

    .suppliers__decorative-element-right {
        right: -35%;
    }

    .suppliers__decorative-element-top {
        top: -15%;
        right: 3%;
    }

}

@media (width <= 1100px) {
    
    @keyframes pulse {
        0% {
            transform: scale(1);
        }
        50% {
            transform: scale(1.1);
        }
        100% {
            transform: scale(1);
        }
    }
    body {
        font-size: clamp(0.875rem, 0.875rem + 0vw, 0.875rem) !important;
        line-height: 16.8px;
    }

    h2 {
        font-weight: 700;
        font-size: 14px;
    }

    .hero-media h2 {
        font-size: 24px;
    }

    .production .production-title {
        font-size: 24px;
    }

    .production-title {
        margin-top: 40px;
        margin-bottom: 64px;
    }

    .suppliers-info__advantages p:first-child {
        font-weight: 400;
        font-size: 24px;
        line-height: 28.8px;
    }

    .nav-menu {
        display: none;
    }

    .about,
    .catalog,
    .basket,
    .vacancies,
    .sertificat {
        padding: 0 32px;
        font-size: clamp(0.875rem, 0.8071rem + 0.2899vw, 1rem);
        line-height: 16.8px;
    }

    .phone-container {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-block-start: 20px;
    }

    .button {
        margin-top: 30px;
        border: none;
        border-radius: 5px;
        padding: 10px;
        text-decoration: none;
        background-color: #63E7FF;
        cursor: pointer;
    }

    .download .button {
        margin: 0 !important;
    }

    /* Настройка для мобильных: логотип слева, бургер справа */
    .phone-container,
    .burger-menu {
        display: flex;
    }

    .burger-menu button {
        width: 40px;
        margin: 0;
        border-radius: 0;
        padding: 8px;
        text-align: right;
    }

    .cart-container {
        width: 50px;
    }

    .cart-count {
        top: 0;
        font-size: 14px;
    }

    /* Отображение мобильного меню */
    .mobile-menu.show {
        display: block;
    }
   
    .nav-menu {
        display: none;
    }

    .hero {
        padding: 36px;
    }

    .hero-content {
        gap: 36px;
        margin: 2.25em auto 1em;
    }

    .hero-content h1 {
        font-size: 2.25em;
        line-height: 43.2px;
    }

    .hero-media {
        background: none;
        background-color: #63E7FF;
    }

    video {
        border-radius: 0;
    }

    .container .nav-item:last-child {
        display: none;
    }

    .content-container {
        line-height: 16.8px;
    }

    .about .content-container:nth-child(2) {
        margin-block-end: 110vh;
    }

    .about-mob .main-container {
        margin-block-end: 47vh;
    }

    .about-mob details p,
    .about-mob li {
        font-size: 14px;
        line-height: 16.8px;
    }

    .last-prg {
        font-size: 23px;
        line-height: 26.6px;
    }

    .excursion h1,
    h2,
    .arrow-header_last {
        max-width: 100%;
        padding-inline-start: 14px;
        font-weight: 400;
        font-size: 24px;
    }

    .excursion .content-container:nth-child(2) {
        margin-block-end: 92px;
    }

    .sert-container {
        margin-top: 36px;
    }

    .main-contacts {
        padding: 36px;
    }

    .grid-container {
        gap: 0.5px;
        column-gap: 0;
    }

    .about {
        display: none;
    }

    .excursion,
    .distributors {
        display: block;
    }

    .about-mob {
        display: block;
    }

    .about .grid-container {
        grid-template-columns: 1fr;
    }

    .item {
        position: static;
        width: 100%;
    }

    .grid-item:nth-child(2),
    .grid-item:nth-child(3),
    .grid-item:nth-child(4) {
        padding-block: 24px;
    }

    .about .grid-item:nth-child(2),
    .about .grid-item:nth-child(3),
    .about .grid-item:nth-child(4) {
        border-bottom: 1px solid #9B9B9B;
    }

    .grid-item:nth-child(5) {
        grid-column: 1/-1;
        grid-row: 5;
        height: auto;
        margin-top: 0.5px;
        border-radius: 0;
        border-bottom: 1px solid #9B9B9B;
        padding: 0;
        padding-block-end: 24px;
        background: none;
    }

    .about-item {
        margin-bottom: 0;
    }

    .about-title {
        margin: 46px auto;
        font-size: 24px;
    }

    .about-item ul {
        margin-left: 0;
        padding-left: 0;
    }

    .main-container {
        max-width: 980px;
        margin: 32px auto 0;
    }

    .about-mob .main-container {
        max-width: 100%;
        padding: 24px 0;
    }

    .about-mob summary {
        padding: 27px 0 11px;
        font-weight: 700;
    }

    .contacts-address::after {
        width: 100%;
    }

    .contacts-phones {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr;
        width: 100%;
    }

    .contacts-phones-item h2 {
        margin-bottom: 8px;
    }

    .contact-form {
        min-width: 343px;
        max-width: 704px;
        padding: 0;
    }

    .contact-form h2 {
        font-size: 24px;
    }

    .drop-list_basket,
    .basket label,
    input,
    textarea,
    select {
        max-width: 100%;
    }

    .contact-form textarea {
        width: 100%;
    }

    .Checkbox input {
        min-width: auto;
    }

    .basket .Checkbox {
        width: 100%;
    }

    .excursion__decorative-element {
        display: none;
    }

    .excursion-item {
        flex-direction: column;
        gap: 4px;
    }

    .excursion-item span {
        border-radius: 0;
        padding: 30px 30px 30px 40px;
    }

    .excursion-list img {
        width: 100%;
        height: 100%;
        border-radius: 0;
    }

    .excursion-item p,
    li,
    p:first-child {
        font-size: clamp(0.875rem, 0.8071rem + 0.2899vw, 1rem);
    }

    .excursion .content-container {
        grid-template-columns: 1fr;
        margin-block-end: 92px;
    }

    ol.news-wrap li.excursion-item::before {
        top: 35px;
        font-size: 24px;
    }

    .distrib-content p {
        margin-block-end: 24px;
    }

    .distrib-form {
        grid-template-columns: 704px;
        align-items: start;
    }

    .distrib-form .Checkbox {
        grid-column: 1;
    }

    label {
        grid-row: span 1;
    }

    .contact-form h3 {
        font-size: 18px;
    }

    .span-wrap {
        display: none;
    }

    .suppliers {
        position: relative;
    }

    .suppliers-info__advantages {
        margin-top: 96px;
    }

    .suppliers-info::after {
        content: url(/local/templates/nash/images/Group_17.png);
        position: absolute;
        bottom: 58%;
        left: 0;
        width: 36px;
        height: 36px;
    }

    .suppliers-info__advantages-text::before {
        content: "";
        position: fixed;
    }

    .suppliers-info__advantages-text {
        margin-bottom: 24px;
        margin-left: 0;
    }

    .suppliers-info__more-advantages {
        margin-left: 0;
    }

    .profits__decorative-element {
        display: none;
    }

    .news-list {
        column-gap: 36px;
        width: 100%;
        max-width: fit-content;
        margin: 36px auto 36px;
        line-height: 1.35em;
    }

    .catalog_end-block {
        max-width: fit-content;
    }

    .catalog .grid-item:nth-child(2),
    .catalog .grid-item:nth-child(3),
    .catalog .grid-item:nth-child(4) {
        padding-block-end: 0;
    }

    .catalog .button {
        display: inline-block;
        transition: transform 0.2s, background-color 0.3s;
        cursor: pointer;
    }
    
    .catalog .button:active {
        transform: scale(0.95);
    }
    
    .catalog .button.animated {
        animation: pulse 0.4s ease-in-out;
    }

    .sert-item a {
        font-size: 16px;
    }

    .sert-item p {
        font-size: 18px;
    }

    .footer {
        padding: 32px;
        font-size: 18px;
    }

    .footer-menu {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
    }

    .footer .container {
        display: grid;
        grid-template-columns: auto auto;
        row-gap: 36px;
        column-gap: 64px;
    }

    .footer .item-large {
        display: flex;
        flex-direction: row;
        grid-column: 1 / 3;
        grid-row: 2;
        justify-content: space-between;
    }

    .item-large a {
        order: 2;
    }

    .footer-contacts {
        display: flex;
        flex-direction: column;
        row-gap: 24px;
    }

    .footer-contacts__mail {
        font-size: 24px;
    }

    .footer li {
        font-size: 18px;
        line-height: 21.6px;
    }

    .phone-mob {
        display: block;
    }

    .thpage {
        margin: auto;
        margin-bottom: 302px;
    }
}

@media (width <= 990px) {
    .cart-container {
        width: 63px;
    }

    .carousel {
        border-radius: 0;
    }

    .main-container {
        margin: 0 auto;
    }

    .mini-block h3 {
        font-size: 24px;
    }

    .suppliers {
        padding: 36px;
    }

    .suppliers__decorative-element-left {
        left: -28%;
    }

    .suppliers-info::after {
        top: calc(30% + 2vh);
        left: 5%;
    }

    .suppliers__decorative-element-top {
        right: 0%;
    }

    .suppliers-info__more-advantages p:first-child {
        font-size: 14px;
        line-height: 16.8px;
    }

    .arrow-header_last {
        font-size: 36px;
    }

    .last-prg {
        font-size: 36px;
        line-height: 40.6px;
    }

    /* .contacts-address::after {
        top: 14vh;
        border-bottom: none;
    } */

    .about .grid-container {
        column-gap: 0;
    }

    .about-mob .grid-container {
        grid-template-columns: 1fr;
    }

    .about__decorative-element {
        height: 81%;
    }

    .main-profits h2 {
        margin: 64px 32px;
        font-size: 24px;
    }
    .advantages {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr;
        margin: 0 32px 36px;
    }

    .footer .item-large {
        display: flex;
        flex-direction: row;
        grid-column: 1 / 3;
        grid-row: 2;
        justify-content: space-between;
    }
}

@media (width <= 768px) {

    .nav-menu,
    .container .nav-item:last-child {
        display: none;
    }

    .logo {
        flex: 1;
    }

    .burger-menu {
        display: flex;
        align-items: center;
    }

    /* Скрытие иконок и управление мобильным меню */
    .mobile-menu.show {
        display: block;
    }

    .burger-menu button {
        width: 24px;
        height: 24px;
        margin: 0 0 0 7px;
        border-radius: 0;
        padding: 0;
        text-align: right;
    }

    .phone-container {
        display: block;
        margin-block-start: 20px;
    }

    .cart-container {
        position: relative;
        display: flex;
        align-items: center;
    }

    .advantages {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr;
        margin-block-end: 36px;
    }

    .about .content-container:nth-child(2) {
        margin-block-end: 80vh;
    }
    
    .about-mob .production {
        grid-column: 1;
        margin-bottom: 94vh;
    }
    .about-mob .about__decorative-element {
        bottom: -17%;
        background-image: url(/local/templates/nash/images/building_tab.png);
    }

    .arrow-header_last {
        font-size: 36px;
    }

    .last-prg {
        font-size: 36px;
        line-height: 40.6px;
    }

    .contacts-address::after {
        width: 100%;
    }

    .excursion .content-container {
        margin-block-end: 92px !important;
    }

    .solutions-item {
        position: relative;
        display: grid;
        grid-template-columns: 20% 80%;
        grid-template-rows: auto;
        row-gap: 14px;
        column-gap: 16px;
        width: 202px;
        margin-bottom: 0;
    }

    .solutions-item p {
        grid-column: 2;
        grid-row: 2;
    }

    .solutions-item img {
        position: absolute;
        grid-column: 1;
    }

    .solutions-item img,
    .solutions-item h3 {
        margin-bottom: 0;
    }

    .solutions-item h3 {
        grid-column: 2;
        grid-row: 1;
    }

    .solutions-item h3 {
        font-size: 14px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero-media h2 {
        padding-top: 36px;
    }

    .hero-media h2 {
        margin-left: 32px;
        text-align: left;
    }

    .grid-container {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .carousel {
        width: 100%;
        height: 100%;
        border-radius: 0;
    }

    .carousel-buttons {
        margin-block-end: 36px;
    }

    .main-container {
        max-width: 704px;
    }

    .news-list:last-child {
        justify-content: center;
    }

    .distrib-content .contact-form {
        max-width: 343px;
    }

    .suppliers {
        padding-bottom: 0;
    }

    .suppliers-info__advantages {
        margin-bottom: 32px;
    }

    .carousel-item img {
        border-radius: 0;
    }

    .suppliers-info::after {
        top: calc(20% + 8vh);
        left: 5%;
    }

    .suppliers__decorative-element-top {
        top: 2%;
        right: 2%;
        width: 30%;
    }

    .suppliers-info__advantages-text {
        margin-bottom: 167px;
    }

    .main-profits {
        margin-top: 41px;
    }

    .main-profits h2,
    .suppliers h2 {
        font-size: 24px;
        line-height: 28.8px;
    }

    .suppliers h2 {
        margin-bottom: 36px;
    }

    summary {
        font-weight: 700;
        font-size: 14px;
    }

    .block {
        padding-top: 55px;
    }

    .block ul {
        margin-left: -45px;
    }

    .order-items {
        display: none;
    }

    .lineproduct3 {
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: baseline;
    }

    .count {
        margin: 0;
    }

    ol.news-wrap li.excursion-item::before {
        top: 36px;
    }
    .catalog .news-item {
        grid-template-columns: 1fr;
    }
    .news-item img {
        width: 100%;
        height: calc(100% + 1.675vh);
    }
}

@media (width <= 704px) {
    .news-list {
        grid-template-columns: 1fr;
        justify-content: start;
        gap: 64px;
        max-width: fit-content;
    }

    .excursion-item h2 {
        font-weight: 400;
    }

    .excursion-list img {
        min-width: 343px;
        min-height: 301px;
    }

    .excursion-item span {
        width: auto;
        min-width: 343px;
    }

    .button {
        display: block;
    }

    .contacts-address::after {
        top: 32vh;
    }

    .footer .container {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        row-gap: 36px;
        column-gap: 0;
        padding: 16px;
    }

    .footer-menu {
        position: relative;
        display: grid;
        grid-template-columns: 1fr 1fr;
        row-gap: 0;
    }

    .footer-menu_item {
        position: absolute;
        top: 38%;
        grid-column: 2;
    }

    .footer .item-large {
        grid-row: 3;
    }

    .footer-contacts {
        grid-row: 2;
    }
}

@media (width < 450px) {
    .news-list {
        flex-wrap: wrap;
    }

    .suppliers {
        padding: 36px 16px;
    }

    .suppliers h2 {
        margin-bottom: 36px;
    }

    .suppliers-info::after {
        top: 28%;
    }

    .suppliers-info__advantages p:first-child {
        font-size: 14px;
        line-height: 16.8px;
    }

    .suppliers-info__more-advantages {
        width: 100%;
        margin-top: 200px;
    }

    .hero-media h2 {
        margin-left: 24px;
    }

    .main-profits h2,
    .suppliers h2 {
        margin-bottom: 24px;
    }

    .suppliers__decorative-element-top {
        top: 5%;
        width: 55%;
    }

    .suppliers__decorative-element-left {
        top: 0%;
        left: -42%;
    }

    .suppliers__decorative-element-right {
        top: 20%;
        right: -17%;
    }

    .suppliers-info__advantages-text {
        width: 100%;
    }

    .arrow-header_last {
        font-size: 36px;
    }

    .last-prg {
        font-size: 36px;
        line-height: 40.6px;
    }

    .suppliers-info__advantages {
        margin-bottom: 0;
    }

    .hero-content {
        margin-top: 0;
    }

    .carousel-item {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: center;
    }

    .carousel-buttons {
        display: none;
    }

    .carousel-item img {
        width: auto;
        height: 375px;
    }

    .solutions-item {
        column-gap: 0;
        width: 100%;
    }

    .thpage__decorative-element {
        right: -57px;
        bottom: -27%;
        width: 111%;
        height: 58%;
        background-image: url(/images/bubles19.png);
    }

    .about .grid-container {
        column-gap: 0;
    }

    .Checkbox span {
        max-width: 280px;
    }
    .about-mob .about__decorative-element {
        bottom: -10%;
        height: 46%;
        background-image: url(/local/templates/nash/images/building_mob.png);
    }
    .about-mob .production {
        grid-column: 1;
        margin-bottom: 50vh;
    }
    .about .grid-item:nth-child(1)::after {
        left: 45%;
    }
    .excursion, .basket {
        padding: 0 16px;
    }
    .contacts-address::after {
        top: 46vh;
    }
    .main-contacts .contacts-address::after {
        top: 46vh;
    }
    .contact-form {
        min-width: auto;
    }
    .contact-form h2 {
        line-height: 28.8px;
    }
    .basket-item_name {
        width: 340px;
    }
    .basket .contact-form, input, select, label {
        max-width: 323px;
    }
}






.feedback-form {
  font-family: "Museo Sans Cyrl", "Arial", sans-serif;
  max-width: 800px;
  margin: 0 auto;
}

#feedbackForm label {
  margin: 0;
  max-width: none;
}

.form-block {
  margin-bottom: 30px;
}

.form-block:first-of-type .form-group label {
  font-size: 14px;
  font-weight: 500;
}
.two-columns {
  display: flex;
  gap: 20px;
}
.column {
  flex: 1;
}

.two-columns .column {
  width: 100%;
}

.questionnaire__title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 36px !important;
}

.form-section-title {
  font-size: 18px !important;
  font-weight: 900 !important; 
  margin-bottom: 24px !important;
}

.form-group {
  width: 100%;
  margin-bottom: 24px;
}

.form-group textarea {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box;
}

.form-group .date-input {
  position: relative;
  display: flex;
  align-items: center;
}
.date-input input {
  flex: 1;
  padding-right: 46px; 
}

#feedbackForm .form-group textarea {
  width: 100% !important;
  max-width: none !important;
}

#feedbackForm .calendar-icon:hover {
  background-color: transparent !important;
  cursor: default !important;
}
/**/
input, textarea, select {
  display: block;
  box-sizing: border-box;
  width: 100%;
  max-width: 410px;
  height: 35px;
  margin: 10px 0;
  border: 1px solid #9B9B9B;
  border-radius: 8px;
  color: #495057;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 35px;
  background-color: #fff;
}

.Checkbox input[type="checkbox"] {
  margin: 4px 0;
}

.date-input input {
  padding-right: 30px;
}

.rating-radio {
  display: flex;
  gap: 24px;
  align-items: center;
}
.radio-group {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.radio-group span {
  font-size: 14px;
}
.radio-group input[type="radio"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid #555;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
  position: relative;
  margin: 0;
  transition: all 0.2s ease;
}
.radio-group input[type="radio"]:checked::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: #000; 
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
}
.checkbox input {
  width: auto;
}
.checkbox input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 20px;
  height: 21px;
  border: 1px solid #555;
  border-radius: 6px;
  outline: none;
  cursor: pointer;
  position: relative;
  margin: 0;
  flex-shrink: 0;
}
.checkbox input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 2px;
  top: 3px;
  width: 14px;
  height: 14px;
  background-image: url("/upload/main/icons/check.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
textarea {
  width: 100%;
  min-height: 150px;
}

.custom-date-input {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  padding-right: 40px;
}

.custom-date-input::-webkit-calendar-picker-indicator {
  display: none;
}

#calendarTrigger {
  position: absolute;
  right: -132px;
  top: -2%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

#calendarTrigger:hover svg path {
  stroke: #555;
}

@-moz-document url-prefix() {
  .custom-date-input {
    padding-right: 0;
  }
}

.date-input {
  position: relative;
  display: inline-block;
}

#fillingDate {
  width: 150px;
  padding-right: 40px;
  cursor: pointer;
}


.flatpickr-calendar {
  font-family: inherit;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border-radius: 4px;
  border: 1px solid #ddd;
  width: 280px;
}

.flatpickr-month {
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.flatpickr-current-month {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-size: 115%;
  font-weight: 600;
  padding: 0;
  position: absolute;
  left: 0;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: none;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  padding: 0 5px;
  margin: 0 5px;
  cursor: pointer;
}

.flatpickr-current-month input.cur-year {
  background: transparent;
  border: none;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  padding: 0 5px;
  width: 60px;
  margin: 0;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  padding: 5px;
  top: 0;
}

.flatpickr-day.selected, .flatpickr-day.selected:hover {
  background: #63E7FF !important;
  border-color: #63E7FF !important;
  color: white !important;
  z-index: 1;
}

.flatpickr-day.today::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  background-color: #63E7FF;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.flatpickr-day.today {
  border-color: #63E7FF !important;
  position: relative;
}

.flatpickr-day.today:hover {
  background: #e6e6e6;
  border-color: #e6e6e6;
}

.flatpickr-weekday {
  color: #666;
  font-weight: 500;
}

.flatpickr-day {
  border-radius: 0;
  max-width: none;
  height: 32px;
  line-height: 32px;
}

.flatpickr-day:hover {
  background: #e6e6e6;
}

@media (max-width: 768px) {
  .two-columns {
    flex-direction: column;
    gap: 0;
  }
  .column {
    width: 100%;
  }
  .form-group {
    margin-bottom: 15px;
  }
  .rating-radio {
    gap: 5px;
    justify-content: space-between;
  }
  .radio-group {
    flex: 1;
  }
  .calendar-icon {
    right: 10px;
  }
  .flatpickr-calendar {
    width: 100%;
    max-width: 300px;
  }
  .questionnaire__title {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .feedback-form {
    padding: 10px;
  }
  .form-block {
    padding: 15px;
  }
  .radio-group span {
    font-size: 12px;
  }
  .form-section-title {
    font-size: 15px;
  }
  #calendarTrigger {
    right: -120px;
  }
}

.error-message {
  color: #d32f2f;
  font-size: 12px;
  margin-top: 5px;
  display: none;
  font-weight: 400;
}

.error {
  border-color: #d32f2f !important;
}

.valid {
  border-color: #4caf50 !important;
}


.rating-radio.error {
  position: relative;
  padding-bottom: 20px;
}

.rating-radio.error::after {
  content: "Пожалуйста, выберите оценку";
  position: absolute;
  bottom: 0;
  left: 0;
  color: #d32f2f;
  font-size: 12px;
}


#checkbox-error {
  color: #d32f2f;
  font-size: 12px;
  margin-top: 5px;
  display: none;
}


@media (max-width: 768px) {
  .error-message {
    font-size: 11px;
  }
  
  .rating-radio.error::after {
    font-size: 11px;
  }
  
  #checkbox-error {
    font-size: 11px;
  }
}


.date-input.error .calendar-icon svg path {
  stroke: #d32f2f;
}


@media (max-width: 480px) {
  .error-message {
    font-size: 10px;
  }
  
  .rating-radio.error::after {
    font-size: 10px;
  }
  
  #checkbox-error {
    font-size: 10px;
  }
}
/* End */
/* /local/templates/nash/styles.css?175024745561787 */
