* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Ubuntu", sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 1);
    font-weight: 400;
    line-height: 1.2;
}

:root {
  --dark: #050505;
  --bright: #ffb20f;
  --bright-gr: linear-gradient(180deg, #ffb20f 0%, #d78a00 100%);
  --ff-gr: linear-gradient(180deg, #fffdfd 0%, #545454 100%);
  --bg-gr: linear-gradient(180deg, #111 0%, #000 100%);
  --gray: #636363;
  --sh1: 0 2px 8px rgba(0, 0, 0, 0.08);
}

p{ color:#EBEBEB;}

body {
    background-color: rgba(5, 5, 5, 1);
    position: relative;
}

header {
    background: var(--dark);
    position: fixed;
    width: 100%;
    z-index: 100;
}

main {
    padding-top: 120px;
}

.container {
    width: 100%;
    max-width: 1464px;
    margin: 0 auto;
}

.header-container,
.footer-container {
    max-width: 1480px;
}
.header-container {
    padding-bottom: 1px;
}

.header__inner {
    width: 100%;
    display: flex;
    align-items: center;
    padding-top: 16px;
    padding-bottom: 16px;
}

.header__link {
    display: block;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    font-family: "Unbounded";
    text-transform: uppercase;
    color: var(--bright);
    margin-left: 45px;
}

.header i {
    font-size: 20px;
    color: var(--bright);
}

.header__phone, .header__email {
    display: block;
    text-decoration: none;
    font-weight: 400;
    font-size: 18px;
    color: rgba(255, 255, 255, 1);
    margin-left: 20px;
}

.header__time {
    margin-left: 18px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.header__timeTop {
    font-weight: 400;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.header__timeInfo {
    font-weight: 400;
    font-size: 18px;
    color: rgba(255, 255, 255, 1);
    margin-bottom: 12px;
}

.btn1 {
    border: 1px solid var(--bright);
    border-radius: 4px;
    padding: 12px 10px;
    color: #111;
    justify-content: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    background-color: var(--bright);
    text-decoration: none;
    display: flex;
}

.btn2 {
    border: 1px solid var(--bright);
    border-radius: 4px;
    padding: 12px 10px;
    color: rgba(255, 255, 255, 1);
    justify-content: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: flex;
}

.header__btn {
    width: 100%;
    max-width: 196px;
    margin-left: 18px;
}

.btn1 {
    border: 1px solid var(--bright);
    border-radius: 4px;
    padding: 12px 10px;
    color: #111;
    justify-content: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    background-color: var(--bright);
    text-decoration: none;
    display: flex;
}

.btn1:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    width: 0%;
    height: 200%;
    background-color: #111;
    z-index: 0;
    transition: all 0.3s;
}

.btn2:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    width: 0%;
    height: 200%;
    background-color: var(--bright);
    z-index: 0;
    transition: all 0.3s;
}

.btn2 span {
    font-size: 18px;
    font-weight: 500;
    color: rgba(255, 255, 255, 1);
    position: relative;
}

.btn1 span {
    font-size: 16px;
    font-weight: 500;
    color: #111;
    position: relative;
}

.btn2:hover span {
    color: #111;
}

.btn2:hover:before {
    width: 250%;
    height: 250%;
}

.btn1:hover:before {
    width: 250%;
    height: 250%;
}

.btn1:hover span {
    color: rgba(255, 255, 255, 1);
}

.menuButton__outer {
    display: flex;
    margin-left: 25px;
}

.menuButton {
    display: inline-block;
    width: 22px;
    height: 14px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    cursor: pointer;
}

.menuButton span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #ffffff;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}

.menuButton span:nth-child(1) {
    top: 0.5px;
}

.menuButton span:nth-child(2) {
    top: 5.8px;
}

.menuButton span:nth-child(3) {
    top: 12px;
    height: 1.5px;
}

.menuButton.open span:nth-child(1) {
    top: 6px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}

.menuButton.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.menuButton.open span:nth-child(3) {
    top: 6px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.header__search {
    margin-left: auto;
}

.header__searchBtn {
    height: 20px;
}

.header__extLinks {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-left: 18px;
}

.logo1 img {
    display: block;
    width: 100%;
}

a.header__whatsapp,
a.header__tg, 
a.header__phone,
a.header__email {
    height: 20px;
}

.topMenu {
    display: flex;
    justify-content: center;
    gap: 34px;
    padding: 12px 0 24px;
}

.topMenu li {
    list-style: none;
}

.topMenu li a {
    font-family: "Unbounded";
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    color: rgba(255, 255, 255, 1);
    transition: all 0.3s;
    text-decoration: none;
}

.header-container:after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 90%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    left: 50%;
    transform: translateX(-50%);
}

.header__phone:hover, .header__email:hover {
    text-decoration: underline;
}

.topMenu li:hover a {
    color: var(--bright);
}

.header__searchBtn:hover {
    cursor: pointer;
}

.header__searchBtn:hover svg path {
    stroke: white;
    transition: all 0.3s;
}

a.header__whatsapp:hover svg g path,
a.header__tg:hover svg g path {
    fill:white;
    transition: all 0.3s;
}

a.header__link:hover {
    color: white;
    transition: all 0.3s;
}

.topMenu__outer {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.topMenu_mob_link_wrapper,
.header_phone_mob, 
.header_email_mob,
.header_time_mob,
.header_extLinks_mob,
.btn2_mob,
.btn1_mob {
    display: none;
}

.header_extLinks_mob {
    margin-left: 0px;
}

a.logo1:hover svg path {
    fill: var(--bright);
    transition: all 0.3s;
}

footer {
    position: relative;
    margin-bottom: 60px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
}

.btn1_footer {
    width: 100%;
    max-width: 250px;
    margin-left: 0px;
}

.footer_left_block_wrapper {
    width: calc(45% - 30px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer_left_block {
    display: flex;
    justify-content: flex-start;
    gap: 30px;
}

.footer_left_block_logo {
    width: calc(50% - 20px);
}

.title_footer_left_block {
    font-size: 20px;
    line-height: 120%;
    margin-bottom: 26px;
    margin-top: 10px;
}

.footer-container:after {
    content: "";
    position: absolute;
    top: -5%;
    width: 90%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    left: 50%;
    transform: translateX(-50%);
}

.footer-container:before {
    content: "";
    position: absolute;
    bottom: -5%;
    width: 90%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    left: 50%;
    transform: translateX(-50%);
}

.info_contacts_left_block {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 24px;
}


footer a {
    color: #fff;
}

a.footer_phone,
a.footer_email {
    font-size: 18px;
    text-decoration: none;
}

a.footer_phone:hover,
a.footer_email:hover {
    text-decoration: underline;
}

ul.bottomMenu {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

ul.bottomMenu li {
    list-style: none;
}

ul.bottomMenu li a {
    font-family: "Ubuntu";
    font-weight: 700;
    font-style: Bold;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: 0%;
    text-decoration: none;
    transition: all 0.3s;
}

ul.bottomMenu li:hover a {
    color: var(--bright);
}

.politic_info {
    display: flex;
    flex-direction: column;
}

a.politic,
a.personal_data,
a.site_creative {
    font-family: "Ubuntu";
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: 0%;
    transition: all 0.3s;
    text-decoration: none;
}

a.politic:hover,
a.personal_data:hover,
a.site_creative:hover {
   color: var(--bright); 
}

a.politic {
    margin-bottom: 6px;
}

a.personal_data {
    margin-bottom: 12px;
}

a.site_creative {
    color: var(--bright);
}

.footer_right_block {
    width: calc(55% - 30px);
}

.left_menu_right_block, .right_menu_right_block {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
    flex-wrap: wrap;
    max-height: 710px;
}

.block_menu_footer a {
    text-decoration: none;
}

ul.menu_right_block_wrapper li {
    list-style: none;
}

.block_menu_footer a {
    text-decoration: none;
    font-size: 20px;
    margin-bottom: 16px;
    transition: all 0.3s;
    font-weight: 500;
}

ul.menu_right_block_wrapper li a {
    text-decoration: none;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0;
    transition: all 0.3s;
}

ul.menu_right_block_wrapper {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.block_menu_footer a:hover {
    color: var(--bright);
}

ul.menu_right_block_wrapper li:hover a {
    color: var(--bright);
}

.politic_info_mob {
    display: none;
}

.breadcrumbs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    gap: 12px;
    padding-bottom: 10px;
    margin-bottom: 54px;
}
.breadcrumbs::-webkit-scrollbar {
    height: 4px;
}
.breadcrumbs::-webkit-scrollbar-thumb {
    background: rgba(255, 178, 15, 1);
    border-radius: 3px;
}
.breadcrumbs a,
.breadcrumbs span {
    font-family: "Ubuntu";
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    display: flex;
    gap: 12px;
    text-decoration: none;
    color: rgba(169, 169, 169, 1);
    transition: all 0.3s;
}

.breadcrumbs p {
    font-family: "Ubuntu";
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    display: flex;
    gap: 12px;
    text-decoration: none;
    color: var(--bright);
}

.breadcrumbs a:hover {
    color: var(--bright);
}

.block_info_tovar_left {
    width: calc(40% - 20px);
}

.block_info_tovar_right {
    width: calc(60% - 20px);
}


.tovar_page_slider {
  display: flex;
  gap: 16px;
  width: fit-content;
  margin-bottom: 20px;
}

.tovar_page_slider-main {
  width: 234px;
  height: 234px;
  border-radius: 8px;
  border: 1px solid transparent;
  overflow: hidden;

  background:
    /* внутренний фон */
    linear-gradient(180deg, #111111 0%, #000000 100%) padding-box,

    /* градиентная рамка */
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.31) 0%,
      rgba(255, 255, 255, 0.802692) 45.19%,
      rgba(255, 255, 255, 0.36) 100%
    ) border-box;
}

.tovar_page_slider-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tovar_page_slider-thumbs {
    width: 70px;
    height: 234px;
}

.tovar_page_slider-thumbs .swiper-slide {
  height: 71px !important;
  opacity: 0.4;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 6px;
  overflow: hidden;
  background:
    linear-gradient(180deg, #111111 0%, #000000 100%) padding-box,
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.31) 0%,
      rgba(255, 255, 255, 0.802692) 45.19%,
      rgba(255, 255, 255, 0.36) 100%
    ) border-box;
}

.tovar_page_slider-thumbs .swiper-slide-thumb-active {
  opacity: 1;
  border: 1px solid transparent;
   background:
    linear-gradient(180deg, #111111 0%, #000000 100%) padding-box,
    linear-gradient(180deg, #FFB20F 0%, #D78A00 100%) border-box;
}

.tovar_page_slider-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.block_info_tovar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 120px;
}

.fabricator p {
    font-family: "Ubuntu";
    font-size: 20px;
    line-height: 120%;
    letter-spacing: 0;
    color: rgba(235, 235, 235, 1);
}
.fabricator span {
    font-family: "Ubuntu";
    font-size: 20px;
    line-height: 120%;
    letter-spacing: 0;
    background: linear-gradient(180deg, #FFB20F 0%, #D78A00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-left: 5px;
}
.tovar_title {
    font-family: "Unbounded";
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    color: rgba(255, 178, 15, 1);
}
.material {
    font-size: 18px;
    color: #D5D5D5;
    margin-bottom: 16px;
}
.fabricator {
    margin-bottom: 10px;
}
.block_info_tovar_right_title {
    font-family: "Unbounded";
    font-size: 20px;
    margin-bottom: 8px;
    color: rgba(235, 235, 235, 1);
}

.characteristic {
    margin-bottom: 36px;
}

.characteristic_item {
    display: flex;
    justify-content: space-between;
    padding-top: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.46);
}
.type_processing,
.material_type {
    font-size: 20px;
    color: rgba(235, 235, 235, 1);
}

.title_description_tovar_page {
    font-family: "Ubuntu";
    font-size: 20px;
    line-height: 120%;
    letter-spacing: 0;
    background: linear-gradient(180deg, #FFB20F 0%, #D78A00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.description_tovar_page {
    font-size: 16px;
    font-weight: 300;
    max-width: 456px;
    color: rgba(235, 235, 235, 1);
}
.tovar_price p {
    font-family: "Unbounded";
    font-weight: 700;
    font-size: 28px;
    color: rgba(255, 255, 255, 1);
}
.tovar_price span {
    font-family: "Unbounded";
    font-weight: 400;
    font-size: 20px;
    color: rgba(255, 178, 15, 1);
    padding-bottom: 2px;
}
.block_info_tovar .tovar_price {
    display: flex;
    align-items: center;
}
.tovar_price {
    display: flex;
    align-items: center;
}

.in_basket_btn {
    width: 300px;
}

.tovar_price {
    margin-bottom: 12px;
}

/* .block_more_products {
    margin-bottom: 120px;
} */

.more_products_slider_wrapper {
    position: relative;
}

.tovar_item_card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.46);
    padding: 24px;
    border-radius: 8px;
    height: 268px;
}

.title_tovar_card {
    font-size: 22px;
    text-decoration: none;
    color: rgba(255, 255, 255, 1);
    cursor: pointer;
    transition: all 0.3s;
}

.title_tovar_card:hover {
    color: var(--bright);
}

.more_products_slider_wrapper .swiper-button-prev,
.more_products_slider_wrapper .swiper-button-next {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 3px solid transparent;
  background: transparent;
  background:
    #0b0b0b padding-box,
    linear-gradient(270deg, #FFB20F 0%, #B96C00 100%) border-box;

  display: flex;
  align-items: center;
  justify-content: center;
  
}

.more_products_slider_wrapper .swiper-button-prev {
    padding: 8px 12px 8px 8px;
}

.more_products_slider_wrapper .swiper-button-next {
    padding: 8px 8px 8px 8px;
}

.more_products_slider_wrapper .swiper-button-prev::after,
.more_products_slider_wrapper .swiper-button-next::after {
  font-size: 16px;
  color: #FFB20F;
}

.more_products_slider_wrapper .swiper-button-prev:hover,
.more_products_slider_wrapper .swiper-button-next:hover {
  box-shadow: 0 0 8px rgba(255, 178, 15, 0.4);
}

.more_products_slider_wrapper .swiper-button-prev {
  left: -60px;
}

.more_products_slider_wrapper .swiper-button-next {
  right: -60px;
}

.title_block_more_products {
    font-family: "Unbounded";
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 36px;
}

.title_block_more_products_mob {
    display: none;
    font-family: "Unbounded";
    font-size: 18px;
    font-weight: 700;
    line-height: 120%;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.fabricator_card span {
    font-family: "Ubuntu";
    font-size: 20px;
    line-height: 120%;
    letter-spacing: 0;
    background: linear-gradient(180deg, #FFB20F 0%, #D78A00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about_block_top {
    display: flex;
    justify-content: space-between;
    gap: 55px;
    margin-bottom: 140px;
}

.page_title,
.certificates_title,
.title_form {
    font-family: "Unbounded";
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 1);
    padding-bottom: 20px;
}

.description_about_company p {
    padding-bottom: 14px;
    font-size: 18px;
    line-height: 120%;
}

.block_top_item {
    width: calc(50% - 20px);
}

.block_top_item img {
    width: 100%;
}

.certificate_card {
    scale: 0.8;
    z-index: 1;
}
.certificate_card img {
    width: 100%;
    height: auto;
}

.certificate_card.swiper-slide-next {
    scale: 1;
    z-index: 2;
}

.certificates_wrapper {
    position: relative;
    margin-bottom: 120px;
}

.certificates_wrapper::after {
    content: '';
    position: absolute;
    top: 7%;
    left: 49%;
    transform: translateX(-50%);
    width: 298px;
    height: 578px;
    border-radius: 15px;
    padding: 3px; /* толщина рамки */
    background: linear-gradient(180deg, #FFB20F 0%, #AF6200 100%);
    -webkit-mask: 
      linear-gradient(#fff 0 0) content-box, 
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    pointer-events: none;
    box-sizing: border-box;

}

.certificates_slider {
    max-width: 1266px;
    overflow: hidden;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
    content: '';
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
    content: '';
}

.cert-products-next {
    right: 18px;
    height: 27px;
}

.cert-products-prev {
    left: -8px;
    height: 27px;
}

.certificates_title {
    padding-bottom: 44px;
}

.title_form {
    color: #FFB20F;
}

.sub_title_form {
    font-size: 18px;
    color: #EBEBEB;
}

.feedback_form {
    max-width: 1088px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.46);
    padding: 44px 60px;
    margin: 0 auto;
    position: relative;
    margin-bottom: 120px;
}

.image_logo_form {
    position: absolute;
    top: 8%;
    right: 3%;
    transform: rotate(0deg);
}

.input_form_wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    padding-top: 42px;
    position: relative;
}

.input_intro_block_left {
    display: flex;
    flex-direction: column;
    width: calc(34% - 30px);
    justify-content: space-between;
    max-height: 236px;
}

.input_intro_block_left_bottom {
    width: calc(34% - 30px);
}

.input_intro_block_right {
    display: flex;
    flex-direction: column;
    width: calc(66% - 30px);
    min-height: 238px;
    position: relative;
}

.input_intro_block_right_bottom {
    width: calc(66% - 30px);
}

.form_right_textarea {
    min-height: 236px;
    width: 100%;
}

.input_intro_block_left label input {
    width: 100%;
    min-height: 44px;
    padding: 11px 20px;
    border-radius: 4px;
    background: rgba(5, 5, 5, 1);
    border: 1px solid rgba(255, 255, 255, 0.46);
    color: rgba(235, 235, 235, 0.69);
    font-family: "Ubuntu", sans-serif;
    font-weight: 300;
    font-size: 18px;
}

.input_intro_block_right textarea {
    padding: 11px 20px;
    border-radius: 4px;
    background-color: rgba(5, 5, 5, 1);
    border: 1px solid rgba(255, 255, 255, 0.46);
    color: #EBEBEB;
    font-family: "Ubuntu", sans-serif;
    font-weight: 300;
    font-size: 18px;
}

input:focus-visible,
textarea:focus-visible {
    outline: 1px solid rgba(255,255,255,0.46);
}


input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus {
    -webkit-text-fill-color: #EBEBEB; /* цвет текста */
    -webkit-box-shadow: 0 0 0px 1000px rgba(5, 5, 5, 1) inset; /* фон как у тебя */
    box-shadow: 0 0 0px 1000px rgba(5, 5, 5, 1) inset;
    border: 1px solid rgba(255, 255, 255, 0.46);
    transition: background-color 9999s ease-in-out 0s; /* убирает вспышку желтого */
}

.input_intro_block_left label input:-webkit-autofill,
.input_intro_block_right textarea:-webkit-autofill {
    -webkit-text-fill-color: #EBEBEB;
    -webkit-box-shadow: 0 0 0px 1000px rgba(5, 5, 5, 1) inset;
}

button.form__submit {
    width: 100%;
    border: 1px solid var(--bright);
    border-radius: 4px;
    padding: 12px 10px;
    justify-content: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    background-color: var(--bright);
    text-decoration: none;
    display: flex;
}

button.form__submit:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    width: 0%;
    height: 200%;
    background-color: #111;
    z-index: 0;
    transition: all 0.3s;
}

button.form__submit span {
    color: #111;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s;
}

button.form__submit:hover:before {
    width: 250%;
    height: 250%;
}

button.form__submit:hover span {
    color: rgba(255, 255, 255, 1);
    position: relative;
}

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

.input_intro_block_right_bottom label {
    color: #EBEBEB;
    font-size: 16px;
    font-family: 'Ubuntu';
    font-weight: 300;
    position: relative;
    display: flex;
    gap: 7px;
}

.checkbox_form {
    margin-right: 7px;
}

.input_intro_block_right_bottom label a {
    color: #FFB20F;
    font-size: 16px;
    font-family: 'Ubuntu';
    font-weight: 300;
}

/* Прячем нативный checkbox */
.checkbox_form {
    position: absolute;
    opacity: 0;
}

/* Обертка */
.checkbox_wrapper {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
    position: relative;
}

/* Кастомный квадрат */
.checkbox_custom {
    width: 18px;
    height: 18px;
    border: 1px solid rgba(255, 255, 255, 0.46);
    border-radius: 3px;
    background: rgba(5,5,5,1);
    display: inline-block;
    position: relative;
    transition: all 0.18s ease;
}

/* Галочка */
.checkbox_custom::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 1px;
    width: 6px;
    height: 10px;
    border: solid rgba(235, 235, 235, 0.9);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) scale(0);
    transition: transform 0.15s ease;
}

/* Checked */
.checkbox_form:checked + .checkbox_custom::after {
    transform: rotate(45deg) scale(1);
    border-color: #050505;
}

/* ---------- АНИМАЦИЯ НАЖАТИЯ ---------- */
.checkbox_wrapper:active .checkbox_custom {
    transform: scale(0.92);
}

/* Мягкий pop при включении */
.checkbox_form:checked + .checkbox_custom {
    animation: checkboxPop 0.18s ease;
    background: #FFB20F;
    border-color: #FFB20F;
}

@keyframes checkboxPop {
    0%   { transform: scale(0.85); }
    60%  { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.checkbox_form {
    width: 0 !important;
    height: 0 !important;
    padding: 0;
    margin: 0;
    display: none;
}

/* ---------- ОШИБКА REQUIRED ---------- */
/* Когда форма отправлена и чекбокс не отмечен */
.checkbox_form:invalid + .checkbox_custom {
    border-color: #ff4d4f;
}

/* Красная галочка при ошибке (если вдруг checked + invalid) */
.checkbox_form:invalid:checked + .checkbox_custom::after {
    border-color: #ff4d4f;
}

/* Текст ошибки (если нужно) */
.checkbox_form:invalid ~ span.error_text {
    display: block;
    position: absolute;
    left: 10px;
    top: 17px;
}

.error_text {
    display: none;
    color: #ff4d4f;
    font-size: 12px;
    margin-left: 28px;
}

/* Hover */
.checkbox_wrapper:hover .checkbox_custom {
    box-shadow: 0 0 0 2px rgba(255,255,255,0.06);
}

.wrapper_block_submit {
    display: flex;
    width: 100%;
    gap: 32px;
}

.news .title_block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 36px;
}

.news .title_block h2 {
  margin-bottom: 0;
}

.news .title_block .btn2 {
  padding: 12px 72px;
}

.news .news_wrapper-products {
  display: flex;
}

.news .news_item_page {
  width: calc(50% - 24px);
  height: fit-content;
  padding: 1px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.31) 0%, rgba(255, 255, 255, 0.802692) 45.19%, rgba(255, 255, 255, 0.36) 100%);
  border-radius: 4px;
}

.news .news_item_page .wrapper {
  background: linear-gradient(180deg, #111 0%, #000 100%);
  border-radius: 4px;
  display: flex;
  align-items: stretch;
  gap: 30px;
  padding: 24px;
}

.news .news_item_page img {
    height: 100%;
    border-radius: 4px;
    object-fit: cover;
}

.news .news_item_page .info {
  display: flex;
  gap: 12px;
  flex-direction: column;
}

.news .news_item_page .info .date {
  font-family: 'Ubuntu';
  font-weight: 400;
  font-size: 18px;
  color: #FFB20F;
}

.news .news_item_page .info .title {
  font-family: 'Ubuntu';
  font-weight: 700;
  font-size: 18px;
}

.news .news_item_page .info .text {
  font-family: 'Ubuntu';
  font-weight: 300;
  font-size: 18px;
  color: #D5D5D5;
}

.swiper.news_slider {
    padding-bottom: 40px;
}

.news_wrapper_page {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.news_promo_block {
    margin-bottom: 120px;
}

a.news_btn.btn1 {
    max-height: 45px;
}

/* Карточка */
.news_item_page {
    position: relative;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Плавное увеличение */
.news_item_page:hover {
    transform: scale(1.04);
}

/* Кнопка — изначально скрыта */
/* .news_btn {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.28s ease, transform 0.28s ease;
    pointer-events: none; чтобы не ловила hover когда скрыта
} */

/* Показываем кнопку при наведении на карточку */
/* .news_item_page:hover .news_btn {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
} */

.news_item_page:hover {
    transform: scale(1.04);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
    padding: 1.5px;
}

.data_news {
    font-size: 20px;
    color: #FFB20F;
    padding-bottom: 24px;
}

.description_news_promo_block_item {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 611px;
}

.news_headline_promo_block {
    margin-bottom: 120px;
    display: flex;
    justify-content: space-between;
}

.news_headline_promo_block.right {
    flex-direction: row-reverse;
}

.news_promo_block_item_wrapper {
    width: 660px;
    height: 452px;
}

.news_promo_block_item_wrapper img {
    width: 90%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
    left: -4%;
}

.block_absolute_after,
.block_absolute_after_two {
    position: relative;
}

.block_absolute_after::after {
    width: 483px;
    height: 424px;
    content: '';
    position: absolute;
    top: -11%;
    left: 26%;
    border-radius: 3px;
    padding: 3px;
    background: linear-gradient(180deg, #FFB20F 0%, #AF6200 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    pointer-events: none;
    box-sizing: border-box;
}

.block_absolute_after_two::after {
    width: 483px;
    height: 424px;
    content: '';
    position: absolute;
    bottom: -11%;
    left: -13%;
    border-radius: 3px;
    padding: 3px;
    background: linear-gradient(180deg, #FFB20F 0%, #AF6200 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    pointer-events: none;
    box-sizing: border-box;
}

.description_news_promo_block_item ul li {
    color: #FFB20F;
    margin-left: 20px;
}

.wrapper_map_contacts {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    margin-bottom: 120px;
}

.block_contacts {
    position: absolute;
    width: 620px;
    left: 0;
    z-index: 1;
    border-radius: 8px;
    background: linear-gradient(180deg, #111111 0%, #000000 100%);
    padding: 32px 34px;
}

.block_contacts::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px; /* толщина рамки */
    border-radius: 8px;

    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.31) 0%,
        rgba(255, 255, 255, 0.802692) 45.19%,
        rgba(255, 255, 255, 0.36) 100%
    );

    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.wrapper_contacts_tel_email {
    max-width: 464px;
}

.block_address {
    max-width: 464px;
}

.block_map div iframe {
    width: 904px;
    border-radius: 8px;
    border: 0;
}

.map-widget-layout-view__maps-links {
    display: none !important;
}

.wrapper_contacts_tel_email {
    display: flex;
    justify-content: space-between;
    padding-right: 40px;
    margin-bottom: 33px;
}

.block_contacts_tel p,
.block_contacts_email p,
.block_address p {
    padding-bottom: 6px;
    color: #FFB20F;
}

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

.block_contacts_tel a, .block_contacts_email a, .block_address a {
    font-family: 'Unbounded';
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 0;
    color: #FFFFFF;
    padding-bottom: 8px;
    border-bottom: 1px solid #FFFFFF4A;
}

.block_coordinates a:last-child {
    border-bottom: none;
}

.block_contacts_tel a,
.block_contacts_email a {
    border-bottom: none;
}

.wrapper_politic {
    margin-bottom: 120px;
}

.politic_top_description {
    max-width: 906px;
    display: flex;
    gap: 14px;
    flex-direction: column;
    font-size: 18px;
    margin-bottom: 57px;
}

.policy {
  max-width: 900px;
  margin: 60px auto;
  padding: 20px;
}

.content {
    padding-top: 5px;
    width: 906px;
}

.policy-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
}

.policy_block {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  position: relative;
}

.policy_block::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 40px;
  width: 0;
  height: 0;
  border-left: 1px solid transparent;
  border-image-slice: 1;
  border-image-source: linear-gradient(180deg, #FFB20F 0%, #D78A00 100%);
  animation: lineGrowBorder 1.8s ease forwards;
}

@keyframes lineGrowBorder {
  from {
    height: 0;
  }
  to {
    height: calc(100% + 20px);
  }
}

.policy_block:last-child::before {
  display: none;
}

/* .num {
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border-radius: 8px;
    color: #FFFFFF;
    border: 1px solid transparent;
    background: linear-gradient(#0b0b0b, #0b0b0b) padding-box, linear-gradient(180deg, #FFB20F 0%, #D78A00 100%) border-box;
    font-family: 'Unbounded';
    font-size: 24px;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: 0;
} */

.content h2 {
  margin: 0 0 24px;
  font-family: 'Unbounded';
  font-size: 24px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 0;
  text-transform: uppercase;
}

.content p {
    margin: 6px 0;
    line-height: 1.5;
    color: #EBEBEB;
    font-size: 18px;
}

.content ul {
  margin: 10px 0 0;
  padding-left: 18px;
}

.content span {
    font-size: 18px;
    color: #FFB20F;
}

.policy_block .content h2 {
    font-size: 18px;
}

.content li {
    margin-bottom: 6px;
    color: #EBEBEB;
    font-size: 16px;
}

.wrapper_not_found {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 120px;
}

.wrapper_not_found img {
    width: 820px;
    margin-bottom: 26px;
}

.page_title_not_found {
    text-align: center;
}

.search {
    width: 524px;
    display: flex;
    align-items: center;
    border-radius: 10px;
    padding: 1px;
    border: 1px solid transparent;
    background: linear-gradient(#0b0b0b, #0b0b0b) padding-box, linear-gradient(180deg, #FFB20F 0%, #D78A00 100%) border-box;
    height: 48px;
    position: relative;
}

.search input {
    background: transparent;
    border: none;
    outline: none;
    color: #EBEBEB;
    font-size: 18px;
    padding: 13px 13px 13px 22px;
    position: relative;
    width: 89%;
}

.search input::placeholder {
  color: #EBEBEB;
}

.search_title {
    font-size: 18px;
    padding-bottom: 16px;
}

.search-btn {
    width: 48px;
    height: 48px;
    border: none;
    cursor: pointer;
    border-radius: 10px;
    font-size: 18px;
    background: linear-gradient(180deg, #FFB20F 0%, #D78A00 100%);
    color: #000;
    position: absolute;
    right: 0;
    padding-top: 2px;
}

.search-btn:hover {
  filter: brightness(1.1);
}

.wrapper_basket {
    margin-bottom: 120px;
}

button.clear_busket {
    background-color: transparent;
    border: 0;
    cursor: pointer;
    color: #EBEBEB;
    font-size: 18px;
    margin-bottom: 16px;
}

.counter_basket button {
    width: 35px;
    height: 35px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #FFB20F 0%, #D78A00 100%);
    font-size: 22px;
    font-weight: 500;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.counter_basket {
    width: 130px;
    height: 44px;
    display: flex;
    align-items: center;
    padding: 5px 5px 5px 5px;
    justify-content: space-between;
    border: 1px solid #FFB20F;
    border-radius: 4px;
    margin-bottom: 10px;
}

.counter_basket input {
    width: 29%;
    background: transparent;
    border: unset;
    text-align: center;
}

.counter_basket .minus_busket_item:hover,
.counter_basket .plus_busket_item:hover {
    color: #050505;
}

.tovar_price_busket {
    display: flex;
    gap: 4px;
    align-items: flex-start;
}

.tovar_price_busket p {
    font-family: "Unbounded";
    font-weight: 700;
    font-size: 20px;
    color: rgba(255, 255, 255, 1);
}

.tovar_price_busket .unit {
    font-size: 18px;
    font-weight: 300;
    color: #D5D5D5;
    padding-bottom: 2px;
}

.busket_wrapper {
    display: flex;
    gap: 24px;
}

.busket {
    width: calc(65% - 24px);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.busket_item {
    padding: 30px 24px;
    border: 1px solid #FFFFFF75;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
}

.tovar_price_busket p {
    padding-bottom: 1px;
}
.tovar_price_busket span {
    padding-bottom: 2px;
    color: #FFB20F;
}

.counter_basket span {
    font-size: 22px;
    color: #FFB20F;
    font-weight: 500;
}

.busket_block {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}

.tovar_all_price_busket {
    margin-bottom: 0;
}

.wrapper_button_block {
    display: flex;
    gap: 9px;
}

.select_busket_item,
.delete_busket_item {
    background-color: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.select_busket_item:hover svg path {
    fill: #FFB20F;
}

.delete_busket_item:hover svg path {
    stroke: #FFB20F;
}

.proceed_checkout {
    width: calc(35% - 24px);
}

.proceed_checkout_item {
    padding: 26px 30px;
    display: flex;
    justify-content: space-between;
    border: 1px solid #FFB20F;
    border-radius: 8px;
    flex-direction: column;
    height: 248px;
}

.basket_btn_card_price {
    width: 244px;
    height: 45px;
}

.total_prise .total {
    font-size: 20px;
    font-weight: 700;
    font-family: 'Unbounded';
}

.total_prise {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.quantity_goods {
    color: #D5D5D5;
    font-weight: 300;
    font-size: 18px;
}

.busket_block_info p {
    font-size: 16px;
    font-weight: 300;
}

.busket_block_info span {
    color: #FFB20F;
    font-size: 16px;
    font-weight: 500;
}

.image {
    width: 200px;
    height: 200px;
}

.block_map_mob {
    display: none;
}

@media (max-width: 1650px) {
    .header-container:after,
    .footer-container:after,
    .footer-container:before {
        width: 98%;
    }
    .more_products_slider_wrapper {
        padding: 0 60px;
    }
    .title_block_more_products {
        padding-left: 60px;
    }
    .more_products_slider_wrapper .swiper-button-next {
        right: 5px;
    }

    .more_products_slider_wrapper .swiper-button-prev {
    left: 5px;
    }
    .news_promo_block_item_wrapper {
        width: 40vw;
        height: 26vw;
    }
    .block_absolute_after::after {
        width: 29vw;
        height: 23.3vw;
        top: -40px;
        left: 140px;
    }
    .block_absolute_after_two::after {
        width: 29vw;
        height: 23.3vw;
        bottom: -45px;
        left: 2%;
    }
    .description_news_promo_block_item {
        width: 36vw;
    }
    .news_headline_promo_block.right .news_promo_block_item .block_absolute_after_two {
        display: flex;
        justify-content: flex-end;
    }
}
@media (max-width: 1520px) {
    .header-container,
    .footer-container {
        padding: 0 20px;
    }
    .header__link {
        margin-left: 28px;
    }
    .description_news_promo_block_item {
        width: 41vw;
    }
    .news_promo_block_item_wrapper img {
        left: 0%;
    }
}

@media (max-width: 1464px) {
    .container {
        padding: 0 20px;
    }
    .header__phone,
    .header__email {
        display: none;
    }
    .topMenu_mob_link_wrapper {
        display: flex;
        gap: 34px;
        padding-bottom: 24px;
    }
    .header_phone_mob, 
    .header_email_mob {
        display: block;
        margin-left: 0px;
    }
    .header_time_mob .header__timeInfo {
        margin-bottom: 0px;
    }
    ul.bottomMenu li a {
        font-size: 1.65vw;
    }
    a.politic,
    a.personal_data,
    a.site_creative,
    .title_footer_left_block,
    .block_menu_footer a {
        font-size: 1.36vw;
    }
    .btn1_footer span,
    a.footer_phone, 
    a.footer_email {
        font-size: 1.2vw;
    }
    ul.menu_right_block_wrapper li a {
        font-size: 1.1vw;
    }
    .left_menu_right_block, .right_menu_right_block {
        gap: 2vw;
    }
    ul.bottomMenu {
        gap: 1.36vw;
    }
    .about_block_top {
        gap: 0px;
    }
    .news .news_item_page .info .date,
    .news .news_item_page .info .text {
        font-size: 16px;
    }
    .news .news_item_page .info .title {
        font-size: 18px;
    }
}
@media (max-width: 1350px) {
    .block_map div iframe {
        width: 67vw;
    }
    .block_contacts {
        width: 46vw;
    }
    
    .policy_block {
        align-items: baseline;
    }
    
    .policy_block .content {
        padding: 0px !important;
    }
}
@media (max-width: 1300px) {
    .news .news_item_page .info .date,
    .news .news_item_page .info .text {
        font-size: 1.2vw;
    }
    .news .news_item_page .info .title {
        font-size: 16px;
    }
    
}
@media (max-width: 1240px) {
    .footer_left_block {
        justify-content: space-between;
    }
    
}
@media (max-width: 1192px) {
    .certificates_slider {
        width: 95vw;
    }
    /* .certificate_card {
        width: 31.5vw !important;
    } */
}
@media (max-width: 1150px) {
    .certificates_wrapper::after {
        top:5%;
        height: 520px;
    }
    .left_menu_right_block, .right_menu_right_block {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 40px;
        flex-wrap: wrap;
        max-height: 100%;
    }
    .topMenu {
        flex-direction: column;
        align-items: center;
    }
    .header__time {
        display: none;
    }
    .header_time_mob {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-left: 0px;
    }
    .topMenu {
        gap: 20px;
    }
    .topMenu_mob_link_wrapper {
        gap: 20px;
        flex-direction: column;
        align-items: center;
        padding-bottom: 28px;
    }
    .footer_left_block {
        gap: 2.5vh;
        flex-direction: column;
    }
    .footer_left_block_menu {
        margin-bottom: 48px;
    }
    .footer_left_block_logo {
        width: 100%;
    }
    .footer_left_block_wrapper {
        width: calc(34% - 30px);
    }
    .footer_right_block {
        width: calc(66% - 30px);
    }
    ul.bottomMenu li a {
        font-size: 2vw;
    }
    a.politic,
    a.personal_data,
    a.site_creative,
    .title_footer_left_block,
    .block_menu_footer a {
        font-size: 1.8vw;
    }
    a.politic,
    a.personal_data {
        font-size: 15px;
    }
    .btn1_footer span,
    a.footer_phone, 
    a.footer_email {
        font-size: 1.6vw;
    }
    ul.menu_right_block_wrapper li a {
        font-size: 1.4vw;
    }
    .left_menu_right_block, .right_menu_right_block {
        gap: 2vw;
    }
    .left_menu_right_block {
        gap: 0px;
    }
    ul.bottomMenu {
        gap: 1.36vw;
    }
    .block_info_tovar {
        flex-direction: column;
        gap: 42px;
    }
    .block_info_tovar_left {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .block_info_tovar_right {
        width: 100%;
    }
    .news .news_item_page {
        width: 100%
    }
    .news .news_item_page .info .date,
    .news .news_item_page .info .text {
        font-size: 16px;
    }
    .news .news_item_page .info .title {
        font-size: 20px;
    }
    a.news_btn.btn1 {
        max-width: 250px;
        font-size: 16px;
        padding: 10px 10px;
    }
    a.news_btn.btn1 span {
        font-size: 16px;
    }
    .news_headline_promo_block {
        justify-content: flex-start;
        gap: 50px;
    }
    .news_headline_promo_block {
        margin-bottom: 70px;
    }
    .block_contacts {
        padding: 24px;
    }
    .wrapper_contacts_tel_email {
        padding-right: 0;
        margin-bottom: 16px;
        flex-direction: column;
        gap: 16px;
    }
    .block_contacts_tel a, .block_contacts_email a, .block_address a {
        font-size: 14px;
    }
}

@media (max-width: 1024px) {
    .header__extLinks {
        display: none;
    }
    .header_extLinks_mob {
        display: flex;
        margin-left: 0px;
        margin-bottom: 28px;
    }
    .topMenu_mob_link_wrapper {
        padding-bottom: 20px;
    }
    .breadcrumbs {
        margin-bottom: 30px;
    }
    .politic_top_description,
    .content {
        max-width: 100%;
        width: 100%;
    }
    .certificate_card.swiper-slide-next {
        scale: 0.8;
        z-index: 1;
    }
    .certificate_card.swiper-slide-active {
        scale: 1;
        z-index: 2;
    }
    .certificates_wrapper::after {
        content: unset;
    }
    .cert-products-next {
        right: 0px;
        height: 27px;
    }
}

@media (max-width: 950px) {
    ul.bottomMenu li a {
        font-size:  20px
    }
    a.politic,
    a.personal_data,
    a.site_creative,
    .title_footer_left_block,
    .block_menu_footer a {
        font-size: 18px;
    }
    .btn1_footer span,
    a.footer_phone, 
    a.footer_email {
        font-size: 18px;
    }
    ul.menu_right_block_wrapper li a {
        font-size: 16px;
    }
    .left_menu_right_block, .right_menu_right_block {
        gap: 30px;
    }
    ul.bottomMenu {
        gap: 1.36vw;
    }
    .footer_right_block {
        width: calc(50% - 20px);
        flex-direction: column;
        gap: 30px;
    }
    .footer_left_block_wrapper {
        width: calc(50% - 20px);
    }
    .left_menu_right_block, .right_menu_right_block {
        width: 100%;
    }
    .footer-container {
        justify-content: center;
        gap: 20px;
    }
    ul.menu_right_block_wrapper {
        gap: 10px;
    }
    .footer-container:after {
        top: -3.5%;
    }
    .footer-container:before {
        bottom: -3.5%;
    }
}
@media (max-width: 920px) {
    .header_desk_btn,
    .header_desk_btn {
        display: none;
    }
    .btn2_mob,
    .btn1_mob {
        display: flex;
        margin-left: 0;
    }
    .btn2_mob {
        margin-bottom: 12px;
    }

    .btn1_mob {
        margin-bottom: 48px;
    }
    .btn1_footer {
        display: flex;
        margin-left: 0;
    }
    .block_info_tovar_left {
        align-items: flex-start;
        flex-direction: column;
    }
    .in_basket_btn,
    .basket_btn_card {
        display: flex;
    }
    .input_form_wrapper {
        flex-direction: column;
    }
    .wrapper_block_submit {
        flex-direction: column-reverse;
    }
    .input_intro_block_left, 
    .input_intro_block_right,
    .input_intro_block_right_bottom,
    .input_intro_block_left_bottom {
        width: 100%;
        gap: 8px;
    }
    .news_headline_promo_block {
        flex-direction: column;
    }
    .description_news_promo_block_item {
        width: 100%;
    }
    .news_promo_block_item_wrapper {
        width: 90%;
        height: 100%;
    }
    .block_absolute_after::after {
        width: 70%;
        height: 90%;
        top: -30px;
        left: 42%;
    }
    .block_absolute_after_two::after {
        width: 70%;
        height: 80%;
        left: -8%;
        bottom: -4%;
    }
    .news_promo_block_item_wrapper img {
        width: 100%;
    }
    .news_headline_promo_block.right .news_promo_block_item {
        display: flex;
        justify-content: flex-end;
    }
    .news_headline_promo_block.right {
        flex-direction: column;
    }
    .busket_wrapper {
        gap: 12px;
        flex-direction: column;
    }
    .proceed_checkout,
    .busket {
        width: 100%;
    }
}
@media (max-width: 900px) {
    .wrapper_map_contacts {
        flex-direction: column;
        gap: 28px;
        margin-bottom: 70px;
    }
    .block_contacts {
        position: relative;
        width: 100%;
    }
    .block_map,
    .block_map div iframe {
        width: 100%;
    }
    .wrapper_not_found img {
        width: 100%;
    }
}
@media (max-width: 840px) {
    .feedback_form {
        padding: 24px;
    }
    .news .news_item_page .info .date,
    .news .news_item_page .info .text {
        font-size: 2vw;
    }
    .news .news_item_page .info .title {
        font-size: 2.4vw;
    }
    .news .news_item_page .wrapper {
        gap: 18px;
        padding: 20px;
    }
    .news .news_item_page .info {
        gap: 8px;
    }
}

@media (max-width: 767px) {
    .more_products_slider {
        height: 552px;
        overflow: hidden;
    }
    .tovar_item_card {
        height: 268px !important;
    }
    .more_products_slider_wrapper .swiper-button-prev {
        top: -5%;
        left: 50%;
        transform: translateX(-50%);
    }
    .more_products_slider_wrapper .swiper-button-next {
        top: 105%;
        left: 50%;
        transform: translateX(-50%);
    }
    .more_products_slider_wrapper .swiper-button-prev::after {
        transform: rotate(90deg);
    }

    .more_products_slider_wrapper .swiper-button-next::after {
        transform: rotate(90deg);
    }
    .title_block_more_products_mob {
        display: block;
        font-size: 18px;
        padding-left: 60px;
    }
    .title_block_more_products {
        display: none;
    }
    .image_logo_form {
        display: none;
    }
}
@media (max-width: 700px) {
    .footer-container {
        flex-direction: column;
    }
    .footer_right_block {
        width: 100%;
    }
    .footer_left_block_wrapper {
        width: 100%;
    }
    .politic_info {
        display: none;
    }
    .politic_info_mob {
        display: flex;
    }
    .footer-container:after {
        top: -2.5%;
    }
    .footer-container:before {
        bottom: -2.5%;
    }
    a.politic, a.personal_data,
    a.site_creative {
        font-size: 16px;
    }
}

@media (max-width: 600px) {
    .header__link,
    .topMenu li a,
    .header__timeInfo,
    .header__phone, 
    .header__email {
        font-size: 16px;
    }
    .logo1 img {
        width: 80%;
    }
    .header__btn {
        max-width: 282px;
    }
    .menuButton span:nth-child(2) {
        top: 7px;
    }
    .menuButton span:nth-child(3) {
        top: 12px;
        height: 2px;
    }
    a.logo1 svg {
        width: 100%;
    }
    a.logo1 {
        width: 35%;
    }
    .more_products_slider_wrapper {
        padding: 0;
    }
    .title_block_more_products_mob {
        padding-left: 0px;
    }
    .description_about_company p {
        padding-bottom: 8px;
        font-size: 16px;
        line-height: 120%;
    }
    .page_title, .certificates_title {
        font-size: 20px;
    }
    .block_top_item img {
        width: 100%;
        height: 290px;
        object-fit: cover;
    }
    .content h2,
    .num {
        margin: 0 0 16px;
        font-size: 18px;
    }
    .politic_top_description p,
    .content p,
    .content span,
    .content li {
        font-size: 16px;
    }
    .search {
        width: 100%;
    }
    .search_title,
    .search input,
    .search-btn {
        font-size: 16px;
        text-align: center;
    }
    .about_block_top {
        flex-direction: column;
        gap: 30px;
    }
    .block_top_item {
        width: 100%;
    }
    h2.title {
        font-size: 16px !important;
    }

}
@media (max-width: 500px) {
    .input_intro_block_right_bottom label a {
        display: block;
    }
    .news .news_item_page .wrapper {
        flex-direction: column;
    }
    .news .news_item_page img {
        width: 100%;
        height: 185px;
    }
    .news .news_item_page .info .date,
    .news .news_item_page .info .text {
        font-size: 14px;
    }
    .news .news_item_page .info .title {
        font-size: 18px;
    }
    a.news_btn.btn1 {
        max-width: 100%;
    }
    .policy_block .content h2 {
        margin: 0 0 16px;
        font-size: 16px;
    }
    .politic_top_description p,
    .content p,
    .content span,
    .content li {
        font-size: 14px;
    }
    .basket_btn_card_price {
        width: 100%;
        height: 40px;
    }
    .basket_btn_card_price {
        font-size: 14px;
        padding: 10px;
    }
    .basket_btn_card_price span {
        font-size: 14px;
    }
    .quantity_goods {
        font-size: 14px;
    }
    .busket_wrapper {
        gap: 24px;
    }
    .tovar_price span {
        font-size: 16px;
        padding-bottom: 1px;
    }
    .tovar_price p {
        font-size: 18px;
    }
    .proceed_checkout_item {
        padding: 0;
        border: 0px solid #FFB20F;
        height: fit-content;
    }
    .busket_item {
        padding: 20px;
    }
    .title_tovar_card {
        font-size: 18px;
    }
    .fabricator_card span {
        font-size: 16px;
    }
    .busket_block_info p {
        font-size: 12px;
    }
    .counter_basket {
        width: 92px;
        height: 33px;
    }
    .busket_block_info span {
        font-size: 14px;
    }
    .material {
        font-size: 16px;
    }
    .counter_basket span {
        font-size: 16px;
    }
    .counter_basket button {
        width: 26px;
        height: 25px;
        font-size: 16px;
    }
    .tovar_price_busket .unit {
        font-size: 14px;
    }
    .tovar_price_busket p {
        font-size: 16px;
        font-weight: 700;
    }
    .block_contacts::before {
        content: unset;
    }
    .block_contacts {
        background: unset;
    }
    .assortment_item .title {
        font-size: 16px;
    }
}
@media (max-width: 492px) {
    .input_intro_block_right_bottom label {
        display: block;
    }
    .input_intro_block_right_bottom label a {
        padding-left: 27px;
    }
    .checkbox_custom {
        top: 6px;
        margin-right: 7px;
    }
}
@media (max-width: 450px) {
    a.logo1 {
        width: 35%;
    }
    .block_absolute_after_two::after {
        width: 70%;
        height: 90%;
        left: -8%;
        bottom: -14%;
    }
    .logo1 img {
        width: 100%;
    }
    .header__link {
        margin-left: 16px;
    }
    .fabricator p,
    .fabricator span,
    .material,
    .characteristic_item,
    .type_processing, 
    .material_type {
        font-size: 16px;
    }
    .title_description_tovar_page,
    .block_info_tovar_right_title {
        font-size: 18px;
    }
    .tovar_title {
        font-size: 20px;
    }
    .tovar_item_card {
        height: 220px !important;
    }
    .more_products_slider {
        height: 456px;
        overflow: hidden;
    }
    .more_products_slider_wrapper .swiper-button-prev {
        top: -6%;
    }
    .more_products_slider_wrapper .swiper-button-next {
        top: 107%;
    }
    .input_form_wrapper {
        gap: 8px;
    }
    .description_news_promo_block_item p {
        font-size: 14px;
    }
    .page_title, .certificates_title {
        font-size: 18px;
    }
    .data_news {
        font-size: 16px;
        padding-bottom: 8px;
    }
    .news_headline_promo_block {
        margin-bottom: 30px;
    }
    .news_headline_promo_block.right {
         margin-bottom: 120px;
    }
}

@media (max-width: 390px) {
    .tovar_price p {
        font-size: 24px;
    }
    .title_tovar_card {
        font-size: 18px;
    }
    .title_block_more_products_mob {
        font-size: 16px;
    }
    .tovar_all_price_busket p {
        font-size: 18px;
    }
}
@media (max-width: 375px) {
    .header__link,
    .topMenu li a,
    .header__timeInfo,
    .header__phone, 
    .header__email,
    .btn1 span,
    .btn2 span {
        font-size: 14px;
    }
    a.logo1 {
        width: 31%;
    }
    .header__btn {
        max-width: 100%;
    }
    .title_description_tovar_page, .block_info_tovar_right_title {
        font-size: 17px;
    }
    .tovar_title {
        font-size: 19px;
    }
    .feedback_form {
        padding: 20px;
    }
}

/* Стили для бегущих строк */
.marquee-row {
    overflow: hidden;
    position: relative;
    padding: 15px 0;
}

.pertners_item .wrapper img {
    width: auto;
    height: auto;
}

.marquee-track {
    display: flex;
    gap: 20px; /* Сохраняем ваш оригинальный горизонтальный gap */
    animation: marquee 40s linear infinite;
    width: max-content;
    will-change: transform; /* Оптимизация анимации */
}

.marquee-track.reverse {
    animation: marquee-reverse 35s linear infinite;
}

/* Элементы партнеров */
.partners_item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

.partners_item img {
    max-width: 180px;
    height: 40px; /* Фиксированная высота для выравнивания */
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.partners_item img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* .partners {
    margin-bottom: 120px;
} */

/* Анимации */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes marquee-reverse {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Пауза при наведении */
.marquee-row:hover .marquee-track {
    animation-play-state: paused;
}

/* Градиентные маски по краям (опционально) */
.marquee-row::before,
.marquee-row::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-row::before {
    left: 0;
    background: linear-gradient(to right, 
        rgba(9, 9, 9, 1) 0%, 
        rgba(255, 255, 255, 0) 100%);
}

.marquee-row::after {
    right: 0;
    background: linear-gradient(to left, 
        rgba(9, 9, 9, 1) 0%, 
        rgba(255, 255, 255, 0) 100%);
}

/* Поддержка prefers-reduced-motion для доступности */
@media (prefers-reduced-motion: reduce) {
    .marquee-track,
    .marquee-track.reverse {
        animation: none;
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
        gap: 64px 110px; /* Ваш оригинальный gap */
    }
    
    .marquee-row {
        overflow: visible;
    }
    
    .marquee-row::before,
    .marquee-row::after {
        display: none;
    }
}

/* Адаптивность */
@media (max-width: 1270px) {
    .marquee-track {
        gap: 80px;
        animation-duration: 30s;
    }
    
    .marquee-track.reverse {
        animation-duration: 28s;
    }
    
    .partners_item img {
        max-width: 150px;
        height: 50px;
    }
}

@media (max-width: 768px) {
    .partners {
        padding: 60px 0;
    }
    
    .title_block {
        margin-bottom: 40px;
    }
    
    .title_block h2 {
        font-size: 2rem;
    }
    
    .marquee-track {
        gap: 60px;
        animation-duration: 25s;
    }
    
    .marquee-track.reverse {
        animation-duration: 23s;
    }
    
    .partners_item img {
        max-width: 120px;
        height: 40px;
    }
    
    .marquee-row {
        padding: 20px 0;
    }
    
    .marquee-row::before,
    .marquee-row::after {
        width: 80px;
    }
}

@media (max-width: 480px) {
    .marquee-track {
        gap: 40px;
        animation-duration: 20s;
    }
    
    .marquee-track.reverse {
        animation-duration: 18s;
    }
    
    .partners_item img {
        max-width: 100px;
        height: 35px;
    }
}


.footer-container {
    max-width: 1480px;
}
footer {
    position: relative;
    padding-bottom: 60px;
    background: var(--dark);
    z-index: 1;
}

.footer-container {
    display: flex;
    justify-content: space-between;
}

.btn1_footer {
    width: 100%;
    max-width: 250px;
    margin-left: 0px;
}

.footer_left_block_wrapper {
    width: calc(45% - 30px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer_left_block {
    display: flex;
    justify-content: flex-start;
    gap: 30px;
}

.footer_left_block_logo {
    width: calc(50% - 20px);
}

.title_footer_left_block {
    font-size: 20px;
    line-height: 120%;
    margin-bottom: 26px;
    margin-top: 10px;
}

.footer-container:after {
    content: "";
    position: absolute;
    top: -5%;
    width: 110%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    left: 50%;
    transform: translateX(-50%);
}

.footer-container:before {
    content: "";
    position: absolute;
    bottom: -5%;
    width: 110%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    left: 50%;
    transform: translateX(-50%);
}


@media (max-width: 1650px) {
    .footer-container:after,
    .footer-container:before {
        width: 98%;
    }
}
@media (max-width: 1520px) {
    .footer-container {
        padding: 0 20px;
    }
}

@media (max-width: 1464px) {
    .header__phone,
    .header__email {
        display: none;
    }
    .topMenu_mob_link_wrapper {
        display: flex;
        gap: 34px;
        padding-bottom: 24px;
    }
    .header_phone_mob, 
    .header_email_mob {
        display: block;
        margin-left: 0px;
    }
    .header_time_mob .header__timeInfo {
        margin-bottom: 0px;
    }
    ul.bottomMenu li a {
        font-size: 1.65vw;
    }
    a.politic,
    a.personal_data,
    a.site_creative,
    .title_footer_left_block,
    .block_menu_footer a {
        font-size: 1.36vw;
    }
    .btn1_footer span,
    a.footer_phone, 
    a.footer_email {
        font-size: 1.2vw;
    }
    ul.menu_right_block_wrapper li a {
        font-size: 1.1vw;
    }
    .left_menu_right_block, .right_menu_right_block {
        gap: 2vw;
    }
    ul.bottomMenu {
        gap: 1.36vw;
    }
}
@media (max-width: 1240px) {
    .footer_left_block {
        justify-content: space-between;
    }
}
@media (max-width: 1150px) {
    .topMenu {
        flex-direction: column;
        align-items: center;
    }
    .header__time {
        display: none;
    }
    .header_time_mob {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-left: 0px;
    }
    .topMenu {
        gap: 20px;
    }
    .topMenu_mob_link_wrapper {
        gap: 20px;
        flex-direction: column;
        align-items: center;
        padding-bottom: 28px;
    }
    .footer_left_block {
        gap: 2.5vh;
        flex-direction: column;
    }
    .footer_left_block_menu {
        margin-bottom: 48px;
    }
    .footer_left_block_logo {
        width: 100%;
    }
    .footer_left_block_wrapper {
        width: calc(34% - 30px);
    }
    .footer_right_block {
        width: calc(66% - 30px);
    }
    ul.bottomMenu li a {
        font-size: 2vw;
    }
    a.politic,
    a.personal_data,
    a.site_creative,
    .title_footer_left_block,
    .block_menu_footer a {
        font-size: 1.8vw;
    }
    a.politic,
    a.personal_data {
        font-size: 15px;
    }
    .btn1_footer span,
    a.footer_phone, 
    a.footer_email {
        font-size: 1.6vw;
    }
    ul.menu_right_block_wrapper li a {
        font-size: 1.4vw;
    }
    .left_menu_right_block, .right_menu_right_block {
        gap: 2vw;
    }
    ul.bottomMenu {
        gap: 1.36vw;
    }
    .block_info_tovar {
        flex-direction: column;
        gap: 42px;
    }
    .block_info_tovar_left {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .block_info_tovar_right {
        width: 100%;
    }
}

@media (max-width: 1024px) {
    .header__extLinks {
        display: none;
    }
    .header_extLinks_mob {
        display: flex;
        margin-left: 0px;
        margin-bottom: 28px;
    }
    .topMenu_mob_link_wrapper {
        padding-bottom: 20px;
    }
    .breadcrumbs {
        margin-bottom: 30px;
    }
    .benefits_item:nth-child(5) {
      display: none;
    }
    .benefits_container-items {
      display: flex;
      flex-wrap: wrap;
      align-items: flex-start;
      justify-content: flex-start;
      gap: 26px 50px;
    }
    .benefits_item {
      width: calc(33% - 32px);
    }
}

@media (max-width: 950px) {
    ul.bottomMenu li a {
        font-size:  20px
    }
    a.politic,
    a.personal_data,
    a.site_creative,
    .title_footer_left_block,
    .block_menu_footer a {
        font-size: 18px;
    }
    .btn1_footer span,
    a.footer_phone, 
    a.footer_email {
        font-size: 18px;
    }
    ul.menu_right_block_wrapper li a {
        font-size: 16px;
    }
    .left_menu_right_block, .right_menu_right_block {
        gap: 30px;
    }
    ul.bottomMenu {
        gap: 1.36vw;
    }
    .footer_right_block {
        width: calc(50% - 20px);
        flex-direction: column;
        gap: 30px;
    }
    .footer_left_block_wrapper {
        width: calc(50% - 20px);
    }
    .left_menu_right_block, .right_menu_right_block {
        width: 100%;
    }
    .footer-container {
        justify-content: center;
        gap: 20px;
    }
    ul.menu_right_block_wrapper {
        gap: 10px;
    }
    .footer-container:after {
        top: -3.5%;
    }
    .footer-container:before {
        bottom: -3.5%;
    }
}

@media (max-width: 700px) {
    .footer-container {
        flex-direction: column;
    }
    .footer_right_block {
        width: 100%;
    }
    .footer_left_block_wrapper {
        width: 100%;
    }
    .politic_info {
        display: none;
    }
    .politic_info_mob {
        display: flex;
    }
    .footer-container:after {
        top: -2.5%;
    }
    .footer-container:before {
        bottom: -2.5%;
    }
    a.politic, a.personal_data,
    a.site_creative {
        font-size: 16px;
    }


}
@media (max-width: 600px) {
    .block_map {
        display: none;
    }
    .block_map_mob {
        width: 100%;
        display: block;
    }
}