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

html, body, div, span, object, iframe, figure, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, code, em, img, small, strike, strong, tt, b, u, i, ol, ul, li, fieldset, form, label, table, caption, tbody, tfoot, thead, tr, th, td, main, canvas, embed, footer, header, nav, section, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  text-size-adjust: none;
}

footer, header, nav, section, main {
  display: block;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input {
  -webkit-appearance: none;
  border-radius: 0;
  outline: none;
}

ul {
  list-style: none;
}

button {
  outline: none;
  border: none;
}

a {
  text-decoration: none;
}

html {
  overflow-x: clip;
}

body {
  overflow-x: clip;
  font-family: Regular;
  color: #1D1D1D;
}

button {
  background-color: transparent;
  padding: 0;
  cursor: pointer;
}

.social-btns {
  display: flex;
  gap: 16px;
}

.social-btn {
  display: flex;
  gap: 16px;
  text-transform: uppercase;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  color: #1D1D1D;
  transition: ease 0.3s;
}
.social-btn svg {
  width: 16px;
  height: 16px;
  transition: ease 0.3s;
}
.social-btn:hover {
  background-color: #1D1D1D;
  color: white;
}
.social-btn:hover svg {
  fill: white;
}

.accent {
  color: #red;
}

.grey {
  color: rgba(29, 29, 29, 0.5);
}

.section-top {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 64px;
}

.max-width-630 {
  max-width: 630px;
}

.max-width-460 {
  max-width: 460px;
}

.container {
  padding: 107px 32px 100px 32px;
  max-width: 1384px;
  margin: 0 auto;
}

.btns {
  display: flex;
  gap: 16px;
  width: fit-content;
}

@media (max-width: 768px) {
  .container {
    padding: 57px 16px 50px 16px;
  }
  .section-top {
    flex-direction: column;
    margin-bottom: 32px;
  }
}
.h1 {
  font-size: 70px;
  font-family: Medium;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.h2 {
  font-size: 54px;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.h3 {
  font-size: 44px;
  line-height: 1.1;
}

@media (max-width: 768px) {
  .h1 {
    font-size: 44px;
  }
  .h2 {
    font-size: 36px;
  }
  .h3 {
    font-size: 32px;
  }
}
.text {
  font-size: 18px;
  line-height: 1.2;
}

.text-sm {
  font-size: 14px;
  line-height: 1.2;
}

.text-m {
  line-height: 1.2;
}

.subtitle {
  font-size: 24px;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .text {
    font-size: 16px;
  }
  .subtitle {
    font-size: 18px;
  }
}
.btn-white {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  background-color: white;
  border-radius: 100px;
  width: max-content;
  transition: ease 0.3s;
  padding: 16px 24px;
  font-family: Regular;
  color: black;
  text-transform: uppercase;
}
.btn-white svg {
  width: 24px;
  height: 24px;
  fill: #1D1D1D;
  transition: ease 0.3s;
}
.btn-white:hover {
  background-color: black;
  color: white;
}
.btn-white:hover svg {
  fill: white;
}

.btn-black {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  background-color: #1D1D1D;
  border-radius: 100px;
  width: max-content;
  transition: ease 0.3s;
  padding: 16px 24px;
  font-family: Regular;
  color: white;
  text-transform: uppercase;
  border: 1px solid #1D1D1D;
  cursor: pointer;
  font-size: 16px;
}
.btn-black svg {
  width: 16px;
  height: 16px;
  fill: white;
  transition: ease 0.3s;
}
.btn-black:hover {
  background-color: white;
  color: #1D1D1D;
}
.btn-black:hover svg {
  fill: #1D1D1D;
}

.btn-grey {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  background-color: #F4F4F4;
  border-radius: 100px;
  width: max-content;
  transition: ease 0.3s;
  padding: 16px 24px;
  font-family: Regular;
  color: #1D1D1D;
  text-transform: uppercase;
  border: 1px solid #F4F4F4;
  cursor: pointer;
}
.btn-grey svg {
  width: 16px;
  height: 16px;
  fill: white;
  transition: ease 0.3s;
}
.btn-grey:hover {
  background-color: #1D1D1D;
  border: 1px solid #1D1D1D;
  color: white;
}
.btn-grey:hover svg {
  fill: white;
}

.btn-black-special {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  background-color: #1D1D1D;
  border-radius: 100px;
  width: max-content;
  transition: ease 0.3s;
  padding: 12px 24px;
  font-family: Regular;
  color: white;
  text-transform: uppercase;
  border: 1px solid #1D1D1D;
  cursor: pointer;
  font-size: 14px;
}
.btn-black-special svg {
  width: 16px;
  height: 16px;
  fill: white;
  transition: ease 0.3s;
}
.btn-black-special:hover {
  background-color: white;
  color: #1D1D1D;
}
.btn-black-special:hover svg {
  fill: #1D1D1D;
}

.btn-red {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  background-color: #C50909;
  border-radius: 100px;
  width: max-content;
  transition: ease 0.3s;
  padding: 16px 24px;
  font-family: Regular;
  color: white;
  text-transform: uppercase;
  border: 1px solid #C50909;
  cursor: pointer;
}
.btn-red svg {
  width: 16px;
  height: 16px;
  fill: white;
  transition: ease 0.3s;
}
.btn-red:hover {
  background-color: white;
  color: #C50909;
}
.btn-red:hover svg {
  fill: #C50909;
}

.btn-arrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: #1D1D1D;
  text-transform: uppercase;
  height: fit-content;
}
.btn-arrow svg {
  width: 24px;
  height: 24px;
  transition: ease 0.3s;
}
.btn-arrow span {
  position: relative;
}
.btn-arrow span::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #1D1D1D;
  left: 0;
  bottom: 1px;
  transition: ease 0.3s;
}
.btn-arrow:visited {
  color: #1D1D1D;
}
.btn-arrow:hover span::after {
  width: 0;
  left: 50%;
}
.btn-arrow:hover svg {
  transform: scale(0.9);
}

.btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease 0.3s;
}
.btn svg {
  width: 24px;
  height: 24px;
  transition: ease 0.3s;
}
.btn:hover {
  background-color: #1D1D1D;
}
.btn:hover svg {
  fill: white;
}

.arrow-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  color: #1D1D1D;
  padding: 24px 0;
}
.arrow-link svg {
  width: 24px;
  height: 24px;
  opacity: 0;
  transform: scale(0.8);
  transition: ease 0.4s;
}
.arrow-link:visited {
  color: #1D1D1D;
}
.arrow-link:hover svg {
  opacity: 1;
  transform: scale(1);
}

.link {
  position: relative;
  color: #1D1D1D;
  text-transform: uppercase;
  width: fit-content;
  font-size: 12px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  background-color: transparent;
  padding: 0;
  cursor: pointer;
}
.link:visited {
  color: #1D1D1D;
}
.link::after {
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 0;
  background-color: #1D1D1D;
  transition: ease 0.3s;
  content: "";
}
.link:hover::after {
  left: 50%;
  width: 0;
}

.link2 {
  position: relative;
  color: #1D1D1D;
  width: fit-content;
  line-height: 1.2;
  letter-spacing: -0.01em;
  transition: ease 0.3s;
}
.link2:visited {
  color: #1D1D1D;
}
.link2:hover {
  color: rgba(29, 29, 29, 0.5);
}

.link3 {
  position: relative;
  color: #1D1D1D;
  width: fit-content;
  font-size: 14px;
  line-height: 1.1;
  background-color: transparent;
  padding: 0;
  cursor: pointer;
  display: flex;
}
.link3:visited {
  color: #1D1D1D;
}
.link3::after {
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 0;
  background-color: #1D1D1D;
  transition: ease 0.3s;
  content: "";
}
.link3:hover::after {
  left: 50%;
  width: 0;
}

@media (max-width: 768px) {
  .arrow-link {
    padding: 22px 0;
  }
  .arrow-link svg {
    opacity: 1;
  }
  .btn-arrow {
    font-size: 14px;
  }
}
.input {
  font-family: Regular;
  font-size: 14px;
  color: #1D1D1D;
  line-height: 1.2;
  width: 100%;
  border: 0;
  outline: none;
  background-color: rgba(29, 29, 29, 0.05);
  border-radius: 50px;
  padding: 19px 16px;
}
.input::placeholder {
  color: #1D1D1D;
  transition: ease 0.3s;
}
.input:focus::placeholder {
  opacity: 0;
}

.select {
  font-family: Regular;
  font-size: 14px;
  color: #1D1D1D;
  line-height: 1.2;
  width: 100%;
  border: 0;
  outline: none;
  background-color: rgba(29, 29, 29, 0.05);
  border-radius: 50px;
  padding: 19px 16px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'><path d='M11.848.146a.5.5 0 0 1 0 .707L6.385 6.337a.55.55 0 0 1-.78 0L.14.853A.5.5 0 0 1 .848.147l5.147 5.165L11.14.147a.5.5 0 0 1 .707-.001' fill='%23000'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px 7px;
  cursor: pointer;
}
.select::placeholder {
  color: #1D1D1D;
  transition: ease 0.3s;
}

.textarea {
  font-family: Regular;
  font-size: 14px;
  color: #1D1D1D;
  line-height: 1.2;
  width: 100%;
  border: 0;
  outline: none;
  background-color: rgba(29, 29, 29, 0.05);
  border-radius: 16px;
  padding: 19px 16px;
}
.textarea::placeholder {
  color: #1D1D1D;
  transition: ease 0.3s;
}
.textarea:focus::placeholder {
  opacity: 0;
}

.table {
  width: 100%;
  font-size: 14px;
  line-height: 1.2;
}
.table tr td {
  padding: 6px 0;
}
.table tr td:last-child {
  color: rgba(29, 29, 29, 0.5);
  text-align: right;
}

.table-info {
  width: 100%;
  font-size: 18px;
  line-height: 1.2;
  margin: 16px 0;
}
.table-info tr {
  border-bottom: 1px solid rgba(29, 29, 29, 0.1);
}
.table-info tr td {
  padding: 24px 0;
}
.table-info tr td:last-child {
  color: rgba(29, 29, 29, 0.5);
  text-align: right;
}

.modal {
  display: flex;
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  z-index: 1000;
  transition: opacity 0.4s ease, background-color 0.3s ease, visibility 0.3s ease;
}

.modal.open {
  visibility: visible;
  opacity: 1;
  background-color: rgba(29, 29, 29, 0.8);
}

.modal-content {
  background-color: white;
  max-width: min(700px, 92vw);
  width: 100%;
  position: relative;
  transition: transform 0.3s ease, opacity 0.4s ease;
  overflow: hidden;
  overflow-y: scroll;
}
.modal-content::-webkit-scrollbar {
  width: 0;
}

.modal-close {
  font-size: 24px;
  cursor: pointer;
  transition: ease 0.3s;
  color: rgba(29, 29, 29, 0.5);
}

.modal-close:hover {
  color: #1D1D1D;
}

.modal-signup {
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  z-index: 1000;
  transition: opacity 0.6s ease, background-color 0.3s ease, visibility 0.3s ease;
}

.modal-signup.open {
  visibility: visible;
  opacity: 1;
  background-color: rgba(29, 29, 29, 0.8);
}

.modal-signup-content {
  display: flex;
  background-color: white;
  max-width: 800px;
  width: calc(100% - 32px);
  position: relative;
  transform: scale(0.8);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.6s ease;
}

.modal-signup.open .modal-signup-content {
  transform: scale(1);
  opacity: 1;
}

.modal-signup-close {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 28px;
  cursor: pointer;
  transition: ease 0.3s;
  color: rgba(0, 0, 0, 0.5);
}
.modal-signup-close:hover {
  color: #1D1D1D;
}

.signup-img {
  width: 100%;
  display: flex;
  aspect-ratio: 1;
  overflow: hidden;
}
.signup-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.signup-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.signup-content img {
  width: 64px;
  height: 64px;
}
.signup-content .subtitle {
  margin: 24px auto 32px;
  max-width: 200px;
  text-align: center;
}
.signup-content form {
  width: 100%;
  max-width: calc(100% - 64px);
}
.signup-content form button {
  width: 100%;
  margin-top: 24px;
}

@media (max-width: 768px) {
  .modal-signup-content {
    flex-direction: column;
    max-width: 500px;
  }
  .modal-signup-close {
    color: white;
    top: 12px;
    right: 22px;
  }
  .signup-content {
    padding: 24px 16px;
  }
  .signup-content .subtitle {
    max-width: unset;
    margin: 8px 0 16px;
  }
  .signup-content form {
    max-width: unset;
  }
  .signup-content form button {
    margin-top: 16px;
  }
  .signup-img {
    max-height: 300px;
  }
  .modal-signup-content {
    max-height: 90vh;
    overflow: scroll;
  }
}
@font-face {
  font-family: "Regular";
  src: url("../fonts/regular.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Medium";
  src: url("../fonts/medium.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
.header {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  transition: ease 0.6s;
}

.header-top {
  padding: 8px;
  text-align: center;
  background-color: #1D1D1D;
}
.header-top .link3 {
  color: white;
  margin: 0 auto;
}
.header-top .link3::after {
  background-color: white;
}
.header-top .link3:visited {
  color: white;
}

.header-main {
  background-color: white;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: ease 0.6s;
}

.fix-header {
  margin-top: -31px;
}

.header-inner {
  max-width: 1384px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  gap: 48px;
  align-items: center;
  justify-content: space-between;
}

.burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.burger span {
  width: 20px;
  height: 2px;
  border-radius: 3px;
  background-color: #1D1D1D;
}

.logo {
  display: flex;
  max-width: 118px;
  height: 39px;
  width: 100%;
}
.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-white {
  display: none;
}

.search-field {
  position: relative;
  background-color: rgba(29, 29, 29, 0.05);
  padding: 6.5px 16px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 460px;
  width: 100%;
}

.search-svg {
  width: 24px;
  height: 24px;
  stroke: #1D1D1D;
}

.search-input {
  color: rgba(29, 29, 29, 0.8);
  font-size: 14px;
  font-family: Regular;
  width: 100%;
  border: 0;
  outline: none;
  background-color: transparent;
}
.search-input::placeholder {
  transition: ease 0.6s;
}
.search-input:focus::placeholder {
  opacity: 0;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 32px;
  width: 100%;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 48px;
}

.main-menu {
  display: flex;
  gap: 32px;
  align-items: center;
}

.main-menu-nav-item {
  text-transform: uppercase;
  position: relative;
  color: #1D1D1D;
  width: fit-content;
  font-size: 14px;
  line-height: 1.1;
  background-color: transparent;
  padding: 0;
  cursor: pointer;
  display: flex;
}
.main-menu-nav-item:visited {
  color: #1D1D1D;
}
.main-menu-nav-item::after {
  position: absolute;
  width: 0;
  height: 1px;
  left: 50%;
  bottom: 0;
  background-color: #1D1D1D;
  transition: ease 0.3s;
  content: "";
}
.main-menu-nav-item:hover::after {
  left: 0;
  width: 100%;
}

.header-dropdown {
  position: relative;
  width: max-content;
}

.dropdown-display {
  padding: 6px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}
.dropdown-display svg {
  transform: rotate(90deg);
  width: 16px;
  height: 16px;
  margin-left: 4px;
}

.dropdown-submenu {
  position: absolute;
  border: 1px solid rgba(29, 29, 29, 0.1);
  flex-direction: column;
  padding: 8px 0;
  display: none;
  background-color: white;
}

.dropdown-submenu-item {
  padding: 6px 16px;
  transition: ease 0.3s;
  font-size: 14px;
  color: #1D1D1D;
  width: 100%;
  cursor: pointer;
  display: flex;
}
.dropdown-submenu-item:visited {
  color: #1D1D1D;
}
.dropdown-submenu-item:hover {
  background-color: rgba(29, 29, 29, 0.1);
}

.header-dropdown:hover .dropdown-submenu {
  display: flex;
  z-index: 1;
}

.header-btns {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-btns svg {
  width: 22px;
  height: 22px;
}

.header-search-mobile {
  display: none;
}

.transparent .header-main {
  background-color: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.transparent .burger span {
  background-color: white;
}
.transparent .search-field {
  background-color: rgba(255, 255, 255, 0.2);
}
.transparent .search-field .search-input {
  color: white;
}
.transparent .search-field .search-input::placeholder {
  color: white;
}
.transparent .search-field .search-svg {
  stroke: white;
}
.transparent .main-menu-nav-item {
  color: white;
}
.transparent .main-menu-nav-item::after {
  background-color: white;
}
.transparent .main-menu-nav-item:visited {
  color: white;
}
.transparent .dropdown-display {
  color: white;
}
.transparent .dropdown-display svg {
  fill: white;
}
.transparent .dropdown-submenu {
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.transparent .dropdown-submenu-item {
  color: white;
}
.transparent .dropdown-submenu-item:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.transparent .header-btns svg {
  fill: white;
}
.transparent .logo-white {
  display: flex;
}
.transparent .logo-dark {
  display: none;
}

.menu-top {
  display: flex;
  padding: 16px 56px 16px 64px;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.menu-top-logo img {
  width: 118px;
  height: 39px;
  object-fit: contain;
}

.showrooms-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: #1D1D1D;
}
.showrooms-btn svg {
  width: 16px;
  height: 16px;
}
.showrooms-btn:visited {
  color: #1D1D1D;
}

.menu-top-left {
  display: flex;
  gap: 32px;
}

.menu-main {
  padding: 24px 56px 24px 64px;
}

.menu-tabs {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  gap: 16px;
}

.menu-tab {
  padding: 12px 8px;
  color: rgba(29, 29, 29, 0.5);
  font-size: 14px;
  font-family: Regular;
}
.menu-tab.active {
  border-bottom: 2px solid #1D1D1D;
  color: #1D1D1D;
  font-family: Medium;
}

.menu-content {
  display: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  flex-direction: column;
  padding-bottom: 32px;
}
.menu-content.active {
  display: flex;
}

.full-menu {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.full-menu-item {
  position: relative;
  font-size: 18px;
  color: #1D1D1D;
  width: fit-content;
}
.full-menu-item::after {
  position: absolute;
  content: "";
  bottom: -1px;
  height: 1px;
  background-color: #1D1D1D;
  left: 50%;
  width: 0;
  transition: ease 0.3s;
}
.full-menu-item:visited {
  color: #1D1D1D;
}
.full-menu-item:hover::after {
  left: 0;
  width: 100%;
}

.menu-swiper-title {
  margin: 24px 0 16px;
  font-family: Medium;
}

.main-menu-swiper {
  width: 100%;
  overflow: unset !important;
}

.main-menu-slide-img {
  aspect-ratio: 1;
  margin-bottom: 8px;
  width: 100%;
  display: flex;
}
.main-menu-slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-menu-slide-title {
  color: #1D1D1D;
}
.main-menu-slide-title:visited {
  color: #1D1D1D;
}

.main-menu-swiper-nav {
  width: 36px;
  height: 36px;
  background-color: white;
  border: 1px solid #DADADA;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 44%;
  transform: translateY(-50%);
  z-index: 1;
  cursor: pointer;
  transition: ease 0.6s;
}
.main-menu-swiper-nav svg {
  width: 20px;
  height: 20px;
}

.main-menu-swiper1-prev, .main-menu-swiper2-prev {
  transform: translateY(-50%) rotate(-180deg);
  left: -18px;
}

.main-menu-swiper1-next, .main-menu-swiper2-next {
  right: -18px;
}

.swiper-button-disabled {
  opacity: 0;
  cursor: default;
}

.menu-mini {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 32px 0;
}

.menu-mini-item {
  position: relative;
  font-size: 14px;
  color: #1D1D1D;
  width: fit-content;
}
.menu-mini-item::after {
  position: absolute;
  content: "";
  bottom: -1px;
  height: 1px;
  background-color: #1D1D1D;
  left: 50%;
  width: 0;
  transition: ease 0.3s;
}
.menu-mini-item:visited {
  color: #1D1D1D;
}
.menu-mini-item:hover::after {
  left: 0;
  width: 100%;
}

.menu-bottom {
  padding: 0 56px 32px 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.phones-mob-aside {
  display: none;
}

.menu-wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: calc(100% - 75px);
}

.back-btn {
  display: flex;
  gap: 4px;
  align-items: center;
  color: rgba(29, 29, 29, 0.5);
  margin-bottom: 32px;
}
.back-btn svg {
  width: 12px;
  height: 12px;
  transform: rotate(-180deg);
  fill: rgba(29, 29, 29, 0.5);
}

.zip {
  margin-bottom: 24px;
}
.zip .text {
  margin-bottom: 16px;
}
.zip .search-field {
  max-width: unset;
}

.showroom-item {
  margin: 48px 0;
}

.showroom-item {
  margin-bottom: 10px;
  overflow: hidden;
}
.showroom-item.active .showroom-body {
  max-height: 400px;
  padding: 16px 0 0;
}
.showroom-item.active .showroom-head-left svg {
  transform: rotate(-90deg);
}
.showroom-item .showroom-head {
  font-size: 18px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.showroom-item .showroom-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0;
}

.showroom-head-left {
  display: flex;
  gap: 8px;
}
.showroom-head-left svg {
  width: 20px;
  height: 20px;
  transform: rotate(90deg);
  transition: ease 0.6s;
}

.showroom-head-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.showroom-head-block-title {
  font-size: 16px;
}

.showroom-body-img {
  aspect-ratio: 600/220;
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-bottom: 8px;
}

.showroom-body-row {
  display: flex;
  justify-content: space-between;
  margin: 4px 0;
}

.showroom-body-info {
  display: flex;
  gap: 8px;
}

.showroom-body-btn-mob {
  display: none;
}

@media (max-width: 1200px) {
  .hide-phones-on-mobile {
    display: none;
  }
}
@media (max-width: 1000px) {
  .hide-menu-on-mobile {
    display: none;
  }
}
@media (max-width: 768px) {
  .header-inner {
    padding: 12px 16px;
  }
  .header-top .link3 {
    font-size: 10px;
  }
  .fix-header {
    margin-top: -28px;
  }
  .search-field {
    display: none;
  }
  .header-search-mobile {
    display: block;
  }
  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    max-width: 96px;
    height: 32px;
  }
  .header-btns {
    gap: 14px;
  }
  .menu-top {
    padding: 16px;
  }
  .menu-main {
    padding: 0 16px;
  }
  .full-menu-item {
    font-size: 16px;
  }
  .menu-content {
    padding-bottom: 24px;
  }
  .main-menu-swiper-nav {
    display: none;
  }
  .main-menu-slide-title {
    font-size: 12px;
  }
  .menu-bottom {
    padding: 0 16px 24px;
    row-gap: 24px;
    max-width: 340px;
  }
  .menu-bottom .social-btns .social-btn {
    border: 0;
    padding: 0;
  }
  .menu-bottom .social-btns .social-btn span {
    display: none;
  }
  .menu-bottom .social-btns .social-btn svg {
    width: 24px;
    height: 24px;
  }
  .phones-mob-aside {
    display: block;
  }
  .phones-mob-aside .dropdown-submenu {
    bottom: 32px;
    right: 0;
  }
  .showrooms-anchor {
    display: none;
  }
  .menu-modal {
    overflow-y: scroll;
  }
  .zip .search-field {
    display: block;
  }
  .showroom-head a {
    display: none;
  }
  .showroom-head-left {
    flex-direction: row-reverse;
    width: 100%;
    justify-content: space-between;
  }
  .showroom-item {
    margin: 24px 0;
  }
  .showroom-body-row {
    flex-direction: column;
    gap: 8px;
    margin: 8px 0;
  }
  .showroom-body-img {
    aspect-ratio: 300/200;
    margin-bottom: 4px;
  }
  .showroom-body-btn-mob {
    display: flex;
    margin-top: 16px;
  }
}
footer {
  max-width: 1920px;
  margin: 0 auto;
}

.footer {
  padding: 48px 32px;
  max-width: 1384px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.foo-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.foo-title {
  margin-bottom: 8px;
}

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

.foo-carron {
  display: flex;
  margin: 0 auto;
  max-width: 1320px;
  width: 100%;
  height: auto;
}

.foo-carron-mob {
  display: none;
}

@media (max-width: 768px) {
  .footer {
    padding: 48px 16px 24px;
  }
  .foo-carron {
    display: none;
  }
  .foo-carron-mob {
    display: flex;
    width: 100%;
    padding: 0 16px 16px;
  }
}