
@font-face {
    font-family: 'Helvetica Neue Thin';
    src: url('../fonts/HelveticaNeue-Thin.otf');
    font-weight: 300;
    font-style: normal;
}

/* 300 - Light */
@font-face {
    font-family: 'Helvetica Neue Light';
    src: url('../fonts/HelveticaNeue-Light.otf');
    font-weight: 300;
    font-style: normal;
}

/* 400 - Regular */
@font-face {
    font-family: 'Helvetica Neue Regular';
    src: url('../fonts/HelveticaNeue-Roman.otf');
    font-weight: 300;
    font-style: normal;
}

/* 500 - Medium */
@font-face {
    font-family: 'Helvetica Neue Medium';
    src: url('../fonts/HelveticaNeue-Medium.otf');
    font-weight: 500;
    font-style: normal;
}

/* 700 - Bold */
@font-face {
    font-family: 'Helvetica Neue Bold';
    src: url('../fonts/HelveticaNeue-Bold.otf');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Black Ops One';
    src: url('../fonts/BlackOpsOne-Regular.otf');
    font-weight: 400;
    font-style: normal;
}

/* Condensed Bold */

@font-face {
    font-family: 'Helvetica Neue Condensed Bold';
    src: url('../fonts/HelveticaNeue-Condensed-Bold.ttf');
    font-weight: 700;
    font-style: normal;
}

html {
    box-sizing: border-box;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    min-width: 320px;
    max-width: 1920px;
    margin: 0px auto;
    background-color: var(--dark-gray);
    scroll-behavior: smooth;
}


body.no-scroll {
  overflow: hidden;
}

.no-scroll {
  position: fixed;
  left: 0;
  right: 0;
  overflow: hidden;
  width: 100%;
}

/* 1. Убираем системный тап‑хайлайт */
* {
  -webkit-tap-highlight-color: transparent;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    /* color: var(--white-80); */
}

button {
    cursor: pointer;
}

ul {
    margin: 0;
    padding: 0;
}

ul {
  list-style-type: disc;
  margin-left: 20px;
  padding-left: 20px;
  margin-bottom: 16px;
}

li {
  font-family: 'Helvetica Neue Regular', sans-serif;
  font-size: 18px;
  line-height: 130%;
  margin-bottom: 4px;
}

li::marker {
  font-size: 14px; 
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0;
}

svg {
    vertical-align: middle;
}

blockquote {
    padding: 0;
    margin: 0;
}

body {
    /* font-family: 'Helvetica Neue Medium', sans-serif;
    font-size: 20px;
    background-color: #fff;
    min-width: 320px; */

    color: #fff;
    font-family: 'Helvetica Neue Light', sans-serif;
    font-size: 20px;
}

html.no-scroll,
body.no-scroll {
  overflow: hidden;
}

html.no-scroll-modal,
body.no-scroll-modal {
  overflow: hidden;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Для Firefox */
input[type=number] {
    -moz-appearance: textfield;
}


:root {
    --amp: 10px;  
    --angle: 8deg; 
    --dur: 1.2s;   
    --y: 7px;     

    --dark-gray: #282828;
    --black: #1A1A1A;
    --red: #D51A1A;
    --stroke: rgba(0, 0, 0, 0.4);
    --gray: #8A8A8A;
    --outline-black: #535353;
    --stroke-gray: #C1C1C1;
    --error: #F33220;
}

input {
    color: var(--black) !important;
}

/* Кастомный скролл на странице */

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #282828;
  border-radius: 8px;
}

::-webkit-scrollbar-thumb {
  background-color: var(--red);
}


/* Кастомный скролл для Firefox */

@-moz-document url-prefix() {
  * {
    scrollbar-color: var(--red) transparent; 
    scrollbar-width: thin; 
  }
}


/* Шапка */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  background-color: transparent;           
  transition: transform 600ms cubic-bezier(.2,.9,.3,1),
              background-color 240ms ease;
  will-change: transform, opacity, background-color;
  padding-top: env(safe-area-inset-top);
  color: var(--black); 
  min-width: 320px;
  max-width: 1920px;
  margin: 0px auto;
}

.hero {
  position: relative;
  z-index: 10;
  overflow: visible;
}

.hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -100px;        
  height: 214px;      
  pointer-events: none;
  z-index: 20;       
  background: linear-gradient(
    to bottom,
    rgba(26,26,26,1)   0%,
    rgba(26,26,26,0.6) 46%,
    rgba(26,26,26,0.2) 100%
  );
  will-change: opacity, transform;
}

.header.header--top {
  background-color: transparent !important;
  color: #fff !important;
  box-shadow: none;
}

.header.header--opaque {
  background-color: #fff;
  color: var(--black);
}

.header.header--menu-open {
  background: #fff !important;
  color: #000 !important;
}

.header.header--menu-open .header-logo p {
    color: var(--gray) !important;
}

.header.header--hidden { transform: translateY(-100%); pointer-events: none; }
.header.header--visible { transform: translateY(0); pointer-events: auto; }

.header svg path,
.header svg circle,
.header svg rect {
  transition: fill 200ms ease, opacity 200ms ease;
}

.header svg path,
.header svg circle,
.header svg rect {
  transition: fill 200ms ease, opacity 200ms ease;
}


.header-first-line {
    display: grid;
    grid-template-columns: minmax(457px, 457px) minmax(250px, 250px) minmax(485px, 652px) minmax(281px, 1fr);
    padding: 0px 80px;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray);
    border-left: 1px solid #C1C1C1;
    border-right: 1px solid #C1C1C1;
    padding: 6px 16px;
}

.header-logo p {
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 14px;
    max-width: 141px;
}

.header-logo-image {
    padding-right: 8px;
    position: relative; 
}

.header-logo-image::after {
    content: "";
    position: absolute;
    top: 6px;   
    bottom: 6px;  
    right: 0;
    width: 1px;
    background-color: #C1C1C1;
}

.header-logo-image-top {
  display: flex;
}

.header-logo-image-bottom {
    display: none;
}

.header.header--opaque .header-logo-image-top,
.header.header--menu-open .header-logo-image-top {
  display: none;
}
.header.header--opaque .header-logo-image-bottom,
.header.header--menu-open .header-logo-image-bottom {
  display: flex;
}

.header-address {
    white-space: nowrap;
  align-self: stretch;      
  display: flex;
  align-items: center;     
  padding: 0 20px;
  border-right: 1px solid #C1C1C1;
}

.header-address a {
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 14px;
    line-height: 120%;
    transition: all 0.3s ease;
}

.header-email-and-phone {
    align-self: stretch;      
    display: flex;
    align-items: center;
    gap: 20px;     
    padding: 0 16px;
    border-right: 1px solid #C1C1C1;
}

.header-email-and-phone a {
    transition: all 0.3s ease;
}

.header-address a:hover,
.header-email-and-phone a:hover {
    color: var(--red);
}

.header-email-and-phone a {
    font-family: 'Helvetica Neue Medium', sans-serif;
    font-size: 20px;
    line-height: 120%;
}

.get-offer-btn {
    max-height: 60px;
    white-space: nowrap;
    min-width: 281px;
}

.header-line {
  border: none;
  height: 1px;               
  background-color: #C1C1C1 !important;    
  margin: 0;
  padding: 0;
}

.header.header--top .header-line {
  background-color: var(--outline-black) !important;
}

.header-last-line {
    padding: 0px 80px;
    border-top: 1px solid #C1C1C1;
    border-bottom: 1px solid #C1C1C1;
}

.header-last-line.opaque {
    border-top: 1px solid var(--outline-black);
    border-bottom: 1px solid var(--outline-black);
}

.header-navigations {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    align-items: center;
    gap: 0px;
}

.header-navigation {
    color: inherit;
    padding: 16.5px 16px;
    border: none;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 16px;
    line-height: 130%;
    border-left: 1px solid #C1C1C1;
    white-space: nowrap;
    transition: color 220ms ease, background-color 220ms ease;
    position: relative;
    transition: all 0.3s ease;
}

.header-navigation:hover {
    color: var(--red);
}

.header.header--top .header-navigation {
    border-left: 1px solid var(--outline-black);
}

.header.header--top .header-logo {
    border-left: 1px solid var(--outline-black);
    border-right: 1px solid var(--outline-black);
    color: #E9E9E9 !important;
}

.header.header--top .header-address,
.header.header--top .header-email-and-phone,
.header.header--top .header-navigation:last-child {
    border-right: 1px solid var(--outline-black);
}

.header.header--top .header-logo-image::after {
    background-color: var(--outline-black);
}

.header-navigation:last-child {
    border-right: 1px solid #C1C1C1;
}

.header-navigation svg {
  display: inline-block; 
  vertical-align: middle;
  transform-origin: 50% 50%;
  transition: transform 300ms ease;
}

.header-navigation.is-active{
  color: var(--red);
}

.header-navigation.is-active svg{
  transform: rotate(180deg);
}

.header-menu-open {
    padding: 0px 80px;
    color: var(--black);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    overflow: hidden;
    max-height: 0;            
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;     
}

.header-menu-open.is-open{
  max-height: 1200px;      
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  z-index: 150;            
  background: #fff;    

}

.header-menu-open.is-open {
  display: grid; 
}

.header-menu-open.is-open {
  z-index: 100; 
  background: #fff;
}

.header-menu-open-links {
    display: flex;
    flex-direction: column;
    border-left: 1px solid #C1C1C1;
    padding-top: 24px;
    padding-bottom: 40px;
}

.header-menu-open-link {
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 16px;
    line-height: 130%;
    width: 100%;
    border-bottom: 1px solid #C1C1C1;
    padding: 12px;
    transition: all 0.3 ease;
}

@media (hover: hover) and (pointer: fine) {
    .header-menu-open-link:hover {
        background-color: var(--black);
        color: #fff;
    }
}

.header-menu-open-socials {
    padding-top: 24px;
    padding-bottom: 40px;
}


.header-menu-open-socials-links {
    margin-top: 20px;
    display: flex;
    gap: 8px;
}

.header-menu-open-socials-links svg {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
}

.header.modal-open {
  background-color: #fff !important;
  color: var(--black) !important;
}

.header.modal-open .header-logo p,
.header.modal-open .header-navigation,
.header.modal-open .header-address,
.header.modal-open .header-email-and-phone {
  color: inherit !important;
}

.header.modal-open .header-line {
  background-color: #C1C1C1 !important;
}

.header.modal-open .header-logo-image-top {
  display: none !important;
}
.header.modal-open .header-logo-image-bottom {
  display: flex !important;
}


/* Адаптив шапки */

.short-header-text {
    display: none;
}

.header-mobile-line-container {
    display: none;
}

.header-mobile-line {
    margin-top: 1px;
    border-top: 1px solid #C1C1C1;
    border-bottom: 1px solid #C1C1C1;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
}   

.header-mobile-line.opaque {
    border-top: 1px solid var(--outline-black);
    border-bottom: 1px solid var(--outline-black);
}

.header-mobile-line p {
    font-family: 'Helvetica Neue Regular', sans-serif;
    color: #8A8A8A;
    font-size: 12px;
    border-left: 1px solid #C1C1C1;
    border-right: 1px solid #C1C1C1;
    width: 100%;
    margin: 0px 40px;
    padding: 4px 0px;
    min-height: 20px;
}

.header-mobile-line p.opaque {
    border-left: 1px solid var(--outline-black);
    border-right: 1px solid var(--outline-black);
}

.header-mobile-icons {
    display: none;
    align-items: center;
    gap: 0px;
    padding: 0;
    margin: 0;
    height: 48px;
}

.header-mobile-email,
.header-mobile-phone {
    padding: 14px;
    border-left: 1px solid #C1C1C1;
    height: 48px;
    display: flex;
    align-items: center;
}

.header-mobile-email.opaque,
.header-mobile-phone.opaque {
    border-left: 1px solid var(--outline-black);
}

.burger-btn {
  position: relative;
  width: 48px;            
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border: none;
  background: var(--red);
  color: #fff;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background-color 200ms ease, transform 200ms ease;
  border-left: 1px solid #C1C1C1; 
  border-right: 1px solid #C1C1C1;
}

.burger-bar {
  display: block;
  position: absolute;
  left: 12px;         
  right: 12px;
  height: 2px;
  background-color: var(--red); 
  transform-origin: center;
  transition:
    transform 360ms cubic-bezier(.2,.9,.3,1),
    opacity 220ms ease,
    top 360ms cubic-bezier(.2,.9,.3,1),
    background-color 200ms ease;
}

.bar-top {
  top: 15px;
}

.bar-middle {
  top: 23px;
}

.bar-bottom {
  top: 31px;
}

.burger-btn.is-active .bar-top {
  top: 23px;                      
  transform: rotate(45deg) scaleX(1);
  background-color: var(--red);   
}

.burger-btn.is-active .bar-middle {
  opacity: 0;                     
  transform: scaleX(0.8);
}

.burger-btn.is-active .bar-bottom {
  top: 23px;
  transform: rotate(-45deg) scaleX(1);
  background-color: var(--red);
}

.burger-btn:focus {
  outline: none;
}

.header.header--opaque .burger-bar,
.header.header--menu-open .burger-bar {
  background-color: #fff;
}

.header.header--menu-open .burger-btn.opaque {
    background-color: var(--red);
}

.burger-btn.opaque {
    color: var(--red);
    background-color: #fff;
}

.header-menu-open-burger {
  position: fixed;       
  left: 0;
  right: 0;
  top: 0;                
  bottom: 0;
  max-height: 0;         
  overflow: hidden;
  opacity: 0;
  transform: translateY(0px);
  pointer-events: none;
  transition: max-height 420ms cubic-bezier(.2,.9,.3,1),
              opacity 260ms ease;
  z-index: 150;
  background-color: #fff;
  -webkit-overflow-scrolling: touch; 
  padding-bottom: env(safe-area-inset-bottom); 
}

.header-menu-open-burger.is-open {
  max-height: 100vh;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  overflow-y: auto;
  scrollbar-width: none;     
  -ms-overflow-style: none; 
}

.header-menu-open-burger.is-open::-webkit-scrollbar {
  display: none;            
}

.burger-menu-open-links-container {
    padding: 0px 40px;
    position: relative;
    z-index: 5;
}

.burger-submenu-container {
    padding: 0px 40px;
    position: relative; 
    z-index: 9;
    background-color: #fff;
}

.burger-submenu-overlay {
  position: fixed;
  inset: 0;
  background: #fff;
  opacity: 0;
  transition: opacity 260ms ease;
  pointer-events: none;
  z-index: 9999;
}

.burger-submenu-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

.burger-submenu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: none;
  height: auto;
  max-height: 100vh;
  background: #fff;
  transform: translateX(12px) scale(0.995);
  opacity: 0;
  transition: transform 340ms cubic-bezier(.2,.9,.3,1), opacity 260ms ease;
  pointer-events: none;
  z-index: 10000;
  display: block;
  overflow-y: auto;
  padding: 0px 40px;
  scrollbar-width: none;     
  -ms-overflow-style: none; 
}

.burger-submenu::-webkit-scrollbar {
  display: none;          
}

.burger-submenu.open {
  transform: translateX(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.burger-menu-open-links {
    margin-bottom: 10px;
}

.burger-menu-open-socials {
    display: inline-flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.burger-menu-open-socials a {
    font-family: 'Helvetica Neue Medium', sans-serif;
    font-size: 20px;
    line-height: 120%;
}

.burger-menu-open-link {
    font-family: 'Helvetica Neue Regular', sans-serif;
    padding: 11px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 300;
    font-size: 14px;
    line-height: 130%;
    border: none;
    border-bottom: 1px solid #C1C1C1;
    width: 100%;
    transition: all 0.3 ease;
    background-color: transparent;
    color: var(--black);
}   

.burger-menu-open-link-click {
    font-family: 'Helvetica Neue Regular', sans-serif;
    padding: 11px 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 300;
    font-size: 14px;
    line-height: 130%;
    border: none;
    border-bottom: 1px solid #C1C1C1;
    width: 100%;
    transition: all 0.3 ease;
    background-color: transparent;
} 

.burger-menu-open-link-address {
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-weight: 300;
    line-height: 120%;
    font-size: 13px;
    color: var(--black);
}

.get-an-offer-burger-btn {
    font-size: 14px !important;
    padding: 15.5px !important;
    max-width: 370px;
    width: 100%;
    margin-bottom: 40px;
}

.burger-menu-open-image {
    margin: 24px 0px;
}

.burger-menu-open-image img {
    max-width: 343px;
    width: 100%;
}

.burger-submenu {
  display: block !important;
  will-change: transform, opacity;
}

.burger-submenu-overlay {
  z-index: 9999;
}

.burger-submenu {
  z-index: 10000;
}

/* burger submenu */

.burger-submenu-header {
    display: flex;
    align-items: center;
    justify-content: center; 
    position: relative; 
    padding: 11px 0;
}

.go-back-btn {
    position: absolute;
    left: 0; 
    background: none;
    border: none;
    cursor: pointer;
}

.burger-submenu-header span {
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-weight: 300;
    font-size: 16px;
    letter-spacing: -0.02em;
}

.burger-submenu-links {
    margin-bottom: 32px;
}

.burger-submenu-link {
    display: flex;
    align-items: center;
    gap: 6px;
    border-top: 1px solid #C1C1C1;
    padding: 12px;
    color: var(--black);
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 130%;
}

.burger-submenu-link:last-child {
    border-bottom: 1px solid #C1C1C1;   
}

.header-menu-open-burger.submenu-open .burger-menu-open-links-container {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms ease;
}

@media (max-width: 1920px) {
    .header-first-line,
    .header-last-line,
    .header-menu-open {
        padding: 0px 70px;
    }
}

@media (max-width: 1700px) {
    .header-first-line,
    .header-last-line,
    .header-menu-open {
        padding: 0px 60px;
    }
}

@media (max-width: 1630px) {
    .header-first-line,
    .header-last-line,
    .header-menu-open {
        padding: 0px 60px;
    }
}

@media (max-width: 1595px) {
    .header-navigation,
    .header-menu-open-link {
        font-size: 14px;
    }

    .header-logo-image img {
        max-width: 190px;
    }

    .header-logo p {
        font-size: 12px;
    }

    .header-address a {
        font-size: 13px;
    }

    .header-email-and-phone a {
        font-size: 16px;
    }

    .get-offer-btn.red-btn {
        font-size: 14px;
    }

    .header-navigation {
        padding: 15px 16px;
    }

    .header-first-line {
        grid-template-columns: minmax(457px, 457px) minmax(250px, 250px) minmax(390px, 652px) minmax(281px, 1fr);
    }

    .header-menu-open {
        gap: 20px;
    }

    .hero::before {
        height: 200px;
    }
}

@media (max-width: 1500px) {
    .header-first-line,
    .header-last-line,
    .header-menu-open {
        padding: 0px 40px;
    }
}

@media (max-width: 1460px) {
    .header-first-line {
        grid-template-columns: minmax(350px, 457px) minmax(250px, 250px) minmax(390px, 652px) minmax(281px, 1fr);
    }
}

@media (max-width: 1420px) {
    .short-header-text {
        display: block;
    }

    .full-header-text {
        display: none;
    }
}

@media (max-width: 1360px) {
    .header-first-line {
        grid-template-columns: minmax(350px, 457px) minmax(178px, 250px) minmax(385px, 652px) minmax(281px, 1fr);
    }

    .header-address,
    .header-email-and-phone,
    .header-logo {
        padding: 0 15px;
    }

    .header-navigation {
        padding: 15px;
    }
}

@media (max-width: 1270px) {
    .header-last-line,
    .header-email-and-phone,
    .header-address,
    .get-offer-btn.red-btn,
    .header-logo p {
        display: none;
    }

    .header-logo-image::after {
        display: none;  
    }

    .header-logo {
        min-height: 48px;
    }

    .header-mobile-icons {
        display: flex;
    }

    .header-mobile-line-container {
        display: block;
    }

    .header-first-line {
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid #C1C1C1;
    }

    .header-first-line.opaque {
        border-bottom: 1px solid var(--outline-black);
    }

    .header-logo-image {
        padding-right: 0px;
    }

    .hero::before {
        height: 174px;
    }
} 

@media (max-width: 700px) {
    .header-first-line, .header-last-line, .header-menu-open,
    .burger-menu-open-links-container,
    .burger-submenu-container,
    .burger-submenu {
        padding: 0px 16px;
    }

    .header-mobile-line p {
        margin: 0px 16px;
    }

    .get-an-offer-burger-btn {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 465px) {
    .header-logo {
        padding: 0px 13px;
    }

    .header-logo-image img {
        max-width: 173px;
    }
}

@media (max-width: 376px) {
    .header-logo,
    .header.header--top .header-logo  {
        border-right: none;
    }
}

@media (max-width: 375px) {
    .header-logo {
        border-right: none;
    }
}

@media (max-width: 371px) {
     .header-logo-image img {
        max-width: 122px;
    }

    .header-logo {
        border-right: 1px solid #C1C1C1;
    }
}

@media (max-width: 330px) {
    .header-logo {
        padding: 0px 11px;
    }
}

@media (max-width: 322px) {
    .header-logo,
    .header.header--top .header-logo  {
        border-right: none !important;
    }
    
}

/* Главынй баннер */

.main { position: relative; overflow: hidden; }

.bg-swiper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 980px;   
  z-index: 1;
  pointer-events: auto;
}

.bg-swiper .swiper-slide {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.main-content {
  position: absolute;
  top: 0px;
  z-index: 2;
  pointer-events: none;
  padding: 0 80px;
  padding-bottom: 62px;
  width: 100%;
}


.main-content button,
.main-content a,
.main-content input,
.main-content textarea,
.main-content .navigation-left-btn,
.main-content .navigation-right-btn {
  pointer-events: auto;
}

.main-content-first-line {
    padding-top: 200px;
    position: relative;
    z-index: 2;
}

.current-page-info-banner {
    white-space: nowrap;
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-weight: 300;
    font-size: 20px;
    padding: 4px 10px;
    background-color: var(--dark-gray);
    max-width: 50px;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    margin-bottom: 70px;
    border: 1px solid #535353;
}

.main-content-second-line {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
}

.get-an-offer {
    padding: 17.5px !important;
    max-width: 360px !important;
    width: 100% !important;
}

.main-content-second-line-right-side {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.main-content-second-line-title {
    grid-column: 1 / -1;
    font-family: 'Helvetica Neue Thin', sans-serif;
    font-size: 60px;
    font-weight: 300;
    max-width: 950px;
    min-height: 204px;
    width: 100%;
    margin-bottom: 20px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.main-content-second-line-text {
    font-family: 'Helvetica Neue Light', sans-serif;
    font-size: 20px;
    max-width: 550px;
    width: 100%;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
}

.main-content-second-line-buttons {
    width: 100%;
    display: flex;
    gap: 12px;
}

.main-content-second-line-buttons svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.get-an-offer-main,
.video-about-production {
    white-space: nowrap;
    font-size: 16px;
}

.red-btn {
    white-space: nowrap;
    font-family: 'Helvetica Neue Light', sans-serif;
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    background-color: var(--red);
    padding: 17.5px 57px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 1;
}

.red-btn:hover {
    opacity: 0.9;
}

.transparent-btn {
    white-space: nowrap;
    font-family: 'Helvetica Neue Light', sans-serif;
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid #FFFFFF;
    background-color: transparent;
    padding: 17.5px 68px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.transparent-btn:hover {
    background-color: #fff;
    color: var(--black)
}

.main-content-second-line-navigation-buttons {
    display: flex;
    gap: 12px;
}

.main-content-second-line-navigation-buttons button {
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
}

.navigation-left-btn,
.navigation-right-btn {
    border: 1px solid #C1C1C1;
    background-color: #F5F5F5;
    padding: 11px;
    transition: all 0.3s ease;
}

.navigation-left-btn:hover,
.navigation-right-btn:hover {
    border: 1px solid var(--black);
}

.navigation-left-btn.swiper-button-disabled,
.navigation-right-btn.swiper-button-disabled {
  opacity: 0.6;
  cursor: default;
  pointer-events: none; 
  transition: opacity .18s ease;
}

.main-content-last-line {
    position: relative;
    z-index: 2;
}

.main-content-last-line-info-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 60px;
}

.main-content-last-line-info-card {
    background-color: #282828;
    border: 1px solid #535353;
    padding: 20px 20px 36px 20px;
}

.main-content-last-line-info-card-top {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.main-content-last-line-info-card-top svg {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
}

.info-card-number {
    font-size: 60px;
    text-transform: uppercase;
}

.info-card-number-mobile {
    display: none;
    text-transform: lowercase;
}

.main-content-last-line-info-card-bottom p {
    font-size: 20px;
    width: 100%;
}

/* Адаптив главного баннера */

@media (max-width: 1700px) {
    .main-content {
        padding: 0px 60px;
    }
}

@media (max-width: 1630px) {
    .main-content {
        padding: 0px 60px;
    }
}


@media (max-width: 1500px) {
    .main-content {
        padding: 0px 40px;
    }

    .bg-swiper {
        height: 832px;
    }
    
    .main-content-second-line-title {
        font-size: 50px;
        margin-bottom: 12px;
        max-width: 800px;
        min-height: 168px;
    }

    .main-content-second-line-text {
        font-size: 18px;
        margin-bottom: 24px;
    }

    .get-an-offer-main,
    .video-about-production,
    .get-an-offer {
        font-size: 14px;
        padding: 15.5px !important;
        max-width: 300px;
        width: 100%;
    }

    .main-content-second-line-buttons {
        gap: 8px;
    }

    .main-content-second-line-navigation-buttons button {
        flex-shrink: 0;
        width: 48px;
        height: 48px;
    }

    .info-card-number {
        font-size: 50px;
    }

    .main-content-last-line-info-card-bottom p {
        font-size: 16px;
    }

    .main-content-last-line-info-cards {
        margin-top: 48px;
    }

    .main-content-first-line {
        padding-top: 195px;
    }

    .current-page-info-banner {
        margin-bottom: 60px;
    }

    .main-content-second-line-buttons svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 1350px) {
    .main-content-last-line-info-card {
        padding: 16px 16px 20px 16px;
    }
}

@media (max-width: 1270px) {
    .main-content-last-line-info-cards {
        grid-template-columns: 1fr 1fr;
    }

    .main-content-first-line {
        padding-top: 115px;
    }

    .bg-swiper {
        height: 920px;
    }
}

@media (max-width: 1000px) {
    .main-content-second-line-title {
        font-size: 44px;
        min-height: 147px;
        max-width: 700px;
    }
}

@media (max-width: 800px) {
    .main-content-second-line-title {
        font-size: 38px;
        min-height: 147px;
        max-width: 615px;
    }
}

@media (max-width: 700px) {
    .main-content-second-line-title {
        font-size: 38px;
        min-height: 205px;
        margin-bottom: 0px;
    }

    .main-content-second-line-text {
        font-size: 16px;
        margin-top: 12px;
    }

    .main-content-second-line-navigation-buttons {
        display: none;
    }

    .main-content-second-line-buttons {
        width: 100%;
        flex-direction: column;
        gap: 8px;
    }

    .get-an-offer-main, .video-about-production {
        max-width: 100%;
        width: 100%;
    }

    .get-an-offer {
        max-width: 100% !important;
    }

    .main-content-second-line {
        grid-template-columns: 1fr;
    }

    .main-content-last-line-info-cards {
        margin-top: 40px;
    }

    .info-card-number {
        font-size: 32px;
    }

    .main-content-last-line-info-card-bottom p {
        font-size: 14px;
    }

    .main-content-last-line-info-card {
        padding: 12px 12px 25px 12px;
    }

    .main-content-last-line-info-card-top {
        gap: 10px;
    }

    .main-content-last-line-info-card-top svg {
        height: 20px;
        width: 20px;
    }

    .bg-swiper {
        height: 880px;
    }

    .main-content {
        padding: 0px 16px;
        width: 100%;
    }

    .main-content-last-line-info-card-top {
        gap: 6px;
    }

    .main-content-last-line-info-card-top {
        white-space: nowrap;
    }

    .info-card-number-desktop {
        display: none;
    }

    .info-card-number-mobile {
        display: block;
    }

    .current-page-info-banner {
        font-size: 18px;
        margin-bottom: 17px;
    }
}

@media (max-width: 450px) {
    .main-content-first-line {
        padding-top: 95px;
    }

    .main-content-second-line-text {
        min-height: 68px;
    }
}

@media (max-width: 375px) {
    .main-content-last-line-info-card-top {
        white-space: nowrap;
    }
}

@media (max-width: 370px) {
    .main-content-last-line-info-card {
        padding: 12px 12px 25px 12px;
    }

    .info-card-number {
        font-size: 27px;
    }

    .main-content-last-line-info-card-bottom p {
        font-size: 12px;
    }
}

@media (max-width: 350px) {
  .main-content-second-line-buttons {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .main-content-second-line-title {
    font-size: 36px;
  }

  .main-content-second-line-text {
    font-size: 16px;
  }
}


/* Секция "Производим" */

.we-produce {
    color: var(--black);
    background-color: #fff;
    padding: 80px;
}

.section-name {
    display: flex;
    align-items: center;
    gap: 5px;
    text-align: center;
}

.square {
    width: 12px;
    height: 12px;
    background-color: var(--red);
    margin-bottom: 2px;
}

.section-name-text {
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 16px;
    text-transform: uppercase;
}

.we-produce-content {
    position: relative;
    z-index: 2;
}

.we-produce-title {
    font-family: 'Helvetica Neue Light', sans-serif;
    font-size: 45px;
    font-weight: 300;
    text-transform: uppercase;
    margin-top: 20px;
    margin-bottom: 32px;
}

.we-produce-card {
    position: relative;
    border-top: 1px solid var(--stroke-gray);
    padding: 24px 12px 24px 20px;

    display: grid;
    grid-template-columns: minmax(0px, 415px) 1fr auto;
    transition: all 0.3s ease;
}

.we-produce-card:last-child {
    border-bottom: 1px solid var(--stroke-gray);
}

.we-produce-card-second-column {
    display: flex;
    gap: 40px;
}

.we-produce-card-number {
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 18px;
}

.we-produce-card-img {
    max-width: 400px;
    max-height: 276px;
    width: 100%;
    height: 100%;
}

.we-produce-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.we-produce-card-last-column {
    position: absolute;
    top: 20px;
    right: 20px;
}

.we-produce-card-last-column svg {
    flex-shrink: 0;
    width: 24px;
    height: 22px;
}

.we-produce-card-last-column svg path,
.we-produce-card-info-head svg path {
  transition: fill 0.3s ease;
}

.we-produce-card-title {
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 16px;
    max-width: 550px;
    width: 100%;
    color: var(--black);
    transition: all 0.3s ease;
}

.we-produce-card:hover .we-produce-card-title,
.we-produce-card:focus-within .we-produce-card-title {
  color: var(--red);
}

.we-produce-card:hover .we-produce-card-last-column svg path,
.we-produce-card:hover .we-produce-card-info-head svg path,
.we-produce-card:focus-within .we-produce-card-last-column svg path {
  fill: var(--red);
}

.we-produce-card-banners {
    max-width: 739px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.we-produce-card-banner {
    display: flex;
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 18px;
    align-items: center;
    text-align: center;
    gap: 6px;
    border: 1px solid var(--stroke);
    border-radius: 12px;
    padding: 4px 8px;
    transition: all 0.3s ease;
}

.we-produce-card-banner:hover {
    background-color: #282828;
    color: #fff;
}

.we-produce-additionally-title {
    font-family: 'Helvetica Neue Light', sans-serif;
    font-size: 40px;
    font-weight: 300;
    text-transform: uppercase;
    margin-top: 70px;
    margin-bottom: 24px;
}

.we-produce-additionally-card {
    border-top: 1px solid var(--stroke-gray);
    padding: 16px 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.we-produce-additionally-card:hover {
    background-color: var(--red);
    color: #fff;
}

.we-produce-additionally-card:last-child {
    border-bottom: 1px solid var(--stroke-gray);
}

.we-produce-additionally-card a {
    transition: unset;
}

.we-produce-additionally-card a,
.we-produce-additionally-card p {
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 28px;
}

.we-produce-card-info-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.we-produce-card-info-head svg {
    display: none;
    flex-shrink: 0;
    width: 17px;
    height: 16px;
}

/* Адаптив секции "Производим" */

@media (max-width: 1850px) {
    .we-produce-card {
        grid-template-columns: minmax(0px, 405px) 1fr auto;
    }

    .we-produce-card-second-column {
        gap: 24px;
    }
}

@media (max-width: 1770px) {
    .we-produce-card {
        grid-template-columns: minmax(0px, 350px) 1fr auto;
    }
}

@media (max-width: 1750px) {
    .we-produce-card {
        grid-template-columns: minmax(0px, 360px) 1fr auto;
    }
}

@media (max-width: 1700px) {
    .we-produce {
        padding: 80px 60px;
    }
}

@media (max-width: 1650px) {
    .we-produce-card {
        grid-template-columns: minmax(0px, 310px) 1fr auto;
    }
}

@media (max-width: 1630px) {
    .we-produce {
        padding: 80px 60px 70px 60px;
    }
}

@media (max-width: 1580px) {
    .we-produce-card {
        grid-template-columns: minmax(0px, 285px) 1fr auto
    }
}

@media (max-width: 1570px) {
    .we-produce-card {
        grid-template-columns: minmax(0px, 260px) 1fr auto;
    }
}

@media (max-width: 1500px) {
    .we-produce {
        padding: 60px 40px;
    }
}

@media (max-width: 1450px) {
    .we-produce-card {
        grid-template-columns: minmax(0px, 225px) 1fr auto;
    }
}

@media (max-width: 1400px) {
    .we-produce-card {
        grid-template-columns: minmax(0px, 220px) 1fr auto;
    }
}

@media (max-width: 1370px) {
    .we-produce-card {
        grid-template-columns: minmax(0px, 200px) 1fr auto;
    }
}

@media (max-width: 1350px) {
    .we-produce-title {
        font-size: 36px
    }

    .we-produce-card-title {
        font-size: 24px;
    }

    .we-produce-card-banner {
        font-size: 16px;
    }

    .we-produce-card-last-column svg {
        width: 17px;
        height: 16px;
    }

    .we-produce-card-number {
        font-size: 16px;    
    }

    .we-produce-card {
        padding: 12px;
        grid-template-columns: minmax(0px, 300px) 1fr auto;
    }

    .we-produce-card-img {
        max-width: 280px;
        max-height: 194px;
    }

    .we-produce-additionally-title {
        margin-top: 50px;
        margin-bottom: 20px;
        font-size: 32px;
    }

    .we-produce-additionally-card {
        padding: 12px;
    }

    .we-produce-additionally-card a,
    .we-produce-additionally-card p {
        font-size: 24px;
    }

    .section-name-text {
        font-size: 14px;
    } 
}

@media (max-width: 1330px) {
    .we-produce-card {
        grid-template-columns: minmax(0px, 285px) 1fr auto;
    }
}

@media (max-width: 1300px) {
    .we-produce-card {
        grid-template-columns: minmax(0px, 270px) 1fr auto;
    }
}

@media (max-width: 1290px) {
    .we-produce-card {
        grid-template-columns: minmax(0px, 260px) 1fr auto;
    }
}

@media (max-width: 1240px) {
    .we-produce-card {
        grid-template-columns: minmax(0px, 235px) 1fr auto;
    }
}

@media (max-width: 1200px) {
    .we-produce-card {
        grid-template-columns: minmax(0px, 215px) 1fr auto;
    }
}

@media (max-width: 1150px) {
    .we-produce-card {
        grid-template-columns: minmax(0px, 185px) 1fr auto;
    }
}

@media (max-width: 1120px) {
    .we-produce-card {
        grid-template-columns: minmax(0px, 170px) 1fr auto;
    }
}

@media (max-width: 1100px) {
    .we-produce-card {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 0px;
        padding-top: 12px;
        padding-bottom: 44px;
    }

    .we-produce-card-second-column {
        flex-direction: column;
        gap: 20px;
    }

    .we-produce-card-img {
        max-width: 730px;
        max-height: 510px;
    }

    .we-produce {
        background-image: url("../images/we-produce/bg-mobile.png");
    }

    .we-produce-card-last-column {
        display: none;
    }

    .we-produce-card-info-head svg {
        display: block;
    }
}


@media (max-width: 700px) {
    .we-produce {
        padding: 60px 16px;
    }   

    .square {
        width: 8px;
        height: 8px;
        margin-bottom: 4px;
    }

    .section-name-text {
        font-size: 12px;
    }

    .we-produce-title {
        font-size: 28px;
        margin-top: 12px;
        margin-bottom: 16px;
    }

    .we-produce-card-number {
        font-size: 14px;
    }

    .we-produce-card-title {
        font-size: 20px;
        max-width: 400px;
        width: 100%;
    }

    .we-produce-card-banner {
        font-size: 14px;
        padding: 2px 8px;
        /* padding-top: 5px; */
    }

    .we-produce-card-banners svg {
        flex-shrink: 0;
        width: 10px;
        height: 10px;
        /* margin-bottom: 2px; */
    }

    .we-produce-additionally-title {
        font-size: 24px;
        margin-top: 40px;
        margin-bottom: 16px;
    }

    .we-produce-additionally-card {
        padding: 12px 8px;
    }

    .we-produce-additionally-card a,
    .we-produce-additionally-card p {
        font-size: 20px;
    }
}

/* Секция "О нас" */

.about-us {
    color: #fff;
    padding: 90px 80px;
    background-image: url(../images/about-us-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.about-us-content {
    position: relative;
    z-index: 2;
}

.about-us-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-us-advantages-cards {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0px;
}

.about-us-advantages-card {
    background-color: var(--dark-gray);
    padding: 12px 20px 20px 20px;
    border: 1px solid #535353;
}

.about-us-title {
    font-family: 'Helvetica Neue Light', sans-serif;
    font-size: 45px;
    font-weight: 300;
    text-transform: uppercase;
    margin-top: 20px;
    margin-bottom: 17px;
}

.about-us-desc {
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 434px;
    margin-bottom: 32px;
}

.about-us-right-side {
  position: relative;         
  display: block;
  max-width: 880px;               
}

.about-us-right-side img{
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}


.video-play {
  padding: 23px; 
  border: 1px solid #fff;
  background: transparent;
  cursor: pointer;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-play:hover {
  transform: translate(-50%, -50%) scale(1.05);
}

.video-play svg {
  max-width: 30px;  
  min-width: 30px;   
  max-height: 33px;
  min-height: 33px;
  display: block;
  pointer-events: none;
}

.about-us-advantages-card-number {
    font-family: 'Black Ops One', sans-serif;
    color: #434343;
    font-size: 40px;
    text-align: right;
    margin-bottom: 13px;
}

.about-us-advantages-card-title {
    font-size: 20px;
    font-family: 'Helvetica Neue Regular', sans-serif;
    margin-bottom: 12px;
}

.about-us-advantages-card-desc {
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 16px;
    color: #AAAAAA;
    min-height: 95px;
    line-height: 130%;
}

.about-us-btn {
    max-width: 370px;
}

/* Адаптив секции "О нас" */

@media (max-width: 1700px) {
    .about-us {
        padding: 90px 60px;
    }    
}

@media (max-width: 1500px) {
    .about-us {
        padding: 70px 40px;
    }
}

@media (max-width: 1350px) {
    .about-us-title {
        font-size: 36px;
        margin-top: 12px;
        margin-bottom: 12px;
    }

    .about-us-desc {
        font-size: 18px;
        margin-bottom: 24px;
    }

    .about-us-btn {
        font-size: 14px !important;
        padding: 15.5px !important;
        max-width: 299px;
        width: 100%;
    }

    .about-us-btn svg {
        flex-shrink: 0;
        width: 16px;
        height: 16px;
    }

    .video-play {
        padding: 14px;
    }

    .video-play svg {
        max-width: 22px;
        min-width: 22px;
        max-height: 25px;
        min-height: 25px;
    }

    .about-us-advantages-card-number {
        font-size: 32px;
        margin-bottom: 8px;
    }

    .about-us-advantages-card-title {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .about-us-advantages-card-desc {
        font-size: 14px;
    }

    .about-us-advantages-cards {
        margin-top: 32px;
    }

    .about-us-advantages-card {
        padding: 12px 16px 16px 16px;
    }
}

@media (max-width: 1150px) {
    .about-us-title {
        font-size: 28px;
    }

    .about-us-desc {
        font-size: 16px;
    }
}

@media (max-width: 1100px) {
    .about-us-advantages-cards {
        grid-template-columns: 1fr;
    }

    .about-us-advantages-card {
        padding: 12px 16px 16px 16px;
        border-bottom: none;
    }

    .about-us-advantages-card:last-child {
        border-bottom: 1px solid #535353;
    }

    .about-us-advantages-card-number {
        margin-bottom: 8px;
    }

    .about-us-advantages-card-desc {
        min-height: 42px;
    }

    .about-us {
        background-image: none;
        background-color: var(--black);
    }
}

@media (max-width: 950px) {
    .about-us-info {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 700px) {
    .about-us {
        padding: 60px 16px;
    }

    .about-us-btn {
        max-width: 100%;
    }
}

/* Секция "Доставка" */

.delivery {
    color: var(--black);
    background-color: #fff;
    padding: 0px 80px;
    padding-bottom: 100px;
    position: relative;
    z-index: 2;
}

.delivery-map {
    display: flex;
    align-items: center;
    justify-content: center;
}

.delivery-map::-webkit-scrollbar {
  height: 4px;            
}

.delivery-map::-webkit-scrollbar-track {
  background: #e9e9e9;      
}

.delivery-map::-webkit-scrollbar-thumb {
  background: #A3A3A3;      
}

.delivery-map::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.delivery-content {
    position: relative;
    z-index: 2;
}

.delivery-content-top-left {
    position: absolute;
    top: 100px;
    z-index: 3;
    pointer-events: none;
}

.delivery-content-top-right {
    position: absolute;
    top: 180px;
    right: 250px;
    z-index: 3;
}

.delivery-content-top-right ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.delivery-content-top-right ul li {
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 130%;
    max-width: 220px;
    width: 100%;
}

.delivery-title {
    font-family: 'Helvetica Neue Light', sans-serif;
    font-size: 45px;
    font-weight: 300;
    text-transform: uppercase;
    margin-top: 16px;
    margin-bottom: 16px;
    max-width: 740px;
    width: 100%;
}

.delivery-top-desc {
    max-width: 430px;
    width: 100%;    
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 20px;
    color: var(--gray);
    letter-spacing: -0.02em;
}

.svg-wrap { 
    width: 100%; 
    max-width: 1450px; 
    margin: 0 auto; 
    position: relative; 
    touch-action: manipulation; 
}
  
.svg-wrap svg { 
    display: block; 
    width: 100%; 
    height: auto; 
}
  
.region { 
    transition: fill 300ms ease, opacity 300ms ease, transform 300ms ease; 
    cursor: pointer; 
    vector-effect: non-scaling-stroke; 
}

.region.hovered, .region:active { 
    fill: #A3A3A3 !important; 
    opacity: 0.95; 
    transform-origin: center; 
}
  
.map-tooltip { 
    display: flex;
    align-items: center;
    gap: 50px;
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 130%;
    position: fixed; 
    pointer-events: none; 
    background: var(--red); 
    color: #fff;
    padding: 8px 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.35); 
    transform-origin: left top; 
    z-index: 9999; 
    transition: opacity 120ms ease, transform 120ms ease; opacity: 0; transform: translateY(6px) scale(0.98); 
}

.map-tooltip.show { 
    opacity: 1; 
    transform: translateY(0) scale(1); 
}

@media (max-width: 480px) { 
    .map-tooltip { 
        font-size: 13px;
        padding: 6px 8px; 
    } 
}

/* Подсказки по карте во время разработки */

path[data-delivery="ЗЕЛЕНАЯ ОБЛАСТЬ"] {
  fill: rgba(0, 255, 0, 0.4);
  stroke: #008000;
  stroke-width: 1;
}

path[data-delivery="ПОИСК СОДЕРЖИМОГО"] {
  fill: rgba(0, 0, 255, 0.4); 
  stroke: #0000ff;
  stroke-width: 1;
}

.delivery-info-title {
    font-family: 'Helvetica Neue Light', sans-serif;
    font-size: 40px;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.our-production-info-card-open-delivery > * {
  min-width: 0;
}

.our-production-info-card-open-delivery a {
    cursor: pointer !important;
}

.our-production-info-card-open-delivery {
    margin-top: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.card-open-delivery-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
}

.card-open-delivery-left-top-desc {
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-weight: 300;
    font-size: 20px;
    color: var(--gray);
    letter-spacing: -0.02em;
}

.card-open-delivery-left-bottom-desc {
    margin-top: 8px;
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 16px;
    line-height: 130%;
}

.card-open-delivery-info-cards {
    margin-top: 12px;
}

.card-open-delivery-info-card {
    border-top: 1px solid #C1C1C1;
    padding: 16px 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 10px;
}

.card-open-delivery-info-card a {
    transition: all 0.3s ease;
}

.card-open-delivery-info-card a:hover {
    color: var(--red);
}

.card-open-delivery-info-card:last-child {
    border-bottom: 1px solid #C1C1C1;
}

.card-open-delivery-info-card-title {
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 130%;
    color: var(--gray);
}

.card-open-delivery-info-card-text {
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-weight: 300;
    font-size: 18px;
    color: var(--black);
}

.card-open-delivery-link {
    cursor: pointer !important;
}

.card-open-delivery-link svg {
    cursor: pointer;
}

.delivery-brand-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    row-gap: 10px;
    align-items: center;
}

.delivery-brand-cards img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.card-open-delivery-left-last {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: flex-start;
    gap: 40px;
}

.card-open-delivery-left-last ul {
    margin-left: 10px;
    margin-bottom: 10px;
}

.card-open-delivery-left-last ul li {
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 20px !important;
    letter-spacing: -0.02em;
}

.card-open-delivery-left-last ul li::marker {
    font-size: 20px;
    color: var(--black);
}

.card-open-delivery-left-bottom .card-open-delivery-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 4px;           
  border-bottom: 1px solid var(--black);
  color: var(--black);                
  text-decoration: none;
  transition: color .18s ease, border-color .18s ease;
}

.card-open-delivery-left-bottom .card-open-delivery-link svg {
  transition: transform .18s ease;
}

.card-open-delivery-left-bottom .card-open-delivery-link:hover {
  color: var(--red);                  
  border-bottom-color: var(--red);   
}

/* Анимированный курсор для свайпа иконка*/

.wrapper-svg-container { 
    display: none; 
    align-items:center; 
    justify-content:center; 
    margin:0; 
    position: absolute;
    bottom: -50px;
    right: 0;
    z-index: 5;
}

.wrapper-svg {  
    width: 40px; 
    height: 40px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
}

.wrapper-svg svg { 
    width:100%; 
    height:100%; 
    overflow:visible; 
}

.finger,
.arrow { 
    transform-box: fill-box; 
    -webkit-transform-box: fill-box; 
}

.finger {
    transform-origin: 58% 42%;
    will-change: transform;
    animation-name: swipe-loop;
    animation-duration: var(--dur);
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

@keyframes swipe-loop {
    0%   { transform: translateX(calc(-1 * var(--amp))) translateY(var(--y)) rotateZ(calc(-1 * var(--angle))); }
    50%  { transform: translateX(var(--amp)) translateY(var(--y)) rotateZ(var(--angle)); }
    100% { transform: translateX(calc(-1 * var(--amp))) translateY(var(--y)) rotateZ(calc(-1 * var(--angle))); }
}

.arrow { 
    pointer-events:none; 
}

.muted { 
    fill:#8A8A8A; 
    stroke:none; 
}


/* Адаптив секции "Доставка" */

@media (max-width: 1700px) {
    .delivery-map {
        margin-left: 100px;
    }

    .delivery {
        padding: 0px 60px;
        padding-bottom: 80px;
    }
}

@media (max-width: 1600px) {
    .delivery-map {
        margin-left: 100px;
    }

    .delivery-content-top-right {
        top: 100px;
        right: 190px;
    }

    .delivery-top-desc {
        font-size: 18px;
        max-width: 387px;
    }

    .delivery-content-top-left {
        top: 60px;
    }
}

@media (max-width: 1500px) {
    .delivery {
        padding: 0px 40px;
        padding-bottom: 60px;
    }

    .delivery-title {
        font-size: 36px;
        max-width: 670px;
    }
}

@media (max-width: 1280px) {
    .delivery {
        padding: 0px 40px;
        padding-bottom: 60px;
    }
    
}

@media (max-width: 1250px) {
    .delivery-content-top-left {
        position: relative;
    }

    .delivery-content-top-right {
        position: relative;
        right: inherit;
        top: 71px;
    }

    .delivery-top-desc {
        max-width: 515px;
    }

    .delivery-content-top-right ul {
        gap: 12px;
        padding-left: 5px !important;
    }

    .delivery-content-top-right ul li {
        max-width: 100%;
        margin-bottom: 0px !important;
    }

    .delivery-map {
        margin-top: 80px;
        margin-left: 0px;
    }

    .delivery-info-title {
        font-size: 32px;
    }
}

@media (max-width: 1100px) {
    .wrapper-svg-container {
        display: flex;
    }

    .delivery {
        background-image: none;
        padding: 0px;
        padding-bottom: 60px;
        padding-left: 40px;
    }

    .delivery-map {
        overflow-x: auto;              
        overflow-y: hidden;              
        -webkit-overflow-scrolling: touch; 
        display: block;
        padding-bottom: 12px;           
        margin-bottom: 40px; 
    }

    :root { --delivery-map-fixed-width: 1400px; } 

    .svg-wrap {
        width: var(--delivery-map-fixed-width); 
        max-width: none;                        
        min-width: var(--delivery-map-fixed-width);
        margin-left: 0;                       
    }

    .svg-wrap svg {
        width: var(--delivery-map-fixed-width);
        height: auto;
        display: block;
    }

    .map-tooltip {
        max-width: 90%;
    }

    .delivery-content-top {
        padding: 0px 40px;
        padding-left: 0px;
    }

    .delivery-content .delivery-info,
    .delivery-content .our-production-info-cards {
        padding-right: 40px;
    }

    .our-production-info-card-open-delivery {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .card-open-delivery-link {
        margin-bottom: 12px;
    }
}

@media (max-width: 880px) {
    :root { --delivery-map-fixed-width: 1200px; }
}

@media (max-width: 770px) {
    :root { --delivery-map-fixed-width: 1000px; }
}

@media (max-width: 700px) {
    .delivery-content-top {
        padding: 0px 16px;
        padding-left: 0px;
    }

    .delivery {
        padding-bottom: 60px;
        padding-left: 16px;
    }

    .delivery-title {
        font-size: 28px;
        margin-top: 12px;
        margin-bottom: 12px;
    }

    .delivery-top-desc {
        font-size: 16px;
    }

    .delivery-content-top-right ul li {
        font-size: 14px;
    }

    .delivery-content .delivery-info,
    .delivery-content .our-production-info-cards {
        padding-right: 16px;
    }

    .delivery-info-title {
        font-size: 24px;
    }
}

@media (max-width: 615px) {
    :root { --delivery-map-fixed-width: 900px; }
}

@media (max-width: 550px) {
    :root { --delivery-map-fixed-width: 800px; }
}

@media (max-width: 500px) {
    :root { --delivery-map-fixed-width: 700px; }
}

@media (max-width: 450px) {
    :root { --delivery-map-fixed-width: 600px; }
}

@media (max-width: 360px) {
    :root { --delivery-map-fixed-width: 510px; }
}


/* Секция "Документы" */

.documents {
    background-color: var(--black);
    padding: 90px 80px;
}

.documents-content {
    position: relative;
    z-index: 2;
}

.documents-title {
    font-size: 45px;
    text-transform: uppercase;
    padding-top: 16px;
    padding-bottom: 24px;
    font-family: 'Helvetica Neue Light', sans-serif;
    font-weight: 300;
    max-width: 952px;
    width: 100%;
}

.documents-card-btn {
    border: none;
    background-color: transparent;
}

.documents-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.documents-card {
    display: flex;
    gap: 12px;
    justify-content: space-between;
    background-color: #282828;
    padding: 20px;
    border: 1px solid #535353;
    cursor: pointer;
    transition: all 0.3s ease;
}

.documents-card:hover {
    transform: scale(1.01);
}

.documents-card-title {
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 28px;
    line-height: 110%;
    letter-spacing: -0.02em;
    max-width: 364px;
    width: 100%;
}

.documents-card-left-side {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.documents-card-right-side {
    margin-right: 20px;
    padding-top: 12px;
    padding-bottom: 12px;
    max-width: 112px;
    width: 100%;
    height: 100%;
}

.documents-card-right-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.watch-more {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 32px;
    max-width: 369px;
}

/* Адаптив секции "Документы" */

@media (max-width: 1700px) {
    .documents-card-right-side {
        max-width: 113px;
    }

    .documents {
        padding: 90px 60px;
    }
}

@media (max-width: 1500px) {
    .documents {
        padding: 70px 40px;
    }
}

@media (max-width: 1350px) {
    .documents-title {
        font-size: 36px;
    }

    .documents-card-title {
        font-size: 24px;
    }

    .documents-card {
        padding: 16px;
    }

    .documents-card-right-side {
        padding-top: 0px;
        padding-bottom: 0px;
        margin-right: 25px;
    }

    .watch-more {
        font-size: 14px;
        max-width: 300px;
    }

    .watch-more  svg {
        flex-shrink: 0;
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 1100px) {
    .documents-cards {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

@media (max-width: 700px) {
    .documents {
        padding: 60px 16px;
    }

    .documents-card-title {
        font-size: 20px;
    }

    .documents-title {
        font-size: 28px;
    }

    .documents-card-btn svg {
        flex-shrink: 0;
        width: 24px;
        height: 24px;
    }

    .documents-card-right-side {
        margin-right: 0px;
    }

    .watch-more {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 370px) {
    .documents-card-title {
        font-size: 18px;
    }
}


/* Секция "Нам доверяют" */

.trust-us {
    background-color: #fff;
    color: var(--black);
    padding: 80px 70px 40px 80px;
}

.trust-us-content {
    position: relative;
    z-index: 2;
}

.trust-us-buttons {
    white-space: nowrap;
    overflow-x: auto;
    display: flex;
    gap: 60px;
    scrollbar-width: none;     
    -ms-overflow-style: none;  
}

.trust-us-buttons::-webkit-scrollbar {
    display: none; 
}   

.trust-us-btn {
    border: none;
    background-color: transparent;
    text-transform: uppercase;
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 20px;
    color: var(--gray);
}

.trust-us-btn.active {
    color: var(--black);
    border-bottom: 1px solid var(--black);
    padding-bottom: 2px;
}

.trust-us-cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(290px, 1fr));
    gap: 10px;
    margin-top: 20px;
}

.trust-us-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F5F5F5;
    max-width: 420px;
    max-height: 100px;
}

.trust-us-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.trust-us-content {
    display: flex;
    flex-direction: column;
}

.trust-us-info {
    margin-left: auto;
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-us-info-number {
    font-size: 45px;
    font-family: 'Helvetica Neue Light', sans-serif;
    font-weight: 300;
}

.trust-us-info-text {
    color: var(--gray);
    max-width: 340px;
}


/* Адаптив секции "Нам доверяют" */

@media (max-width: 1700px) {
    .trust-us {
        padding: 80px 60px;
    }

    .trust-us-info-text {
        font-size: 16px;
        max-width: 275px;
    }
}

@media (max-width: 1500px) {
    .trust-us {
        padding: 60px 40px;
    }
}

@media (max-width: 1350px) {
    .trust-us-btn {
        font-size: 18px;
    }

    .trust-us-info-number {
        font-size: 36px;
    }

    .trust-us-info-text {
        font-size: 14px;
        max-width: 185px;
    }

    .trust-us-card {
        max-height: 80px;
    }
}

@media (max-width: 1270px) {
    .trust-us-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-us-card {
        max-width: 100%;
        width: 100%;
        max-height: 100px;
    }

    .trust-us-info {
        margin-left: 0px;
    }

    .trust-us-info-text {
        max-width: 255px;
    }
}

@media (max-width: 700px) {
    .trust-us {
        padding: 60px 16px;
    }

    .trust-us-card {
        max-height: 80px;
    }

    .trust-us-info-number {
        font-size: 28px;
    }

    .trust-us-info-text {
        max-width: 100%;
    }
}

@media (max-width: 500px) {
    .trust-us-card {
        max-height: 60px;
    }
}



/* Секция "Блог" */

.blog {
    background-color: #fff;
    color: var(--black);
    padding: 80px;
}

.blog-content {
    position: relative;
    z-index: 2;
}

.blog-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0px;
}

.blog-card {
  border-right: 1px solid #A3A3A3;
  border-bottom: 1px solid #A3A3A3;
  padding: 16px;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.blog-card:nth-child(-n+4) {
  border-top: 1px solid #A3A3A3;
}

.blog-card:nth-child(4n+1) {
  border-left: 1px solid #A3A3A3;
}

.blog-card:hover {
    background-color: var(--black);
    color: #fff;
}

.blog-card:hover .blog-card-date,
.blog-card:hover .blog-card-tags p {
    color: var(--gray);
}


.blog-card-image {
    width: 100%;
    height: 186px; 
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
}

.blog-card-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1 1 auto;
}

.blog-card-image-banner {
    position: absolute;
    top: 8px;
    left: 8px;
    background-color: #F5F5F5;
    padding: 0px 49px;
    border: 1px solid #C1C1C1;
}

.blog-card-title {
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 20px;
    margin-bottom: 8px;
    max-width: 338px;
    width: 100%;

    display: -webkit-box;        
    -webkit-line-clamp: 3;       
    -webkit-box-orient: vertical; 
    overflow: hidden;            
    text-overflow: ellipsis;    
}


.blog-card-desc {
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 16px;

    display: -webkit-box;        
    -webkit-line-clamp: 3;       
    -webkit-box-orient: vertical; 
    overflow: hidden;            
    text-overflow: ellipsis;     
}

.blog-card-date {
    color: var(--gray);
    font-family: 'Helvetica Neue Light', sans-serif;
    font-size: 16px;
    padding: 20px 0px;
}

.blog-card-tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.blog-card-tags p {
    color: var(--red);
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 16px;
    text-transform: uppercase;
}

.blog-watch-all-btn {
    white-space: nowrap;
    margin-top: 32px;
    width: 100%;
}

/* Адаптив секции "Блог" */

@media (max-width: 1700px) {
    .blog {
        padding: 80px 60px;
    }
}

@media (max-width: 1500px) {
    .blog {
        padding: 60px 40px;
    }
}

@media (max-width: 1350px) {
    .blog-card-title {
        font-size: 18px;
    }

    .blog-card-desc,
    .blog-card-date {
        font-size: 14px;
    }

    .blog-card-date {
        padding: 16px 0px 24px 0px;
    }

    .blog-card-tags p {
        font-size: 14px;
    }

    .blog-card {
        padding: 12px;
    }

    .blog-card-image {
        height: 152px;
    }

    .blog-watch-all-btn {
        font-size: 14px !important;
    }

    .blog-watch-all-btn svg {
        flex-shrink: 0;
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 1270px) {
    .blog-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .blog-card-image {
        height: 295px;
    }

    .blog-card:nth-child(-n+4) {
        border: none;
    }

    .blog-card {
        border: 1px solid #A3A3A3 !important;
    }
}

@media (max-width: 900px) {
    .blog-cards {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 700px) {
    .blog {
        padding: 60px 16px;
    }
}

@media (max-width: 500px) {
    .blog-card-image {
        height: 175px;
    }
}




/* Секция "Контакты" */

.contacts {
    background-color: #fff;
    color: var(--black);
    padding: 80px;
}   

.contacts-main-page {
    padding-bottom: 40px !important;
}

@media (max-width: 1350px) {
    .contacts-main-page {
        padding-bottom: 30px !important;
    }
}

.contacts-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: flex-end;
    gap: 32px;
}

.contacts-content > * {
  min-width: 0;
}

.contacts-card-links {
  display: flex;
  gap: 8px;
}

.contacts-card-links a {
    color: #000;
}

a svg .icon-bg {
  transition: fill 300ms ease;
  fill: #1A1A1A; 
}


a:hover svg .icon-bg {
  fill: var(--red);
}

.contacts-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 10px;
    border-top: 1px solid #C1C1C1;
    padding: 16px 12px;
}

.contacts-card:last-child {
    border-bottom: 1px solid #C1C1C1;
}

.contacts-card-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.download-link {
    white-space: nowrap;
}

.contacts-card-left p {
    color: var(--gray);
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 16px;    
}

.contacts-card-right p,
.contacts-card-right a {
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 18px;    
    display: flex;
    gap: 6px;
    transition: all 0.3 ease;
}

.contacts-card-right a:hover {
    color: var(--red);
}

.contacts-card-right a span {
    color: var(--gray) !important;
}

/* Адаптив секции "Контакты" */

@media (max-width: 1700px) {
    .contacts {
        padding: 80px 60px;
    }
}

@media (max-width: 1500px) {
    .contacts {
        padding: 60px 40px;
    }
}

@media (max-width: 1350px) {
    .contacts-content {
        gap: 20px;
    }

    .contacts-card {
        padding: 12px;
    }
}

@media (max-width: 1270px) {
    .contacts-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 700px) {
    .contacts {
        padding: 60px 16px;
    }

    .contacts-card {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .contacts-card-right p, .contacts-card-right a {
        font-size: 14px;
    }

    .contacts-card-right {
        gap: 20px;
    }

    .contacts-card {
        padding: 8px;
    }

    .download-link svg {
        flex-shrink: 0;
        width: 14px;
        height: 14px;
    }
}


/* Секция "Оставить заявку" */

.get-contact {
    background-color: #fff;
    color: var(--black);
    padding: 80px;
}

.get-contact .contacts-content {
    gap: 0px !important;
}

.get-contact .contacts-content-head {
    grid-column: 1 / -1;
}

.get-contact .documents-title{
  max-width: 100%;
  width: 100%;
  padding-bottom: 0px;
}

.get-contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.get-contact-info-card {
    display: flex;
    align-items: center;
    gap: 12px;
}

.get-contact-info-card-text {
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 20px;
    max-width: 750px;
}

.get-contact-info-card svg {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
}

.get-contact-form input {
    border: none;
    background-color: transparent;
    border-bottom: 1px solid var(--gray);
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 16px;
    color: var(--gray);
    width: 100%;
    outline: none;
    padding: 21px 0px 12px 20px;
}

.get-contact-form input::placeholder {
    color: var(--gray);
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 16px;
}

.get-contact-form textarea {
    border: none;
    background-color: transparent;
    border-bottom: 1px solid var(--gray);
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 16px;
    color: var(--black);
    width: 100%;
    outline: none;
    padding: 21px 20px 12px 20px;
    resize: none;
    min-height: 134px;
}

.get-contact-form textarea::-webkit-scrollbar {
  width: 4px;
  border-radius: 0px !important;
}

.get-contact-form textarea::-webkit-scrollbar-track {
  background-color: #E9E9E9;
  margin-top: 12px;   
  margin-bottom: 12px;
  border-radius: 0px !important;
}

.get-contact-form textarea::-webkit-scrollbar-thumb {
  background-color: #A3A3A3;
  border-radius: 0px !important;
}

.kp-popup .get-contact-form textarea {
    min-height: 90px !important;
}

.get-contact-form-second-line {
    display: flex;
    gap: 10px;
}

.get-contact-attach-file {
    position: relative;
    margin-top: 16px;
    display: inline-flex;
    gap: 10px;
    align-items: flex-start; 
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
}

.get-contact-attach-file svg {
    flex: 0 0 auto;          
    position: relative;     
    z-index: 2;             
}

.get-contact-attach-file-text {
    position: relative;
    display: inline-block;    
    vertical-align: top;
    padding-bottom: 10px;      
    color: var(--black);
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 18px;
    line-height: 1.2;
    z-index: 1;
}

.get-contact-attach-file-text::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 100%;
    background-color: var(--black);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.28s ease;
    z-index: 0;                
}

.get-contact-attach-file:hover {
    color: var(--black);
}

.get-contact-attach-file:hover .get-contact-attach-file-text::after,
.get-contact-attach-file:focus-visible .get-contact-attach-file-text::after {
    transform: scaleX(1);
}

.get-contact-attach-file:hover .get-contact-attach-file-text,
.get-contact-attach-file:focus-visible .get-contact-attach-file-text {
    color: #D51A1A; 
}

.get-contact-attach-file:hover .get-contact-attach-file-text span,
.get-contact-attach-file:focus-visible .get-contact-attach-file-text span {
    color: var(--gray);
}

.get-contact-attach-file:hover svg,
.get-contact-attach-file:focus-visible svg {
    color: #D51A1A;
    fill: currentColor; 
}

.get-contact-attach-file:focus-visible {
    outline: none;
}

.get-contact-attach-file-text {
    color: var(--black);
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.get-contact-attach-file-text span {
    color: var(--gray);
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 14px;
}

.accept-politics {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.accept-politics p {
    color: var(--black);
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 16px;
}

.accept-politics p span {
    border-bottom: 1px solid var(--black);
    transition: all 0.3s ease;
}

.accept-politics p span:hover {
    border-bottom: 1px solid #D51A1A;
}

.accept-politics p span a:hover {
    color: var(--red);
}

.accept-politics-error {
    color: var(--error);
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 14px;
    line-height: 120%;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    margin-top: 0;
    visibility: hidden;
    transition: opacity 280ms ease, max-height 280ms ease, margin-top 280ms ease, visibility 0ms linear 280ms;
}

.accept-politics-error.visible {
    opacity: 1;
    max-height: 120px; 
    visibility: visible;
    transition: opacity 280ms ease, max-height 280ms ease, margin-top 280ms ease, visibility 0ms linear 0ms;
}

.custom-checkbox {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.custom-checkbox input {
  display: none;
}

.checkbox-img {
  width: 20px;
  height: 20px;
  border: 1px solid #C1C1C1;
  background-color: #F5F5F5; 
  transition: all 0.3s ease;
}

.custom-checkbox input:checked + .checkbox-img {
  background-color: #F5F5F5; 
  position: relative;
}

.custom-checkbox input:checked + .checkbox-img::after {
  content: "";
  position: absolute;
  top: 40%;
  left: 50%;
  width: 6px;
  height: 12px;
  border: solid var(--black);
  border-width: 0 2px 2px 0;
  transform: translate(-50%, -50%) rotate(45deg);
}

.send-form-btn {
    width: 100%;
}

.get-contact-right-side {
    margin-top: 32px;
    margin-left: 60px;
}

.attach-ui { 
    margin-top: 12px; 
}

.attached-file-title {
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 14px; 
    letter-spacing: -0.02em;
    color: var(--black);
    opacity: 0;
    transition: opacity 220ms ease;
}

.attached-file-title.visible {
  opacity: 1;
}

.attached-files { 
    margin-top: 12px; 
    display:flex; 
    flex-direction:column; 
    gap: 8px; 
}

.attached-file {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;

  opacity: 0;
  transition: opacity 220ms ease;
}

.attached-file.visible {
  opacity: 1;
}

.attached-file.removing {
  opacity: 0;
}

.upload-file-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.file-size {
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 16px;
    color: var(--gray);
}

.upload-file-right {
  display: flex;
  align-items: center;
  gap: 16px;       
  flex-shrink: 0;  
}

.upload-file-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 20px; 
}

.upload-file-left {
  flex: 1 1 auto;   
  min-width: 0;     
}

.attached-file .file-name {
  font-family: 'Helvetica Neue Regular', sans-serif;
  font-size: 16px;
  line-height: 130%;
  color: var(--gray);

  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.attached-file .remove-file {
  border: none;
  cursor: pointer;
  background-color: transparent;
  padding: 0;
  color: var(--black); 
  transition: color 0.3s ease;
}

.attached-file .remove-file:hover {
  color: var(--red)
}

.attached-file .remove-file svg {
  vertical-align: middle;   
}

.get-contact-attach-file {
     cursor: pointer; 
}

.get-contact-form .send-form-btn {
    margin-top: 20px;
}

input::placeholder {
    color: #8A8A8A !important;
    transition: color 0.4s ease;
}

input.error::placeholder {
    color: var(--red) !important;
}

.custom-checkbox input + .checkbox-img {
  box-shadow: 0 0 0 0px var(--red);
  transition: all 0.3s ease;
}

.custom-checkbox input.error + .checkbox-img {
  border: 1px solid var(--red);
}


/* Адаптив секции "Оставить заявку" */

@media (max-width: 1700px) {
    .get-contact {
        padding: 80px 60px;
    }
}

@media (max-width: 1500px) {
    .get-contact {
        padding: 60px 40px;
    }

    .get-contact-right-side {
        margin-left: 48px;
    }
}

@media (max-width: 1350px) {
    .get-contact-form input::placeholder {
        font-size: 14px;
    }
    
    .get-contact-attach-file-text {
        font-size: 16px;
    }

    .accept-politics {
        margin-bottom: 6px;
    }

    .accept-politics p {
        font-size: 14px;
    }

    .send-form-btn {
        font-size: 14px !important;
    }

    .get-contact-info-card svg {
        width: 48px;
        height: 48px;
    }

    .get-contact-info-card-text {
        font-size: 18px;
    }

    .get-contact-right-side {
        margin-top: 24px;
    }

    .upload-file-right {
        gap: 8px;
    }

    .attached-file .file-name,
    .file-size {
        font-size: 14px;
    }

    .get-contact-form textarea {
        min-height: 91px;
    }
}

@media (max-width: 1270px) {
    .get-contact-right-side {
        margin-left: 0px;
        margin-top: 24px;
    }
}

@media (max-width: 700px) {
    .get-contact {
        padding: 60px 16px;
    }

    .get-contact-attach-file-text {
        font-size: 14px;
    }

    .red-btn {
        padding: 16px;
    }

    .get-contact-info-card svg {
        width: 40px;
        height: 40px;
    }

    .get-contact-info-card-text {
        font-size: 16px;
    }

    .get-contact-form-second-line {
        flex-direction: column;
        gap: 0px;
    }

    .get-contact-form .send-form-btn {
        margin-top: 16px;
    }

    .accept-politics-error {
        font-size: 13px;
    }
}

.attached-files .file-error {
  color: var(--red);
  font-family: 'Helvetica Neue Regular', sans-serif;
  font-size: 16px;
  padding: 8px;
  border-radius: 6px;
  background: rgba(255, 0, 0, 0.04); 
  border: 1px solid rgba(255, 0, 0, 0.12);
  box-sizing: border-box;
}

.attached-files .file-error.flash {
  animation: flashErr 420ms ease;
}

@keyframes flashErr {
  0%   { transform: translateY(-2px); opacity: 0.95; }
  50%  { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(-1px); opacity: 0.98; }
}

.file-name.error-text {
  color: var(--red);
  font-weight: 500;
}

/* Footer */

.footer {
    background-color: #fff;
    color: var(--black);
    padding: 40px 80px;
    padding-bottom: 0px;
    position: relative;
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-first-line {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-bottom: 30px;
}

.footer-first-line-right-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: flex-end;
    gap: 12px;
}   

.footer-address,
.footer-phone {
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 28px;
    line-height: 110%;
    transition: all 0.3s ease;
}

.footer-address:hover,
.footer-phone:hover {
    color: var(--red);
}

.footer-second-line {
    border-top: 1px solid #E9E9E9;
    border-bottom: 1px solid #E9E9E9;
    padding: 24px 0px;
}

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

.footer-links a {
    align-self: flex-start;
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 16px;
    line-height: 130%;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--red);
}

.footer-second-line {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.footer-second-line-second-column,
.footer-second-line-last-column {
    padding-top: 15px;
}

.footer-social-links a {
  display: inline-flex;        
  justify-content: center;
  align-items: center;
  width: 40px;                  
  height: 40px;
  border-radius: 50%;            
  background-color: var(--black);    
  transition: all 0.3s ease;   
}

.footer-social-links a:hover {
  background-color: var(--red);
}

.footer-social-links svg {
  width: 20px;
  height: 20px;
}

.footer-last-line {
    padding-top: 32px;
    padding-bottom: 42px;
}

.footer-last-line p {
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 20px;
    max-width: 778px;
    width: 100%;
    margin-bottom: 12px;
}

.footer-social-links {
    margin-top: 20px;
    display: flex;
    gap: 8px;
}

.footer-email-link {
    margin-top: 12px;
    width: 100%;
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: clamp(24px, 7.2vw, 140px); 
    color: #CDCDCD;
    border-bottom: clamp(2px, 0.5vw, 6px) solid #CDCDCD;
    transition: all 0.3s ease;
}

.footer-email-link:hover {
    color: #912D29;
    border-bottom: 6px solid #912D29;
}

.footer-copyright {
    border-top: 1px solid #E9E9E9;
    padding: 25px 0px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-copyright-two-column,
.footer-copyright-three-column {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-copyright-first-column p {
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 16px;
    line-height: 130%;
}

.footer-copyright-two-column a,
.footer-copyright-three-column a {
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 16px;
    line-height: 130%;
    transition: all 0.3s ease;
}

.footer-copyright-two-column a:hover,
.footer-copyright-three-column a:hover {
    color: var(--red);
}

.footer-copyright-four-column p {
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 14px;
    line-height: 120%;
    color: var(--gray);
    max-width: 370px;
}


/* Адаптив Footer */

@media (max-width: 1700px) {
    .footer {
        padding: 40px 60px;
        padding-bottom: 0px;
    }
}

@media (max-width: 1500px) {
    .footer {
        padding: 45px 40px;
        padding-bottom: 0px;
    }

    .footer-address, .footer-phone {
        font-size: 24px;
    }

    .footer-copyright-two-column a, .footer-copyright-three-column a,
    .footer-copyright-first-column p {
        font-size: 14px;
    }
}

@media (max-width: 1350px) {
    .footer-first-line-left-side img {
        max-width: 418px;
        max-height: 68px;
        width: 100%;
        height: 100%;
    }

    .footer-links a {
        font-size: 14px;
    }

    .footer-last-line p {
        font-size: 18px;
    }

    .footer-last-line {
        padding: 24px 0px; 
    }

    .footer-copyright {
        padding-top: 16px;
    }

    .footer-social-links a {
        width: 32px;
        height: 32px;
    }

    .footer-social-links svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 1270px) {
    .footer-copyright {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .footer-copyright-four-column p {
        max-width: 100%;
    }
}

@media (max-width: 1100px) {
    .footer-first-line {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 900px) {
    .footer-second-line-transparent-column {
        display: none;
    }

    .footer-second-line {
        gap: 10px;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .footer-second-line-second-column, .footer-second-line-last-column {
        padding-top: 0px;
    }

    .footer-copyright {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-address, .footer-phone {
        font-size: 20px;
    }
}

@media (max-width: 700px) {
    .footer {
        padding: 40px 16px;
        padding-bottom: 0px;
    }

    .footer-first-line-left-side img {
        max-width: 343px;
        max-height: 56px;
        width: 100%;
        height: 100%;
    }

    .footer-first-line-right-side {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .footer-address br {
        display: none;
    }

    .footer-first-line {
        padding-bottom: 24px;
    }

    .footer-social-links a {
        width: 40px;
        height: 40px;
    }

    .footer-social-links svg {
        width: 20px;
        height: 20px;
    }

    .footer-last-line p {
        font-size: 16px;
    }

    .footer-second-line-second-column {
        grid-column: 2;        
        justify-self: end;    
        text-align: right;   
    }

    .footer-second-line-second-column .footer-links {
        align-items: flex-end;
    }

    .footer-second-line-second-column .footer-links a {
        align-self: flex-end;
    }
}

@media (max-width: 450px) {
    .footer-second-line {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .footer-second-line-second-column {
        grid-column: 1;
        justify-self: start;
        text-align: left;
    }

    .footer-second-line-second-column .footer-links {
        align-items: flex-start;
    }

    .footer-second-line-second-column .footer-links a {
        align-self: flex-start;
    }

    .footer-second-line-first-column {
        margin-bottom: 8px;
    }

    .footer-links {
        gap: 16px;
    }

    .footer-social-links {
        margin-top: 24px;
    }
}











/* Страница mdk.html */

/* Главный баннер */

.mdk-main {
    color: var(--black);
    background-color: #fff;
    padding: 80px;
    padding-top: 147px;
    padding-bottom: 90px;
}

.mdk-main-content {
    position: relative;
    z-index: 2;
}

.mdk-main-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Helvetica Neue Light', sans-serif;
    font-size: 45px;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.breadcrumb-container {
    white-space: nowrap;
    margin-bottom: 40px;
}

.breadcrumb ul {
  list-style: none;
  display: flex;
  gap: 8px;
  padding: 0;
  margin: 0;
  overflow-x: auto;
  scrollbar-width: none; 
  -ms-overflow-style: none;
}

.breadcrumb ul::-webkit-scrollbar {
  display: none;
}

.breadcrumb li {
  display: flex;
  align-items: center;
}

.breadcrumb-container .breadcrumb li + li::before {
  content: "/";
  margin-right: 6px;
  color: var(--black); 
}

.breadcrumb-container .breadcrumb ul li {
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 14px;
    line-height: 120%;
    color: var(--gray);
}

.breadcrumb-container .breadcrumb ul li .active {
    color: var(--black);
}

.breadcrumb-container-white .breadcrumb ul li {
    color: #838383;
}

.breadcrumb-container-white .breadcrumb li + li::before {
  color: #fff; 
}

.breadcrumb-container-white .breadcrumb ul li .active {
    color: #fff;
}

.mdk-main-first-line {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 0px;
}

.mdk-main-first-line-left-side {
    position: relative; 
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.mdk-main-first-line-left-side img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
}

.mdk-navigation-buttons {
    position: absolute;
    bottom: 20px;  
    right: 20px;   
    display: flex;
    gap: 12px;     
}

.mdk-navigation-buttons button {
    background: #fff;
    border: 1px solid #CFCFCF;
    padding: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    transition: background 0.2s ease;
    
}

.mdk-navigation-buttons button:hover {
    background: #f5f5f5;
}
.mdk-main-advantages-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mdk-main-advantages-card {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mdk-main-advantages-card p {
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 20px;
}

.mdk-main-advantages-card svg {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
}

.mdk-main-last-line {
    margin-top: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0px;
}

.mdk-main-info-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 32px;
}

.mdk-main-info-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 16px;   
}

.mdk-main-info-card:not(:nth-last-child(-n+2)) {
    border-bottom: 1px solid #e9e9e9;
}

.mdk-main-info-card-title {
    white-space: nowrap;
    font-family: 'Helvetica Neue Light', sans-serif;
    font-size: 45px;
    font-weight: 300;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mdk-main-info-card-desc {
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 18px;
    max-width: 320px;
}

.mdk-main-contact-banner {
    background-color: #F5F5F5;  
    border: 1px solid #C1C1C1;
    padding: 20px;
}

.mdk-main-contact-banner-link.transparent-btn {
    color: var(--black);
    border: 1px solid var(--black);
}

.mdk-main-contact-banner-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

.mdk-main-contact-banner-info-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mdk-main-contact-banner-info-right svg {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
}

.mdk-main-contact-banner-info-left a {
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 28px;
    line-height: 110%;
    color: #000000;
}

.mdk-main-contact-banner-links {
    display: flex;
    gap: 12px;
}

.mdk-main-contact-banner-link {
    padding: 17.5px;
    width: 100%;
    white-space: nowrap;
}

.mdk-main-first-line-right-side {
    padding-left: 32px;
}

/* Адаптив главного баннера на странице МДК */

@media (max-width: 1700px) {
    .mdk-main {
        padding: 60px;
        padding-top: 147px;
        padding-bottom: 90px;
    }
}

@media (max-width: 1500px) {
    .mdk-main {
        padding: 60px 40px;
        padding-top: 140px;
    }

    .mdk-main-info-card:nth-child(2n) {
        padding-left: 10px;
    }
}

@media (max-width: 1350px) {
    .breadcrumb-container {
        margin-bottom: 32px;
    }

    .mdk-main-title {
        font-size: 36px;
    }

    .mdk-main-first-line-left-side {
        padding-right: 0px;
    }

    .mdk-main-first-line-right-side {
        padding-left: 32px;
    }

    .mdk-main-advantages-card p {
        font-size: 18px;
    }

    .mdk-main-info-card-title {
        font-size: 36px;
    }

    .mdk-main-info-card-desc {
        font-size: 16px;
    }

    .mdk-main-contact-banner-info-left a {
        font-size: 24px;
    }

    .mdk-main-contact-banner-info-right svg {
        width: 40px;
        height: 40px;
    }

    .guarantee-image-navigations button {
        max-width: 48px;
        max-height: 48px;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 1270px) {
    .mdk-main-contact-banner-links {
        flex-direction: column;
        gap: 12px;
    }
    
    .mdk-main-first-line-right-side {
        padding-left: 20px;
    }

    .mdk-main {
        padding-top: 95px;
    }
}

@media (max-width: 1100px) {
    .mdk-main-first-line {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mdk-main-first-line-right-side {
        padding-left: 0px;
    }

    .mdk-main-advantages-cards {
        gap: 20px;
    }

    .mdk-main-advantages-card p {
        font-size: 16px;
    }

    .mdk-main-last-line {
        display: flex;
        flex-direction: column-reverse; 
        gap: 40px; 
    }

    .mdk-main-last-line {
        margin-top: 40px;
    }

    .mdk-main-info-card:nth-child(2n) {
        padding-left: 0px;
    }

    .mdk-main-info-card:nth-child(2n+1) {
        padding-right: 30px;
    }
}

@media (max-width: 800px) {
    .mdk-main-contact-banner-info {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 700px) {
    .mdk-main {
        padding: 60px 16px;
        padding-top: 92px;
    }
    
    .breadcrumb-container {
        margin-bottom: 20px;
    }

    .mdk-main-title {
        font-size: 28px;
    }

    .guarantee-image-navigations button {
        max-width: 42px;
        max-height: 42px;
    }

    .mdk-main-advantages-card svg {
        width: 40px;
        height: 40px;
    }

    .mdk-main-info-card-title {
        font-size: 32px;
    }

    .mdk-main-info-card-title svg {
        flex-shrink: 0;
        width: 20px;
        height: 20px;
    }

    .mdk-main-info-card {
        gap: 4px;
    }

    .mdk-main-info-card-desc {
        font-size: 14px;
    }

    .mdk-main-contact-banner-info-left a {
        font-size: 20px;
    }

    .mdk-main-contact-banner-links a {
        font-size: 14px !important;
        padding: 15.5px !important;
    }

    .mdk-main-contact-banner {
        padding: 16px;
    }
}

@media (max-width: 370px) {
    .mdk-main-title {
        font-size: 24px;
    }
}






/* Секция "Производим" на странице МДК */

.mdk-we-produce {
    background-color: var(--black);
    background-image: url(../images/we-produce-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 90px 80px;
}

.mdk-we-produce-content {
    position: relative;
    z-index: 2;
}

.mdk-we-produce-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}

.mdk-we-produce-rigth-side {
    position: relative;
    width: 100%;
    max-width: 835px;
    aspect-ratio: 835 / 473; 
    max-height: 473px;     
    overflow: hidden;
    display: block; 
}

.mdk-we-produce-rigth-side img.mdk-we-produce-preview {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    opacity: 0;
    transition: opacity 380ms ease; 
    will-change: opacity;
    pointer-events: none;
    background-color: transparent;
    border: none;
    z-index: 1;
}

.mdk-we-produce-rigth-side img.mdk-we-produce-preview.mdk-visible {
    opacity: 1;
    z-index: 2;
}

.mdk-we-produce-rigth-side img.mdk-we-produce-preview.mdk-back {
    z-index: 1;
}


.mdk-we-produce-title {
    font-size: 45px;
    text-transform: uppercase;
    padding-top: 16px;
    padding-bottom: 24px;
    font-family: 'Helvetica Neue Light', sans-serif;
    font-weight: 300;
    max-width: 600px;
    width: 100%;
}

.mdk-we-produce-banners {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    max-width: 700px;
    width: 100%;
}

.mdk-we-produce-banner {
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #282828;
    border: 1px solid #535353;
    padding: 4px 8px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.mdk-we-produce-banner:hover {
    background-color: #fff;
    color: var(--black);
}

/* Адаптив секиции "Производим" на странице МДК */

@media (max-width: 1700px) {
    .mdk-we-produce {
        padding: 90px 60px;
    }
}

@media (max-width: 1500px) {
    .mdk-we-produce {
        padding: 70px 40px;
    }
}

@media (max-width: 1350px) {
    .mdk-we-produce-title {
        font-size: 36px;
    }

    .mdk-we-produce-banner {
        font-size: 16px;
    }
}

@media (max-width: 1280px) {
    .mdk-we-produce {
        background-image: url("../images/we-produce-bg-1280.png");
    }
}

@media (max-width: 1200px) {
    .mdk-we-produce-container {
        grid-template-columns: 1fr;
    }

    .mdk-we-produce-banners {
        max-width: 100%;
    }

    .mdk-we-produce {
        background-image: none;
    }  
    
    .mdk-we-produce-rigth-side {
        max-width: 100%;
    }

    .mdk-we-produce-rigth-side {
        display: none;
    } 
}

@media (max-width: 1200px) and (hover: none) and (pointer: coarse) {
    .mdk-we-produce-rigth-side {
        display: none;
    } 
}

@media (max-width: 700px) {
    .mdk-we-produce {
        padding: 60px 16px;
        background-image: none;
    }

    .mdk-we-produce-title {
        font-size: 28px;
    }

    .mdk-we-produce-banner {
        font-size: 14px;
        padding: 2px 8px;
    }

    .mdk-we-produce-banner svg {
        width: 14px;
        height: 14px;
    }
}









/* Секция "Компания" */

.company {
    color: #fff;
    padding: 90px 80px;
    background-color: var(--black);
    background-image: url(../images/about-us-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.company-content {
    position: relative;
    z-index: 2;
}

.company-desc {
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 20px;
    letter-spacing: -0.02em;
    max-width: 600px;
    width: 100%;
}

.company-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.company-info-left-side {
    padding-right: 20px;
}

.company-info-right-side {
    position: relative;
}

.company-info-right-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.company-advantages-cards {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0px;
}

.company-advantages-card {
    padding: 0px 20px 20px 20px;
    border-left: 1px solid #FFFFFF;
}

.company-advantages-card-head {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 15px;
}

.company-advantages-card-number {
    font-family: 'Black Ops One', sans-serif;
    color: #B8B8B8;
    font-size: 24px;
}

.company-advantages-card-title {
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 20px;
    text-transform: uppercase;
    color: #FFFFFF;
}

.company-advantages-card-desc-text {
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 16px;
    line-height: 130%;
    color: #8A8A8A;
}

/* Адаптив секции "Компания" */

@media (max-width: 1700px) {
    .company {
        padding: 90px 60px;
    }
}

@media (max-width: 1500px) {
    .company {
        padding: 70px 40px;
    }
}

@media (max-width: 1350px) {
    .company-desc {
        font-size: 18px;
    }

    .company-advantages-card-number {
        font-size: 20px;
    }

    .company-advantages-card-title {
        font-size: 18px;
    }

    .company-advantages-card-desc-text {
        font-size: 14px;
    }

    .company-advantages-card {
        padding: 0px 16px 16px 16px;
    }

    .company {
        background-image: none;
    }
}

@media (max-width: 1270px) {
    .company-advantages-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .company-desc {
        font-size: 16px;
    }
}

@media (max-width: 900px) {
    .company-info {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .company-advantages-cards {
        margin-top: 50px;
        grid-template-columns: 1fr;
    }

    .company-advantages-card {
        padding: 0px;
        padding-left: 16px;
    }
}

@media (max-width: 700px) {
    .company {
        padding: 60px 16px;
    }

    .documents-title {
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .company-advantages-card-number {
        font-size: 18px;
    }

    .company-advantages-card-title {
        font-size: 16px;
    }
}







/* Секция "Произвели (наши работы)" */

.our-work {
    background-color: #fff;
    color: var(--black);
}

.our-work-content {
    position: relative;
    z-index: 2;
}

.our-work-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    padding: 80px 80px 32px 80px;
}

.our-work-news .documents-title{
    padding-bottom: 0px;
}


.our-work .our-work-cards.swiper {
  padding-left: 50px;
  padding-right: 50px;
  box-sizing: border-box;
  position: relative;
}

.our-work .our-work-cards .swiper-wrapper {
  display: flex;           
  gap: 0px;              
  align-items: stretch;
}

.our-work .our-work-cards .swiper-slide {
  width: auto;             
  flex: 0 0 auto;          
  max-width: 540px;
  box-sizing: border-box;
}

.our-work .our-work-card {
  cursor: pointer;
  position: relative;
  width: 100%;
  display: block;
  text-decoration: none;
  background: transparent; 
  overflow: hidden;
  transition: all 0.3s ease;
}

.our-work .our-work-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  transform: none;
}

.our-work .our-work-card:hover {
  transform: translateY(-3px);               
  box-shadow: 0 14px 30px rgba(0,0,0,0.08);  
}

.our-work .our-work-card-image img {
  display: block;
  width: 100%;
  height: auto;
}

.our-work-card-info-left-side {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.our-work .our-work-card-info {
  padding: 12px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.our-work .our-work-card-info-title {
  font-family: 'Helvetica Neue Regular', sans-serif;
  font-size: 20px;
  color: var(--black);

  display: -webkit-box;
  -webkit-line-clamp: 3; 
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.our-work .our-work-card-info-desc {
  font-family: 'Helvetica Neue Regular', sans-serif;
  font-size: 16px;
  color: var(--gray);
}

.our-work .our-work-navigation-buttons {
  display: flex;
  gap: 8px;
  align-items: center;
}

.our-work-navigation-buttons button {
  width: 56px;
  height: 56px;
  padding: 0;               
  display: flex;     
  align-items: center;
  justify-content: center;
  box-sizing: border-box;   
  cursor: pointer;
  overflow: hidden;          
}


.our-work-navigation-buttons button svg {
  width: 32px;  
  height: 32px; 
  display: block; 
}

.our-work .our-work-navigation-buttons .is-disabled,
.our-work .our-work-navigation-buttons button[disabled] {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

.our-work-gallery-link-container {
    padding-bottom: 80px;
}

.our-work-gallery-link {
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 32px;
    max-width: 369px;
    white-space: nowrap;
    margin-right: 75px;
    padding: 17.5px;
}





/* Модальное окно для просмотра 3D модели */

.model-modal {
  position: fixed;
  inset: 0;
  display: none;              
  align-items: center;
  justify-content: center;
  z-index: 9999;
  min-width: 320px;
}

.model-modal.open {
  display: flex;
}

.model-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.model-modal-content {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 100%;
  background: #fff;
  overflow: hidden;
  display: flex;
  box-shadow: 0 20px 40px rgba(0,0,0,.25);
}

.model-modal-left {
  position: absolute;
  left: 100px;
  top: 60px;
  z-index: 20;
  pointer-events: none; 
}

.model-modal-title {
  margin: 0;
  font-size: 22px;
  font-family: 'Helvetica Neue Regular', sans-serif;
  font-weight: 300;
  color: var(--gray);
  max-width: 600px;
}

.model-modal-close {
  position: absolute;
  right: 60px;
  top: 60px;
  z-index: 30;
  background: transparent;
  border: none;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.model-modal-close svg path {
  fill: #8a8a8a;              
  transition: fill 0.3s ease; 
}

.model-modal-close:hover svg path {
  fill: var(--red);           
}

.model-modal-viewer {
  position: relative;
  z-index: 25;
  width: 100%;
  height: 100%;
  display: block;
}

body.modal-open {
  overflow: hidden;
}

body.modal-open .news-info-cards.swiper {
  pointer-events: none;
}

model-viewer::part(default-progress-bar) {
  display: none;
}


/* Адаптив секции "Произвели (наши работы)"  */

@media (max-width: 1700px) {
    .our-work-head {
        padding: 80px 60px 32px 60px;
    }

    .our-work-gallery-link {
        margin-right: 60px;
    }
}

@media (max-width: 1500px) {
    .our-work-head {
        padding: 60px 40px 24px 40px;
    }

    .our-work .our-work-cards.swiper {
        padding-left: 40px;
        padding-right: 40px;
    }

    .our-work-gallery-link {
        margin-top: 24px;
        margin-right: 40px;
    }

    .our-work-gallery-link-container {
        padding-bottom: 60px;
    }
}

@media (max-width: 1350px) {
    .our-work-navigation-buttons button {
        width: 48px;
        height: 48px;
    }

    .our-work .our-work-card-info-title {
        font-size: 18px;
    }

    .our-work .our-work-card-info-desc {
        font-size: 14px;
    }

    .our-work-card-info-right-side svg {
        flex-shrink: 0;
        width: 20px;
        height: 20px;
    }

    .our-work-gallery-link {
        font-size: 14px;
        padding: 15.5px;
        max-width: 300px;
    }

    .our-work-gallery-link svg {
        flex-shrink: 0;
        width: 16px;
        height: 16px;
    }

    .model-modal-title {
        font-size: 20px;
    }

    .model-modal-close svg {
        width: 32px;
        height: 32px;
    }

    .model-modal-left {
        top: 60px;
        left: 40px;
    }

    .model-modal-close {
        top: 32px;
        right: 40px;
    }
}

@media (max-width: 700px) {
    .our-work-head {
        padding: 60px 16px 20px 16px;
    }

    .our-work .our-work-cards.swiper {
        padding-left: 16px;
        padding-right: 16px;
    }

    .our-work-gallery-link-container {
        padding: 0px 16px 60px 16px;
    }

    .our-work-gallery-link {
        max-width: 100%;
        width: 100%;
    }

    .our-work-navigation-buttons button {
        width: 32px;
        height: 32px;
    }

    .our-work-navigation-buttons button svg {
        width: 20px;
        height: 20px;
    }

    .our-work .our-work-card-info-title {
        font-size: 16px;
    }

    .model-modal-title {
        font-size: 18px;
        padding-right: 16px;
    }

    .model-modal-close {
        top: 24px;
        right: 16px;
    }

    .model-modal-left {
        top: 65px;
        left: 16px;
    }

    .model-modal-viewer {
        padding: 0px 16px;
    }

    model-viewer {
        padding-top: 110px !important;
        height: 90% !important;
    }
}

@media (max-width: 500px) {
    .our-work-head-right {
        display: none;
    }
}




/* Секция "Каталог" */

.catalog {
    background-color: #fff;
    color: var(--black);
    padding: 80px;
}

.catalog-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.catalog-cards .news-info-card-image {
    max-width: unset;
    aspect-ratio: unset;
    height: 317px;         
    overflow: hidden;
    width: 100%;
    display: block;
}

.catalog-cards .news-info-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;     
    display: block;
}


.catalog-cards .our-work-card {
  position: relative;
  width: 100%;
  display: block;
  text-decoration: none;
  background: transparent; 
  overflow: hidden;
  transition: all 0.3s ease;
}

.catalog-cards .our-work-card .our-work-card-image {
    cursor: pointer;
}

.catalog-cards .our-work-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  transform: none;
}

.catalog-cards .our-work-card:hover {
  transform: translateY(-3px);               
  box-shadow: 0 14px 30px rgba(0,0,0,0.08);  
}

.catalog-cards { 
    display: grid; 
    grid-template-columns: repeat(4,1fr);
    gap: 10px; 
}

.catalog-cards .our-work-card {
  display: flex;
  flex-direction: column;
}

.catalog-cards .news-card-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1 1 auto;
}

.catalog-cards .news-card-info-title {
  display: -webkit-box;
  -webkit-line-clamp: 2; 
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.show-more-btn {
    max-width: 100%;
    width: 100%;
    margin-top: 60px;
    padding: 17.5px;
}

/* Адаптив секции "Каталог" */

@media (max-width: 1700px) {
    .catalog {
        padding: 80px 60px;
    }
}

@media (max-width: 1500px) {
    .catalog {
        padding: 60px 40px;
    }
}

@media (max-width: 1350px) {
    .catalog-cards .news-info-card-image {
        height: 255px;
    }

    .show-more-btn {
        margin-top: 40px;
        font-size: 14px;
        padding: 15.5px;
    }
}

@media (max-width: 1100px) {
    .catalog-cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .catalog-cards .news-info-card-image {
        height: 230px;
    }
}

@media (max-width: 900px) {
    .catalog-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .catalog-cards .news-info-card-image {
        height: 100%;
        max-height: 220px;
    }
}

@media (max-width: 700px) {
    .catalog {
        padding: 60px 16px;
    }

    .show-more-btn {
        margin-top: 32px;
    }
}

@media (max-width: 500px) {
    .catalog-cards .news-info-card-image {
        height: 100%;
        max-height: 170px;
    }
}

@media (max-width: 450px) {
    .catalog-cards .news-info-card-image {
        max-height: 146px;
    }
}


/* Страница "О нас" */

/* Главный баннер */

.main-content-about {
    background-image: url(../images/about-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: static;  
    top: auto;           
    z-index: auto;        
    pointer-events: auto;  
    padding-bottom: 86px;
}

.main-content-first-line-about {
    padding-top: 152px;
}

.main-content-second-line-title-about {
    margin-top: 120px;
    margin-bottom: 32px;
}

.main-content-second-line-about {
    padding-bottom: 25px;
}

.about-us-page {
    background-image: url(../images/about-us-bg.png);
    background-size: cover;
    background-position: top center;
    padding: 40px 80px;
    padding-bottom: 80px;
}


.main-content-about + .about-us-page {
    background-image: none !important;
    background-color: var(--black);
}

.about-us-left-side-page {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.about-us-desc-page {
    max-width: 100%;
}

.abous-us-page-buttons {
    display: flex;
    gap: 10px;
}

.abous-us-page-buttons a {
    width: 100% !important;
    max-width: 100% !important;
}

.abous-us-page-buttons-page button {
    padding: 17.5px;
}

/* Адаптив главного баннера на странице "О нас" */

@media (max-width: 1700px) {
    .about-us-page {
        padding: 40px 60px 80px 60px;
    }
}

@media (max-width: 1597px) {
    .about-us-info-page .about-us-title {
        font-size: 36px;
    }

    .about-us-info-page .about-us-desc {
        font-size: 18px;
    }

    .abous-us-page-buttons-page button {
        font-size: 14px;
        padding: 15.5px;
    }
}

@media (max-width: 1500px) {
    .main-content-about {
        padding-bottom: 80px;
    }

    .about-us-page {
        padding: 20px 40px 90px 40px;
    }
}

@media (max-width: 1430px) {
    .about-us-info-page {
        align-items: flex-end;
        gap: 30px;
    }
}

@media (max-width: 1270px) {
    .main-content-first-line-about {
        padding-top: 95px;
    }

    .main-content-second-line-title-about {
        margin-top: 58px;
    }

    .about-us-info-page .about-us-desc {
        font-size: 16px;
    }

    .about-us-info-page .about-us-title {
        font-size: 34px;
    }
}

@media (max-width: 1100px) {
    .about-us-info-page {
        align-items: center;
    }
}

/* @media (max-width: 1200px) {
    .about-us-info-page {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-us-info-page .about-us-right-side {
        max-width: 100%;
    }
} */

@media (max-width: 950px) {
    .about-us-page {
        background-image: none;
    }

    .abous-us-page-buttons-page button {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 700px) {
    .main-content-second-line-title-about {
        max-width: 500px;
    }

    .main-content-about {
        padding-bottom: 20px;
    }

    .about-us-page {
        padding: 60px 16px;
    }

    .about-us-info-page .about-us-title {
        font-size: 28px;
    }
}

@media (max-width: 500px) {
    .abous-us-page-buttons-page {
        flex-direction: column;
        gap: 12px;
    }
}


/* Секция "Принципы" */

.principles {
    background-color: #fff;
    background-image: url(../images/principles-bg.png);
    background-size: cover;
    background-position: center center;
    color: var(--black);
}

.principles-content {
    padding-top: 90px;
    padding-bottom: 55px;
    padding-left: 520px;
    position: relative;
    z-index: 2;
}

.principles-content .section-name {
    margin-bottom: 16px;
}

.principles-cards {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.principles-title {
    font-family: 'Helvetica Neue Light', sans-serif;
    font-size: 40px;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.principles-desc {
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 18px;
    max-width: 740px;
    width: 100%;
}

.principles-texts {
    margin-top: 24px;
    display: flex;
    gap: 16px;
}

.principles-text {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.principles-text-title {
    max-width: 340px;
    width: 100%;
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 20px;
}

.principles-text-desc {
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 16px;
    max-width: 340px;
    width: 100%;
    line-height: 130%;
}

/* Адаптив секции "Принципы" */

@media (max-width: 1870px) {
    .principles-content {
        padding-bottom: 45px;
        padding-left: 505px;
    }
}

@media (max-width: 1840px) {
    .principles-content {
        padding-bottom: 35px;
        padding-left: 497px;
    }
}

@media (max-width: 1800px) {
    .principles-content {
        padding-bottom: 25px;
        padding-left: 486px;
    }
}

@media (max-width: 1750px) {
    .principles-content {
        padding-bottom: 5px;
        padding-left: 473px;
    }
}

@media (max-width: 1700px) {
    .principles-content {
        padding-top: 105px;
        padding-bottom: 20px;
        padding-left: 460px;
    }
}

@media (max-width: 1660px) {
    .principles-content {
        padding-top: 55px;
        padding-left: 450px;
        max-height: 560px;
    }
}

@media (max-width: 1600px) {
    .principles-content {
        padding-left: 435px;
    }
}

@media (max-width: 1560px) {
    .principles-content {
        padding-left: 422px;
    }
}

@media (max-width: 1515px) {
    .principles-content {
        padding-left: 410px;
    }
}

@media (max-width: 1470px) {
    .principles-content {
        padding-left: 400px;
    }
}

@media (max-width: 1430px) {
    .principles-content {
        padding-left: 385px;
    }
}

@media (max-width: 1370px) {
    .principles-content {
        padding-left: 370px;
    }
}

@media (max-width: 1350px) {
    .principles-title {
        font-size: 32px;
        margin-bottom: 12px;
    }    

    .principles-desc {
        font-size: 16px;
    }

    .principles-content {
        max-height: 523px;
    }

    .principles-content .section-name {
        margin-bottom: 12px;
    }

    .principles-texts {
        margin-top: 4px;
    }

    .principles-text-title {
        font-size: 18px;
    }


    .principles-text-desc {
        font-size: 14px;
    }
}

@media (max-width: 1300px) {
    .principles-content {
        padding-left: 355px;
    }

    .principles-desc {
        max-width: 550px;
    }

    .principles-text-title {
        max-width: 240px;
    }

    .principles-text-desc {
        max-width: 285px;
    }
}

@media (max-width: 1280px) {
    .principles-content {
        padding-left: 350px;
    }
}

@media (max-width: 1250px) {
    .principles-content {
        padding-left: 340px;
    }
}

@media (max-width: 1200px) {
    .principles-content {
        padding-left: 325px;
    }
}
/* 
@media (max-width: 1190px) {
    .principles-content {
        padding-left: 20px;
        max-height: 100%;
    }

    .principles .line {
        display: none;
    }

    .principles-texts {
        flex-direction: column;
    }
} */

@media (max-width: 1170px) {
    .principles-content {
        padding-left: 317px;
    }
}

@media (max-width: 1130px) {
    .principles-content {
        padding-left: 306px;
    }
}

@media (max-width: 1100px) {
    .principles-content {
        padding-left: 295px;
    }
}

@media (max-width: 1050px) {
    .principles-content {
        padding-left: 295px;
    }
}

@media (max-width: 1020px) {
    .principles-content {
        padding-left: 280px;
    }
}

@media (max-width: 1000px) {
    .principles-content {
        padding-left: 270px;
    }
}

@media (max-width: 950px) {
    .principles-content {
        padding-top: 45px;
        padding-left: 40px;
    }

    .principles-text-desc {
        max-width: 425px;
    }

    .principles-cards {
        gap: 40px;
        padding-right: 40px;
    }
    
}

/* @media (max-width: 900px) {
    .principles-content {
        padding-left: 245px;
    }
}

@media (max-width: 860px) {
    .principles-content {
        padding-left: 235px;
    }
} */

@media (max-width: 700px) {
    .principles {
        /* background-image: url("../images/principles-bg-mob.svg");
        background-position: left 10px; */
        background-image: none !important;
        background-color: #fff;
    }

    .principles-content {
        padding: 60px 16px 20px 16px;
        max-height: 100%;
    }

    .principles-title {
        font-size: 24px;
    }

    .principles-desc {
        font-size: 14px;
    }

    .principles-text-title {
        font-size: 16px;
    }

    .principles-texts {
        flex-direction: column;
        gap: 24px;
    }

    .principles-text-desc {
        max-width: 100%;
    }
}


/* Секция "Сильные стороны" */

.strong-sides {
    background-color: var(--black);
    background-image: url(../images/strong-sides-bg.svg);
    background-size: cover;
    background-position: left center;
    color: #fff;
    padding: 90px 80px;
    max-height: 515px;
    height: 100%;
}

.strong-sides-content {
    margin-left: 25%;
    position: relative;
    z-index: 2;
}

.strong-sides-title {
    margin-top: 16px;
    font-family: 'Helvetica Neue Light', sans-serif;
    font-size: 45px;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.strong-sides-banners {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    row-gap: 24px;
    max-width: 860px;
}

.strong-sides-banner {
    display: flex;
    align-items: center;
    gap: 12px;
}

.strong-sides-banner-title {
    max-width: 430px;
    width: 100%;
    font-family: 'Helvetica Neue Light', sans-serif;
    font-size: 20px;
    font-weight: 300;
}

/* Адаптив секции "Сильные стороны" */

@media (max-width: 1500px) {
    .strong-sides {
        padding: 70px 60px 90px 60px;
    }
}

@media (max-width: 1350px) {
    .strong-sides {
        max-height: 441px;
    }

    .strong-sides-title {
        font-size: 36px;
    }

    .strong-sides-banner-title {
        font-size: 18px;
    }
}

@media (max-width: 1100px) {
    .strong-sides-content {
        margin-left: 0%;
    }

    .strong-sides {
        padding: 70px 40px 90px 40px;
    }
    
}

@media (max-width: 700px) {
    .strong-sides {
        padding: 60px 16px;
    }

    .strong-sides-banners {
        grid-template-columns: 1fr;
    }

    .strong-sides {
        max-height: 100%;
    }

    .strong-sides-title {
        font-size: 28px;
    }

    .strong-sides-banner svg {
        flex-shrink: 0;
        width: 40px;
        height: 40px;
    }

    .strong-sides-banner-title {
        font-size: 16px;
    }
}

@media (max-width: 500px) {
    .strong-sides {
        background-image: none;
    }

    .strong-sides-banner-title {
        max-width: 100%;
    }
}




/* Секция "Наше производство" */

.our-production {
    color: var(--black);
    background-color: #fff;
    padding: 80px;
}

.our-production-content {
    position: relative;
    z-index: 2;
}

.our-production-text {
    max-width: 740px;
    width: 100%;
    color: var(--gray);
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 20px;
    letter-spacing: -0.02em;
}

.our-production-info-cards {
    margin-top: 24px;
}

.our-production-info-card {
    padding: 20px 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.4);
}

.our-production-info-card:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.4);
}

.our-production-info-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.our-production-info-card-title {
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 28px;
    font-weight: 300;
    line-height: 110%;
}

.open-our-production-info-card-btn {
    border: none;
    background-color: transparent;
    padding: 0;
    margin: 0;
}

.our-production-info-card-images {
    max-width: 1080px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 16px;
}

.our-production-info-card-images img {
  max-width: 353px;
  max-height: 200px;
  width: 100%;              
  height: auto;          
  display: block;           
  object-fit: cover;              
}

.our-production-info-card-text {
    margin-top: 12px;
    color: var(--gray);
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 16px;
    line-height: 130%;
}

.our-production-info-card {
  cursor: pointer;
  outline: none;
}

.our-production-info-card-open,
.our-production-info-card-open * {
  cursor: default;
}

.our-production-info-card-open {
  height: 0;               
  overflow: hidden;
  transition: height 600ms cubic-bezier(.2,.8,.2,1);
  will-change: height;
  display: none;         
  padding-top: 0;        
}

.open-our-production-info-card-btn {
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.open-our-production-info-card-btn svg .icon-bg-fill {
  fill: #F5F5F5;
  transition: fill 220ms ease;
}

.open-our-production-info-card-btn svg .icon-line {
  fill: #B2B2B2;
  transition: transform 260ms cubic-bezier(.2,.8,.2,1), fill 220ms;
  transform-origin: 50% 50%;
  transform-box: fill-box; 
}

.our-production-info-card-head:hover .open-our-production-info-card-btn svg .icon-line {
  fill: #000 !important;
  transition: fill 300ms ease; 
}

.our-production-info-card-head.is-open .open-our-production-info-card-btn svg .vert {
  transform: scaleY(0);
}

.our-production-info-card-head.is-open .open-our-production-info-card-btn svg .icon-bg {
  fill: #ffffff;
}


.open-our-production-info-card-btn svg .icon-line {
  fill: #B2B2B2; 
  transition: transform 260ms cubic-bezier(.2,.8,.2,1), fill 220ms, opacity 200ms;
  transform-origin: 50% 50%;
  transform-box: fill-box;
  opacity: 1;
}

.our-production-info-card.is-open .open-our-production-info-card-btn svg .vert {
  transform: scaleY(0);
  opacity: 0;        
  fill: #B2B2B2;    
}


.our-production-info-card-head.is-open .open-our-production-info-card-btn svg .vert {
  transform: scaleY(0);
  opacity: 0;
  transition: transform 260ms cubic-bezier(.2,.8,.2,1), opacity 200ms ease;
}

.our-production-info-card-head.is-open .open-our-production-info-card-btn svg .horiz {
  fill: #B2B2B2;
  transition: fill 300ms ease 80ms; 
}

/* Адаптив секции "Наше производство" */

@media (max-width: 1700px) {
    .our-production {
        padding: 80px 60px;
    }
}

@media (max-width: 1500px) {
    .our-production {
        padding: 60px 40px;
    }
}

@media (max-width: 1350px) {
    .card-open-delivery-left-last {
        gap: 20px;
    }

    .our-production-info-card-title {
        font-size: 24px;
    } 

    .our-production-info-card {
        padding: 19px 12px;
    }

    .card-open-delivery-left-top-desc,
    .card-open-delivery-left-last ul li {
        font-size: 18px !important;
    }

    .card-open-delivery-left-bottom-desc {
        font-size: 14px;
    }


    .card-open-delivery-info-card-title {
        font-size: 14px;
    }

    .card-open-delivery-info-card-text {
        font-size: 16px;
    }

    .card-open-delivery-info-card {
        padding: 12px;
    }

    .our-production-text {
        font-size: 18px;
    }

    .our-production-content .we-produce-title {
        margin: 12px 0px;
    }

    .our-production-text {
        max-width: 580px;
    }

    .our-production-info-card-images {
        max-width: 869px;
        margin-top: 12px;
    }

    .our-production-info-card-images img {
        max-width: 283px;
        max-height: 160px;
    }

    .our-production-info-card-text {
        font-size: 14px;
        margin-top: 8px;
    }
}

@media (max-width: 1100px) {
    .card-open-delivery-info-card {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .card-open-delivery-left-last {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media (max-width: 900px) {
    .our-production-info-card-images {
        grid-template-columns: 1fr 1fr;
    }

    .our-production-info-card-images img {
        max-width: 390px;
        max-height: 220px;
    }
}

@media (max-width: 700px) {
    .our-production-info-card-title {
        font-size: 20px;
    }

    .our-production-info-card {
        padding: 12px 8px;
    }

    .open-our-production-info-card-btn svg {
        flex-shrink: 0;
        width: 32px;
        height: 32px;
    }

    .card-open-delivery-left-top-desc {
        font-size: 16px !important;
    }

    .card-open-delivery-info-card {
        padding: 8px;
    }

    .card-open-delivery-info-card-text {
        font-size: 14px;
    }

    .our-production {
        padding: 60px 16px;
    }

    .our-production-info-card-images {
        grid-template-columns: 1fr;
    }

    .our-production-info-card-images img {
        max-width: 100%;
        max-height: 100%;
    }

    .our-production-text {
        font-size: 16px;
        max-width: 100%;
    }
}


/* Секция "Контроль качества" */

.quality-control {
    background-color: #fff;
    color: var(--black);
    padding: 90px 80px 50px 80px;
}

.quality-control-content {
    position: relative;
    z-index: 2;
}

.quality-control-cards-lines {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quality-control-cards-first-line .quality-control-cards {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 10px;
}

.quality-control-cards-second-line .quality-control-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.quality-control-card {
    border: 1px solid #C1C1C1;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 20px 20px 24px 20px;
}

.quality-control-card.quality-control-card-1 {
    background-image: url(../images/quality-control-cards/1.svg);
}

.quality-control-card.quality-control-card-2 {
    background-image: url(../images/quality-control-cards/2.svg);
}

.quality-control-card-icon {
    margin-bottom: 100px;
}

.quality-control-card-title {
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 22px;
    line-height: 110%;
    letter-spacing: -0.02em;
}

/* Адаптив секции "Контроль качества" */

@media (max-width: 1700px) {
    .quality-control {
        padding: 90px 60px 50px 60px;
    }
}

@media (max-width: 1500px) {
    .quality-control {
        padding: 60px 40px 40px 40px;
    }
}

@media (max-width: 1350px) {
    .quality-control-card-title {
        font-size: 20px;
    }

    .quality-control-card {
        padding: 16px;
    }

    .quality-control-card-icon {
        margin-bottom: 60px;
    }
}

@media (max-width: 1100px) {
    /* .quality-control-cards-first-line .quality-control-cards {
        grid-template-columns: 1fr 1fr;
    }

    .quality-control-cards-first-line .quality-control-cards .quality-control-card:last-child {
        grid-column: 1 / -1;
    } */

    .quality-control-cards-first-line .quality-control-cards {
        grid-template-columns: 1fr;
    }

    .quality-control-cards-second-line .quality-control-cards {
        grid-template-columns: 1fr;
    }

    .quality-control-card.quality-control-card-1 {
        background-image: url(../images/quality-control-cards/2.svg);
    }
}

@media (max-width: 700px) {
    .quality-control {
        padding: 60px 16px 20px 16px;
    }

    .quality-control-card-title {
        font-size: 18px;
    }

    .quality-control-card-icon {
        margin-bottom: 32px;
    }
}

@media (max-width: 400px) {
    .quality-control-card.quality-control-card-1,
    .quality-control-card.quality-control-card-2 {
        background-image: url(../images/quality-control-cards/3.svg);
    }
}




/* Секция "Отзывы" */

.reviews {
    background-color: var(--black);
    padding: 90px 80px;
}

.reviews-content {
    position: relative;
    z-index: 2;
}

.reviews-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.reviews-card {
    display: flex;
    gap: 32px;
    background-color: #282828;
    padding: 20px;
    border: 1px solid #535353;
}

.reviews-card-left-side {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 12px;
}

.reviews-card-right-side {
    max-width: 186px;
    min-width: 186px;
    max-height: 260px;
    min-height: 260px;
    width: 100%;
    height: 100%;
}

.reviews-card-right-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviews-card-author {
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 22px;
    line-height: 110%;
    letter-spacing: -0.02em;
    color: var(--gray);
    max-width: 220px;
    margin-bottom: 16px;
}

.reviews-card-text {
  font-family: 'Helvetica Neue Regular', sans-serif;
  font-size: 16px;
  line-height: 130%;
  color: #fff;

  overflow: hidden;             
  will-change: height, opacity; 
  max-height: none;
  height: auto;
}

.reviews-card-text.collapsed {
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
}

.read-more-review-btn svg {
  transition: transform 300ms ease;
  transform-origin: center;
  display: inline-block;
  vertical-align: middle;
}

.read-more-review-btn[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.read-more-review-btn {
    display: inline-flex;       
    align-items: center;
    gap: 6px;
    border: none;
    background-color: transparent;
    color: #fff;
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 18px;
    padding: 0 0 2px 0;      
    cursor: pointer;
    border-bottom: 1px solid #fff; 
    max-width: max-content;     
    white-space: nowrap;        
}

.read-more-reviews-btn {
    margin-top: 32px;
    width: 100%;
}


/* Адаптив секции "Отзывы" */

@media (max-width: 1700px) {
    .reviews {
        padding: 90px 60px;
    }
}

@media (max-width: 1500px) {
    .reviews {
        padding: 70px 40px;
    }
}

@media (max-width: 1350px) {
    .reviews-card-author {
        font-size: 20px;
    }

    .reviews-card-text {
        font-size: 14px;
    }

    .read-more-review-btn {
        font-size: 16px;
    }

    .reviews-card-right-side {
        max-width: 154px;
        min-width: 154px;
        max-height: 216px;
        min-height: 216px;
        width: 100%;
        height: 100%;
    }

    .reviews-card {
        padding: 16px;
    }

    .read-more-reviews-btn {
        margin-top: 24px;
        font-size: 14px !important;
    }

    .read-more-reviews-btn svg {
        flex-shrink: 0;
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 1100px) {
    .reviews-cards {
        grid-template-columns: 1fr;
    }

    .reviews-card {
        justify-content: space-between;
    }

    .reviews-card-text {
        max-width: 750px;
    }
}

@media (max-width: 700px) {
    .reviews {
        padding: 60px 16px;
    }

    .reviews-card-author {
        font-size: 18px;
    }
}

@media (max-width: 500px) {
    .reviews-card {
        flex-direction: column;
        gap: 24px;
    }
}




/* Секция "Сотрудники" */

.team {
    background-color: #fff;
    color: var(--black);
    padding: 90px 80px 40px 80px;
}

.team-content {
    position: relative;
    z-index: 2;
}

.team-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0px;
    border-top: 1px solid #a2a2a2;
}

.team-card {
    padding: 16px 12px;
}

.team-title {
    font-size: 45px;
    text-transform: uppercase;
    padding-top: 16px;
    padding-bottom: 32px;
    font-family: 'Helvetica Neue Light', sans-serif;
    font-weight: 300;
    max-width: 1115px;
    width: 100%;
}

.team-card-name {
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 22px;
    line-height: 110%;
    letter-spacing: -0.02em;
    margin-top: 20px;
    margin-bottom: 12px;

    display: -webkit-box;
    -webkit-line-clamp: 3;  
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.team-card-phone,
.team-card-email {
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 16px;
    line-height: 130%;
}

.team-card-email {
    margin-top: 10px;
}

.team-card-image {
  width: 100%;
  aspect-ratio: 1/1; 
  overflow: hidden;
}

.team-card-image img,
.team-card-image picture,
.team-card-image source {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover; 
}


/* Адаптив секции "Сотрудники" */


@media (max-width: 1700px) {
    .team {
        padding: 90px 60px 40px 60px;
    }
}

@media (max-width: 1500px) {
    .team {
        padding: 60px 40px;
    }
}

@media (max-width: 1350px) {
    .team-title {
        font-size: 36px;
        padding-bottom: 24px;
    }

    .team-card-name {
        font-size: 20px;
    }

    .team-card-phone, .team-card-email {
        font-size: 14px;
    }
}

@media (max-width: 1290px) {
    .team-card-image {
        max-height: 238px;
    }
}

@media (max-width: 1100px) {
    .team-cards {
        grid-template-columns: 1fr 1fr;
    }

    .team-card-image {
        max-height: 350px;
    }

    .team-cards {
        border-top: none;
    }

    .team-card {
        border-top: 1px solid #A3A3A3;
    }
}

@media (max-width: 700px) {
    .team {
        padding: 60px 16px 20px 16px;
    }

    .team-title {
        font-size: 28px;
    }

    .team-card-name {
        font-size: 18px;
        margin-bottom: 8px;
    }
}

@media (max-width: 500px) {
    .team-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 400px) {
    .team-card-image {
        max-height: 274px;
    }
}


/* Страница отзывы */

.mdk-main-reviews {
    background-color: #fff;
    padding: 142px 80px 40px 80px;
}

.reviews-cards-page .reviews-card {
    background-color: #F5F5F5;
    border: 1px solid #C1C1C1;
}

.reviews-cards-page .reviews-card-author {
    color: var(--gray);
}

.reviews-cards-page .reviews-card-text {
    color: var(--black);
}

.reviews-cards-page .read-more-review-btn {
    color: var(--black);
    border-bottom: 1px solid var(--black);
}

.reviews-pagination .disabled {
    opacity: 0.5;
    cursor: default;
    pointer-events: none;
}

.reviews-pagination {
    margin-top: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    
}

.pagination-left-btn,
.pagination-right-btn {
    border: 1px solid #CFCFCF;
    background-color: #F5F5F5;
    width: 56px;
    height: 56px;   
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-left-btn {
    margin-right: 16px;
}

.pagination-right-btn {
    margin-left: 16px;
}

.reviews-pagination-item {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #CFCFCF;
    background-color: #F5F5F5;
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 18px;
    color: #8A8A8A;
    width: 56px;
    height: 56px;
    transition: all 0.3s ease;
}

.reviews-pagination a {
    transition: all 0.3s ease;
}

.reviews-pagination a:hover {
    border: 1px solid var(--black);
}

.reviews-pagination-item.active {
    color: var(--black);
}

/* Адаптив страницы "Отзывы" */

@media (max-width: 1700px) {
    .mdk-main-reviews {
        padding: 142px 60px 40px 60px;
    }
}

@media (max-width: 1500px) {
    .mdk-main-reviews {
        padding: 124px 40px 20px 40px;
    }
}

@media (max-width: 1350px) {
    .reviews-pagination-item {
        width: 48px;
        height: 48px;
    }

    .pagination-left-btn, .pagination-right-btn {
        width: 48px;
        height: 48px;
    }

    .pagination-left-btn svg, .pagination-right-btn svg {
        flex-shrink: 0;
        width: 28px;
        height: 28px;
    }

    .reviews-pagination-item {
        font-size: 16px;
    }

    .reviews-pagination {
        margin-top: 24px;
    }
}

@media (max-width: 1270px) {
    .mdk-main-reviews {
        padding: 95px 40px 20px 40px;
    }
}

@media (max-width: 700px) {
    .mdk-main-reviews {
        padding: 95px 16px 20px 16px;
    }

    .reviews-pagination-item {
        width: 42px;
        height: 42px;
    }

    .pagination-left-btn, .pagination-right-btn {
        width: 42px;
        height: 42px;
    }

    .pagination-left-btn svg, .pagination-right-btn svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 500px) {
    .mobile-hidden {
        display: none;
    }

    .pagination-right-btn {
        margin-left: 26px;
    }
}

/* Модальное окно для просмотра отзыва */

.review-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  z-index: 1200;
  transition: opacity 140ms ease;
}

.review-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 240ms ease;
}

.review-modal-panel {
  position: relative;
  max-width: 820px;
  width: calc(100% - 80px);
  max-height: calc(80vh); 
  background: #ffffff;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
  transform: translateY(12px) scale(0.98);
  opacity: 0;
  padding: 40px 60px;
  box-sizing: border-box;
  border: 1px solid #C1C1C1;
  display: flex;
  flex-direction: column; 
  
}

.review-modal-body {
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch; 
  box-sizing: border-box;
  background: inherit;
  scrollbar-width: none; 
  -ms-overflow-style: none; 
}

.review-modal-body::-webkit-scrollbar {
  display: none; 
}

.review-modal.open {
  pointer-events: auto;
  opacity: 1;
}

.review-modal.open .review-modal-overlay {
  opacity: 1;
}

.review-modal.open .review-modal-panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.review-modal-author {
    font-family: 'Helvetica Neue Light', sans-serif;
    font-size: 22px;
    line-height: 110%;
    letter-spacing: -0.02em;
    color: var(--gray);
    max-width: 250px;
    margin-bottom: 16px;
}

.review-modal-text {
  color: var(--black);
  font-family: 'Helvetica Neue Regular', sans-serif;
  font-size: 16px;
  line-height: 130%;
}

.review-modal-close {
  position: absolute;
  top: -37px;
  right: -30px;
  border: none;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: #222;
}

@media (max-width: 1350px) {
    .review-modal-author {
        font-size: 20px;
        margin-bottom: 16px;
    }
}

@media (max-width: 700px) {
    .review-modal-panel { 
        padding: 24px 16px;  
        width: 100%;
    }

    .review-modal-close {
        right: 10px;
        top: -40px;
    }

    .review-modal {
        align-items: flex-end; 
        justify-content: center;
    }

    .review-modal-author {
        font-size: 18px;
    }
}


/* Модальное окно для просмотра фотографии отзыва */

.image-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  z-index: 1300;
  transition: opacity 140ms ease;
}

.image-modal.open {
  pointer-events: auto;
  opacity: 1;
}

.image-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 240ms ease;
}

.image-modal.open .image-modal-overlay {
  opacity: 1;
}

.image-modal-panel {
  position: relative;
  max-width: none;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  padding: 0;
  box-sizing: border-box;
}


.image-modal-body {
  position: relative;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  padding: 60px 100px;
  box-sizing: border-box;
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
  max-width: min(1200px, calc(100vw - 80px));
  /* max-height: calc(100vh - 80px); */
  max-height: 80vh;
}

.image-modal-caption {
    font-family: 'Helvetica Neue Light', sans-serif;
    font-size: 22px;
    line-height: 110%;
    letter-spacing: -0.02em;
    color: var(--gray);
    margin-bottom: 16px;
}

.image-modal-img,
.image-modal .swiper-slide img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
  transition: transform 220ms cubic-bezier(.2,.9,.2,1), opacity 160ms ease;
  will-change: transform, opacity;
  touch-action: pan-y;
  opacity: 0;
  border: 1px solid #C1C1C1;
  transform-origin: center center;
}


.image-modal-img.loaded,
.image-modal .swiper-slide img.loaded {
  opacity: 1;
}

.image-modal-img.dragging,
.image-modal .swiper-slide img.dragging {
  transition: none;
  cursor: grabbing;
}

.image-modal-close {
  position: absolute;
  top: -40px;
  right: -40px;
  border: none;
  background: transparent;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff; 
  transition: all 0.3s ease;
}

.image-modal-close:hover {
  color: var(--red);
}

.image-modal-close {
  outline: none;     
  box-shadow: none;  
}

.image-modal-close:focus {
  outline: none;
  box-shadow: none;
}

.image-modal-close svg path { fill: currentColor; }

.image-modal .image-modal-nav,
.image-modal-body .image-modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 40; 
  background: transparent;
  padding: 0;
}

.image-modal-body .image-modal-prev { left: 24px; }
.image-modal-body .image-modal-next { right: 24px; }

.image-modal-nav.swiper-button-disabled {
  opacity: 0.3;
  pointer-events: none;
  cursor: default;
  box-shadow: none; 
}

.image-modal .swiper {
  width: 45vh;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; 
}

.image-modal .swiper-wrapper {
  display: flex;
  align-items: center;  
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
}

.image-modal .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto; 
}


.image-modal .swiper-slide img {
  max-width: 100%;
  max-height: 80vh; 
  width: auto;
  height: auto;
  object-fit: contain; 
}

/* Адаптив модального окна для просмотра фотографии отзыва */

@media (max-width: 1350px) {
    .image-modal-nav svg {
        flex-shrink: 0;
        width: 48px;
        height: 48px;
    }

    .image-modal-body {
        padding: 60px 80px;
    }

    .image-modal-caption {
        font-size: 20px;
        max-width: 260px;
    }

    .image-modal-body .image-modal-prev {
        left: 14px;
    }

    .image-modal-body .image-modal-next {
        right: 14px;
    }

    .image-modal .swiper {
        width: 40vh;
    }
}

@media (max-height: 970px) {
    .image-modal-body {
        padding: 40px 80px;
    }

    .image-modal-body .image-modal-next {
        right: 12px;
    }

    .image-modal-body .image-modal-prev {
        left: 12px;
    }

    .image-modal-caption {
        font-size: 20px;
    }
}

@media (max-width: 800px) {
    .image-modal .swiper {
        width: 70%;
    }

    .image-modal-body {
        padding: 40px 80px;
    }
}

@media (max-height: 720px) {
    .image-modal-body {
        padding: 20px 90px;
    }

    .image-modal-caption {
        font-size: 18px;
    }
}

@media (max-width: 650px) {
    .image-modal {
        align-items: flex-end; 
        padding: 0px; 
    }

    .image-modal-panel {
        width: 100%;
    }

    .image-modal-close {
        right: 0px;
    }

    .image-modal-body {
        width: 100%; 
        max-width: 100%;
        box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
        overflow: hidden;
    }

    .image-modal-body {
        padding: 30px;
    }

    .image-modal .swiper {
        width: 65%;
    }


    .image-modal-caption {
        font-size: 18px;
    }
}

@media (max-width: 600px) {
    .image-modal-nav svg {
        width: 42px;
        height: 42px;
    }
}


@media (max-width: 500px) {
    
    .image-modal .image-modal-nav, 
    .image-modal-body .image-modal-nav {
        top: 7%; 
        transform: translateY(-50%);
    }

    .image-modal-body .image-modal-next {
        right: 80px;
    }

    .image-modal-body .image-modal-prev {
        right: 140px;
        left: unset;
    }

    .image-modal-body {
        padding: 16px;
    }

    .image-modal .swiper {
        width: 70%;
    }

    .image-modal .image-modal-nav, 
    .image-modal-body .image-modal-nav {
        top: 7%; 
    }

    .image-modal-body .image-modal-next {
        right: 16px;
    }

    .image-modal-body .image-modal-prev {
        right: 70px;
    }
}

@media (max-height: 460px) {
    .image-modal-body {
        padding: 20px 40px;
    }
}

@media (max-height: 450px) {
    .image-modal-body {
        padding: 20px 3px;
    }

    .image-modal-caption {
        display: none;
    }
}

@media (max-width: 420px) {
    .image-modal-caption {
        max-width: 230px;
    }    
}

@media (max-width: 400px) {
    .image-modal .swiper {
        width: 100%;
    }
}

@media (max-width: 360px) {
    .image-modal-caption {
        max-width: 200px;
    }    

    .image-modal .image-modal-nav, .image-modal-body .image-modal-nav {
        top: 9%;
    }
}







/* Страница "Контакты" */

.contacts-page {
    background-image: none;
    background-color: transparent;
    padding: 0px;
}

.maps {
  width: 100%;
  height: 402px;      
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

/* Отключаем стили Яндекс Карты */

.maps [class*="ground-pane"] {
    filter: grayscale(90%) brightness(85%) contrast(120%);
}

/* Отключаем ненужные надписи */
[class*="copyrights-pane"] {
    display: none !important;
}

/* Сброс стилей дефолтного балуна */
.ymaps-b-balloon,
.ymaps-b-balloon__layout,
.ymaps-b-balloon__tail {
    background: transparent !important;
    box-shadow: none !important;
}

.custom-zoom {
  position: absolute;
  bottom: 50px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 1000;
}

.custom-zoom button {
  width: 36px;
  height: 36px;
  background: #D51A1A;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.2s;
}

.custom-zoom button:hover {
  background: #b01717;
}

/* Секция "Реквизиты" */

.requisites {
    background-color: #fff;
    color: var(--black);
    padding: 0px 80px 90px 80px;
}

.requisites-content {
    position: relative;
    z-index: 2;
}

.requisites-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    row-gap: 0px;
    background-color: #F5F5F5;
    border: 1px solid #C1C1C1;
    padding: 32px;
}

.requisites-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    border-bottom: 1px solid #C1C1C1;
    padding: 16px 12px;
}

.requisites-card-title {
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: var(--gray);
}

.requisites-card-text {
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: var(--black);
}

.requisites-card-text-inner {
    max-width: 320px;
}

.copy-button svg {
    color: var(--gray);
    transition: all 0.3s ease;
}

.copy-button:hover svg {
    color: var(--red);
}

.company-name {
    margin-right: 5px;
}

.requisites-card-text button {
    border: none;
    background-color: transparent;
    margin: 0;
    padding: 0;
}

.requisites-card-link {
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 20px;
    font-weight: 300;
    border-bottom: 1px solid var(--black);
    transition: all 0.3s ease;
}

.requisites-card-link:hover {
    border-bottom: 1px solid var(--red);
    color: var(--red);
}

.download-requisites-link-container {
    padding-top: 32px;
    display: flex;            
    justify-content: flex-end;
}

.download-requisites-link {
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    white-space: nowrap;

}

/* popup для копирования */

.copy-popup {
  position: fixed;
  z-index: 9999;
  padding: 8px 16px;
  background: var(--red);
  color: #fff;
  font-size: 16px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(6px) scale(0.98);
  transition: opacity .3s ease, transform .3s cubic-bezier(.2,.9,.3,1);
  white-space: nowrap;
  user-select: none;
}

.copy-popup.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.copy-popup[data-theme="light"] {
  background: #fff;
  color: #111;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

/* Адаптив секции "Реквизиты" */

@media (max-width: 1700px) {
    .requisites {
        padding: 0px 60px 90px 60px;
    }
}

@media (max-width: 1500px) {
    .requisites {
        padding: 20px 40px 40px 40px;
    }

    .requisites-cards {
        padding: 24px;
    }

    .requisites-card-title {
        font-size: 14px;
    }

    .requisites-card-text-inner {
        font-size: 16px;
    }

    .requisites-cards {
        gap: 12px;
    }

    .requisites-card-link {
        font-size: 16px;
    }

    .requisites-card-link svg {
        flex-shrink: 0;
        width: 16px;
        height: 16px;
    }

    .download-requisites-link-container {
        padding-top: 24px;
    }

    .download-requisites-link {
        font-size: 14px;
    }

    .download-requisites-link svg {
        flex-shrink: 0;
        width: 16px;
        height: 16px;
    }

    .download-requisites-link {
        gap: 5px;
    }

    .requisites-card {
        padding: 12px;
    }
}

@media (max-width: 1350px) {
    .maps {
        height: 326px;
    }

    .contacts-card-left p {
        font-size: 14px;
    }

    .contacts-card-right p, .contacts-card-right a {
        font-size: 16px;
    }
}

@media (max-width: 1270px) {
    .requisites-cards {
        grid-template-columns: 1fr;
    }

    .requisites-cards {
        padding: 12px;
    }

    .requisites-card {
        padding: 12px 8px;
    }
}

@media (max-width: 1250px) {
    .requisites-card-link {
        font-size: 16px;
    }

    .card-open-delivery-link svg {
        flex-shrink: 0;
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 700px) {
    .requisites-card-link {
        font-size: 14px;
    }    

    .card-open-delivery-link svg {
        flex-shrink: 0;
        width: 14px;
        height: 14px;
    }

    .requisites {
        padding: 20px 16px 20px 16px;
    }

    .requisites-card {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .download-requisites-link {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 500px) {
    .maps {
        height: 170px;
    }
}


/* Страница "Сертификаты" */

.mdk-main-certificates {
    background-color: #fff;
    padding: 142px 80px 80px 80px;

}

.certificates-cards .documents-card {
    background-color: #F5F5F5;
    border: 1px solid #C1C1C1;
    padding: 20px;
    gap: 10px;
}

/* Адаптив страницы "Сертификаты" */

@media (max-width: 1700px) {
    .mdk-main-certificates {
        padding: 142px 60px 80px 60px;
    }
}

@media (max-width: 1500px) {
    .mdk-main-certificates {
        padding: 124px 40px 60px 40px;
    }
}

@media (max-width: 1350px) {
    .certificates-cards .documents-card {
        padding: 16px;
    }
}

@media (max-width: 1270px) {
    .mdk-main-certificates {
        padding: 93px 40px 60px 40px;
    }
}

@media (max-width: 700px) {
    .mdk-main-certificates {
        padding: 93px 16px 60px 16px;
    }
}

/* Секция "Уставные документы" */

.statutory-documents {
    background-color: var(--black);
    background-size: cover;

    color: #fff;
    padding: 90px 80px;
}

.statutory-documents-content {
    position: relative;
    z-index: 2;
}

.statutory-documents-lists {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.statutory-documents-title {
    font-family: 'Helvetica Neue Light', sans-serif;
    font-size: 40px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 24px;
    text-transform: uppercase;
    max-width: 1250px;
    width: 100%;
}

.statutory-documents-file {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid #535353;
    padding: 17px 12px;
    transition: all 0.3s ease;
}

.statutory-documents-file-left {
    display: flex;
    justify-content: space-between;
    flex: 1 1 auto; 
    min-width: 0;
    gap: 16px; 
    padding-right: 16%;
}

.statutory-documents-file:last-child {
    border-bottom: 1px solid #535353;
}

.statutory-documents-file:hover {
    background-color: var(--red);
}

.statutory-documents-file-right {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.statutory-documents-file-name {
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 28px;
    line-height: 110%;
    letter-spacing: -0.02em;
    font-weight: 300;
    color: #fff;
}

.statutory-documents-file-size {
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: var(--gray);
}

/* Адаптив секции "Уставные документы" */

@media (max-width: 1900px) {
    .statutory-documents-file-left {
        padding-right: 14.5%;
    }
}

@media (max-width: 1750px) {
    .statutory-documents-file-left {
        padding-right: 14%;
    }
}

@media (max-width: 1700px) {
    .statutory-documents {
        padding: 90px 60px;
    }
}

@media (max-width: 1650px) {
    .statutory-documents-file-left {
        padding-right: 14%;
    }
}

@media (max-width: 1530px) {
    .statutory-documents-file-left {
        padding-right: 13%;
    }
}

@media (max-width: 1500px) {
    .statutory-documents {
        padding: 70px 40px;
    }
}

@media (max-width: 1420px) {
    .statutory-documents-file-left {
        padding-right: 12%;
    }
}

@media (max-width: 1350px) {
    .statutory-documents-title {
        font-size: 32px;
        max-width: 980px;
        margin-bottom: 20px;
    }

    .statutory-documents-file-name {
        font-size: 24px;
    }

    .statutory-documents-file-size {
        font-size: 16px;
    }

    .statutory-documents-file-right svg {
        flex-shrink: 0;
        width: 20px;
        height: 20px;
    }

    .statutory-documents-file {
        padding: 12px;
    }

    .statutory-documents-lists {
        gap: 40px;
    }

    .statutory-documents-file-left {
        padding-right: 14%;
    }
}

@media (max-width: 1275px) {
    .statutory-documents-file-left {
        padding-right: 13%;
    }
}

@media (max-width: 1200px) {
    .statutory-documents-file-left {
        padding-right: 12%;
    }
}

@media (max-width: 1130px) {
    .statutory-documents-file-left {
        padding-right: 11.5%;
    }
}

@media (max-width: 1100px) {
    .statutory-documents-file-left {
        flex-direction: column;
        gap: 4px;
        padding-right: 0%;
    }
}

@media (max-width: 900px) {
    .statutory-documents-title {
        font-size: 28px;
    }

    .statutory-documents-file-name {
        font-size: 22px;
    }
}

@media (max-width: 700px) {
    .statutory-documents {
        padding: 60px 16px;
    }

    .statutory-documents-title {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .statutory-documents-file-name {
        font-size: 20px;
    }

    .statutory-documents-file-size {
        font-size: 14px;
    }

    .statutory-documents-file {
        padding: 12px 8px;
    }
}


/* Страница "Реквизиты" */

.mdk-main-requisites {
    background-color: transparent;
    padding: 0px;
    background-image: none;
}

.download-requisites-link-page {
    padding-bottom: 40px;
}


/* Страница "Гарантия" */

.mdk-main-guarantee {
    padding: 142px 80px 80px 80px;
    color: var(--black);
}

.guarantee-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.guarantee-content.no-grid {
    display: block;
}

.guarantee-cards {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 10px;
}

.guarantee-card {
    background-color: #F5F5F5;
    border: 1px solid #C1C1C1;
    padding: 20px;
}

.guarantee-card-icon {
    margin-bottom: 24px;
}

.guarantee-card ol {
    padding: 0px;
    margin: 0px;
    margin-top: 8px;
    padding-left: 20px;
}

.guarantee-card ol li {
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 16px;
    line-height: 130%;
    font-weight: 300;
    color: #535353;
}

.guarantee-card ol li::marker {
    font-size: 16px; 
}

.guarantee-card-text {
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 20px;
    line-height: 110%;
    letter-spacing: -0.02em;
    font-weight: 300;
    color: var(--black);
}


.guarantee-content-left-image {
  width: 100%;
  max-width: 100%;    
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  border: 1px solid #C1C1C1;
  padding-top: 56.25%; 
}

.guarantee-content-left-image .swiper,
.guarantee-content-left-image .swiper-wrapper {
  position: absolute;
  inset: 0;       
  width: 100%;
  height: 100%;
}

.guarantee-content-left-image .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

.guarantee-content-left-image .swiper-slide img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;    
  height: 100%;    
  object-fit: cover;
  display: block;
}

.guarantee-image-navigations {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: flex;
  gap: 10px;
  z-index: 10;
}

.guarantee-image-navigations button svg {
  width: 32px;
  height: 32px;
}

.swiper-navigation-right-btn.swiper-button-disabled,
.swiper-navigation-left-btn.swiper-button-disabled {
  opacity: 0.45;
  cursor: default;
  pointer-events: none; 
  transition: opacity .18s ease;
}

.guarantee-content-right h3 {
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 28px;
    line-height: 110%;
    font-weight: 300;
    margin-bottom: 20px;
}

.guarantee-content-right h4 {
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 22px;
    font-weight: 300;
    line-height: 110%;
    color: var(--gray);
    margin-bottom: 8px;
}

.guarantee-content-right p {
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 18px;
    line-height: 130%;
    margin-bottom: 16px;
}

.guarantee-content-right ul {
  list-style: disc; 
  margin-left: 20px; 
  padding-left: 20px; 
  margin-bottom: 16px;
}

.guarantee-content-right li {
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 18px;
    line-height: 130%;
  margin-bottom: 4px; 
  list-style: disc;
}

.guarantee-content-right li::marker {
  font-size: 18px;  
  color: var(--black);
}

/* Адаптив страницы "Гарантия" */

@media (max-width: 1700px) {
    .mdk-main-guarantee {
        padding: 142px 60px 80px 60px;
    }
}

@media (max-width: 1500px) {
    .mdk-main-guarantee {
        padding: 124px 40px 60px 40px;
    }

    .guarantee-content-right h3 {
        font-size: 26px;
    }

    .guarantee-content {
        gap: 32px;
    }

    .guarantee-content-right p {
        font-size: 16px;
    }

    .guarantee-content-right h4 {
        font-size: 20px;
    }

    .guarantee-content-right li,
    .guarantee-content-right li::marker {
        font-size: 16px;
    }

    .guarantee-content-right h3 {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .guarantee-content-right p {
        font-size: 14px;
    }

    .guarantee-content-right p {
        margin-bottom: 12px;
    }
    
    .guarantee-content-right h4 {
        margin-bottom: 4px;
    }

    .guarantee-content-right ul {
        padding-left: 5px;
        margin-bottom: 12px;
    }

    .guarantee-content-right li,
    .guarantee-content-right li::marker {
        font-size: 14px;
    }
}

@media (max-width: 1350px) {
    .guarantee-card {
        padding: 16px;
    }

    .guarantee-card-text {
        font-size: 18px;
    }

    .guarantee-card-icon {
        margin-bottom: 20px;
    }

    .guarantee-card ol li,
    .guarantee-card ol li::marker {
        font-size: 14px;
    }
}

@media (max-width: 1270px) {
    .mdk-main-guarantee {
        padding: 95px 40px 60px 40px;
    }
}

@media (max-width: 1100px) {
    .guarantee-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .guarantee-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .mdk-main-guarantee {
        padding: 95px 16px 60px 16px;
    }

    .guarantee-content-right h3 {
        font-size: 20px;
    }

    .guarantee-content-right h4 {
        font-size: 18px;
    }

    .guarantee-content-right ul {
        padding-left: 0px;
    }

    .guarantee-card-icon svg {
        flex-shrink: 0;
        width: 28px;
        height: 28px;
    }

    .guarantee-card-icon {
        margin-bottom: 16px;
    }

    .guarantee-card-text {
        font-size: 16px;
    }
}




/* Страница "Статьи и новости" */

.blog-cards-news {
    margin-top: 20px;
}

.news-tags-container {
  display: flex;
  width: 100%; 
  align-items: center;
}

.news-tags .swiper-wrapper {
  display: flex;
  align-items: center;
}

.news-tags {
  overflow: hidden;
  border-bottom: 1px solid #E9E9E9;
  width: 100%;
}

.news-tags .swiper-wrapper.swiper-grab-cursor {
  cursor: grab;
}

.news-tag {
    white-space: nowrap;
    border: none;
    background-color: transparent; 
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 20px;
    color: var(--gray);
    cursor: pointer;
    text-transform: uppercase;
    transition: color .18s ease;
    padding-bottom: 5px;
}

.news-tag.active {
    color: var(--black);
}

.news-tag:hover {
    color: var(--black);
}

.show-more-tags {
    white-space: nowrap;
    display: flex;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 18px;
    color: var(--black);
}

.text-and-icon {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
    padding-bottom: 4px; 
}

.text-and-icon::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 100%;
    background-color: var(--black);
}

.news-tags {
  flex: 1 1 auto;     
  width: auto;
}

.news-tags .swiper-wrapper {
  justify-content: flex-start !important;
}

.news-tag.swiper-slide {
  width: auto;
  flex-shrink: 0;
}

.news-tag {
    user-select: none;  
    -webkit-user-select: none; 
    -moz-user-select: none;   
    -ms-user-select: none;     
}

.news-tag.swiper-slide.hidden-slide {
  display: none !important;
}

.show-more-slide {
  display: inline-flex;
  align-items: center;
}

.show-more-tags .icon {
  display: inline-block;
  transform-origin: center;
  transition: transform .25s ease;
}

.show-more-tags.rotated .icon {
  transform: rotateY(180deg);
}

.show-more-tags.inside-slide {
  background: transparent;
  border: none;
}

.text-and-icon::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background-color: var(--black);
}

.show-more-blog-cards {
    margin-top: 32px;
    width: 100%;
}

/* Адаптив страницы "Статьи и новости" */

@media (max-width: 1350px) {
    .news-tag.swiper-slide {
        font-size: 18px;
    }
}

@media (max-width: 700px) {
    .news-tag.swiper-slide {
        font-size: 16px;
    }
}



/* Страница "Доставка и оплата" */


.mdk-main-payment {
    padding: 142px 80px 100px 80px;
}

.payment {
    padding-top: 16px;
}

.payment-info-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.payment-info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr; 
  gap: 24px;
  overflow: visible; 
  position: relative;
}

.payment-info-cards > :nth-child(2) {
  transform: translateX(0px); 
  width: calc(100% + 70px);    
  z-index: 2;                   
  will-change: transform;
}


.payment-info-card {
    display: flex;
    align-items: center;
    gap: 12px;
}

.payment-info-card svg {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
}

.payment-info-card-text {
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 20px;
    letter-spacing: -0.02em;
}

/* Адаптив страницы "Оплата и доставка" */

@media (max-width: 1700px) {
    .mdk-main-payment {
        padding: 142px 60px 100px 60px;
    }

    .delivery-payment {
        padding-bottom: 40px;
    }
}

@media (max-width: 1550px) {
    .payment-info-cards > :nth-child(2) {
        width: calc(100% + 110px);
    }
}

@media (max-width: 1500px) {
    .mdk-main-payment {
        padding: 124px 40px 60px 40px;
    }

    .delivery-payment {
        padding-bottom: 60px;
    }
}

@media (max-width: 1350px) {
    .payment-info-card-text {
        font-size: 18px;
    }

    .payment-info-cards {
        gap: 20px;
    }
}

@media (max-width: 1270px) {
    .mdk-main-payment {
        padding: 95px 40px 60px 40px;
    }

    .payment-info-container {
        grid-template-columns: 1fr;
    }

    .payment-info-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .payment-info-cards > :nth-child(2) {
        width: 100%;
    }
}

@media (max-width: 700px) {
    .mdk-main-payment {
        padding: 95px 16px 40px 16px;
    }

    .payment-info-card svg {
        width: 40px;
        height: 40px;
    }

    .payment-info-card-text {
        font-size: 16px;
    }

    .delivery-payment {
        padding-bottom: 20px;
    }
}


/* Страница "news-info.html" */

.mdk-main-news-info {
    padding: 142px 80px 40px 80px;
}

.mdk-main-news-info .mdk-main-title {
    margin-bottom: 16px;
    max-width: 1050px;
    width: 100%;
}

.news-info {
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-weight: 300;
}

.news-info-texts {
    max-width: 1050px;
}

.news-info-date {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 20px;
}

.news-info h2 {
    font-size: 20px;
    letter-spacing: -0.02em;
    padding-bottom: 20px;
    font-weight: 300;
    padding-top: 40px;
}

.news-info h2:first-child {
    padding-top: 0px;
}

.news-info h3 {
    color: var(--gray);
    font-size: 18px;
    padding-bottom: 12px;
    font-weight: 300;
}

.news-info ol {
    padding: 0;
    margin: 0;
    padding-left: 30px;
    padding-bottom: 12px;
}

.news-info ol li {
    font-size: 16px;
}

.news-info ul {
    padding: 0px;
    padding-left: 10px;
}

.news-info ul li {
    font-size: 16px;
}

.news-info p {
    font-size: 16px;
    line-height: 130%;
}

.news-info-texts blockquote {
    padding-top: 40px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.news-info-texts blockquote p {
    font-size: 20px !important;
}

.news-info-tags {
    padding-top: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.news-info-tags a {
    font-size: 16px;
    color: var(--red);
}

.news-card-info,
.news-card-info * {
  -webkit-user-select: none; 
  -moz-user-select: none;    
  -ms-user-select: none;     
  user-select: none;       
  -webkit-touch-callout: none; 
  -webkit-tap-highlight-color: transparent; 
}

.news-card-info {
    padding: 12px;
}

.news-card-info-title {
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 20px;
    letter-spacing: -0.02em;
    font-weight: 300;

    display: -webkit-box;
    -webkit-line-clamp: 3; 
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-card-info-desc {
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 16px;
    line-height: 130%;
    color: var(--gray);
    padding-bottom: 16px;
}

.news-card-info-price {
    font-family: 'Helvetica Neue Medium', sans-serif;
    font-size: 28px;
    color: var(--black);
    line-height: 110%;
    padding-bottom: 16px;
    letter-spacing: -0.02em;
}

.get-kp-btn {
    font-size: 16px;
    width: 100%;
    border: 1px solid var(--black);
    color: var(--black);
    padding: 17.5px;
    transition: all 0.3s ease;
    background: #fff;
}

.get-kp-btn:hover {
    background: var(--black);
    color: #fff;
}

.news-info-cards .our-work-card {
    cursor: auto;
}

.news-info-cards .our-work-card .news-info-card-image {
    cursor: pointer;
}

.our-work .news-info-cards.swiper {
  padding: 0px 80px 40px 80px;
  box-sizing: border-box;
  position: relative;
}

.our-work .news-info-cards .swiper-wrapper {
  display: flex;           
  gap: 0px;              
  align-items: stretch;
}

.our-work .news-info-cards .swiper-slide {
  width: auto;             
  flex: 0 0 auto;          
  max-width: 360px;
  box-sizing: border-box;
}

.news-info-card-image {
  width: 100%;
  max-width: 360px; 
  aspect-ratio: 360 / 317; 
  overflow: hidden;
  position: relative;
  background: #F5F5F5;
}
.news-info-card-image model-viewer {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  transform-origin: center center;
}

.news-info-card-image-3d-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    pointer-events: none;
}

.our-work .news-info-cards.swiper,
.our-work .news-info-cards .swiper-wrapper,
.our-work .news-info-cards .swiper-slide,
.our-work .news-info-cards .our-work-card {
  overflow: visible;
}

.news-card-info-settings {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.news-card-info-setting {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.news-card-info-setting-title {
     order: 1; 
     margin: 0; 
}

.news-card-info-setting::before {
  content: "";
  order: 2;
  flex: 1;
  height: 1px;          
  display: block;
  align-self: flex-end;            
  background-image: linear-gradient(to right, var(--gray), var(--gray));
  background-size: 100% 1px;
  background-repeat: no-repeat;

  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  will-change: transform, opacity;
  pointer-events: none;
}

.news-card-info-setting-value { order: 3; 
    margin: 0; 
    white-space: nowrap; 
}

.news-card-info-setting-title {
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 14px;
    color: var(--gray);
}

.news-card-info-setting-value {
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 14px;
    line-height: 120%;
}

/* Адаптив страницы "news-info.html" */

@media (max-width: 1700px) {
    .our-work .news-info-cards.swiper {
        padding: 0px 60px 40px 60px;
    }

    .mdk-main-news-info {
        padding: 142px 60px 40px 60px;
    }
}

@media (max-width: 1500px) {
    .our-work .news-info-cards.swiper {
        padding: 0px 40px 20px 40px;
    }

    .mdk-main-news-info {
        padding: 124px 40px 40px 40px;
    }
}

@media (max-width: 1350px) {
    .our-work .news-info-cards .swiper-slide {
        max-width: 290px;
    }

    .news-card-info-title {
        font-size: 18px;
    }

    .news-card-info-setting-title,
    .news-card-info-setting-value {
        font-size: 13px;
    }

    .news-card-info-price {
        font-size: 24px;
    }

    .get-kp-btn {
        font-size: 14px;
        padding: 15.5px;
    }

    .news-info-card-image-3d-icon svg{
        flex-shrink: 0;
        width: 48px;
        height: 48px;
    }

    .mdk-main-news-info .mdk-main-title {
        margin-bottom: 12px;
    }

    .news-info p {
        font-size: 14px;
    }

    .news-info h2 {
        font-size: 18px;
        padding-bottom: 12px;
        padding-top: 32px;
    }

    .news-info h3 {
        font-size: 16px;
        padding-bottom: 8px;    
    }

    .news-info ul li {
        font-size: 14px;
    }

    .news-info ul {
        padding-left: 5px;
    }

    .news-info ol {
        padding-left: 24px;
        padding-bottom: 0px;
    }

    .news-info ol li {
        font-size: 14px;
    }
    
    .news-info-tags {
        padding-top: 32px;
    }

    .news-info-tags a {
        font-size: 14px;
    }

    .news-info-texts blockquote img {
        width: 30px;
        height: 30px;
    }

    .news-info-texts blockquote {
        gap: 20px;
        padding-top: 32px;
    }

    .news-info-texts blockquote p {
        font-size: 18px !important;
    }
}

@media (max-width: 1270px) {
    .mdk-main-news-info {
        padding: 95px 40px 40px 40px;
    }
}

@media (max-width: 700px) {
    .our-work .news-info-cards.swiper {
        padding: 0px 16px 20px 16px;
    }

    .our-work .news-info-cards .swiper-slide {
        max-width: 100%;
    }

    .news-card-info-title {
        font-size: 16px;
    }

    .news-card-info-price {
        font-size: 20px;
    }

    .news-card-info-settings {
        margin-bottom: 8px;
        margin-top: 6px;
    }

    .news-card-info-price {
        padding-bottom: 8px;
    }

    .news-card-info {
        padding: 0px;
        padding-top: 10px;
    }

    .news-info-card-image-3d-icon {
        bottom: 10px;
        right: 10px;
    }

    .news-info-card-image-3d-icon svg{
        width: 40px;
        height: 40px;
    }

    .mdk-main-news-info {
        padding: 95px 16px 20px 16px;
    }

    .news-info h2 {
        font-size: 16px;
        padding-top: 24px;
    }

    .news-info h3 {
        font-size: 14px;
    }

    .news-info-texts blockquote p {
        font-size: 16px !important;
    }

    .news-info-tags {
        padding-top: 24px;
    }

    .news-info-texts blockquote {
        align-items: flex-start;
        padding-top: 24px;
    }

    .news-info-texts blockquote img {
        margin-top: 20px;
    }

    .news-card-info-setting-title {
        font-size: 0;
        line-height: 0;
        display: inline-block; 
    }

    .news-card-info-setting-title::after {
        content: attr(data-short);
        font-size: 13px;          
        line-height: 1.2;
        color: var(--gray);
        display: inline-block;
        white-space: nowrap;
    }

    .news-card-info-setting-value {
        font-size: 0;
        line-height: 0;
        display: inline-block; 
    }

    .news-card-info-setting-value::after {
        content: attr(data-short);
        font-size: 13px;          
        line-height: 1.2;
        display: inline-block;
        white-space: nowrap;
    }
}

@media (max-width: 500px) {
    .our-work-navigation {
        display: block;
    }
}

@media (max-width: 350px) {
    .news-info-card-image-3d-icon svg{
        width: 35px;
        height: 35px;
    }
}

/* Страница "Портфолио" */

.mdk-main-portfolio {
    padding-bottom: 40px;
}

.delivery-content-portfolio .delivery-content-top-left{
    position: static; 
    top: auto;
    z-index: 3;
    pointer-events: auto; 
    
}

.mdk-main-portfolio .blog-cards {
    margin-top: 20px;
}

.delivery-portfolio {
    padding: 80px 80px 40px 80px;
}

.portfolio-card-title {
    color: var(--gray);
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 18px;
    font-weight: 300;
}

.portfolio-card-info-last {
    margin-top: 12px;
}

.portfolio-card-info ul {
    margin-top: 4px;
    margin-left: 10px;
    min-height: 50px;
}

.portfolio-card-desc {
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 16px;
    line-height: 130%;
    margin-top: 4px;
}

.supply-maps {
    width: 100%;
    height: 570px;      
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}


/* Отключаем стили Яндекс Карты */

.supply-maps [class*="ground-pane"] {
    filter: grayscale(90%) brightness(85%) contrast(120%);
}

/* Отключаем ненужные надписи */
[class*="copyrights-pane"] {
    display: none !important;
}


.ymaps-hint .ymaps-hint__content {
  background: rgba(0,0,0,0.85) !important;
  color: #fff !important;
  padding: 8px 10px !important;
  border-radius: 8px !important;
  font-size: 13px !important;
  line-height: 1.2 !important;
  box-shadow: 0 6px 18px rgba(0,0,0,0.45) !important;
  transition: opacity .18s ease, transform .18s ease !important;
  opacity: 0;
  transform: translateY(-6px);
}

.ymaps-hint_open .ymaps-hint__content {
  opacity: 1;
  transform: translateY(0);
}

.ymaps-hint .ymaps-hint__tail {
  display: none !important; 
}

.supply-map { position: relative; }

.custom-hint {
  background: var(--red);
  color: #fff;
  font-family: "Helvetica Neue", Arial, sans-serif;
  padding: 8px 16px;
  min-width: 213px;
  transform: translateY(8px) scale(0.98);
  opacity: 0;
  transition: opacity 220ms cubic-bezier(.2,.9,.2,1), transform 220ms cubic-bezier(.2,.9,.2,1);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 400;
  will-change: opacity, transform;
  pointer-events: auto; 
}

.custom-hint.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
}


.ymaps-hint .ymaps-hint__content {
  background: rgba(0,0,0,0.85) !important;
  color: #fff !important;
  padding: 8px 10px !important;
  border-radius: 8px !important;
  font-size: 13px !important;
  line-height: 1.2 !important;
  box-shadow: 0 6px 18px rgba(0,0,0,0.45) !important;
  transition: opacity .18s ease, transform .18s ease !important;
  opacity: 0;
  transform: translateY(-6px);
}

.ymaps-hint_open .ymaps-hint__content {
  opacity: 1;
  transform: translateY(0);
}

.custom-hint__projects {
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 130%;
}

.custom-zoom {
  position: absolute;
  top: 40%;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 1000;
}

.custom-zoom button {
  width: 36px;
  height: 36px;
  background: #D51A1A;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.15s, transform 0.12s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.custom-zoom button:hover { background: #b01717; outline: none; transform: translateY(-1px); }
.custom-zoom button:focus { box-shadow: 0 0 0 3px rgba(213,26,26,0.18); }


/* Отключаем системный балун карты */

.ymaps-2-1-79-balloon__close,
.ymaps-2-1-79-balloon__tail {
    display: none !important;
}

.ymaps-2-1-79-balloon__close+.ymaps-2-1-79-balloon__content {
    margin-right: 0px;
}

.ymaps-2-1-79-balloon__content,
.ymaps-2-1-79-balloon__layout {
    background: none !important;
}

.ymaps-2-1-79-balloon {
    box-shadow: none !important;
}


/* Адаптив страницы "Портфолио" */

@media (max-width: 1700px) {
    .delivery-portfolio {
        padding: 80px 60px 40px 60px;
    }
}


@media (max-width: 1500px) {
    .delivery-portfolio {
        padding: 60px 40px 40px 40px;
    }
}


@media (max-width: 1350px) {
    .blog-card-image-banner {
        width: 90px;
        height: 25px;
        padding: 0px;
    }

    .blog-card-image-banner img {
        object-fit: contain;
    }

    .portfolio-card-title {
        font-size: 16px;
    }

    .portfolio-card-info ul li {    
        font-size: 14px;
    }

    .portfolio-card-desc {
        font-size: 14px;
    }

    .supply-maps {
        height: 500px;
    }
}

@media (max-width: 700px) {
    .portfolio-card-title {
        font-size: 14px;
    }

    .delivery-portfolio {
        padding: 60px 16px 20px 16px;
    }

    .supply-maps {
        height: 400px;
    }
}



/* Страница "Портфолио детальная" */

.portfolio-info-title {
    max-width: 1480px;
    width: 100%;
}

.portfolio-info-descs {
    display: flex;
    flex-direction: column;
    gap: 0px;
    margin-bottom: 32px;
}

.portfolio-info-desc {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    border-top: 1px solid #C1C1C1;
    padding: 16px 12px;
}

.portfolio-info-desc:last-child {
    border-bottom: 1px solid #C1C1C1;
}

.portfolio-info-desc-title {
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 16px;
    color: #8A8A8A;
    font-weight: 300;
}

.portfolio-info-content {
    align-items: flex-start;
}

.portfolio-info-desc-text {
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 18px;
}

.portfolio-info-right-title {
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 28px;
    line-height: 110%;
    letter-spacing: -0.02em;
    font-weight: 300;
    margin-bottom: 20px;
}

.portfolio-info-right-desc {
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 16px;
    line-height: 130%;
    margin-bottom: 16px;
}

.portfolio-info-right-subtitle {
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 22px;
    color: var(--gray);
    line-height: 110%;
    letter-spacing: -0.02em;
    font-weight: 300;
    margin-bottom: 8px;
}

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

.key-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.key-feature svg {
    margin-top: 5px;
    flex-shrink: 0;
    width: 8px;
    height: 8px;
}

.key-feature-text {
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 16px;
    line-height: 130%;
}

.request-payment-btn {
    width: 100%;
    margin-top: 32px;
    padding: 17.5px;
}

.mdk-portfolio-info {
    padding: 142px 80px 20px 80px;
}

/* Адаптив страницы "Портфолио детальная" */

@media (max-width: 1700px) {
    .mdk-portfolio-info {
        padding: 142px 60px 20px 60px;
    }
}

@media (max-width: 1500px) {
    .mdk-portfolio-info {
        padding: 124px 40px 20px 40px;
    }
}

@media (max-width: 1350px) {
    .portfolio-info-desc-title {
        font-size: 14px;
    }

    .portfolio-info-desc-text {
        font-size: 16px;
    }

    .portfolio-info-desc {
        padding: 12px;
    }

    .portfolio-info-descs {
        margin-bottom: 24px;
    }

    .portfolio-info-right-title {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .portfolio-info-right-desc {
        font-size: 14px;
    }

    .portfolio-info-right-subtitle {
        font-size: 20px;
    }

    .key-feature-text {
        font-size: 14px;
    }

    .request-payment-btn {
        font-size: 14px !important;
    }

    .request-payment-btn svg {
        flex-shrink: 0;
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 1270px) {
    .mdk-portfolio-info {
        padding: 95px 40px 20px 40px;
    }
}

@media (max-width: 1200px) {
    .guarantee-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 700px) {
    .mdk-portfolio-info {
        padding: 95px 16px 20px 16px;
    }

    .portfolio-info-desc-text {
        font-size: 14px;
    }

    .portfolio-info-descs {
        margin-bottom: 20px;
    }

    .portfolio-info-right-title {
        font-size: 20px;
    }

    .portfolio-info-right-subtitle {
        font-size: 18px;
    }

    .request-payment-btn {
        margin-top: 24px;
    }

    .portfolio-info-desc {
        padding: 8px;
    }
}

@media (max-width: 500px) {
    .portfolio-info-desc {
        grid-template-columns: 1fr;
        gap: 4px;
    }
}


/* Страница "Дилерам и оптовикам" */

.mdk-main-dealers {
    padding: 142px 80px 40px 80px;
}

.contacts-content-dealers {
    gap: 60px;
}

.contacts-content-dealers .get-contact-right-side {
    margin-top: 42px;
}

.contacts-content-dealers .get-contact-right-side-desc p {
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 18px;
    color: #A3A3A3;
}

.dealers-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.dealers-left-side-text {
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 16px;
    line-height: 130%;
}

.dealers-left-side-descs {
    margin-left: 6px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dealers-left-side-desc {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dealers-left-side-title {
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 28px;
    line-height: 110%;
    letter-spacing: -0.02em;
    font-weight: 300;
    margin-bottom: 12px;
    margin-top: 24px;
}

.dealers-left-side-desc-text {
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 16px;
    line-height: 130%;
}

.dealers-right-side img {
    width: 100%;
    object-fit: cover;
    object-position: center center;
}

.get-contact-right-side-title {
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 28px;
    line-height: 110%;
    letter-spacing: -0.02em;
    font-weight: 300;
    max-width: 531px;
    white-space: normal;
}

.get-contact-right-side-title {
    word-wrap: break-word; 
    overflow-wrap: break-word; 
    word-break: break-word; 
}

.get-contact-right-side-descs {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.get-contact-right-side-desc {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dealers-card {
    padding: 12px 20px 20px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
    background-color: #F5F5F5;
    border: 1px solid #C1C1C1;
    min-height: 160px;
}

.dealers-card-number {
    color: #CDCDCD;
    font-family: 'Black Ops One', sans-serif;
    font-size: 28px;
}

.dealers-card-text {
    font-family: 'Helvetica Neue Regular', sans-serif;
    line-height: 130%;
    font-size: 16px;
}

.dealers-cards-first {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.dealers-cards-second {
    margin-top: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.dealers-cards-second-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.dealers-cards-content {
    margin-top: 24px;
}

.dealers-cards-title {
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-weight: 300;
    font-size: 28px;
}

/* Адаптив "Дилерам и оптовикам" */

@media (max-width: 1700px) {
    .mdk-main-dealers {
        padding: 142px 60px 40px 60px;
    }
}

@media (max-width: 1500px) {
    .mdk-main-dealers {
        padding: 142px 40px 40px 40px;
    }
}

@media (max-width: 1350px) {
    .dealers-content {
        gap: 32px;
    }

    .dealers-left-side-text {
        font-size: 14px;
    }

    .dealers-left-side-title {
        font-size: 24px;
    }

    .dealers-left-side-title {
        margin-top: 20px;
        margin-bottom: 8px;
    }

    .dealers-left-side-desc-text {
        font-size: 14px;
    }

    .dealers-card-text {
        font-size: 14px;
    }

    .dealers-cards-content {
        margin-top: 20px;
    }

    .dealers-card {
        padding: 11px 16px 22px 16px;
        min-height: 140px;
    }

    .dealers-cards-title {
        font-size: 24px;
    }

    .get-contact-right-side-title {
        font-size: 24px;
    }

    .get-contact-right-side-desc p {
        font-size: 16px;
    }

    .get-contact-right-side-title {
        font-size: 24px;
    }

    .get-contact-right-side-desc p {
        font-size: 16px;
    }

    .contacts-content-dealers .get-contact-right-side-desc p {
        font-size: 16px;
    }
}

@media (max-width: 1270px) {
    .mdk-main-dealers {
        padding: 95px 40px 40px 40px;
    }
}

@media (max-width: 1100px) {
    .dealers-cards-second {
        grid-template-columns: 1fr;
    }

    .dealers-cards-first {
        grid-template-columns: 1fr 1fr;
    }

    .dealers-left-side-desc svg {
        flex-shrink: 0;
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 850px) {
    .dealers-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .mdk-main-dealers {
        padding: 95px 16px 20px 16px;
    }

    .dealers-cards-second {
        grid-template-columns: 1fr;
    }

    .dealers-cards-first {
        grid-template-columns: 1fr;
    }

    .dealers-cards-second-right {
        grid-template-columns: 1fr;
    }

    .dealers-card {
        min-height: 127px;
        padding: 11px 16px 16px 16px;
    }

    .dealers-card-number {
        font-size: 24px;
    }

    .dealers-left-side-title {
        font-size: 20px;
    }

    .dealers-cards-title {
        font-size: 20px;
    }

    .get-contact-right-side-title {
        font-size: 20px;
    }

    .get-contact-right-side-descs {
        margin-top: 24px;
    }
    
    .get-contact-right-side-desc p {
        font-size: 14px;
    }

    .get-contact-right-side-descs {
        gap: 16px;
    }

    .contacts-content-dealers .get-contact-right-side-desc p {
        font-size: 14px;
    } 
}

/* Страница "404" */

.mdk-main-404 {
    background-image: url("../images/404-bg.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 142px 80px 0px 80px;
    min-height: 685px;
}

.content-404 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
}

.content-left-404 {
    max-width: 700px;
}

.title-404 {
    font-family: 'Helvetica Neue Light', sans-serif;
    font-size: 220px;
    font-weight: 300;
    color: #E9E9E9;
}

.content-404 p {
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 20px;
    letter-spacing: -0.02em;
    color: #000000;
}

.go-main-link {
    margin-top: 24px;
    max-width: 248px;
}

.mdk-main-title-404 {
    white-space: nowrap;
}

/* Адаптив страницы "404" */

@media (max-width: 1700px) {
    .mdk-main-404 {
        padding: 142px 60px 0px 60px;
    }
}

@media (max-width: 1500px) {
    .mdk-main-404 {
        padding: 124px 40px 0px 40px;
        min-height: 650px;
    }
}

@media (max-width: 1350px) {
    .content-404 p {
        font-size: 18px;
    }

    .go-main-link {
        font-size: 14px;
        max-width: 225px;
        padding: 15.5px;
    }

    .content-404 {
        gap: 30px;
    }

    .title-404 {
        font-size: 160px;
    }

    .mdk-main-404 {
        min-height: 517px;
    }
}

@media (max-width: 1270px) {
    .mdk-main-404 {
        padding: 95px 40px 0px 40px;
    }
}

@media (max-width: 900px) {
    .content-404 p {
        font-size: 16px;
    }

    .mdk-main-title {
        font-size: 28px;
    }
}

@media (max-width: 700px) {
    .mdk-main-404 {
        padding: 95px 16px 0px 16px;
    }

    .content-404 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .title-404 {
        text-align: center;
    }

    .mdk-main-title-404 {
        white-space: normal;
    }

    .go-main-link {
        max-width: 100%;
        width: 100%;
    }
}


/* Страница "Успех отправки" */

.success-content-left-text,
.error-content-left-text {
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 22px;
    letter-spacing: -0.02em;
    font-weight: 300;
    line-height: 110%;
    margin-bottom: 20px;
}

.success-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: flex-end;
    gap: 40px;
}

.success-start {
    align-items: flex-start !important;
}

.success-link {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 10px;
    border-top: 1px solid #C1C1C1;
    padding: 17px 12px;
}

.success-link:last-child {
    border-bottom: 1px solid #C1C1C1;
}

.success-link-title {
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: var(--gray);
}

.success-link a {
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 18px;
    font-weight: 300;
}

.success-banners-text {
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 20px;
    letter-spacing: -0.02em;
    font-weight: 300;
}

.success-banners {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 513px;
    width: 100%;
}

.success-banner {
    display: flex;
    align-items: center;
    gap: 12px;
}

.success-banner svg {
    flex-shrink: 0; 
    width: 48px;
    height: 48px;
}

.try-again-btn {
    padding: 17.5px;
    font-size: 16px;
    max-width: 250px;
    width: 100%;
    margin-bottom: 20px;
}

.error-content-left-text {
    margin-bottom: 32px;
}

.mdk-main-title-error {
    align-items: flex-start !important;
}

.mdk-main-title-error svg {
    margin-top: 3px;
}

@media (max-width: 1350px) {
    .success-content-left-text, .error-content-left-text {
        font-size: 20px;
    }

    .success-link-title {
        font-size: 14px;
    }

    .success-link a {
        font-size: 16px;
    }

    .success-link {
        padding: 12px;
    }

    .success-content {
        gap: 30px;
    }

    .success-banners-text {
        font-size: 18px;
    }
    
    .error-content-left-text {
        font-size: 20px;
    }

    .try-again-btn {
        font-size: 14px;
        max-width: 224px;
        margin-bottom: 32px;
    }

    .mdk-main-title-error svg {
        flex-shrink: 0;
        width: 32px;
        height: 32px;
    }

    .mdk-main-title-error {
        gap: 6px;
    }

    .error-content-left-text {
        margin-bottom: 24px;
    }
}

@media (max-width: 1100px) {
    .success-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 700px) {
    .success-link {
        grid-template-columns: 1fr;
    }

    .success-banners-text {
        font-size: 16px;
    }

    .error-content-left-text {
        font-size: 18px;
    }
}


/* Grid сетка на страницах */

/* 
section {
  position: relative; 
}

.lines {
  position: absolute;   
  top: 0;
  left: 0;
  right: 0;        
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;   
}

.main-content .lines {
    height: 980px;
}

.main-content-about .lines {
    height: 1049px;
} */

/* .main-content .line { background: #2e2e2e; }
.we-produce .line { background: #e9e9e9; }
.about-us .line { background: #2e2e2e; }
.delivery .line { background: #e9e9e9; }
.documents .line { background: #2e2e2e; }
.trust-us .line { background: #e9e9e9; }
.blog .line { background: #e9e9e9; }
.contacts .line { background: #e9e9e9; }
.get-contact .line { background: #2e2e2e; }
.footer .line { background: #e9e9e9; }
.mdk-main .line { background: #e9e9e9; }
.mdk-we-produce .line { background: #2e2e2e; }
.our-work .line { background: #e9e9e9; }
.company .line { background: #2e2e2e; }
.principles .line { background: #e9e9e9; }
.strong-sides .line { background: #2e2e2e; }
.our-production .line { background: #e9e9e9; }
.quality-control .line { background: #e9e9e9; }
.reviews .line { background: #2e2e2e; }
.team .line { background: #e9e9e9; }
.requisites .line { background: #e9e9e9; }
.statutory-documents .line { background: #2e2e2e; }

.line1 { left: 3.6%; }
.line2 { left: 27%; }
.line3 { left: 50%; }
.line4 { left: 73%; }
.line5 { right: 3.8%; } */
/* 
@media (max-width: 1500px) {
    .main-content .lines {
        height: 832px;
    }

    .main-content-about .lines {
        height: 927px;
    }

    .line1 { left: 2.5%; }
    .line2 { left: 27%; }
    .line3 { left: 50%; }
    .line4 { left: 73%; }
    .line5 { right: 2.8%; }
}

@media (max-width: 1270px) {
    .main-content .lines {
        height: 920px;
    }
}

@media (max-width: 700px) {
    .main-content .lines,
    .we-produce .line,
    .about-us .line,
    .delivery .line,
    .documents .line,
    .trust-us .line,
    .blog .line,
    .contacts .line,
    .get-contact .line,
    .footer .line,
    .mdk-we-produce .line,
    .our-work .line,
    .company .line,
    .principles .line,
    .strong-sides .line,
    .our-production .line,
    .quality-control .line,
    .reviews .line,
    .team .line,
    .statutory-documents .line {
        display: none;
    }

    .mdk-main .line2,
    .mdk-main .line4 {
        display: none;
    }

    .requisites .line2,
    .requisites .line4 {
        display: none;
    }
}


 */




 .close-video {
  position: absolute;
  top: 5px;
  right: 15px;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  z-index: 10;
}

.modal-video-about {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  min-width: 340px;
  min-height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  justify-content: center;
  align-items: center;
}
.modal-content-video-about {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.modal-content-video-about video {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  max-height: 800px;
  height: auto;
  object-fit: contain;
  background-color: #000;
}

.modal-video-about {
  display: none;         
  opacity: 0;
  transition: opacity 300ms ease;
}

.modal-video-about.show {
  display: flex;         
  opacity: 1;            
}


/* Попап "Запросить коммерческое предложение" */

.kp-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 0 70px;
    overflow-y: auto; 
}

.kp-popup.show {
    opacity: 1;
    pointer-events: auto;
}

.kp-popup.closing {
    opacity: 0;
    pointer-events: auto;
}

.kp-popup-content {
    position: relative;
    background-color: #fff;
    color: var(--black);
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    row-gap: 0px !important;
    max-width: 1320px;
    width: 100%;
    overflow: visible;

    transform: translateY(18px) scale(0.98);
    opacity: 0;
    transition: transform 0.36s cubic-bezier(.2,.9,.2,1), opacity 0.28s ease;
}

.kp-popup.show .kp-popup-content {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.kp-popup-title {
    grid-column: 1 / -1; 
    align-self: start;
    font-family: 'Helvetica Neue Light', sans-serif;
    font-size: 40px;
    font-weight: 300;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.kp-popup-content .get-contact-form .get-contact-form-second-line {
    flex-direction: column;
    gap: 0px;
}

.kp-popup-content .get-contact-info-card svg {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
}

.kp-popup-content .get-contact-info-card-text {
    font-size: 16px;
}

.kp-popup-close {
    position: absolute;
    top: -40px;
    right: -40px;
    border: none;
    background-color: transparent;
    padding: 0;
    margin: 0;
    color: #fff;
    transition: all 0.3s ease;
    cursor: pointer;
}

.kp-popup-close:hover {
    color: var(--red);
}


.kp-popup-left,
.kp-popup-right {
  max-height: 100vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  box-sizing: border-box;
  scrollbar-width: none; 
  -ms-overflow-style: none; 
}

.kp-popup-left::-webkit-scrollbar,
.kp-popup-right::-webkit-scrollbar {
  display: none; 
}


@media (max-width: 1350px) {
    .kp-popup-content {
        padding: 40px;
    }

    .kp-popup-title {
        font-size: 32px;
    }

    .kp-popup-content .get-contact-info-card-text {
        font-size: 14px;
    }

    .kp-popup-content .get-contact-info-card svg {
        width: 40px;
        height: 40px;
    }

    .kp-popup-title {
        margin-bottom: 16px;
    }

    .kp-popup-close {
        top: -30px;
        right: -30px;
    }

    .kp-popup-close svg {
        flex-shrink: 0;
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 1100px) {
    .kp-popup-content {
        padding: 25px;
    }

    .kp-popup-content {
        gap: 20px;
    }
}

@media (max-width: 1000px) {
    .kp-popup {
        align-items: flex-end;
        justify-content: center; 
        padding: 0; 
    }

    .kp-popup-close {
        right: 10px;
    }
}

@media (max-width: 700px) {
    .kp-popup-content {
        grid-template-columns: 1fr;
    }

    .kp-popup-right {
        display: none;
    }

    .kp-popup-title {
        font-size: 24px;
    }

    .kp-popup-content {
        padding: 24px 16px;
    }
}

/* Cookie модалное окно */

.cookie {
    position: fixed;
    bottom: 20px;
    left: 80px;
    z-index: 1000;
    background-color: #fff;
    padding: 32px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid #C1C1C1;
    max-width: 614px;
    width: 100%;
    color: var(--black);
}

.cookie {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.cookie.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.cookie.hidden {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

.cookie-title {
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 22px;
    line-height: 110%;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.cookie-text {
    font-family: 'Helvetica Neue Regular', sans-serif;
    font-size: 16px;
    line-height: 130%;
}

.cookie-text a {
    color: var(--black) !important;
    border-bottom: 1px solid var(--black);
    transition: all 0.3s ease;
}

.cookie-text a:hover {
    color: var(--red) !important;
    border-bottom: 1px solid var(--red);
}

.cookie-accept {
    font-family: 'Helvetica Neue Regular', sans-serif;
    text-transform: uppercase;
    font-size: 16px;
    color: var(--black);
    margin-top: 24px;
    cursor: pointer;
    border: none;
    background-color: transparent;
    padding: 17.5px 32px;
    border: 1px solid var(--black);
    transition: all 0.3s ease;
}

.cookie-accept:hover {
    background-color: var(--black);
    color: #fff;
}

/* Адаптив cookie banner */

@media (max-width: 1700px) {
    .cookie {
        left: 60px;
    }
}

@media (max-width: 1500px) {
    .cookie {
        left: 40px;
    }
}

@media (max-width: 1350px) {
    .cookie {
        padding: 24px 32px;
    }

    .cookie-title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .cookie-accept {
        font-size: 14px;
        padding: 15.5px 32px;
        margin-top: 12px;
    }
}

@media (max-width: 700px) {
    .cookie {
        max-width: 100%;
        left: 0px;
        bottom: 0px;
        padding: 24px 16px;
    }

    .cookie-title {
        font-size: 18px;
        line-height: 110%;
    }

    .cookie-accept {
        width: 100%;
    }
}