@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Comfortaa:wght@300..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  font-size: 16px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
}

body.noscroll {
  overflow: hidden;
}
p,h1,h2,h3,h4,ul,ol {
  margin-bottom: 20px;
}
a {
  color: #b20000;
}
img {
  max-width: 100%;
}
ul,ol {
  list-style-position: inside;
}
li p {
  display: inline;
}
.fixed-button {
  position: fixed;
  bottom: 5.5rem;
  right: 20px;
  background-color: #b20000;
  color: #fff;
  width: 16.063rem;
  height: 3.625rem;
  border: none;
  border-radius: 5px;
  padding: 15px 25px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 19px;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  cursor: pointer;
  z-index: 1000;
  transition: all 0.3s ease;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(178, 0, 0, 0.7);
  }

  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(178, 0, 0, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(178, 0, 0, 0);
  }
}

.fixed-button:hover {
  background-color: #ffffff;
  color: #b20000;
  border: 1px solid #b20000;
}

.df {
  display: flex;
}

.dfai {
  display: flex;
  align-items: center;
}

.dfjc {
  display: flex;
  justify-content: center;
}

.dfjcsb {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.container {
  width: 100%;
  max-width: 1620px;
  margin-left: auto;
  margin-right: auto;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  position: relative;
  z-index: 10;
}
.header.fixed {
  position: fixed;
  background-color: #fff;
  border-bottom: 1px solid #4c4e54;
  width: 100%;
  z-index: 101;
}
.nav__section:has(.header.fixed) {
  z-index: 101;
}
.header.fixed + .nav__main-content {
  margin-top: 130px;
}
.header.fixed .nav__block a,
.header.fixed .contact-block p {
  color: #4c4e54;
}
.header.fixed .nav svg path {
  stroke: #4c4e54 !important;
}
.header.fixed svg.search-icon path {
  stroke: #4c4e54 !important;
}
.logo {
  /*! width: 16.25rem; */
  /*! height: 14.25rem; */
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  /*! width: 100%; */
  /*! height: auto; */
  /*! padding: 0.5rem; */
  margin: 2rem 1rem 1.8rem 2.75rem;
}

.container__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-right: 2.5rem;
}

.nav__block {
  display: flex;
  align-items: center;
  font-family: "Roboto Condensed", sans-serif;
  gap: 1.5rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.nav a {
  color: #fff;
  text-transform: uppercase;
  font-weight: 400;
  text-decoration: none;
  font-size: 0.875rem;
}

.nav img,
.nav svg {
  margin-bottom: 3px;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 130%;
  text-transform: uppercase;
  color: #fff;
  flex-shrink: 0;
}

.contact-first {
  padding-right: 1.25rem;
}

.nav__main-content {
  height: 100%;
  display: flex;
  gap: 23.5rem;
  align-items: center;
  padding-top: 5rem;
  padding-bottom: 4rem;
}

.nav__section {
  width: 100%;
  min-height: 100vh;
  margin: 0 auto;
  color: #fff;
  display: flex;
  flex-direction: column;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 6;
}

.nav__section::before,
.nav__section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity 1s ease-in-out;
  z-index: -1;
}

.nav__section::before {
  background-image: var(--bg-image-1);
  opacity: var(--bg-opacity-1, 1);
}

.nav__section::after {
  background-image: var(--bg-image-2);
  opacity: var(--bg-opacity-2, 0);
}

.nav__block a {
  color: #fff;
}

.search-icon {
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.nav__main-container {
  padding-left: 2rem;
}

.nav__main {
  max-width: 57.938rem;
  max-height: 23.625rem;
  border: 1px solid #414141;
  background-color: #00000066;
  backdrop-filter: blur(5px);
  border-radius: 5px;
  padding: 2rem;
}

.nav__main h1 {
  font-weight: 400;
  font-size: 50px;
  font-family: "Roboto Condensed", sans-serif;
  line-height: 130%;
  letter-spacing: 4%;
  text-transform: uppercase;
  padding-top: 1rem;
}

.nav__main p {
  font-weight: 400;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: 0%;
  padding-top: 1.25rem;
  font-style: normal;
}

.nav__main a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  width: 14.688rem;
  height: 3.625rem;
  border-radius: 5px;
  border: 1px solid #ffffff;
  background-color: transparent;
  color: #fff;
  font-weight: 400;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 19px;
  text-transform: uppercase;
  margin-top: 6.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav__main a:hover {
  background-color: #b20000;
  border: 1px solid #b20000;
}

.nav__main-block {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.nav__main_block-content {
  width: 18.563rem;
  height: 5.375rem;
  border-radius: 5px;
  border: 1px solid #414141;
  background-color: #00000066;
  backdrop-filter: blur(5px);
  color: #fff;
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  font-family: "Roboto Condensed", sans-serif;
  padding: 0 0.5rem;
}

.nav__main_block-content img {
  padding-right: 0.5rem;
  width: 3.125rem;
  height: 3.125rem;
}

.mobile-menu-toggle,
.mobile-menu-close,
.nav__mobile,
.mobile__info-blocks,
.slider-navigation,
.article-card-mobile,
.footer-mobile,
.footer-none-info,
.pagination-calculate,
.color-title-door-mobile,
.info-mobile-block {
  display: none;
}

.mobile-menu-toggle {
  width: 30px;
  height: 30px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.mobile-menu-toggle svg {
  width: 100%;
  height: 100%;
  stroke: #fff;
}

.mobile-menu-close svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
}

.dot-header-container {
  display: flex;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

.dot-header-container svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: currentColor;
}

.dot-header-btn {
  display: flex;
  gap: 6px;
  align-items: center;
  margin: 0 6px;
}

.dot-header {
  width: 6.8px;
  height: 6.8px;
  border-radius: 3.42px;
  background-color: #ffffff4d;
}

.dot-header-active {
  width: 10px;
  height: 10px;
  border-radius: 5.12px;
  background-color: #ffffff80;
}

.bnt-header {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 9999px;
  border: 1px solid #9e9e9e;
  background-color: transparent;
  color: #ffffff;
  cursor: pointer;
}

.menu-closed {
  transform: translateX(100%);
}

.menu-open {
  transform: translateX(0);
}

.mobile-menu {
  position: fixed;
  top: 101px;
  right: 0;
  width: 100%;
  height: calc(100vh - 101px);
  background-color: white;
  z-index: 100;
  display: flex;
  flex-direction: column;
  padding: 20px;
  box-sizing: border-box;
  transition: transform 0.3s ease-in-out;
  overflow-y: auto;
}

.fixed-button-mobile {
  border-radius: 5px;
  background-color: #b20000;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 23.26px;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  border: none;
  padding: 10px 65px;
}

.metal__doors h2 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 25px;
  margin-bottom: 5rem;
  text-transform: uppercase;
  padding-top: 5rem;
}

.metal__doors-img img {
  position: relative;
  bottom: 30px;
  left: 0;
  padding-left: 3.313rem;
  max-width: 33rem;
  height: auto;
}

.metal__doors-info {
  display: flex;
  height: 448px;
  border-radius: 5px;
  background-color: #f5f5f5;
}

.doors__info-items {
  padding-top: 2.3rem;
  margin-left: 8.4rem;
}

.doors__info_items {
  margin-top: 1.875rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 1rem;
}

.doors__info_items-left,
.doors__info_items-right {
  display: flex;
  flex-direction: column;
  row-gap: 1.25rem;
}

.doors__info-items>span {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
  font-size: 16px;
  display: block;
  line-height: 150%;
}

.doors__info_item a {
  color: black;
  text-decoration: underline;
}

.doors__info_item img {
  margin-right: 10px;
  flex-shrink: 0;
}
.doors__info_item > div:last-child {
  width: calc(100% - 60px);
}
.doors__info_items-right {
  margin-left: 1rem;
}

.doors__info_items-left .doors__info_item:last-child,
.doors__info_items-right .doors__info_item:last-child {
  margin-bottom: 0;
}

.doors__info_item span {
  font-weight: 400;
  font-size: 18px;
  font-family: "Roboto Condensed", sans-serif;
  display: block;
}

.doors__info_item p {
  font-weight: 300;
  font-size: 15px;
  font-family: "Roboto Condensed", sans-serif;
  margin-top: 5px;
  line-height: 150%;
}

.discount {
  background-image: url("/img/saleFon.svg");
  display: flex;
  align-items: center;
  margin-top: 5rem;
  padding: 1.25rem 0 1.25rem 1rem;
  background-repeat: no-repeat;
  background-size: cover;
}

.discount__offer {
  width: 30.688rem;
  height: 12.5rem;
  background-color: #ffc41f;
  border-radius: 5px;
  flex-shrink: 0;
}

.discount__offer-banner {
  width: 28.813rem;
  height: 10.625rem;
  background-color: #ffc41f;
  border-radius: 5px;
  border: 1px dashed #ffffff;
  margin: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.discount__offer-banner h3 {
  font-weight: 400;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 37px;
  text-align: center;
  text-transform: uppercase;
}

.discount__offer-banner p {
  font-weight: 700;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 59px;
  text-align: center;
  margin: 0;
}

.discount__popular-doors {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-left: 2rem;
}

.discount__popular-doors h3 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 25px;
  text-transform: uppercase;
  padding-top: 2rem;
  margin: 0;
}

.discount__popular-doors p {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0%;
  margin: 0;
}

.promo-section {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

.offer-banner {
  background-color: #f7b731;
  padding: 2rem;
  text-align: center;
  border: 2px dashed #fff;
  border-radius: 5px;
}

.offer-banner h3 {
  margin: 0 0 0.5rem 0;
  font-size: 24px;
  font-weight: 700;
  color: #333;
}

.offer-banner .offer-discount {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  color: #000;
}

.popular-doors h2 {
  margin: 0 0 1rem 0;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  color: #333;
}

.popular-doors p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(270px, 1fr));
  gap: 1.5rem;
  margin-top: 5rem;
}

.product-card {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  padding: 1rem;
}

.product-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: scale(1.02);
}

.product-image-wrapper {
  position: relative;
  display: flex;
}
.product-item__image {
  margin: auto;
}
.product-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.product-badges {
  display: flex;
  position: absolute;
  top: -2px;
  right: -4px;
  gap: 5px;
  z-index: 1;
}

.badge {
  padding: 5px 8px;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  border-radius: 5px;
  text-transform: uppercase;
  font-family: "Roboto Condensed", sans-serif;
}

.badge-sale {
  background-color: #e74c3c;
  font-family: "Roboto Condensed", sans-serif;
  width: 2.563rem;
  height: 1.7rem;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.badge-hit {
  background-color: #27ae60;
  font-family: "Roboto Condensed", sans-serif;
  width: 2.563rem;
  height: 1.7rem;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.badge-new {
  background-color: #3498db;
  font-family: "Roboto Condensed", sans-serif;
  width: 4.438rem;
  height: 1.7rem;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.product-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-name {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  color: #333;
  margin: 0 0 1rem 0;
  flex-grow: 1;
  text-decoration: none;
}

.price__from {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 20px;
  font-weight: 300;
}

.product-price {
  margin-bottom: 1rem;
  font-size: 14px;
  color: #555;
}

.product-price .current-price {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  margin-right: 8px;
  font-family: "Roboto Condensed", sans-serif;
}

.price__del {
  color: #9a9a9a;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
  font-size: 24px;
  line-height: 1.3;
  text-decoration: line-through;
  display: inline-block;
}

.product-price del {
  font-size: 14px;
  color: #999;
  text-decoration: line-through;
}

.product-actions {
  display: flex;
  gap: 5px;
}

.product-actions img {
  width: 1.5rem;
  height: 1.5rem;
  margin-left: 0.5rem;
}

.product-actions button,
.product-actions a {
  flex-grow: 1;
  padding: 10px;
  font-size: 19px;
  font-weight: 700;
  text-transform: uppercase;
  border: 1px solid;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.product-actions a {
  text-decoration: none;
}

.btn-buy {
  background-color: #b20000;
  height: 2.75rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 19px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s ease;
  border-radius: 5px;
}

.btn-details {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-color: #ddd;
  color: #c0392b;
  height: 2.75rem;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 19px;
  text-transform: uppercase;
  border-radius: 5px;
}

.btn-buy:hover {
  background-color: #970101;
}

.card-button .icon-hover {
  display: none;
}

.card-button:hover .icon-hover {
  display: block;
}

.card-button:hover .icon-normal {
  display: none;
}

.btn-details:hover {
  background-color: #b20000;
  color: #fff;
}

.show-more-container {
  text-align: center;
  margin-top: 2rem;
}

.show-more-btn {
  width: 16.063rem;
  height: 3.625rem;
  background-color: white;
  color: #b20000;
  border: 1px solid #b20000;
  border-radius: 5px;
  font-size: 19px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.show-more-btn:hover {
  background-color: #b20000;
  color: #fff;
}

.catalog {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.catalog__h2 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 25px;
  text-transform: uppercase;
  margin-top: 5rem;
  margin-bottom: 3rem;
  grid-column: 1 / -1;
  text-align: left;
}

.main__catalog {
  border: 1px solid #e1e1e1;
  border-radius: 5px;
  padding: 1rem 1.5rem;
  box-sizing: border-box;
}

.main__catalog-card {
  display: flex;
  gap: 1.5rem;
}

.main__catalog_card-conatiner {
  display: flex;
  width: 40%;
}

.main__catalog_card-conatiner h3 {
  display: none;
}

.main__catalog-card h3 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 26px;
  margin: 0;
  padding-bottom: 1.5rem;
  padding-top: 1rem;
}

.main__catalog_card-img {
  /*! width: 40%; */
  height: auto;
  object-fit: cover;
  align-self: center;
}



.main__catalog:nth-of-type(4) .main__catalog-card h3 {
  padding-left: 1.5rem;
}

.main__catalog:nth-of-type(4) .main__catalog_card-text {
  padding-left: 1.3rem;
}

.main__catalog_card-content {
  width: 60%;
}

.main__catalog_card-gap {
  display: flex;
  justify-content: space-between;
  gap: 1.3rem;
}

.main__catalog_card-text {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 16px;

  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-basis: 50%;
  flex-grow: 1;
}

.main__catalog_card-item {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 2px 8px;
  align-items: start;
}

.main__catalog_card-item a {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: #b20000;
  text-decoration: none;
}

.item-price a {
  font-size: 16px;
}

.main__catalog_card-item div {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

.main__catalog_card-item p {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  color: #b20000;
  font-size: 14px;
}

.vector-catalog {
  margin-top: 6px;
}

.form-section {
  margin-top: 5rem;
  background-color: #f5f5f5;
  border-radius: 0.5rem;
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}

.form-grid {
  display: flex;
  gap: 7.875rem;
}

.form-content {
  margin-top: 5.375rem;
  padding-bottom: 4rem;
}

.form-header h2 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-style: Regular;
  font-size: 25px;
  text-transform: uppercase;
  margin-top: 5.375rem;
  margin-left: 1rem;
}

.form-header h3 {
  display: none;
}

.form-content form>*+* {
  margin-top: 1rem;
}

.form-label {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 22px;
}

.price-grid {
  display: flex;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 0.5rem;
}

.select-grid {
  display: flex;
  gap: 1rem;
}

.custom-select {
  position: relative;
  width: 16.27rem;
  background: transparent;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  border: 1px solid #d4d4d4;
}

.submit__button-select-grid {
  width: 10.438rem;
  height: 3.625rem;
  background-color: #b20000;
  opacity: 1;
  border-radius: 5px;
  padding-top: 17px;
  padding-right: 34px;
  padding-bottom: 17px;
  padding-left: 34px;
  border: none;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-style: Regular;
  font-size: 19px;
  text-transform: uppercase;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.submit__button-select-grid:hover {
  border: 1px solid #b20000;
  color: #b20000;
  background-color: #fff;
}

.select-header,
.mainpage-search__item .chosen-single {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  font-size: 16px;
  color: #333;
  cursor: pointer;
  background: transparent;
  height: auto;
  border: unset !important;
  box-shadow: unset !important;
  color: #4b5563;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
}
.mainpage-search__item .chosen-container::after {
  content: '';
  position: absolute;
  background: url(/img/ar-grey.svg) center center no-repeat;
  right: 16px;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  transition: 0.2s;
}
.mainpage-search__item .chosen-container-active::after {
  transform: translateY(-50%) rotate(180deg); 
}

.select-header span {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 23.26px;
  color: #4b5563;
}

.select-icon {
  width: 20px;
  height: 20px;
  color: #6b7280;
  transition: transform 0.2s ease;
}

.custom-select.open .select-icon {
  transform: rotate(180deg);
}

.option-list {
  display: none;
  position: absolute;
  top: 88%;
  left: 0;
  right: 0;
  background-color: #f5f5f5;
  border: 1px solid #d4d4d4;
  border-top: none;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  max-height: 200px;
  overflow-y: auto;
  z-index: 10;
}

.custom-select.open .option-list {
  display: block;
}

.option,
.mainpage-search__item .chosen-container .chosen-results li {
  padding: 12px 16px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 23.26px;
  color: #4b5563;
  cursor: pointer;
}

.option:hover,
.mainpage-search__item .chosen-container .chosen-results li:hover,
.mainpage-search__item .chosen-container .chosen-results li.highlighted {
  background-color: #f9f9f9;
}
.mainpage-search__item .chosen-container-single .chosen-search input[type="text"] {
  height: 30px;
  background: #f5f5f5;
  font-size: 16px;
}
.option.selected {
  background-color: #f0f5ff;
  font-weight: 500;
  color: #0056b3;
}

.option:first-child {
  display: none;
}

.sort-icon {
  width: 20px;
  height: 20px;
  color: #6b7280;
  cursor: pointer;
}

.form-content input[type="text"],
.form-content select {
  width: 100%;
  padding: 0.75rem;
  font-size: 0.875rem;
  color: #525252;
  background: transparent;
  border: 1px solid #d4d4d4;
  border-radius: 0.375rem;
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
  font-size: 16px;
}

.form-content select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
}

.submit-button,
.form-button_submit,
.buySame,
.buySame2 {
  /* width: 10.438rem; */
  height: 3.625rem;
  background-color: #b20000;
  opacity: 1;
  border-radius: 5px;
  padding-top: 17px;
  padding-right: 34px;
  padding-bottom: 17px;
  padding-left: 34px;
  border: none;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-style: Regular;
  font-size: 19px;
  text-transform: uppercase;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
}
.buySame,
.buySame2 {
  width: max-content;
  display: inline-block;
  margin-top: 25px;
}

.submit-button:hover,
.form-button_submit:hover,
.buySame:hover,
.buySame2:hover {
  background-color: #fff;
  border: 1px solid #b20000;
  color: #b20000;
}

.price-list-section {
  border-radius: 0.5rem;
  overflow: auto;
}

.price-list-section h2 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 25px;
  text-transform: uppercase;
  margin-top: 5rem;
  margin-bottom: 2rem;
}

.price-list-table,
.table-term,
.table {
  border-collapse: collapse;
  width: 100%;
}

.price-list-table th,
.price-list-table td,
.table-term th,
.table-term td,
.table td,
.table th {
  padding: 1rem;
  text-align: left;
  font-size: 0.875rem;
  border-bottom: 1px solid #e7e2df;
}

.price-list-table th,
.table-term th,
.table-term th {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 22px;
  background-color: #f5f5f5;
}

.price-list-table tr:last-child td,
.table-term tr:last-child td,
.table tr:last-child td {
  border-bottom: none;
}

.price-list-table td:last-child,
.table-term td:last-child,
.table td:last-child {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
  font-size: 22px;
}

.price-list-table td:first-child,
.table-term td:first-child,
.table td:first-child {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
  font-size: 22px;
  width: 50%;
}

.delivery-prices-section {
  width: 100%;
}

.delivery-prices-section h2 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 25px;
  text-transform: uppercase;
  margin-top: 5rem;
  margin-bottom: 2rem;
}

.delivery-description {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
  font-size: 16px;
  margin-bottom: 4rem;
}

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.delivery-item {
  background-color: #f5f5f5;
  border-radius: 5px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.delivery-item-title {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
  font-size: 22px;
}

.delivery-item-price {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #4c4e54;
}

.callout-section {
  position: relative;
  background-image: url("/img/BackgroundBanner.svg");
  margin-top: 5rem;
  border-radius: 5px;
  height: 100vh;
  max-height: 25rem;
  border-radius: 5px;
}

.callout-section .checkbox-container {
  max-width: 24.5rem;
}

.form-grid-catalog .checkbox-container {
  max-width: 402px
}

.form-grid-catalog .checkbox-container {
  margin-top: 0;
  margin-left: 0;
}

.callout-section .checkbox-container span,
.form-grid-catalog .checkbox-container span {
  line-height: 18px;
}

.callout-section .checkbox-container label,
.form-grid-catalog .checkbox-container label {
  align-items: flex-start;
}

.callout-section .checkbox-label input[type="checkbox"],
.form-grid-catalog .checkbox-label input[type="checkbox"] {
  margin-top: 3px;
  margin-right: 5px;
}

.callout-background-image {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  object-position: 89% 50%;
  border-radius: 5px;
}

.callout-man-image {
  display: block;
  position: absolute;
  right: 2rem;
  bottom: 0;
  width: 350px;
  height: auto;
  z-index: 1;
}

.callout-container {
  width: 100%;
  position: relative;
  z-index: 1;
}

.callout-grid {
  display: grid;
  grid-template-columns: 1fr 4fr;
  margin-left: 0;
  margin-right: auto;
  /* display: flex;
  padding: 1rem; */
}

.callout-info h2 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 1.563rem;
  text-transform: uppercase;
  margin-top: 5.375rem;
  margin-left: 1rem;
  max-width: 300px;
}

.callout-info p {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 1.375rem;
  margin-top: 2.3rem;
  margin-left: 1rem;
  max-width: 300px;
}

.callout-info p a {
  white-space: nowrap;
  color: black;
  text-decoration: none;
}

.callout-form {
  display: flex;
}


.form-inputs {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 5.375rem;
  margin-left: 2rem;
  max-width: 24.25rem;
  width: 100%;
}

.form-inputs input[type="text"],
.form-inputs input[type="email"],
.callout-form textarea {
  width: 100%;
  font-size: 0.875rem;
  background-color: transparent;
  border: 1px solid #b5b5b5;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
  font-size: 16px;
  opacity: 1;
  border-radius: 5px;
  padding-top: 8px;
  padding-right: 10px;
  padding-bottom: 8px;
  padding-left: 10px;
  border-width: 1px;
}

.callout-form textarea {
  min-height: 8.95rem;
  resize: none;
  border-radius: 5px;
  padding-top: 8px;
  padding-right: 10px;
  padding-bottom: 8px;
  padding-left: 10px;
  border-width: 1px;
  margin-top: 5.375rem;
  max-width: 24.5rem;
  width: 100%;
  margin-left: 1rem;
}

.form-inputs input::placeholder,
.callout-form textarea::placeholder {
  color: #000000;
}

.form-inputs input:focus,
.form-inputs input:focus,
.callout-form textarea:focus {
  outline: none;
  border-color: #dc2626;
  box-shadow: 0 0 0 2px #dc2626;
}

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-actions-mobile {
  display: none;
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-left: 1rem;
  margin-top: 2rem;
}

.checkbox-container input {
  background-color: transparent;
  margin-top: 0.15rem;
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.checkbox-container label,
.checkbox-container label a {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
  font-size: 12px;
  color: #767676;
}

.gallery-section {
  width: 100%;
  margin-top: 5rem;
}

.gallery-section h2 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 25px;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 3rem;
}

.gallery-card {
  position: relative;
  height: 32.438rem !important;
  background-size: cover;
  background-position: center;
  border-radius: 0.375rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.3s ease-in-out;
}

.gallery-card:hover {
  transform: scale(1.02);
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  position: relative;
  z-index: 2;
  padding: 1rem;
  width: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 44.51%, rgba(0, 0, 0, 0.95) 100%);
  text-decoration: none;
}

.card-content h3 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: #fff;
}

.card-price {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
  font-size: 20px;
  color: #fff;
}

.card-price strong {
  font-weight: 700;
  font-style: Bold;
  font-size: 24px;
  color: #fff;
}

.card-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-style: Regular;
  font-size: 19px;
  text-decoration: none;
  color: #fff;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;

  background-color: #b20000;
  border-radius: 0.375rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
  margin-top: 10px;
}

.card-button:hover {
  background-color: #ffffff;
  border: 1px solid #b20000;
  color: #b20000;
}

.card-button svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.main-calculate-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 100%;
  max-width: 21.813rem;
  margin: 2.5rem auto 1rem auto;
  padding: 0.875rem 1.5rem;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 19px;
  text-transform: uppercase;
  text-decoration: none;
  background-color: #b20000;
  color: #ffffff;
  border: 1px solid #b20000;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

.main-calculate-button .calculate-button-hover {
  display: none;
}

.main-calculate-button:hover {
  background-color: #ffffff;
  color: #b20000;
}

.main-calculate-button:hover .calculate-button-main {
  display: none;
}

.main-calculate-button:hover .calculate-button-hover {
  display: block;
}

.main-calculate-button svg {
  width: 1.125rem;
  height: 1.125rem;
}

.pagination-calculate-main {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2.5rem;
}

.pagination-arrow-calculate-main {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 9999px;
  border: 1px solid #f7d9d9;
  background-color: transparent;
  color: #b20000;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.pagination-arrow-calculate-main:hover {
  background-color: #fcfaf9;
  border-color: #eab3b3;
}

.pagination-arrow-calculate-main svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: currentColor;
}

.reviews-section-main {
  width: 100%;
  max-width: 100rem;
  margin-top: 5.375rem;
}

.reviews-section-main h2 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 3.5rem;
}

.reviews-viewport-main {
  overflow: hidden;
    margin-bottom: 35px;
}

.reviews-grid-main {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 1rem;
  width: 100%;
}

.review-card-main {
  height: auto !important;
  flex-shrink: 0;
  box-sizing: border-box;
  border-radius: 5px;
  background-color: #f5f5f5;
  padding: 36px 11px 39px 17px;
}

.review-header-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.reviews-viewport-main .review-author-main h3,
.reviews-viewport-main .review-author-main .h3 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 18px;
  margin-bottom: 3px;
  margin-top: 0
}

.review-author-main span {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
  font-size: 13px;
}

.review-rating-main {
  display: flex;
  gap: 0.25rem;
  flex-shrink: 0;
}

.review-rating-main svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #f59e0b;
}

.review-body-main {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 150%;
  margin-top: 3px;
}

.pagination-controls-main {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2.5rem;
}

.pagination-arrow-main {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 9999px;
  border: 1px solid #f7d9d9;
  background-color: transparent;
  color: #b20000;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.pagination-arrow-main:hover {
  background-color: #fcfaf9;
  border-color: #eab3b3;
}

.pagination-arrow-main svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: currentColor;
}

.pagination-dots-main {
  display: flex;
  gap: 6px;
  align-items: center;
}

.tr-dot-main {
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background-color: #f7d9d9;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  border: none;
  padding: 0;
}

.tr-dot-main.tr-active-main,
.tr-dot-main:hover {
  background-color: #b2000080;
}

.tr-dot-main.tr-active-main {
  width: 10px;
  height: 10px;
}

.production-section {
  background-image: url("/img/ExitFon.svg");
  margin-top: 5.392rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 5px;
}

.production-section-container {
  display: flex;
}

.production-header {
  width: 100%;
}

.production-header h2 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 25px;
  text-transform: uppercase;
  padding-top: 5.375rem;
  padding-bottom: 1.25rem;
}

.production-content {
  flex-direction: row;
  gap: 1.5rem;
  padding: 0 4.75rem 2.75rem 1.063rem;
}

.production-text {
  flex: 2;
  font-size: 0.875rem;
  color: #525252;
  line-height: 1.6;
  text-align: justify;
}

.production-text p {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 150%;
}

.production-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.production-image img {
  max-height: 32rem;
  object-fit: cover;
  margin-top: 2.1rem;
  margin-right: 16px;
}

.useful-section {
  margin-top: 5.375rem;
}

.useful-section-title {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 25px;
  text-transform: uppercase;
  margin-bottom: 3.5rem;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.article-card {
  display: flex !important;
  height: initial !important;
}

.article-image {
  flex-shrink: 0;
}

.article-image img {
  max-width: 9.688rem;
  height: 9.688rem;
  border-radius: 5px;
}

.article-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin-left: 1.25rem;
}

.article-content h3,
.article-content .h3 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 18px !important;
  color: #000000;
  margin-bottom: 3px !important;
  margin-top: 0 !important;
}

.article-date {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
  color: #4c4e54;
  font-size: 13px;
  margin-bottom: 3px;
}

.article-description {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 150%;
  margin-bottom: 1.375rem;
}

.article-button {
  align-self: flex-start;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  color: #b20000;
  border: 1px solid #b20000;
  background-color: transparent;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  margin-top: auto;
}

.article-button:hover {
  background-color: #b20000;
  color: #fff;
}

.slider-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #b96767;
}

.slider-arrow:hover {
  background-color: #f0f0f0;
  border-color: #a82e2e;
}

.slider-arrow svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: #b20000;
}

.slider-arrow:hover svg {
  fill: #a82e2e;
}

.footer {
  background-color: #404349;
  margin-top: 5.375rem;
}

.line {
  width: 100%;
  height: 1px;
  background-color: #ffffff33;
  margin-top: 3.5rem;
  margin-bottom: 2rem;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  padding-top: 90px;
}

.footer-nav {
  display: flex;
  gap: 9.375rem;
}

.footer-col h4,
.footer-col .h4 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 23px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  line-height: 150%;
}

.footer-col li {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 23px;
  line-height: 150%;
  color: #fff;
  padding-top: 8px;
}

.footer-info a {
  text-decoration: none;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 23px;
  line-height: 150%;
  color: #fff;
}

.footer-col a:hover {
  color: #fff;
}

.footer-col .group {
  margin-top: 2.75rem;
}

.footer-contact .logo-placeholder {
  width: 13rem;
  height: 6.813rem;
  margin-bottom: 2.5rem;
}

.footer-contact .logo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-contact p {
  margin: 0.5rem 0;
}

.footer-contact .footer-phone {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 23px;
  line-height: 150%;
  text-transform: uppercase;
  text-decoration: underline;
  color: #fff;
}

.call_fon {
  margin-top: 20px;
}

.footer-adrees p {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 23px;
  line-height: 150%;
  text-transform: uppercase;
  color: #fff;
}

.footer-contact .phone:hover {
  color: #c7c7c7;
}

.footer-contact .call-button {
  cursor: pointer;
  background-color: transparent;
  color: #fff;
  height: 2.75rem;
  padding: 10px 20px 10px 20px;
  border: 1px solid #ffffff;
  border-radius: 5px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 19px;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
  transition: all .2s ease-in;
}

.footer-contact .call-button:hover {
  background-color: #fff;
  color: #373a3c;
  border-color: #fff;
}

.footer-contact .footer-email {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 23px;
  line-height: 150%;
  text-transform: uppercase;
  color: #fff;
}

.footer-adrees {
  margin-top: 1.25rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  padding-top: 1.5rem;
  font-size: 0.75rem;
  color: #808080;
  padding-bottom: 30px;
}

.footer-policy {
  margin-top: 2.25rem;
}

.footer-policy-first {
  margin-bottom: 8px;
}

.footer-policy a {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #808080;
  text-decoration: none;
}

.copyright {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 18px;
}

.copyright-second {
  margin-top: 8px;
}

.footer-bottom .footer-policy a:hover {
  color: #fff;
}

.footer-bottom .developer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.developer span {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #fff;
  white-space: nowrap;
}

.copyright p {
  max-width: 523px;
  margin: 0;
}

.footer-bottom .developer img {
  width: 11.625rem;
  height: 2rem;
}

.header-catalog {
  width: 100%;
  height: 7.875rem;
  background-color: #fff;
  border-bottom: 1px solid #4c4e54;
  /* display: flex; */
  position: fixed;
  width: 100%;
  z-index: 101;
}

.nav__block-catalog {
  /* margin-left: 18.688rem; */
  display: flex;
  align-items: center;
}

.container__nav-catalog {
  display: flex;
}

.logo-catalog img {
  margin: 2rem 1rem 1.8rem 2.75rem;
}

.nav-catalog {
  display: flex;
  gap: 0.7rem;
}

.nav-catalog a {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 15px;
  text-transform: uppercase;
  color: #4c4e54;
  text-decoration: none;
}

.nav-catalog img {
  margin-bottom: 2px;
}

.search__icon-catalog {
  color: #4c4e54;
  width: 24px;
  height: 24px;
  cursor: pointer;
}
.search-wrap--catalog {
  margin-left: 2rem;
  margin-right: 2rem;
}
.contact_block-catalog {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 130%;
  text-transform: uppercase;
  color: #4c4e54;
}
.contact_block-catalog p,
.contact-block p {
  margin: 0;
}
.contact-block__mail,
.contact-block__phone,
.contact-block__call {
  font-weight: 600;
  font-size: 17px;
}
.contact_first-catalog {
  padding-top: 1.2rem;
  margin-right: 2.25rem;
}

.contact_second-catalog {
  padding-top: 2.3rem;
}

.contact_block-catalog a {
  color: #4c4e54;
}

.nav__main_block-catalog {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.25rem;
}

.nav__main_block-content-catalog {
  width: 24.313rem;
  height: 5.375rem;
  border-radius: 5px;
  background-color: #00000066;
  backdrop-filter: blur(5px);
  color: #fff;
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  font-family: "Roboto Condensed", sans-serif;
  padding: 0.5rem;
  box-sizing: content-box;
}
.nav__main_block-content-catalog p,
.nav__main_block-content p {
  margin-bottom: 0;
}
.nav__main_block-content-catalog img {
  margin-right: 10px;
}

.catalog-sidebar-page {
  flex: 0 0 260px;
  margin-top: 4.625rem;
}

.sidebar-menu-page h3 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 14px;
}

.sidebar-menu-page p {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #000;
  margin-top: 20px;
}

.sidebar-menu-page ul {
  list-style: none;
  padding-left: 0;
}

.sidebar-menu-page li {
  margin-top: 20px;
}

.sidebar-menu-page li a {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 16px;

  color: #4c4e54;
  text-decoration: none;
}

.sidebar-menu-page li a:hover {
  color: #b20000;
}

.catalog-line {
  width: 24.313rem;
  height: 2.375rem;
  border-bottom: 1px solid #f5f5f5;
  margin-right: 20px;
  text-transform: uppercase;
}

.catalog-line-last {
  margin-top: 20px;
}

.sidebar-menu-page>ul>li {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: #000;
}

.sidebar-menu-page ul ul li {
  margin-bottom: 0.4rem;
}

.sidebar-menu-page img {
  margin-right: 6px;
}

.catalog-main-page {
  flex: 1;
  min-width: 0;
  margin-top: 30px;
}

.breadcrumbs-page {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 14px;
  vertical-align: middle;
  color: #4c4e54;
}

.breadcrumbs-page a {
  text-decoration: none;
  color: #4c4e54;
}

.breadcrumbs-page a:hover {
  text-decoration: underline;
}

.catalog-main-page h1 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 48px;
  margin-top: 10px;
  text-transform: uppercase;
  color: #4c4e54;
}

.filter-toggle-page {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1rem 2.5rem 1rem 2.5rem;
  margin-top: 2.6rem;
  margin-bottom: 1.875rem;
  border-radius: 5px;
  border: 1px solid #4c4e54;
  background-color: #fff;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 19px;
  text-transform: uppercase;
  color: #4c4e54;
  cursor: pointer;
}

.filter-toggle-page img {
  width: 22px;
  height: 22px;
}

.filter-toggle-page-btn {
  display: none;
}

.catalog-main-page h2 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 25px;
  text-transform: uppercase;
  margin-top: 3.625rem;
  margin-bottom: 2.25rem;
}

.pagination-info-page {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
  font-style: Light;
  font-size: 18px;
  margin-right: 14px;
}
.category-filter2__info-value {
  font-weight: 600 !important;
}
.sort-bar-page {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
  font-weight: 300;
}

.sort-bar {
  width: 15.875rem;
  height: 2.5rem;
  border-radius: 5px;
  border: 1px solid #b5b5b5;
  padding: 8px 10px 8px 10px;
}

.sort-bar-page div {
  /* display: flex; */
  align-items: center;
  gap: 0.5rem;
}
.view-count-page {
   display: flex;
  align-items: center;
  gap: 0.5rem;
}
.sort-bar-page label {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
  font-size: 16px;
}

.sort-bar-page select {
  border: none;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
  font-size: 16px;
}

.filter-sidebar {
  font-family: "Roboto Condensed", sans-serif;
  border: 1px solid #4c4e54;
  padding: 1.5rem 2rem;
  width: 100%;
  margin: 2rem auto;
  border-radius: 4px;
}

.filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.filter-info .filter-title {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 19px;
  text-transform: uppercase;
  color: #4c4e54;
  margin: 0;
}

.filter-close-btn {
  background: none;
  border: none;
  font-size: 2.5rem;
  line-height: 1;
  color: #666;
  cursor: pointer;
  padding: 0;
}

.filter-form {
  width: 100%;
}

.filter-group {
  border: none;
  padding: 0;
  margin: 0;
  margin-bottom: 2rem;
}

.filter-group-title,
.category-filter__options-item-title {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 120%;
  margin-bottom: 0.7rem;
}

.price-inputs,
.category-filter__prices-row  {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.price-input-wrapper,
.category-filter__price {
  flex: 1;
  min-width: 250px;
}
.category-filter__options-item-fields {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.category-filter__field {
  display: flex;
  align-items: center;
  font-size: 16px;
  gap: 10px;
}
.category-filter__slider {
  margin: 20px 0;
}
.category-filter__field-name .t {
  color: #000;
}
.category-filter__options-item {
  margin: 10px 0;
}
.fil-bl .show_more_link {
  display: none !important;
}
.price-input-wrapper input[type="text"],
.category-filter__price input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  color: #333;
  background-color: #fff;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  box-sizing: border-box;
}

.price-input-wrapper input[type="text"]::placeholder {
  color: #9ca3af;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 23.26px;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-right: 0.75rem;
  flex-shrink: 0;
  /* accent-color: #0644f1; */
}

.filter-footer {
  margin-top: 2rem;
}

.filter-apply-btn,
.filter_search {
  margin-top: 1rem;
  background-color: #b20000;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 0.85rem 2.5rem;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 19px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.filter-apply-btn:hover {
  background-color: #9a0000;
}

.filter-info {
  display: none;
}

.sort-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
  font-size: 16px;
}

.custom-select-sort-bar select {
  display: none;
}

.custom-select-sort-bar {
  position: relative;
  width: 250px;
  font-family: "Roboto Condensed", sans-serif;
}

.select-selected {
  background-color: #fff;
  padding: 8px 16px;
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  position: relative;
  font-weight: 300;
  font-size: 16px;
}

.select-selected::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #4c4e54;
  transition: all 0.2s ease;
}

.select-selected.select-arrow-active::after {
  transform: translateY(-50%) rotate(180deg);
}

.select-items {
  position: absolute;
  background-color: #ffffff;
  top: calc(100% + 5px);
  left: 0;
  right: 0;
  z-index: 99;
  border: 1px solid #b5b5b5;
  border-radius: 5px;
  overflow: hidden;
}

.select-hide {
  display: none;
}

.select-items div {
  padding: 10px 16px;
  cursor: pointer;
  font-weight: 300;
  font-size: 0.8rem;
  transition: background-color 0.2s ease;
}

.select-items div:hover,
.same-as-selected {
  background-color: #b20000;
  color: #fff;
}

.view-count-page span {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
  font-size: 16px;
}

.strong {
  font-weight: 600;
}

.view-count-page a,
.category-filter2__quantity-item {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 18px;
}
.view-count-page a {
  color: #b20000;
}
.view-count-page a.active-page {
  color: #000000;
  text-decoration: none;
}

.product-grid-page {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.product-card-page {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease;
  padding: 1.25rem;
}

.product-card-page:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-image-wrapper-page {
  position: relative;
}

.product-image-wrapper-page img {
  width: 100%;
  height: auto;
  display: block;
}

.product-tags-page {
  position: absolute;
  top: -7px;
  right: -4px;
  display: flex;
  gap: 5px;
}

.product-tags-page span {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  padding: 4px 6px 4px 6px;
  text-align: center;
  border-radius: 5px;
}

.tag-new-page {
  background-color: #1bb0f6;
  font-family: "Roboto Condensed", sans-serif;
  width: 4.438rem;
  height: 1.7rem;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.tag-hit-page {
  background-color: #42bd4e;
  font-family: "Roboto Condensed", sans-serif;
  width: 2.563rem;
  height: 1.7rem;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.tag-sale-page {
  background-color: #ff2b42;
  font-family: "Roboto Condensed", sans-serif;
  width: 2.563rem;
  height: 1.7rem;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.product-title-page {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 1.25rem;
  margin-top: 1rem;
}

.product-price-page {
  margin-bottom: 1.3rem;
  margin-top: 1.25rem;
}

.product-price-page .price-label-page {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
  font-size: 1.25rem;
  color: #000000;
}

.product-price-page .price-current-page {
  font-family: Roboto Condensed;
  font-weight: 700;
  font-size: 1.5rem;
  color: #000000;
  margin-left: 5px;
}

.product-price-page .price-old-page {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
  font-style: Light;
  font-size: 1.5rem;
  text-decoration: line-through;
  color: #9a9a9a;
  margin-left: 7px;
}

.product-actions-page {
  display: flex;
  gap: 0.5rem;
}

.product-actions-page button {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 1.188rem;
  line-height: 23.26px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  width: 11.625rem;
  height: 2.75rem;
  border: 1px solid #b20000;
  border-radius: 5px;
}

.product-actions-page a {
  text-decoration: none;
}

.btn-buy-page {
  background-color: #b20000;
  color: #fff;
  border-color: #b20000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.btn-buy-page:hover {
  background-color: #9e0101;
  border-color: #9e0101;
  color: #fff;
}

.btn-buy-page svg {
  width: 0.875rem;
  height: 0.875rem;
  fill: #fff;
}

.btn-details-page {
  background-color: #fff;
  color: #b20000;
  border-color: #ccc;
  transition: all 0.2s ease-in-out;
}

.btn-details-page:hover {
  background-color: #b20000;
  color: #fff;
}

.catalog-container-page {
  display: flex;
}

.pagination-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2.438rem;
}

.pagination-summary span {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
  font-size: 18px;
}

.pagination-summary .strong {
  font-weight: 600;
}

.pagination-list {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0.25rem;
}

.pagination-list li {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #000;
}

.pagination-list a,
.pagination-list span {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  border-radius: 0.375rem;
  text-decoration: none;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #000;
}

.pagination-list a:hover {
  background-color: #f9fafb;
}

.pagination-list span.ellipsis {
  color: #6b7280;
}

.pagination-list a.active {
  background-color: #f5f5f5;
  color: #4c4e54;
}

.calculator, .kalkulator_new__block {
  background-color: #f5f5f5;
  border-radius: 5px;
  margin-top: 5.6rem;
  margin-bottom: 35px;
}

.calculator-container, .kalkulator_new__block {
  padding: 1.875rem 1.875rem 2rem 1.875rem;
}

.calculator-container h2, .kalkulator_new__block h2  {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 25px;
  text-transform: uppercase;
  margin-bottom: 1.25rem !important;
  margin-top: 0 !important;
}

.form-grid-catalog,
.kalkulator_new__block .call-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.kalkulator_new__block .call-form__row .call-form__column:nth-child(2) {
  margin-top: 27px;
}
.kalkulator_new__block .submit-button {
  width: 100%;
}
.select_item span {
  display: block;
  font-weight: 400;
  font-size: 22px;
}
.form-group label {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 22px;
}

.form-left input[type="text"],
.form-left input[type="tel"],
select.for_blist_label.rd,
.kalkulator_new__block .form-textfield {
  width: 100%;
  padding: 8px 10px 8px 10px;
  border: 1px solid #b5b5b5;
  background-color: transparent;
  border-radius: 0.375rem;
  box-sizing: border-box;
  transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: #000;
  margin-bottom: 20px;
  margin-top: 10px;
}

.form-left input[type="text"]:focus,
.form-left input[type="tel"]:focus {
  outline: none;
  border-color: #9ca3af;
  box-shadow: 0 0 0 1px #9ca3af;
}
.kalkulator_new__block .form-textfield::placeholder,
.form-left input::placeholder {
  color: #000;
}

.form-right input[type="text"],
.form-right input[type="tel"] {
  width: 100%;
  padding: 8px 10px 8px 10px;
  border: 1px solid #b5b5b5;
  background-color: transparent;
  border-radius: 0.375rem;
  box-sizing: border-box;
  transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: #000;
}

.form-right input::placeholder {
  color: #000;
}

.select-like-input {
  background-color: #fff;
}

.form-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 37px;
}

.consent-section {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #000000;
}

.consent-section input[type="checkbox"] {
  margin-top: 0.15rem;
}
.form-privacy,
.consent-section label {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
  font-size: 12px;
  color: #767676;
  margin-top: 1rem;
}
.modal .form-privacy {
  margin-bottom: 1rem;
}
.consent-section a {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
  font-size: 12px;
  color: #767676;
  text-decoration: none;
}

.consent-section a:hover {
  color: #1f2937;
}

.info-text {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 150%;
  margin-top: 2.5rem;
}

.features-container {
  width: 100%;
  margin-top: 5.375rem;
}

.features-container h2 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 25px;
  text-transform: uppercase;
  color: #000;
}

.features-container .intro-text {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 150%;
  margin-top: 1.25rem;
  margin-bottom: 3.5rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.feature-item {
  background-color: #f5f5f5;
  border: none;
  border-radius: 5px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
  font-size: 22px;
  line-height: 120%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 4.125rem;
}

.features-container .footer-text {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #4b5563;
}

.how-to-buy-container {
  width: 100%;
  margin-top: 5.375rem;
}

.how-to-buy-container h2 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 25px;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 3.5rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 35px;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.step-icon {
  flex-shrink: 0;
}

.step-icon img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: block;
}

.step-content h3,
.step-content .h3 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
}

.step-content p {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: #000;
  line-height: 150%;
  margin-top: 3px;
}

.step-content p a {
  color: #000;
  text-decoration: underline;
  line-height: 150%;
}

.step-content p a:hover {
  color: #1f2937;
}

.delivery-item-catalog {
  display: flex;
  justify-content: center;
  background-color: #f5f5f5;
  border-radius: 5px;
  padding: 1.25rem 1rem 1.25rem 1rem;
  flex-direction: column;
  gap: 0.25rem;
}

.samples-container {
  width: 100%;
  margin-top: 5.375rem;
}

.samples-section {
  margin-bottom: 2.5rem;
}

.samples-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.samples-header h2 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 25px;
  text-transform: uppercase;
}

.samples-header .view-more {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 19px;
  text-transform: uppercase;
  color: #b20000;
  border: 1px solid #b20000;
  border-radius: 5px;
  padding: 10px 20px 10px 20px;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
}

.samples-header .view-more:hover {
  background-color: #b20000;
  color: #ffffff;
}

.view-more-mobile {
  display: none;
}

.samples-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 1rem;
}

.samples-grid-two {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 1rem;
}

.sample-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 0.375rem;
  width: 111px;
  height: 111px;
}
.samples-kov__swiper .sample-item img,
.samples-frez__swiper .sample-item img,
.samples-frez-mas__swiper .sample-item img,
.samples-mir__swiper .sample-item img {
  aspect-ratio: unset;
  height: auto;
}
.item-two img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 0.375rem;
}

.hardware-container {
  width: 100%;
  margin-top: 5.375rem;
}

.hardware-section {
  margin-bottom: 3rem;
}

.hardware-section h2 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 25px;
  text-transform: uppercase;
  margin-bottom: 3.5rem;
}

.hardware-grid {
  display: flex;
  gap: 1rem;
}

.hardware-item {
  border-radius: 0.375rem;
  background-color: #ffffff;
  text-align: left;
  max-width: 226px;
}

.hardware-item-image {
  width: 100%;
  display: flex;
  align-items: center;
  min-height: 200px;
}

.hardware-item-image img {
  width: 100%;
}

.hardware-item-info {
  padding-top: 1rem;
}

.hardware-item-info p {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  line-height: 120%;
  color: #000;
}

.best-models-container {
  width: 100%;
  margin-top: 5.375rem;
}

.best-models-container h2 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 25px;
  text-transform: uppercase;
  margin-bottom: 3.5rem;
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.model-card {
  border: 1px solid #e5e7eb;
  border-radius: 0.375rem;
  background-color: #ffffff;
  text-align: left;
  overflow: hidden;
  display: flex !important;
  flex-direction: column;
}

.model-card-image {
  display: block;
  width: 100%;
  padding-top: 1.1rem;
  height: 300px;
  object-fit: contain;
  margin: auto;
}

.model-card-info {
  padding: 11px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.model-card-info p {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
}

.model-card-info .price {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1f2937;
}

.model-card-info .price-label {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
  font-style: Light;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: 0%;
}

.price-strong {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-style: Bold;
  font-size: 24px;
  line-height: 120%;
  letter-spacing: 0%;
  margin-left: 5px;
  white-space: nowrap;
}

.model-price {
  margin-top: 20px;
}

.gallery-container {
  width: 100%;
  margin-top: 3.375rem;
}

.gallery-container h2 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 25px;
  text-transform: uppercase;
  margin-bottom: 3.5rem;
}

.slider-wrapper {
  position: relative;
}

.slider-viewport {
  overflow: hidden;
  width: 100%;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  flex: 0 0 25%;
  box-sizing: border-box;
  padding: 0 0.5rem;
}

.slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.375rem;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.slider-nav {
  display: flex;
  align-items: center;
  padding-top: 1.5rem;
}

.pagination-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 9999px;
  border: 1px solid #f7d9d9;
  background-color: transparent;
  color: #b20000;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.pagination-arrow:hover:not(:disabled) {
  background-color: #fcfaf9;
  border-color: #eab3b3;
}

.pagination-arrow svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: currentColor;
}

.pagination-dots {
  display: flex;
  gap: 6px;
  align-items: center;
  margin: 0 6px;
}

.pagination-dot {
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background-color: #f7d9d9;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  border: none;
  padding: 0;
}

.pagination-dot.active,
.pagination-dot:hover {
  background-color: #b2000080;
}

.pagination-dot.active {
  width: 10px;
  height: 10px;
}

.faq-section {
  width: 100%;
  margin-top: 5.375rem;
}

.faq-section h2 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 25px;
  text-transform: uppercase;
  margin-bottom: 3.5rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.faq-item {
  background-color: #f5f5f5;
  border: none;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
  margin-top: 10px;
}

.faq-item.active {
  background-color: #f5f5f5;
  border: none;
}

.faq-item.active span {
  background-color: #f5f5f5;
  border: none;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background-color: transparent;
  padding: 15px 20px 15px 15px;
  border: none;
  cursor: pointer;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 120%;
  letter-spacing: 0%;
  vertical-align: middle;
  text-align: left;
}

.faq-icon {
  width: 24px;
  height: 24px;
  color: #b91c1c;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-icon .icon-plus {
  display: block;
}

.faq-icon .icon-close {
  display: none;
}

.faq-item.active .faq-icon .icon-plus {
  display: none;
}

.faq-item.active .faq-icon .icon-close {
  display: block;
}

.faq-answer {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
  font-style: Light;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0%;
  vertical-align: middle;
  max-height: 0;
  overflow: hidden;
  color: #000000;
  font-size: 1rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0px 15px 18px 15px;
}

.tr-slider-container {
  width: 100%;
  max-width: 75rem;
  margin-top: 5.375rem;
}

.tr-slider-container h2 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 25px;
  text-transform: uppercase;
  margin-bottom: 3.5rem;
}

.tr-viewport {
  overflow: hidden;
  width: 100%;
}

.tr-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  /* gap: 0.3rem; */
}

.tr-card {
  flex: 0 0 33.3333%;
  box-sizing: border-box;
  padding: 0 0.5rem;
}

.tr-card-content {
  /* width: 24.313rem; */
  height: 20.25rem;
  background-color: #f5f5f5;
  border: none;
  border-radius: 5px;
  padding: 36px 8px 28px 13px;
  height: 100%;
  text-align: left;
}

.tr-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.tr-author-name {
  font-weight: 600;
  font-size: 1.1rem;
  color: #222;
}

.tr-author-date {
  font-size: 0.9rem;
  color: #999;
  margin-top: 4px;
}

.tr-card-rating {
  font-size: 1.1rem;
  color: #f5c518;
  letter-spacing: 1px;
}

.tr-card-body p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

.tr-slider-nav {
  display: flex;
  align-items: center;
  margin-top: 40px;
}

.tr-slider-nav svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: #b20000;
}

.tr-nav-button {
  background-color: #fff;
  border: 1px solid #b200004d;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-size: 24px;
  font-weight: 300;
  color: #e04a67;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.tr-nav-button:disabled {
  color: #b20000;
  cursor: not-allowed;
  background-color: #fff;
}

.tr-dots-container {
  display: flex;
  align-items: center;
  margin: 0 6px;
}

.tr-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #b200004d;
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 0.3s;
  border: none;
  padding: 0;
}

.tr-dot.tr-active {
  width: 10px;
  height: 10px;
  background-color: #b2000080;
}

.tr-review-footer {
  text-align: center;
  margin-top: 35px;
  padding-top: 25px;
  border-top: 1px solid #f0f0f0;
}

.tr-add-review-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 9999px;
  border: 1px solid #f7d9d9;
  background-color: transparent;
  color: #b20000;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.tr-add-review-btn:hover {
  background-color: #d13a5a;
  transform: translateY(-2px);
}

.features-container-delivery {
  width: 100%;
  margin-top: 1.875rem;
}

.features-container-delivery h2 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 25px;
  text-transform: uppercase;
  color: #000;
}

.info-text-delivery {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 150%;
}

.info-text-delivery a {
  text-decoration: underline;
  cursor: pointer;
}

.catalog-main-page-delivery h1 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 48px;
  margin-top: 10px;
  text-transform: uppercase;
  color: #4c4e54;
}

.catalog-main-page-delivery h2 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 25px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.breadcrumbs-page-delivery {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 14px;
  vertical-align: middle;
  color: #4c4e54;
  margin-top: 1.875rem;
}

.breadcrumbs-page-delivery a {
  text-decoration: none;
  color: #4c4e54;
}

.breadcrumbs-page-delivery a:hover {
  text-decoration: underline;
}

.delivery-prices-section-delivery {
  width: 100%;
  margin-top: 5.375rem;
}

.delivery-prices-section-delivery h2 {
  margin-bottom: 3.5rem;
}

.delivery-container {
  width: 100%;
  flex-grow: 1;
  margin-top: 5.375rem;
}

.delivery-container h2 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 25px;
  text-transform: uppercase;
  margin-bottom: 3.5rem;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.image-grid img {
  width: 100%;
  border-radius: 5px;
}

.locations-container {
  width: 100%;
  flex-grow: 1;
  margin-top: 3.5rem;
}

.contact-map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
  align-items: flex-start;
}

.contact-info p {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 23.26px;
  letter-spacing: 0%;
  color: #4c4e54;
  margin-bottom: 1.2rem;
}

.map-placeholder {
  width: 100%;
  /*! height: 300px; */
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  font-size: 1.2rem;
  color: #888;
  /*! border: 1px solid #e0e0e0; */
}
#map_s {
  width: 100%;
}
.cities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.city-item {
  background-color: #f5f5f5;
  border: none;
  border-radius: 5px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 500;
  color: #4c4e54;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 120%;
}

.city-icon {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.6;
}

.city-icon svg {
  width: 19px;
  height: 23px;
  fill: #b5b5b5;
}

.production-container {
  width: 100%;
  flex-grow: 1;
}

.production-container h2 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 25px;
  text-transform: uppercase;
  margin-bottom: 2.25rem;
}

.production-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 30px;
  font-size: 0.95rem;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
  font-size: 22px;
}
.production-table a {
  color: #b20000;
}
.production-table td {
  padding: 15px 15px;
  vertical-align: middle;
  border-bottom: 1px solid #b5b5b5;
  width: 50%;
}

.production-table tr:nth-child(odd) {
  background-color: #f5f5f5;
}

.production-table tr:first-child {
  background-color: #f5f5f5;
}

.production-table tr:first-child td:first-child {
  border-top-left-radius: 5px;
}

.production-table tr:first-child td:last-child {
  border-top-right-radius: 5px;
}

.production-table td:last-child {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
  font-size: 22px;
  line-height: 120%;
  width: 120px;
  text-align: left;
}

.production-table a {
  text-decoration: underline;
  cursor: pointer;
}

.content-section {
  font-size: 0.9rem;
  color: #444;
}

.content-section p {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 150%;
  color: #000;
  margin-top: 30px;
}

.content-section ul {
  list-style-type: disc;
  padding-left: 20px;
  margin: 15px 0;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 150%;
  color: #000;
}

.content-section li {
  margin-bottom: 8px;
}

.content-section li::marker {
  color: #4c4e54;
  font-size: 18px;
}

.catalog-main-page-deadlines {
  flex: 1;
  min-width: 0;
  margin-top: 30px;
}

.catalog-main-page-deadlines h1 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 48px;
  margin-top: 10px;
  text-transform: uppercase;
  color: #4c4e54;
}

.catalog-main-page-deadlines h2,
.catalog-main-page-deadlines h3 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 25px;
  text-transform: uppercase;
  margin-top: 1.875rem;
  margin-bottom: 2.25rem;
}
.product-samples-items {
    margin-bottom: 10px;
}

.product-samples-items__row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-left: -10px;
    margin-right: -10px;
}

.product-samples-items__column {
    flex: 0 0 20%;
    max-width: 20%;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 18px;
}
.product-samples-item__image img {
  width: 100%;
}
.content-section-mb {
  margin-bottom: 2rem;
}

.samples-container-finishing {
  width: 100%;
  flex-grow: 1;
}

.samples-grid-finishing,
.gallery-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.sample-item-finishing,
.gallery-items__column-other {
  border: 1px solid #e1e1e1;
  padding: 17px 20px 0 17px;
  border-radius: 5px;
}
.gallery-items__column-other {
  padding-bottom: 15px;
}
.sample-item-finishing img,
.img-gal {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  background-color: #f0f0f0;
}

.sample-item-finishing p {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  margin-top: 1rem;
  margin-bottom: 3.313rem;
}

.discounts-container {
  width: 100%;
  flex-grow: 1;
  margin-top: 2.5rem;
}

.discounts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.discount-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.discount-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.card-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  display: inline-flex;
  align-items: flex-start;
  width: auto;
  flex-direction: column;
  gap: 8px;
  max-width: calc(100% - 40px);
}

.discount-tag {
  display: inline-block;
  width: auto;
  padding: 5px 10px;
  border-radius: 5px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 130%;
  text-transform: uppercase;
  color: #ffffff;
}

.red-tag {
  background-color: #b20000;
}

.blue-tag {
  background-color: #1bb0f6;
}

.product-container-door {
  width: 100%;
  flex-grow: 1;
  margin-top: 2.375rem;
  display: grid;
  grid-template-columns: 2fr 3fr;
}

.product-image-door {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-right: 25px;
}

.product-image-door img {
  width: 24.25rem;
  height: auto;
  max-height: 600px;
  object-fit: contain;
}

.product-buttons-doors {
  display: flex;
}

.details-door-top {
  background-color: #f5f5f5;
  padding: 20px 0 20px 14px;
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
}

.product-details-door {
  display: flex;
  flex-direction: column;
  border-radius: 5px;
}

.product-sku-door {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: #4c4e54;
}

.product-price-door {
  margin-bottom: 20px;
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  align-items: center;
}

.product-price-door .price-label-door {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
  font-size: 20px;
  color: #4c4e54;
}

.product-price-door .current-price-door {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  margin-left: 5px;
}

.product-price-door .old-price-door {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 120%;
  text-decoration: line-through;
  margin-left: 7px;
}

.product-buttons-door {
  display: flex;
  gap: 5px;
}

.btn-door {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 19px;
  line-height: 23.26px;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  flex-grow: 1;
  width: 11.313rem;
  height: 2.75rem;
  transition: all .2s ease-in;
}

.btn-primary-door {
  background-color: #b20000;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-primary-door:hover {
  background-color: #970101;
}

.btn-primary-door svg {
  width: 18px;
  height: 18px;
  fill: white;
}

.btn-secondary-door {
  background-color: #ffffff;
  color: #b20000;
  border: 1px solid #b20000;
}

.btn-secondary-door:hover {
  background-color: #b20000;
  color: #fff;
}

.special-offer-door {
  margin-left: 2.875rem;
}

.special-offer-door p {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 23px;
  line-height: 150%;
  color: #4c4e54;
}

.special-offer-door span {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 23px;
  line-height: 150%;
}

.special-offer-title-door {
  font-weight: 600;
  font-size: 1rem;
}

.special-offer-text-door {
  font-size: 0.95rem;
  color: #c0392b;
  font-weight: 700;
}

.color-door-first {
  margin-right: 1.188rem;
}

.color-header-door {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}

.color-title-door {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
  color: #4c4e54;
}

.color-all-door {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  text-transform: uppercase;
  color: #b20000;
  text-decoration: none;
}

.color-swatches-door {
  display: flex;
  gap: 5px;
}
.color-swatches-door img {
  width: 66px;
  height: 66px;
  object-fit: cover;
  border-radius: 5px;
}
.swatch-door {
  width: 70px;
  height: 70px;
  border-radius: 4px;
  border: 1px solid #ddd;
  cursor: pointer;
}

.features-grid-door {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 3.625rem;
}

.feature-item-door {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.feature-icon-door {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 4px;
}

.feature-text-door .title-door {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 150%;
  color: #4c4e54;
}

.feature-text-door .value-door {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 150%;
  color: #4c4e54;
}

.product-tabs-door {
  grid-column: 1 / -1;
  margin-top: 20px;
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 10px;
}

.tab-button-door {
  padding: 15px 15px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 18px;
  border-radius: 5px;
  border: 1px solid #4c4e54;
  background-color: #fff;
  color: #4c4e54;
  cursor: pointer;
  flex: 0 0 auto;
  transition: all .2s ease-in;
  text-transform: uppercase;
  text-decoration: none;
}

.tab-button-door-active {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  border-radius: 5px;
  border: 1px solid #c1c7d6;
  color: #c1c7d6;
  text-align: center;
  text-transform: uppercase;
}

.tab-button-door:hover {
  border: 1px solid #c1c7d6;
  color: #c1c7d6;
  text-align: center;
  text-transform: uppercase;
}

.details-door-bottom {
  padding: 28px 11px 20px 11px;
  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;
}

.color-selectors-row-door {
  display: flex;
}

.product-details-door {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.specs-list {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 19px;
  line-height: 23.26px;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
}

.specs-list>div {
  border-bottom: 1px solid #B5B5B5;
  padding-block: 5px;
}

.specs-list dt {
  font-size: 19px;
  color: #4c4e54;
  font-weight: 300;
  margin-bottom: 5px;
}

.specs-list dd {
  font-size: 19px;
  color: #4c4e54;
  font-weight: 400;
}

.offer-container {
  width: 100%;
  max-width: 75rem;
}

.offer-container h2 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 25px;
  text-transform: uppercase;
  margin-top: 1.875rem;
  margin-bottom: 2.25rem;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.offer-item {
  background-color: #f5f5f5;
  padding: 20px 15px;
  border-radius: 4px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
  font-size: 22px;
  line-height: 120%;
  min-height: 100px;
  align-items: center;
  height: 7.375rem;
}

.offer-item a {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
  font-style: Light;
  font-size: 22px;
  line-height: 120%;
  text-decoration: underline;
  color: #000;
  white-space: nowrap;
}

.offer-button {
  display: inline-block;
  background-color: #b20000;
  color: white;
  padding: 12px 35px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 19px;
  line-height: 23.26px;
  text-align: center;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 5px;
  cursor: pointer;
  transition: all .2s ease-in;
  text-decoration: none;
}

.offer-button:hover {
  border: 1px solid #b20000;
  background-color: #fff;
  color: #b20000;
}

.product-card-image-doorSlider img {
  display: block;
  margin-inline: auto;
  width: 100%;
  margin-bottom: 17px;
  max-height: 250px;
  object-fit: cover;
}

.related-products-container-doorSlider {
  width: 100%;
  margin: 0 auto;
}

.related-products-header-doorSlider {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.related-products-container-doorSlider h2 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 25px;
  text-transform: uppercase;
  margin-bottom: 3.5rem;
  margin-top: 5.375rem;
}

.slider-controls-doorSlider {
  display: flex;
  align-items: center;
  margin-top: 25px;
}

.nav-button-doorSlider {
  background-color: #fff;
  border: 1px solid #b200004d;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-size: 24px;
  font-weight: 300;
  color: #e04a67;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.nav-button-doorSlider:disabled {
  color: #b20000;
  cursor: not-allowed;
  background-color: #fff;
}

.slider-dots-doorSlider {
  display: flex;
  margin: 0 10px;
  align-items: center;
}

.dot-doorSlider {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #b200004d;
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 0.3s;
  border: none;
  padding: 0;
}

.dot-active {
  width: 10px;
  height: 10px;
  background-color: #b2000080;
}

.slider-viewport-doorSlider {
  overflow: hidden;
  width: 100%;
}

.slider-track-doorSlider {
  display: flex;
  gap: 15px;
  transition: transform 0.3s ease-in-out;
}

.product-card-doorSlider {
  box-sizing: border-box;
  padding: 19px 20px 25px 20px;
  border: 1px solid #eee;
  border-radius: 4px;
  margin-right: -1px;
}
.product-card-doorSlider a {
  display: block;
  text-decoration: none;
}
.product-card-title-doorSlider,
.other-products-item__price {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  margin-bottom: 10px;
}


.order-button-doorSlider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: #b20000;
  color: white;
  padding: 10px 20px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 19px;
  text-align: center;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: all .2s ease-in;
}

.swiper-button-prev_custom,
.swiper-button-next_custom {
  width: 46px;
  height: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1.5px solid #E8B3B3;
  border-radius: 50%;
  cursor: pointer;
}

.swiper-button-prev_custom img {
  transform: translateX(-1px);
}

.swiper-button-next_custom img {
  transform: translateX(1px);
}

.swiper-button-disabled {
  opacity: 50%;
  cursor: default;
}

.swiper__buttons {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 40px;
}

.swiper-pagination-bullets {
  position: static !important;
  display: flex;
  align-items: center;
  gap: 4px;
  width: max-content !important;
  margin-inline: -5px;
}

.swiper-pagination-bullet {
  background-color: #B200004D !important;
  transform: scale(1);
  transition: transform .2s ease-in;
  margin: 0 !important;
}

.swiper-pagination-bullet-active {
  background-color: #B2000080 !important;
  transform: scale(1.2);
}

.order-button-doorSlider:hover {
  background-color: #970101;
}

.order-button-doorSlider img {
  margin-left: 15px;
}

.filter-toggle-page-btn img {
  width: 20px;
  height: 20px;
}

.filter-toggle-page-mobile {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 450px;
  background-color: white;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
  box-sizing: border-box;
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
}

.filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* padding: 16px 20px; */
}

.filter-header h2 {
  margin: 0;
  font-size: 20px;
}

.filter-body {
  overflow-y: auto;
  flex-grow: 1;
}

.form-group-mobile {
  margin-bottom: 24px;
}

.form-group-mobile legend {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: 0%;
  margin-bottom: 10px;
}

.form-input {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  box-sizing: border-box;
}

.form-input:first-of-type {
  margin-bottom: 8px;
}

.form-group-mobile-checkbox {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  font-size: 16px;
  cursor: pointer;
}

.checkbox-label input {
  margin-right: 10px;
  width: 20px;
  height: 20px;
  accent-color: #c00;
}

.checkbox-label input::placeholder {
  color: #000000;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
  font-style: Light;
  font-size: 16px;
  margin-bottom: 10px;
}

.form-group-mobile label {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
  font-style: Light;
  font-size: 16px;
  margin-bottom: 10px;
}

.submit-btn {
  width: 100%;
  padding: 14px;
  background-color: #b20000;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  font-weight: 400;
  font-family: "Roboto Condensed", sans-serif;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
}

.submit-btn:hover {
  background-color: #a00d23;
}

.header-content {
  display: flex;
  justify-content: space-between;
  margin-right: 5rem;
}

.footer-sitemap {
  background-color: #f5f5f5;
  padding: 3.5rem 0;
  width: 100%;
  font-family: "Roboto Condensed", sans-serif;
}

.sitemap-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2.5rem;
  max-width: 1620px;
  margin: 0 auto;
  padding: 0 1rem;
}

.sitemap-section {
  display: flex;
  flex-direction: column;
}

.sitemap-title {
  font-weight: 700;
  font-size: 15px;
  color: #333333;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.sitemap-columns {
  display: flex;
  gap: 3rem;
}

.sitemap-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sitemap-list li {
  margin-bottom: 12px;
}

.sitemap-list li:last-child {
  margin-bottom: 0;
}

.sitemap-list a {
  font-weight: 400;
  font-size: 15px;
  color: #4c4e54;
  text-decoration: none;
  line-height: 1.4;
}

.sitemap-list a:hover {
  text-decoration: underline;
  color: #000;
}

.dropdown-container {
  position: relative;
  display: inline-block;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #f5f5f5;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid #eee;
  padding: 0;
  margin: 0;
  list-style: none;
  min-width: 160px;
  z-index: 500;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
}

.dropdown-menu li a:hover {
  text-decoration: underline;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-container {
  position: relative;
  display: inline-block;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #f5f5f5;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid #eee;
  padding: 0;
  margin: 0;
  list-style: none;
  min-width: 200px;
  z-index: 100;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
}

.dropdown-menu li a:hover {
  text-decoration: underline;
}

.dropdown-container:hover .dropdown-menu {
  display: block;
}

.dropdown-container .footer-sitemap {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  height: 22.3rem;
  width: 100%;
  background-color: #f5f5f5;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 1.5rem 2rem;
  z-index: 1000;
  box-sizing: border-box;
  overflow-y: auto;
}

.dropdown-container:hover .footer-sitemap {
  display: block;
}

.dropdown-container .footer-sitemap-all {
  display: none;
  position: fixed;
  left: 50%;
  right: 0;
  height: 26.3rem;
  width: 1300px;
  background-color: #f5f5f5;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 1.5rem 2rem;
  z-index: 1000;
  box-sizing: border-box;
  overflow-y: auto;
  transform: translateX(-50%);
}

.dropdown-container:hover .footer-sitemap-all {
  display: block;
}

.sitemap-title {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #222;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 20px;
}

.sitemap-section .sitemap-columns {
  display: flex;
  gap: 30px;
}

.sitemap-section .sitemap-columns .sitemap-list {
  flex: 1;
}

.sitemap-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sitemap-list li {
  margin-bottom: 12px;
}

.sitemap-list a {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  text-decoration: none;
  color: #4c4e54;
  transition: color 0.2s ease;
}

.sitemap-list a:hover {
  color: #000000;
}

.footer-sitemap .sitemap-grid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.samples-section .swiper-wrapper   {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 1rem;
}

.samples-section .swiper__buttons {
  display: none;
}

/*.sample-item {
  margin-right: 0 !important;
}*/

.hardware-locks__swiper .swiper-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-bottom: 2px;
}

.hardware-locks__swiper .swiper__buttons {
  display: none;
}

.hardware-additional__swiper .swiper-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-block: 2px;
}

.hardware-additional__swiper .swiper__buttons {
  display: none;
}

.entrance-doors-slide img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.best-models__swiper .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  padding-block: 2px;
}

.best-models__swiper .swiper__buttons {
  display: none;
}

.catalog-main-page__container {
  max-width: 1196px;
}

.gallery__swiper .swiper-wrapper {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.gallery__swiper .swiper-slide {
  width: 100%;
}

.gallery__swiper .swiper__buttons {
  display: none;
}

.products__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.products__card {
  min-width: 120px;
  font-family: "Roboto Condensed", sans-serif;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(225, 225, 225, 1);
  padding: 19px 19px 42px 20px;
  background-color: white;
  border-radius: 5px;
  position: relative;
}

.products__card-title {
  margin-top: 17px;
  font-size: 20px;
  line-height: 24px;
  color: #000;
  font-weight: 400;
  text-decoration: none;
}

.products__card-price {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}

.products__card-price-block {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}

.products__card-price_word {
  font-size: 20px;
  line-height: 28px;
  font-weight: 300;
  margin-right: 5px;
}

.products__card-price_current {
  font-size: 24px;
  line-height: 28px;
  font-weight: 700;
  margin-right: 7px;
}

.products__card-price_old {
  font-size: 24px;
  line-height: 28px;
  font-weight: 300;
  color: #9A9A9A;
  text-decoration: line-through;
}

.products__card-links {
  display: flex;
  gap: 5px;
  margin-top: 20px;
}

.products__card-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  width: 100%;
  font-size: 19px;
  line-height: 23.26px;
  padding: 10px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.2s ease-in;
}

.products__card-link:first-of-type {
  background-color: #b20000;
  color: white;
  border: 1px solid #b20000;
}

.products__card-link:last-child {
  background-color: white;
  color: #b20000;
  border: 1px solid #b20000;
}

.products__card-link:first-of-type:hover {
  background-color: #970101;
}

.products__card-link:last-child:hover {
  background-color: #b20000;
  color: white;
}

.products__card-tags {
  display: flex;
  gap: 5px;
  position: absolute;
  top: 19px;
  right: 19px;
}

.products__card-tag_new {
  background-color: #1BB0F6;
}

.products__card-tag_hit {
  background-color: #42BD4E;
}

.products__card-tag_sale {
  background-color: #FF2B42;
}

.products__card-tag {
  font-size: 14px;
  line-height: 23.26px;
  font-weight: 700;
  text-transform: uppercase;
  color: white;
  padding: 4px 6px;
  border-radius: 5px;
}

.products__card-image {
  aspect-ratio: 350 / 347;
}
.products__card-image-wrap img {
  height: 350px;
  object-fit: contain;
}
.products__card-image-wrap {
  display: block;
  text-align: center;
}
.pagination__items {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.pagination__item {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 35px;
  cursor: pointer;
  font-size: 18px;
  line-height: 22px;
  border-radius: 3px;
  font-weight: 400;
  font-family: "Roboto Condensed", sans-serif;
  transition: all .2s ease-in;
  color: #4C4E54;
  text-decoration: none;
}

.pagination__item:hover {
  background-color: #F5F5F5;
}

.pagination__item_active {
  color: #4C4E54;
  background-color: #F5F5F5;
  width: 40px;
}

.pagination__item_next_disabled,
.pagination__item_last_disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.not-displayed {
  display: none;
}
.header-submenu {
  display: none;
  padding-left: 10px;
}
.has-sub.active + .header-submenu {
  display: block;
}
.header-submenu ul {
  list-style: none;
}
.header-mobile-menu__submenu-catalog-item-title {
  margin: 10px 0 5px;
  color: #4c4e54;
}
.has-sub.active {
  margin-bottom: 5px !important;
}
.search-wrap {
  position: relative;
  width: 25px;
}
.search-block_page {
  position: absolute;
  top: 100%;
  right: 0;
}
.search-block_page button {
  background: unset;
  border: unset;
  position: absolute;
  right: 5px;
  top: 5px;
  cursor: pointer;
}
.search-block_page button img {
  width: 15px;
  height: 15px;
}
.search-block_page input {
  height: 25px;
}
.nav__mobile .search-block_page {
  right: unset;
}
.hidden-info {
    position: relative;
    user-select: none;
    -webkit-user-select: none;
    cursor: help;
    display: inline-flex;
    align-items: center;
    &::after {
        content: attr(data-hidden-info);
        display: none;
        width: 150px;
        padding: 10px;
        position: absolute;
        right: -175px;
        background-color: white;
        border: 1px solid #a8a8a8;
        transform: scale(0);
        transition: all 0.3s ease;
        transition-behavior: allow-discrete;
        @media (max-width: 639px) {
            padding: 4px;
            font-size: 14px;
            width: 120px;
            top: 100%;
            right: -60px;
        }
    }
    &:hover::after {
        display: block;
        transform: scale(1);
        @starting-style {
            transform: scale(0);
        }
    }
}
.product-tabs__item {
  display: none;
}
.product-tabs__item.active {
  display: block;
}
.stages {
    margin-top: 10px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.stages__item {
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.stages__number {
    width: 5%;
    margin-right: 2%;
    font-size: 36px;
    font-weight: 700;
}

.stages__img {
    width: 40%;
    margin-right: 3%;
    border-radius: 5px;
    overflow: hidden;
    height: 350px;
}

.stages__text {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stages__text p {
    padding: 0;
    margin: 0;
    line-height: 1.3;
}

p.stages__title {
    text-indent: unset;
    font-weight: 700;
    margin-bottom: 10px;
}

.stages__text li {
    margin: 0;
    padding-bottom: 0;
}

.stages__text li:last-child {
    padding-bottom: 0;
}

.stages__caption {
    color: #b20000;
    text-indent: 30px;
    display: block;
    margin-top: 5px;
    font-weight: 400;
}
.our-foto {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.our-foto__item {
  width: 32%;
  position: relative;
  transition: transform 0.3s ease-in-out;
  overflow: hidden;
  border-radius: 10px;
}
.our-foto__item:hover {
  transform: scale(1.02);
}
.our-foto__img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.our-foto__item::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background: linear-gradient(rgba(0, 0, 0, 0) 44.51%, rgba(0, 0, 0, 0.95) 100%);
}
.our-foto__name {
  position: absolute;
  bottom: 25px;
  left: 10px;
  color: #fff;
  z-index: 2;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 0;
}
.our-foto__link {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 3;
}
.excellence {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  margin: 30px 0;
}

.excellence__item {
    width: 33%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.excellence__item img {
  width: 75px;
  margin-bottom: 10px;
}
.excellence p {
    text-align: center;
    text-indent: unset;
}
.izg {
    width: 100%;
}

.izg td {
    width: 33%;
    text-align: center;
    font-size: 12px;
    line-height: 18px;
    font-weight: ;
}

.izg tr:nth-child(even) td {
    padding-bottom: 10px;
}
.corp img {
  margin: 2px;
  padding: 5px;
  background: #f7f6f2;
}
.ways-pay {
    display: flex;
    flex-direction: column;
}

.ways-pay__item {
    display: flex;
    margin-bottom: 20px;
    padding: 0 20px 10px 20px;
    border-bottom: 1px solid #b20000;
}

.ways-pay__img {
    margin-right: 15px;
}

.ways-pay__text {
    padding-top: 20px;
}

.ways-pay__title {
    font-weight: 500;
    display: block;
    margin-bottom: -15px;
}
.nav-mobile-content-link a {
  text-decoration: none !important;
}
.review-form {
  background-color: #f5f5f5;
  border-radius: 5px;
  padding: 1.875rem 1.875rem 2rem 1.875rem;
  margin-bottom: 30px;
}
.review-form__title,
.review-form__text,
.form-privacy-text {
  margin-bottom: 10px;
}
.form-textfield,
.form textarea {
  width: 300px;
  padding: 8px 10px 8px 10px;
  border: 1px solid #b5b5b5;
  background-color: transparent;
  border-radius: 0.375rem;
  box-sizing: border-box;
  transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: #000;
  margin-bottom: 10px;
}
.form textarea {
  height: 100px;
}
.modal .form-textfield,
.modal .form textarea {
  width: 100%;
}
.reviews-page-item__image {
  display: none;
}
.reviews-page-item {
  margin-bottom: 15px;
  padding: 15px;
  border: 1px solid #dbd8d8;
  border-radius: 7px;
}
.reviews-page-item__name {
  font-weight: 500;
  margin-bottom: 5px;
}
.ul-common {
    /*! list-style: outside none; */
    &>li>p {
        margin-bottom: 0;
    }
}

.ol-marker-number-bracket {
    counter-reset: number-bracket 0;
    &>li {
        counter-increment: number-bracket;
        &::marker {
            content: counter(number-bracket) ') ';
        }
        &>p {
            display: inline;
            margin-bottom: 0;
        }
    }
}

:is(.privacy-policy,
.personal-data-agreement) :is(ol,
ul) {
    margin: 0;
    &>li {
        padding-bottom: 0;
        margin-left: 0;
        margin-bottom: 0;
        list-style-position: inside;
        &::marker {
            color: #b20000;
            font-weight: 700;
        }
        &::before {
            content: '' !important;
        }
    }
}

.privacy-policy__title {
    text-align: center;
    text-transform: uppercase;
}

.privacy-policy__main-list {
    counter-reset: privacy-policy-main 0;
    &>div:not(:first-child) {
        margin-top: 12px;
    }
    &>div>dt {
        display: inline-block;
        font-weight: 700;
        color: #b20000;
        &::before {
            counter-increment: privacy-policy-main;
            content: counter(privacy-policy-main) '.';
            padding-right: 16px;
        }
    }
    &>div>dd {
        margin-top: 12px;
        margin-left: 0;
    }
}

.privacy-policy__sublist {
    counter-reset: privacy-policy-sub 0;
    list-style-position: inside;
    padding-left: 0;
    &>li {
        counter-increment: privacy-policy-sub;
        &:not(:first-child) {
            margin-top: 12px;
        }
        &::marker {
            content: counter(privacy-policy-main) '.' counter(privacy-policy-sub) '.';
        }
        &>*:first-child {
            display: inline;
            padding-left: 16px;
        }
        &>p {
            margin-bottom: 0;
            &:not(:first-child) {
                margin-top: 12px;
            }
        }
    }
}

:is(.privacy-policy,
.personal-data-agreement) .ul-common {
    /*! margin-left: 32px; */
    padding-left: 0;
    &>li {
        padding-left: 20px;
        background-position: 0 12px;
    }
}

:is(.privacy-policy,
.personal-data-agreement) p {
    padding: 0;
}

.privacy-policy .ol-marker-number-bracket {
    list-style-position: inside;
    padding-left: 0;
}

.personal-data-agreement__title {
    text-align: center;
}

.personal-data-agreement__main-list {
    list-style: inside decimal;
    padding-left: 0;
    margin-top: 12px !important;
    &>li {
        list-style-type: decimal;
        &:not(:first-child) {
            margin-top: 12px;
        }
        &>*:first-child {
            display: inline;
            padding-left: 16px;
        }
    }
}
.tags-top {
    height: 32px;
    overflow: hidden;
}
.tags-top.overflow {
    height: auto;
}
.tags-top-items-wr {
  display: flex;
  /*! flex-wrap: wrap; */
  margin-bottom: 15px;
  gap: 10px;
  align-items: start;
}
.tags-top-wr-name {
  padding-top: 5px;
  white-space: nowrap;
}
.tags-top-items, .children {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tags-top-items a, .children a {
  text-decoration: none;
  color: #fff;
  background: #b20000;
  padding: 5px 10px;
  border-radius: 5px;
  font-weight: 400;
  transition: 0.3s;
  display: inline-block;
}
.tags-top-items a:hover, .children a:hover {
  background: #970101;
}
.show_more_link2 {
    display: block;
    width: 159px;
    cursor: pointer;
    font-weight: bold;
    font-size: 18px;
    position: relative;
    clear: both;
    color: #b20000;
    background: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 20px;
    text-align: center;
    border: 1px solid #b20000;
    transition: 0.2s;
}
.show_more_link2:hover {
  color: #fff;
  background: #b20000;
}
.show_more_link2 .div_open_hide {
    display: none;
}

.show_more_link2.active .div_open_hide {
    display: block;
}

.show_more_link2.active .div_open {
    display: none;
}

.show_more_link2.active:after {
    display: none;
}

.show_more_link2.active .div_open_hide {
    display: block;
}
.call {
  display: none !important;
}
.producer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 100%;
    margin-bottom: 30px;
}

.producer__item {
    height: 100px;
    width: 24%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eee;
    border-radius: 5px;
    transition: 0.5s;
    margin-bottom: 1%;
}

.producer__img {
    width: 90%;
    max-height: 90%;
    filter: grayscale(100%);
    transition: 0.5s;
}

.producer__item:hover {
    background: #fff;
}

.producer__item:hover .producer__img {
    filter: grayscale(0%);
}
.category-popular {
  display: none;
}
.subdomainslist-row {
    display: flex;
    flex-wrap: wrap;
}

.subdomainslist-col {
    width: 25%;
    display: flex;
    flex-direction: column;
    align-items: start;
}

.subdomainslist-col a {
  margin-bottom: 5px;
}
.modal {
    background-color: #ffffff;
    color: #000000;
    margin: 0 auto;
    position: relative;
    border-radius: 10px;
}

.modal a {
    color: #b20000;
    text-decoration: underline;
}

.modal a:hover {
    color: #b20000;
    text-decoration: none;
}

.modal_width_callback {
    /* max-width: 380px; */
    max-width: 480px;
    min-width: 290px;
}

.modal_width_call {
    max-width: 480px;
    min-width: 290px;
}

.modal_width_order {
    /* max-width: 610px; */
    max-width: 700px;
    min-width: 290px;
}

.modal__wrapper {
    padding: 34px 15px 40px 15px;
}

@media (min-width: 576px) {
    .modal__wrapper {
        /*  padding: 34px 40px 40px 40px; */
        padding: 24px 40px 20px 40px;
    }
}

.modal__title {
    font-size: 22px;
    line-height: 1.2;
    font-weight: bold;
    text-align: center;
    padding: 0 0 18px 0;
}

.modal__text {
    padding: 0 0 16px 0;
}

.modal__text1 {
    /* font-size: 16px; */
    font-size: 12px;
    line-height: 1.2;
    font-weight: 500;
    text-align: center;
    padding: 0 0 4px 0;
}

.modal__text2 {
    font-size: 14px;
    line-height: 1.2;
    font-weight: 300;
    text-align: center;
}

.modal__text3 {
    font-size: 14px;
    line-height: 1.2;
    font-weight: 300;
    margin-bottom: 5px;
}

.modal__order-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-left: 0;
    margin-right: 0;
}

.modal__order-product {
    flex: 0 0 100%;
    max-width: 100%;
}

@media (min-width: 576px) {
    .modal__order-product {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

.modal__order-product-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-left: 0;
    margin-right: 0;
}

.modal__order-product-image {
    flex: 0 0 40%;
    max-width: 40%;
    padding: 10px 20px 10px 20px;
    text-align: center;
}

.modal__order-product-image img {
    display: inline-block;
    vertical-align: top;
    width: 100%;
}

@media (min-width: 576px) {
    .modal__order-product-image {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.modal__order-product-info {
    padding-left: 30px;
    flex: 0 0 60%;
    max-width: 60%;
}

@media (min-width: 576px) {
    .modal__order-product-info {
        padding-left: 0;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.modal__order-product-name {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 400;
    color: #000000;
    text-align: left;
    /* padding: 18px 0 0 0; */
    padding: 0px 0 10px 0;
}

@media (min-width: 576px) {
    .modal__order-product-name {
        text-align: center;
    }
}

.modal__order-product-price {
    font-size: 16px;
    line-height: 1.2;
    font-weight: bold;
    color: #b20000;
    text-align: left;
    padding: 11px 0 0 0;
}

@media (min-width: 576px) {
    .modal__order-product-price {
        text-align: center;
    }
}

.modal__order-form {
    flex: 0 0 100%;
    max-width: 100%;
    padding-top: 30px;
}

@media (min-width: 576px) {
    .modal__order-form {
        padding-left: 30px;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
        padding-top: 0;
    }
}
.form-item-close {
  display: none;
}
.gal-page {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  margin-bottom: 25px;
}
.portfolio_detail_price {
  font-size: 16px;
  margin: 20px 0;
}
.portfolio_detail_price span {
  font-weight: bold;
  font-size: 25px;
}
.portfolio_detail_img img {
  max-width: 100%;
  max-height: 500px;
  border-radius: 0.375rem;
}
.artImg2 {
  float: right;
  margin-left: 5px;
  margin-bottom: 5px;
}
#header-city {
  cursor: pointer;
}
.subdomains-tabs .tab-content {
    display: none;
    max-height: 460px;
    overflow-y: scroll;
}

.subdomains-tabs .tab-content.active {
    display: block;
}

.tabs-switcher {
    margin-top: 15px;
    margin-bottom: 15px;
}

.tab-button {
    padding: 8px 15px;
    border: 1px solid #ccc;
    background: #f5f5f5;
    cursor: pointer;
}

.tab-button.active {
    background: #b20000;
    color: white;
    border-color: #b20000;
}
.nav a,
.contact-block a {
  transition: 0.2s;
  display: inline-block;
}
.main__catalog_card-item {
  transition: 0.2s;
}
.main__catalog_card-item:hover,
.contact-block a:hover,
.nav a:hover {
  transform: scale3d(1.1, 1.1, 1.1);
}
.order-win-success {
  color: #b20000;
  font-weight: 600;
  font-size: 22px;
}
  main:not(.index-page) {
    margin-top: 150px;
  }
  .detail_search .form-control {
    margin: 10px 10px 0 0;
    width: auto;
    height: 38px;
}

input.detail_search_btn {
    width: 150px;
    height: 38px;
    border-radius: 4px;
    background-color: #b20000;
    color: #fff;
    border: 0;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
}

.detail_search_name {
    font-size: 18px;
}

.detail_search {
    border-radius: 6px;
    background-color: #ffffff;
    border: 1px solid #c1c3c5;
    margin-bottom: 15px;
    padding: 15px;
    width: max-content;
}
@media (max-width: 1650px) {
  .search-wrap--catalog {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }
  .products__cards {
    grid-template-columns: repeat(4, 1fr);
  }

  .header-content {
    margin-right: 2.75rem;
  }

  .contact_first-catalog {
    /*! margin-right: 0; */
  }

  .catalog-main-page__container {
    max-width: 100%;
  }

  .catalog-main-page-delivery {
    width: 100%;
  }

  .image-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .catalog-sidebar-page {
    display: none;
  }

  .container {
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .container__nav {
    margin-left: 2rem;
    margin-right: 1rem;
    flex-grow: 1;
    justify-content: flex-end;
  }

  .nav__block {
    gap: 1rem;
  }

  .nav {
    gap: 15px;
  }

  .nav a,
  .nav-catalog a {
    font-size: 0.8rem;
    line-height: 19px;
  }

  .contact-block {
    font-size: 14px;
    padding-left: 1rem;
    border-left: 1px solid #ffffff4d;
  }

  .contact-first {
    padding-right: 1rem;
  }

  .nav__main-content {
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .nav__main-container {
    padding-left: 0;
  }

  .nav__main {
    padding: 2rem;
    width: 100%;
    order: 1;
    text-align: center;
  }

  .nav__main h1 {
    font-size: 44px;
    text-align: left;
  }

  .nav__main p {
    text-align: left;
  }

  .nav__main a {
    margin-top: 4rem;
  }

  .nav__main-block {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    order: 2;
  }

  .nav__main_block-content {
    width: 18.563rem;
  }

  .dot-header-container {
    justify-content: center;
  }

  .article-card-modile {
    display: none;
  }

  .form-grid {
    gap: 3rem;
  }

  .nav__mobile a {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 130%;
    text-transform: uppercase;
    text-decoration: underline;
    color: #4c4e54;
    margin-right: 18px;
  }
  .nav__mobile-phone,
  .nav-mobile-email,
  .nav-mobile-email a,
  .nav-mobile-content .call-link {
    font-weight: 700 !important;
  }
  
  .nav__mobile-btn {
    background: transparent;
    border: none;
    cursor: pointer;
  }

  .nav__mobile-right {
    display: flex;
    align-items: center;
  }

  .nav-mobile-content-link {
    display: grid;
  }

  .nav-mobile-content-link img {
    margin-bottom: 2px;
  }

  .nav-mobile-content-link a {
    margin: 20px 0;
  }

  .nav-mobile-content p {
    color: #4c4e54;
  }
}

@media (max-width: 1550px) {
  .callout-form {
    display: block;
  }
  .form-actions-desk {
    display: none;
  }

    .callout-form {
    max-width: 24.5rem;
  }

  .form-actions-mobile {
    margin-top: 20px;
  }

  .callout-grid {
    display: flex;
    padding-top: 1rem;
    gap: 4rem;
  }

  .callout-info {
    grid-column: 1 / 2;
    padding-top: 0.25rem;
  }


  .callout-form textarea {
    margin-top: 0.5rem;
    margin-left: 0rem;
  }

  .form-inputs {
    margin: 0rem;
    gap: 0.5rem;
  }

  .form-actions-mobile {
    display: block;
  }

  .form-actions-mobile button {
    width: 100%;
  }
  .callout-section {
    max-height: 30rem;
    display: flex;
    align-items: center;
  }
  
  .checkbox-container {
    margin-top: 0.5rem;
    margin-left: 0rem;
  }
}

@media (max-width: 1450px) {
  .nav__main-content {
    margin-top: 122px;
  }
   main:not(.index-page) {
    margin-top: 122px;
  }
  .gallery__swiper .swiper-wrapper {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .doors__info_items {
    column-gap: 2rem;
  }

  .metal__doors-info {
    flex-direction: column;
    height: auto;
    padding: 1rem;
  }

  .metal__doors-img {
    display: flex;
    justify-content: center;
  }

  .metal__doors-img img {
    max-width: 23rem;
    position: static;
    margin-top: 10px;
  }

  .doors__info-items {
    margin-left: 4.4rem;
  }

  .header-catalog {
    display: none;
  }

  .header {
    display: none;
  }

  .nav__mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 23px;
    background-color: #fff;
    border-bottom: 1px solid #f0f0f0;
    position: fixed;
    width: 100%;
    z-index: 101;
  }

  .nav__mobile a {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 130%;
    text-transform: uppercase;
    text-decoration: underline;
    color: #4c4e54;
    margin-right: 18px;
  }

  .nav__mobile-btn {
    background: transparent;
    border: none;
    cursor: pointer;
  }

  .nav__mobile-right {
    display: flex;
    align-items: center;
  }

  .nav-mobile-content-link {
    display: grid;
  }

  .nav-mobile-content-link img {
    margin-bottom: 2px;
  }

  .nav-mobile-content-link a {
    margin: 20px 0;
  }

  .nav-mobile-content p {
    color: #4c4e54;
  }

  .form-grid {
    display: grid;
  }

  .custom-select {
    width: 100%;
  }

  .select-grid {
    gap: 1rem;
  }

  .form-section {
    padding: 1rem;
  }

  .form-header h2 {
    margin: 0;
  }

  .form-content {
    margin: 0;
    padding: 0;
  }
}

@media (max-width: 1300px) {
  .products__cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .container {
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .logo {
    width: 12rem;
    height: 10rem;
  }

  .logo img {
    padding: 1.5rem;
  }

  .container__nav {
    margin-left: 2rem;
    margin-right: 1rem;
    flex-grow: 1;
  }

  .nav__block {
    gap: 1rem;
  }

  .nav {
    gap: 15px;
  }

  .nav a {
    font-size: 0.8rem;
  }

  .contact-block {
    font-size: 14px;
    padding-left: 1rem;
    border-left: 1px solid #ffffff4d;
  }

  .contact-first {
    padding-right: 1rem;
  }

  .nav__main-content {
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .nav__main-container {
    padding-left: 0;
  }

  .nav__main {
    padding: 2rem;
    width: 100%;
    order: 1;
  }

  .nav__main h1 {
    font-size: 44px;
  }

  .nav__main a {
    margin-top: 4rem;
  }

  .nav__main-block {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    order: 2;
  }

  .nav__main_block-content {
    width: 18.563rem;
  }

  .dot-header-container {
    justify-content: center;
  }

  .article-card-modile {
    display: none;
  }
}

@media (max-width: 1200px) {
    .callout-man-image {
    display: none;
  }
  .gallery__swiper .swiper-wrapper {
    display: flex !important;
    grid-template-columns: none;
    gap: 0;
  }

  .gallery__swiper .swiper__buttons {
    display: flex;
  }

  .offer-item {
    height: 100%;
  }

  .catalog {
    grid-template-columns: 1fr;
  }

  .product-grid-page {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .header {
    display: none;
  }





  .product-image-door {
    margin-bottom: 1rem;
  }

  /* }

@media (max-width: 1024px) { */
  .metal__doors h2 {
    padding-top: 2rem;
    margin-bottom: 2rem;
    text-align: center;
  }

  .metal__doors-info {
    flex-direction: column;
    height: auto;
    padding: 1rem;
  }

  .metal__doors-img {
    padding-left: 0;
  }

  .metal__doors-img img {
    position: static;
    width: 100%;
    max-width: 350px;
    margin: 0 auto 1.5rem auto;
    display: block;
  }

  .doors__info-items {
    margin-left: 0;
    padding: 1rem;
  }

  .doors__info_items-right {
    margin-left: 0;
  }

  .discount {
    flex-direction: column;
    height: auto;
    padding: 2rem 1rem;
    margin-top: 2rem;
    text-align: center;
    gap: 2rem;
  }

  .discount__offer {
    width: 100%;
    max-width: 30.688rem;
    margin-left: 0;
  }

  .discount__offer-banner {
    width: auto;
    margin: 1rem;
  }

  .discount__popular-doors {
    margin-left: 0;
    gap: 1rem;
  }

  .discount__popular-doors h3 {
    padding-top: 0;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-desk {
    display: block;
  }

  .footer-nav {
    gap: 20px;
  }

  .footer-info a {
    font-size: 17px;
  }

  .footer-col h4 {
    font-size: 18px;
  }

  .developer span {
    font-size: 13px;
  }

  .copyright {
    font-size: 13px;
  }

  .footer-bottom .developer img {
    width: 6rem;
    height: 1.5rem;
  }

  .fixed-button {
    display: none;
  }

  .footer-desk {
    margin-left: 20px;
  }

  .production-content {
    flex-direction: column;
  }

  .production-image img {
    max-height: 20rem;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  

  


  .delivery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .form-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 2rem;
    display: block;
  }

  .form-header h2 {
    margin-top: 0rem;
    margin-left: 0rem;
  }

  .form-header {
    grid-column: span 1 / span 1;
    padding-top: 0.25rem;
  }

  .form-content {
    grid-column: span 3 / span 3;
    margin-top: 2rem;
    padding-bottom: 1rem;
  }

  .select-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .hardware-grid.grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .models-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .slide {
    flex: 0 0 33.333%;
  }

  .cities-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .production-section-container {
    display: block;
  }

  /* .article-button {
    margin-top: 1rem;
  } */
  .catalog-sidebar-page {
    display: none;
  }

  .header-catalog {
    display: none;
  }

  .nav__mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 23px;
    background-color: #fff;
    border-bottom: 1px solid #f0f0f0;
  }

  .nav__mobile a {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 130%;
    text-transform: uppercase;
    text-decoration: underline;
    color: #4c4e54;
    margin-right: 18px;
  }

  .nav__mobile-btn {
    background: transparent;
    border: none;
    cursor: pointer;
  }

  .nav__mobile-right {
    display: flex;
    align-items: center;
  }

  .nav-mobile-content-link {
    display: grid;
  }

  .nav-mobile-content-link img {
    margin-bottom: 2px;
  }

  .nav-mobile-content-link a {
    margin: 20px 0;
  }

  .nav-mobile-content p {
    color: #4c4e54;
  }

  .contact-block {
    padding: 0rem;
    margin-top: 1rem;
  }

  .tr-slider-container {
    max-width: 1000px;
  }

  .product-container-door {
    display: block;
  }

  .article-date {
    margin-bottom: 0.7rem;
  }

  .product-actions-page {
    display: grid;
  }

  .product-actions-page button {
    width: 100%;
  }
}

@media (max-width: 992px) {

  .products__card-links {
    flex-direction: column;
    row-gap: 2px;
  }

  .products__card {
    padding: 5px;
    padding-bottom: 6px;
  }

  .samples-grid-finishing,
  .gallery-items {
    grid-template-columns: repeat(3, 1fr);
  }

  .delivery-container {
    margin-top: 2rem;
  }

  .delivery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .catalog-container-page {
    flex-direction: column;
  }

  .filter-toggle-page {
    padding: 10px;
    font-size: 16px;
  }

  .product-grid-page {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .filter-toggle-page-btn {
    display: flex;
  }
}

@media (max-width: 960px) {
  .image-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .hardware-locks__swiper .swiper-slide {
    width: 175px !important;
  }
}

@media (max-width: 900px) {
  .callout-background-image {
    border-radius: 10px;
  }

  .model-card {
    height: auto !important;
  }

  .hardware-item {
    max-width: 100%;
  }

  .samples-section .swiper-wrapper {
    display: flex;
    gap: 10px;
  }

  .samples-section .swiper__buttons {
    display: flex;
  }


  /*.sample-item {
    margin-right: auto !important;
  }*/

  .hardware-locks__swiper .swiper-wrapper {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
  }

  .hardware-locks__swiper .swiper__buttons {
    display: flex;
  }

  .hardware-additional__swiper .swiper-wrapper {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
  }

  .hardware-additional__swiper .swiper__buttons {
    display: flex;
  }

  .best-models__swiper .swiper-wrapper {
    display: flex;
    gap: 0;
  }

  .best-models__swiper .swiper__buttons {
    display: flex;
  }


  .swiper-pagination {
    display: none !important;
  }

  .article-card {
    flex-direction: column;
  }

  .article-content {
    margin-left: 0;
    margin-top: 20px;
  }

  .article-description {
    display: none;
  }

  .article-image {
    width: 100%;
    aspect-ratio: 1 / 1;
  }

  .article-image img {
    max-width: 100%;
    width: 100%;
    height: 100%;
  }

  .color-header-door {
    align-items: center;
  }

  .product-details-door {
    box-shadow: none;
  }

  .color-selector-door {
    margin-right: 1.188rem;
  }

  .color-selectors-row-door {
    row-gap: 1.5rem;
  }

  .header {
    display: none;
  }

  .menu-closed {
    transform: translateX(100%);
  }

  .menu-open {
    transform: translateX(0);
  }

  .nav-mobile-content-link {
    display: grid;
  }

  .nav-mobile-content-link img {
    margin-bottom: 2px;
  }

  .nav-mobile-content-link a {
    margin: 20px 0;
  }

  .nav-mobile-info {
    margin-top: 28px;
  }

  .nav-mobile-info a {
    text-decoration: underline;
  }

  .contact-first {
    color: #4c4e54;
    margin-top: 1rem;
    padding: 0px;
  }

  .nav-mobile-info {
    color: #4c4e54;
    padding: 0px;
  }

  .fixed-button-mobile {
    border-radius: 5px;
    background-color: #b20000;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 23.26px;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    border: none;
    padding: 10px 65px;
    width: 100%;
  }

  .mobile-menu {
    position: fixed;
    top: 101px;
    right: 0;
    width: 100%;
    height: calc(100vh - 101px);
    background-color: white;
    z-index: 100;
    display: flex;
    flex-direction: column;
    padding: 20px;
    box-sizing: border-box;
    transition: transform 0.3s ease-in-out;
    overflow-y: auto;
  }

  .nav__mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 23px;
    background-color: #fff;
    border-bottom: 1px solid #f0f0f0;
    position: fixed;
    z-index: 101;
  }

  .nav__mobile a {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 130%;
    text-transform: uppercase;
    text-decoration: underline;
    color: #4c4e54;
    margin-right: 18px;
  }

  .nav__mobile-btn {
    background: transparent;
    border: none;
    cursor: pointer;
  }

  .nav__mobile-right {
    display: flex;
    align-items: center;
  }

  .mobile-menu-toggle {
    display: none;
  }

  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .nav__main {
    max-width: 100%;
    padding: 1.5rem;
  }

  .nav__main h1 {
    font-size: 36px;
  }

  .nav__main p {
    font-size: 16px;
  }

  .nav__main a {
    margin-top: 3rem;
    font-size: 16px;
  }

  .nav__main-block {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .nav__main_block-content {
    width: 100%;
    max-width: 400px;
    height: auto;
    padding: 1rem;
    display: flex;
    align-items: center;
  }

  .form-grid {
    grid-template-columns: 1fr;
    padding: 1rem;
    display: grid;
    gap: 2rem;
  }

  .form-header h2 {
    margin-top: 0rem;
    margin-left: 0rem;
  }

  .form-content {
    margin-top: 0rem;
    padding-bottom: 0rem;
  }

  .calculator-container {
    padding: 1.5rem;
  }

  .select-grid {
    width: 100%;
    gap: 1rem;
  }

  .custom-select {
    width: 100%;
  }

  .discounts-grid {
    grid-template-columns: 1fr;
  }

  .discount-card img {
    height: 300px;
  }

  .product-container-door {
    grid-template-columns: 1fr;
  }

  .product-image-door img {
    max-height: 450px;
  }

  .offer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tr-card {
    flex: 0 0 50%;
  }

  .color-selectors-row-door {
    display: grid;
  }

  .color-header-door {
    /* justify-content: normal; */
  }

  .footer-col li,
  .footer-col h4 {
    text-align: left;
  }

  .footer-info a {
    color: #b5b5b5;
  }

  /* .footer-contact {
    display: none;
  } */

  .footer-main {
    flex-direction: column;
    align-items: center;
    padding-top: 2rem;
    gap: 2rem;
  }

  .footer-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* flex-direction: column; */
    gap: 2rem;
    align-items: center;
    text-align: center;
  }

  .footer-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-desk {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .footer-policy {
    margin-top: 1rem;
  }

  .line {
    margin-top: 2rem;
  }

  .callout-grid {
    display: flex;
    padding: 1rem;
  }

  .doors__info_items .doors__info_items-left .doors__info_item:not(:first-of-type) br {
    display: none;
  }

  .doors__info_items .doors__info_items-right br {
    display: none;
  }
}

@media (max-width: 800px) {
  .our-foto__item {
    width: 48%;
    height: 250px;
  }
  .catalog {
    grid-template-columns: 1fr;
  }

  .main__catalog:nth-of-type(1) .main__catalog_card-img {
    width: 100%;
  }

  .callout-grid {
    gap: 1.5rem;
  }
}

@media (max-width: 769px) {
  .dot-header-container {
    margin-top: 0;
  }

  .color-selector-door {
    margin-right: 0;
  }

  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .callout-info p {
    font-size: 1.188rem;
  }

  .callout-section {
    max-height: 27rem;
  }

  .nav__main-content {
    padding-top: 6rem;
  }

  .nav__main-block {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.7rem;
  }

  .nav__main_block-content {
    width: 18.563rem;
  }

  .nav__main {
    max-width: 57.938rem;
    border: 1px solid #414141;
    background-color: #00000066;
    backdrop-filter: blur(5px);
    padding: 2rem;
    text-align: left;
  }

  .nav__main h1 {
    font-size: 50px;
    text-align: left;
  }

  .nav__main p {
    text-align: left;
    font-size: 18px;
    margin: 0;
  }

  .nav__main a {
    width: 14.688rem;
    margin-top: 1rem;
    font-size: 19px;
  }

  .dot-header-container {
    bottom: 2rem;
  }

  .slider-navigation {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    margin-top: 30px;
    margin-left: 10px;
  }

  .models-grid {
    display: flex;
    overflow: hidden;
    gap: 6px;
  }

  .model-card-image {
    max-width: 150px;
    width: auto;
  }

  .model-card-info {
    padding: 5px;
  }

  .model-price {
    display: grid;
    margin: 5px 0px 0px 0px;
  }

  .model-card-info .price-label {
    font-size: 14px;
  }

  .faq-grid {
    gap: 0;
  }

  .offer-item {
    height: auto;
  }

  .color-none {
    display: none;
  }

  .special-offer-door {
    display: flex;
    gap: 0.7rem;
    margin-top: 0.3rem;
  }

  .details-door-top {
    padding: 1rem;
  }

  .product-image-door {
    display: flex;
    justify-content: center;
  }

  .color-door-first {
    margin: 0;
  }

  .tab-button-door {
    padding: 10px;
    font-size: 16px;
    white-space: nowrap;
  }
}

@media (max-width: 768px) {
  .products__cards {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }

  main:not(.index-page) {
    margin-top: 122px;
  }

  .products__card-title {
    font-size: 14px;
    line-height: 17px;
    margin-top: 10px;
  }

  .products__card-price_word {
    font-size: 14px;
    line-height: 18px;
  }

  .products__card-price_current,
  .products__card-price_old {
    font-size: 15px;
    line-height: 18px;
  }

  .products__card-price,
  .products__card-links {
    margin-top: 5px;
  }

  .products__card-tags {
    top: 6px;
    right: 6px;
  }

  .products__card-link {
    font-size: 16px;
    line-height: 23.26px;
    gap: 10px;
  }

  .products__card-tag {
    font-size: 10px;
    line-height: 23.26px;
    padding: 0 3px;
  }

  .product-price-page .price-label-page {
    display: block;
    width: 100%;
  }

  .product-price-page .price-current-page {
    margin-left: 0;
    margin-top: 3px;
  }

  .product-price-page .price-old-page {
    margin-top: 3px;
  }

  .samples-grid-finishing,
  .gallery-items {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-buttons-doors {
    display: grid;
  }

  .metal__doors h2 {
    font-size: 22px;
  }

  .discount__offer-banner h3 {
    font-size: 28px;
  }

  .discount__offer-banner p {
    font-size: 48px;
  }

  .promo-section {
    grid-template-columns: 1fr;
  }

  .popular-doors {
    text-align: center;
  }

  .main__catalog_card-img,
  .main__catalog_card-content {
    width: 100%;
  }

  .main__catalog-card {
    /* flex-direction: column; */
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .features-container h2 {
    font-size: 1.5rem;
  }

  .feature-item {
    font-size: 1rem;
    padding: 1.25rem;
  }

  .hardware-grid.grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .models-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .slide {
    flex: 0 0 50%;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-section h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

  .faq-question {
    font-size: 1rem;
    padding: 1rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 1rem 1rem 1rem;
  }

  .contact-map-grid {
    grid-template-columns: 1fr;
  }

  .cities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .map-placeholder {
    /*! height: 250px; */
  }

  .catalog-main-page h1 {
    font-size: 1.75rem;
  }

  .catalog-main-page h2 {
    font-size: 1.25rem;
  }

  .sort-bar-page {
    display: flex;
    align-items: flex-start;
  }

  .related-products-header-doorSlider {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .callout-form {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .form-inputs {
    grid-column: 1 / 2;
  }

  .form-comment {
    grid-column: 2 / 3;
  }

  .form-actions {
    grid-column: 1 / 2;
  }

  .submit-button {
    width: auto;
  }

  .nav__main_block-catalog {
    display: none;
  }

  .mobile__info-blocks {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 10px;
    margin: 30px 10px;
  }

  .mobile__info-blocks {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 10px;
    margin: 30px 10px;
  }

  .mobile__info-column {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 10px;
  }

  .mobile__info-block {
    height: 74px;
    background-color: #a09f9f;
    border: 1px solid #b5b5b5;
    border-radius: 5px;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    box-sizing: border-box;
  }

  .mobile__info-block img {
    width: 26px;
    height: 28px;
  }

  .mobile__info-block p {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 130%;
    color: #fff;
    margin-left: 5px;
    margin-bottom: 0;
  }

  .hardware-grid {
    display: flex;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .callout-section {
    border-radius: 15px;
  }
}

@media (max-width: 640px) {
  .pagination-nav {
    flex-direction: column;
    row-gap: 15px;
  }

  .delivery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-section {
    padding: 0;
  }

  .price-grid {
    display: grid;
  }

  .select-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .main__catalog-card {
    flex-direction: column;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .step-item {
    gap: 1rem;
  }

  .how-to-buy-container h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

  .how-to-buy-container {
    margin-top: 46px;
  }

  .samples-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .samples-header h2 {
    font-size: 1.25rem;
  }

  .hardware-grid {
    display: flex;
    overflow: hidden;
    gap: 6px;
  }

  .hardware-section h2 {
    font-size: 25px;
    margin-bottom: 26px;
  }

  .hardware-container {
    margin-top: 46px;
  }

  .hardware-item-info p {
    font-size: 18px;
  }

  .hardware-item-info {
    padding: 0px;
  }

  .models-grid {
    display: flex;
    overflow: hidden;
    gap: 6px;
  }

  .best-models-container {
    margin-top: 46px;
  }

  .best-models-container h2 {
    font-size: 1.5rem;
  }

  .model-card {
    overflow: unset;
  }

  .model-card-image {
    max-width: 150px;
    width: auto;
  }

  .model-card-info {
    padding: 5px;
  }

  .model-card-info p {
    font-size: 14px;
  }

  .model-price {
    display: grid;
    margin: 5px 0px 0px 0px;
  }

  .model-card-info .price-label {
    font-size: 14px;
  }

  .price-strong {
    font-size: 15px;
    margin: 0px;
  }

  .slide {
    flex: 0 0 100%;
    padding: 0px;
  }

  .gallery-container h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }

  .pagination-dots {
    display: none;
  }

  .pagination-arrow {
    margin-right: 10px;
    width: 30px;
    height: 30px;
  }

  .slide img {
    width: auto;
    gap: 5px;
  }

  .callout-info h2 {
    font-size: 1rem;
  }

  .callout-info p {
    font-size: 0.9rem;
  }

  .articles-grid {
    display: block;
  }

  .select-grid {
    display: grid;
  }

  .sort-bar-page {
    gap: 1rem;
  }
}

@media (max-width: 600px) {
  .subdomainslist-col {
      width: 50%;
  }
  .kalkulator_new__block .call-form__row {
    display: block;
  }
  .kalkulator_new__block .call-form__row .call-form__column:nth-child(2) {
    margin-top: 0;
  }
  .kalkulator_new__block {
    margin-top: 46px;
  }
  .model-card-image,
  .products__card-image-wrap img {
    height: 250px;
  }
  .stages__item {
    flex-wrap: wrap;
  }
  .stages__text {
    width: 100%;
    margin-top: 20px;
  }
  .stages__img {
    flex: 1;
  }
  .stages__number {
    width: 10%;
  }
  .nav__main {
    max-height: fit-content;
  }

  .swiper-button-prev_custom,
  .swiper-button-next_custom {
    width: 30px;
    height: 30px;
  }

  .order-button-doorSlider {
    font-size: 16px;
    padding-inline: 14px;
  }

  .product-card-doorSlider {
    padding: 5px 5px 8px;
  }

  .related-products__swiper .swiper__buttons {
    margin-top: 20px;
  }

  .hardware-locks__swiper .swiper__buttons {
    margin-top: 20px;
  }

  .hardware-additional__swiper .swiper__buttons {
    margin-top: 20px;
  }

  .gallery__swiper .swiper__buttons {
    margin-top: 20px;
  }

  .swiper-button-prev_custom img {
    width: 3.62px;
    height: 7.98px;
    transform: translateX(0px);
  }

  .swiper-button-next_custom img {
    width: 3.62px;
    height: 7.98px;
    transform: translateX(0px);
  }

  .swiper__buttons {
    display: flex;
    gap: 15px;
    margin-top: 40px;
  }

  .samples-mdf__swiper .swiper__buttons,
  .samples-spraying__swiper .swiper__buttons,
  .samples-lam__swiper .swiper__buttons,
  .samples-mas__swiper .swiper__buttons {
    margin-block: 20px;
  }

  .best-models__swiper .swiper__buttons {
    margin-top: 30px;
  }

  .entrance-doors__swiper .swiper__buttons {
    margin-top: 20px;
  }

  .articles__swiper .swiper__buttons {
    margin-top: 30px;
  }

  .doors__info_items {
    row-gap: 0.938rem;
  }

  .doors__info_items {
    grid-template-columns: 1fr;
  }

  .doors__info_items-left,
  .doors__info_items-right {
    row-gap: 0.938rem;
  }

  .select-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .card-overlay {
    top: 15px;
    left: 15px;
    max-width: calc(100% - 20px);
  }

  .discount-tag {
    font-size: 21px;
  }

  .red-tag {
    margin-right: 10px;
  }

  .offer-container {
    margin-top: 36px;
  }

  .offer-grid {
    grid-template-columns: 1fr;
  }

  .offer-container h2 {
    margin-bottom: 20px;
  }

  .offer-button {
    width: 100%;
    text-align: center;
  }

  .offer-item {
    font-size: 20px;
    height: auto;
  }

  .offer-item a {
    font-size: 20px;
  }

  .tr-card {
    flex: 0 0 100%;
  }

  .tr-slider-container {
    margin-top: 46px;
  }

  .tr-slider-container h2 {
    margin-bottom: 20px;
  }

  .tr-dots-container {
    display: none;
  }

  .tr-nav-button {
    margin-right: 10px;
    width: 30px;
    height: 30px;
  }

  .tr-card-content {
    width: auto;
    height: auto;
  }

  .tr-track {
    gap: 0px;
  }

  .product-actions {
    display: grid;
  }
     .ways-pay__img {
        width: 50%;
    }
    .ways-pay__item {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 500px) {

  .excellence {
    flex-direction: column;
  }
  .excellence__item {
    width: 100%;
  }
  .product-card-image-doorSlider {
    margin-bottom: 10px;
  }

  .delivery-container h2 {
    margin-left: 0;
    text-align: center;
  }

  .image-grid {
    gap: 6px;
  }

  .delivery-container {
    margin-top: 17px;
  }

  .slider-dots-doorSlider {
    display: none;
  }

  .nav-button-doorSlider {
    margin-right: 15px;
  }
}

@media (max-width: 480px) {
  .cities-grid {
    grid-template-columns: 1fr;
  }

  .locations-container {
    margin-top: 22px;
  }

  .map-placeholder {
    border: none;
  }

  .contact-map-grid {
    margin-bottom: 10px;
    gap: 0px;
  }

  .map-placeholder img {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 450px) {
  .model-card-image,
  .products__card-image-wrap img {
    height: 150px;
  }
  .our-foto__item {
    width: 100%;
  }
  main:not(.index-page) {
    margin-top: 100px;
  }

  .nav__main-content {
    margin-top: 100px;
  }

  .mobile-menu {
    margin-top: 0;
    top: 70px;
    height: calc(100vh - 70px);
  }
  .reviews-viewport-main {
    margin-inline: 10px;
  }
  
  .nav__main a {
    width: 100%;
    margin-top: 56px;
  }

  .callout-info h2 {
    max-width: 100%;
    font-size: 1.563rem;
  }

  .gallery-section h2 {
    margin-left: 10px;
  }

  .callout-info p {
    max-width: 100%;
  }

  .header__phone-mobile {
    font-size: 0.875rem;
  }

  .nav__main h1 {
    font-size: 2rem;
  }

  .nav__main p {
    font-size: 16px;
    line-height: 160%;
    color: #ffffffcc;
  }

  .nav__mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 23px;
    background-color: #fff;
    border-bottom: 1px solid #f0f0f0;
    position: fixed;
    width: 100%;
    z-index: 101;
  }

  .nav__mobile a {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 130%;
    text-transform: uppercase;
    text-decoration: underline;
    color: #4c4e54;
    margin-right: 18px;
  }

  .nav__mobile-btn {
    background: transparent;
    border: none;
    cursor: pointer;
  }

  .nav__mobile-right {
    display: flex;
    align-items: center;
  }

  .mobile-menu a {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 130%;
    text-transform: uppercase;
    text-decoration: none;
    color: #4c4e54;
  }

  .mobile-menu-header a {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 130%;
    text-transform: uppercase;
    text-decoration: none;
    color: #4c4e54;
    padding: 30px 4px 20px 28px;
    text-decoration: underline;
  }

  .mobile-menu-header {
    display: flex;
    align-items: center;
  }

  .nav-mobile-content-link {
    display: grid;
  }

  .nav-mobile-content-link img {
    margin-bottom: 2px;
  }

  .nav-mobile-content-link a {
    margin: 20px 0;
  }

  .nav-mobile-content {
    display: grid;
  }

  .nav-mobile-info {
    margin-top: 28px;
  }

  .nav-mobile-info a {
    text-decoration: underline;
  }

  .nav-mobile-content p {
    color: #4c4e54;
    font-size: 15px;
  }

  .nav-mobile-content p:nth-child(1) {
    margin-top: 22px;
  }

  .nav-mobile-content span {
    color: #4c4e54;
    font-size: 15px;
  }

  .logo-mobile {
    width: 85px;
    height: 33px;
  }

  .header {
    display: none;
  }

  .nav__main-block {
    display: none;
  }

  .nav__main {
    background: transparent;
    border: none;
    backdrop-filter: none;
    padding: 0 10px;
  }

  .nav__main-content {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 0px;
  }

  .nav__section {
    justify-content: flex-end;
    min-height: 605px;
  }

  .dot-header-container {
    width: fit-content;
    margin: 20px 0 20px 10px;
  }

  .mobile__info-blocks {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 10px;
    margin: 30px 10px;
  }

  .mobile__info-column {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 10px;
  }

  .mobile__info-block {
    height: 74px;
    background-color: #a09f9f;
    border: 1px solid #b5b5b5;
    border-radius: 5px;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    box-sizing: border-box;
  }

  .mobile__info-block img {
    width: 26px;
    height: 28px;
  }

  .mobile__info-block p {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 130%;
    color: #fff;
    margin-left: 5px;
  }

  .dot-header {
    display: none;
  }

  .dot-header-active {
    display: none;
  }

  .metal__doors-img {
    display: none;
  }

  .metal__doors-img img {
    display: none;
  }

  .metal__doors h2 {
    text-align: left;
    margin-left: 10px;
    font-size: 25px;
  }

  .metal__doors-info {
    margin: 20px 10px;
  }

  .doors__info-items {
    text-align: left;
    padding: 0px;
    margin-bottom: 1rem;
  }

  .doors__info-items>span {
    font-size: 14px;
  }

  .doors__info_items {
    flex-direction: column;
  }

  .doors__info_item img {
    width: 50px;
    height: 50px;
  }

  .discount {
    padding: 3px 5px;
    margin: 0 10px 46px 10px;
    border-radius: 5px;
  }

  .discount__offer-banner {
    height: 90px;
    margin: 5px;
  }

  .discount__offer-banner h3 {
    font-size: 25px;
  }

  .discount__offer-banner p {
    font-size: 35px;
  }

  .discount__popular-doors h3 {
    text-align: left;
  }

  .discount__popular-doors p {
    text-align: left;
    margin-bottom: 10px;
  }

  .discount__offer {
    height: 100px;
  }

  .product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    margin: 0 10px;
  }

  .product-card {
    padding: 0 5px 5px 5px;
  }

  .product-image-wrapper img {
    width: auto;
    height: 146px;
  }

  .product-badges {
    position: absolute;
    top: 11px;
    right: 7px;
    display: flex;
    gap: 5px;
    z-index: 1;
  }

  .badge-sale {
    width: 27px;
    height: 24px;
    font-size: 10px;
    padding-left: 4px;
  }

  .badge-hit {
    width: 27px;
    height: 24px;
    font-size: 10px;
    padding-left: 4px;
  }

  .badge-new {
    width: 48px;
    height: 24px;
    font-size: 10px;
    padding-left: 4px;
  }

  .product-name {
    font-size: 14px;
    margin-bottom: 5px;
  }

  .price__from {
    display: flex;
    flex-wrap: wrap;
    font-size: 14px;
    margin-right: 70px;
  }

  .product-price {
    margin-bottom: 5px;
  }

  .product-price .current-price {
    font-size: 15px;
  }

  .price__del {
    font-size: 15px;
  }

  .product-actions {
    display: block;
    gap: 2px;
  }

  .product-actions img {
    width: 24px;
    height: 24px;
  }

  .product-actions button,
  .product-actions a {
    width: 100%;
    height: 44px;
    font-size: 16px;
  }

  .show-more-container {
    margin: 30px 10px 0 10px;
  }

  .show-more-btn {
    width: 100%;
  }

  .form-grid {
    display: block;
  }

  .select-grid {
    display: grid;
  }

  .custom-select {
    width: 100%;
  }

  .catalog {
    margin: 0 10px;
  }

  .submit__button-select-grid {
    width: 100%;
  }

  .catalog__h2 {
    margin: 46px 10px 36px 10px;
  }

  .main__catalog {
    padding: 6px;
  }

  .main__catalog_card-conatiner h3 {
    display: flex;
    align-items: center;
    font-size: 22px;
  }

  .main__catalog:nth-of-type(1) .main__catalog_card-img {
    width: 90px;
    padding: 0;
  }

  .main__catalog:nth-of-type(2) .main__catalog_card-img {
    width: 90px;
    padding: 0;
    margin-right: 10px;
  }

  .main__catalog:nth-of-type(3) .main__catalog_card-img {
    width: 90px;
    padding: 0;
    margin-right: 10px;
  }

  .main__catalog:nth-of-type(4) .main__catalog_card-img {
    width: 90px;
    padding: 0;
    margin-right: 10px;
  }

  .main__catalog:nth-of-type(4) .main__catalog-card h3 {
    padding-left: 0;
  }

  .main__catalog:nth-of-type(4) .main__catalog_card-text {
    padding-left: 0;
  }

  .main__catalog_card-content h3 {
    display: none;
  }

  .main__catalog_card-item {
    gap: 0 5px;
  }

  .main__catalog_card-item span {
    font-size: 20px;
  }

  .main__catalog_card-item p {
    font-size: 15px;
  }

  .vector-catalog {
    width: 6px;
    height: 6px;
  }

  .form-section {
    margin: 46px 10px;
    padding: 2.875rem 5px 10px 5px;
  }

  .form-header h3 {
    display: block;
    font-size: 22px;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
  }

  .form-header h2 {
    display: none;
  }

  .price-grid {
    gap: 5px;
    width: 100%;
  }

  .select-grid {
    gap: 5px;
  }

  .form-content {
    margin-top: 1rem;
    padding-bottom: 1rem;
  }

  .form-content form>*+* {
    margin-top: 20px;
  }

  .price-list-table {
    /*! margin: 0 10px; */
    border-radius: 5px;
  }

  .price-list-section h2 {
    margin-top: 46px;
    margin-left: 10px;
  }

  .price-list-table td:first-child {
    font-size: 20px;
    padding: 15px 5px 10px 15px;
  }

  .delivery-prices-section h2 {
    margin: 46px 10px 10px 10px;
  }

  .delivery-description {
    margin: 10px 10px 36px 10px;
  }

  .delivery-grid {
    display: grid;
    gap: 5px;
    grid-template-columns: 1fr;
    margin-inline: 10px;
  }

  .allout-section {
    margin: 46px 10px;
    /* padding: 46px 5px 17px 5px; */
    height: auto;
    max-height: 40rem;
  }

  .callout-info p {
    margin: 0px;
    margin-top: 10px;
    font-size: 18px;
  }

  .callout-info h2 {
    margin-top: 0rem;
    margin-left: 0rem;
  }

  .callout-section {
    max-height: 37rem;
  }

  .callout-section {
    margin-inline: 10px;
  }

  .form-inputs {
    gap: 5px;
    width: auto;
    margin-top: 0rem;
    margin-left: 0rem;
  }

  .callout-form textarea {
    width: 100%;
    margin-top: 0.3rem;
    margin-left: 0rem;
  }

  .callout-form {
    display: block;
    gap: 5px;
  }

  .callout-grid {
    flex-direction: column;
    gap: 36px;
  }

  .checkbox-container {
    margin-top: 10px;
  }

  .gallery-section {
    margin: 36px 0 20px 0;
    overflow-x: hidden;
  }

  .gallery-grid .card-content {
    border-radius: 10px;
  }

  .card-content {
    padding: 8px;
  }

  .card-content h3 {
    font-size: 14px;
    line-height: 1.3;
  }

  .card-price {
    display: block;
    font-size: 13px;
    margin-top: 5px;
  }

  .card-price strong {
    display: block;
    font-size: 16px;
    margin-top: 2px;
  }

  .main-calculate-button-container {
    margin: 15px 10px;
  }

  .pagination-calculate {
    display: flex;
  }

  .gallery-card {
    height: 334px;
  }

  .pagination-calculate-main {
    margin-top: 10px;
  }

  .reviews-section-main h2 {
    margin-left: 10px;
  }

  .reviews-viewport-main {
    overflow: hidden;
  }

  .review-card-main {
    padding: 15px 5px;
  }

  .pagination-dots-main {
    display: none;
  }

  .production-section-container {
    display: block;
  }

  .production-content {
    padding: 0;
  }

  .production-section {
    margin: 56px 10px 46px 10px;
  }

  .production-text p {
    padding: 10px;
  }

  .production-image img {
    width: 95%;
    margin-right: 0px;
    margin-bottom: 7px;
  }

  .production-header h2 {
    padding: 46px 10px 0 10px;
  }

  .slider-navigation {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    margin-top: 30px;
    margin-left: 10px;
  }

  .slider-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }

  .useful-section {
    margin: 56px 0 0 0;
  }

  .articles__swiper,
  .gallery__swiper {
    margin-inline: 10px !important;
  }

  .articles-grid {
    display: flex;
    gap: 10px;
    grid-template-columns: 1fr;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
    scrollbar-width: none;
    margin-left: 10px;
    padding-right: 8px;
  }

  .articles-grid::-webkit-scrollbar {
    display: none;
  }

  .article-card {
    height: auto;
    /*! max-height: 21.563rem; */
    flex-direction: column;
    width: calc(50% - 5px);
    flex-shrink: 0;
    box-sizing: border-box;
  }

  .article-card-mobile {
    display: block;
    height: auto;
    flex-direction: column;
    width: calc(50% - 5px);
    flex-shrink: 0;
    box-sizing: border-box;
  }

  .article-image {
    width: 100%;
    overflow: hidden;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .article-content {
    margin-top: 10px;
    margin-left: 0px;
    padding: 0px 10px 0px 0px;
  }

  .article-content h3,
  .article-content .h3 {
    font-size: 1rem !important;
  }

  .article-description {
    display: none;
  }

  .article-date {
    margin-top: 5px;
    margin-bottom: 10px;
  }

  /* .article-button-bottom {
    margin-top: 17px;
  } */
  .useful-section-title {
    margin-left: 10px;
    font-size: 1.5rem;
  }

  .footer-main {
    display: grid;
    grid-template-columns: 1fr;
    padding-top: 0px;
  }

  .footer-nav {
    display: block;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .footer-bottom .policy {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .footer-bottom .policy a {
    margin-left: 0;
  }

  .footer-desk {
    display: none;
  }

  .footer-mobile {
    text-align: left;
    display: block;
  }

  .footer {
    margin-top: 46px;
  }

  .footer-contact .logo-placeholder {
    margin: 30px 0 18px 10px;
    width: 142px;
    height: 71px;
  }

  .footer-phone {
    margin: 30px 0 18px 10px;
  }

  .footer-contact .footer-phone {
    font-size: 18px;
  }

  .footer-contact .call-button {
    margin-left: 10px;
  }

  .footer-adrees {
    margin-left: 10px;
  }

  .footer-adrees p {
    font-size: 18px;
  }

  .footer-contact .footer-email {
    font-size: 18px;
  }

  .footer-policy {
    display: none;
  }

  .footer-nav {
    margin: 34px 10px 10px 10px;
  }

  .footer-col h4 {
    font-size: 18px;
  }

  .footer-col li {
    padding: 0;
  }

  .footer-goup {
    display: flex;
    align-items: baseline;
    text-align: left;
  }

  .footer-none-info {
    display: block;
    margin-left: 1rem;
  }

  .footer-none {
    display: none;
  }

  .footer-policy {
    margin-top: 0px;
  }

  .footer-policy a {
    font-size: 14px;
  }

  .line {
    margin-bottom: 30px;
    margin-top: 40px;
  }

  .footer-bottom {
    margin-inline: 0.75rem;
  }

  .developer {
    margin-top: 34px;
  }

  .copyright {
    font-size: 14px;
    line-height: 150%;
  }

  .developer span {
    font-size: 16px;
    color: #fff;
  }

  .footer-bottom .developer img {
    width: 142px;
    height: 26px;
  }

  .samples-grid {
    display: flex;
    overflow: hidden;
    gap: 10px;
  }

  .samples-grid-two {
    display: flex;
    overflow: hidden;
    gap: 10px;
  }

  .item-two img {
    height: auto;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .container__nav-catalog {
    display: none;
  }

  .header-catalog {
    display: none;
  }

  .nav__main_block-catalog {
    display: none;
  }

  .catalog-main-page-delivery h1 {
    font-size: 26px;
  }

  .delivery-prices-section-delivery h2 {
    margin-bottom: 36px;
  }

  .breadcrumbs-page-delivery {
    margin-top: 0px;
  }

  .delivery-prices-section-delivery {
    margin-top: 40px;
  }

  .production-container {
    margin: 0;
    box-shadow: none;
    border-radius: 0;
  }

  .production-table {
    display: block;
    overflow-x: auto;
    width: 100%;
    padding-bottom: 10px;
    margin-bottom: -10px;
  }

  .production-table td {
    padding: 18px 8px;
    white-space: nowrap;
  }

  .production-table::-webkit-scrollbar {
    height: 10px;
  }

  .production-table::-webkit-scrollbar-track {
    background: #d9d9d980;
    border-radius: 10px;
  }

  .production-table::-webkit-scrollbar-thumb {
    background: #b20000;
    border-radius: 10px;
    transition: background 0.3s ease;
  }

  .catalog-main-page-deadlines h1 {
    font-size: 26px;
  }

  .samples-grid-finishing {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

  .sample-item-finishing {
    border: none;
    padding: 0;
  }

  .sample-item-finishing p {
    margin-bottom: 6px;
  }

  .samples-header .view-more {
    width: 100%;
    text-align: center;
  }

  .view-more-display {
    display: none;
  }

  .view-more-mobile {
    display: block;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 400;
    font-size: 19px;
    text-transform: uppercase;
    color: #b20000;
    border: 1px solid #b20000;
    border-radius: 5px;
    padding: 10px 20px 10px 20px;
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s;
    text-align: center;
    margin-top: 5px;
  }

  .info-mobile-block {
    display: block;
    margin-top: 23px;
  }

  .features-grid-door {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }

  .product-buttons-doors {
    display: block;
  }

  .details-door-top {
    width: 100%;
    padding: 20px 5px 20px 5px;
  }

  .color-selectors-row-door {
    display: block;
  }

  .product-image-door {
    display: flex;
    justify-content: center;
  }

  .product-image-door img {
    max-width: 18.75rem;
    max-height: 18.75rem;
  }

  .product-container-door {
    display: block;
  }

  .breadcrumbs-page span {
    color: #4c4e54;
    font-size: 12px;
  }

  .catalog-main-page-deadlines {
    margin-top: 0px;
  }

  .breadcrumbs-page a {
    font-size: 12px;
  }

  .product-sku-door {
    color: #b5b5b5;
  }

  .product-price-door .current-price-door {
    margin-left: 23px;
  }

  .old-price-door {
    color: #9a9a9a;
  }

  .btn-door {
    font-size: 16px;
    padding: 0;
  }

  .special-offer-door {
    margin-left: 0px;
    margin-top: 5px;
  }

  .special-offer-door p {
    font-size: 19px;
  }

  .special-offer-door span {
    font-size: 19px;
    margin-top: 0px;
  }

  .color-title-door-ds {
    display: none;
  }

  .color-title-door-mobile {
    display: block;
  }

  .swatch-door {
    width: 56px;
    height: 56px;
  }

  .color-title-door-mobile {
    font-size: 16px;
    margin-top: 15px;
  }

  .details-door-bottom {
    padding: 0px;
  }

  .product-tabs-door {
    display: flex;
    overflow: auto;
    flex-wrap: nowrap;
    padding-bottom: 10px;
    margin-bottom: -10px;
  }

  .product-tabs-door::-webkit-scrollbar {
    height: 10px;
  }

  .product-tabs-door::-webkit-scrollbar-track {
    background: #d9d9d980;
    border-radius: 10px;
  }

  .product-tabs-door::-webkit-scrollbar-thumb {
    background: #b20000;
    border-radius: 10px;
    transition: background 0.3s ease;
  }

  .tab-button-door {
    padding: 10px;
    font-size: 16px;
    white-space: nowrap;
  }

  .color-swatches-door img {
    width: 56px;
    height: 56px;
  }

  .product-grid-page {
    grid-template-columns: repeat(2, 1fr);
  }

  .filter-toggle-page-btn {
    display: flex;
    padding: 10px;
    font-size: 16px;
    margin-top: 30px;
  }

  .catalog-main-page h1 {
    font-size: 26px;
  }

  .breadcrumbs-page {
    color: #4c4e54;
  }

  .catalog-main-page h2 {
    font-size: 22px;
    margin-top: 46px;
    margin-bottom: 36px;
  }

  .select-page {
    display: none;
  }

  .product-grid-page {
    gap: 5px;
  }

  .product-actions-page {
    flex-direction: column;
  }

  .catalog-container-page {
    margin: 0 10px;
  }

  .product-card-page {
    padding: 0 5px 5px 5px;
  }

  .product-tags-page {
    top: 3px;
    right: -3px;
    gap: 5px;
  }

  .product-tags-page span {
    font-size: 10px;
    height: auto;
  }

  .tag-new-page {
    width: 100%;
  }

  .tag-hit-page {
    width: 100%;
  }

  .tag-sale-page {
    width: 100%;
  }

  .product-title-page {
    font-size: 14px;
  }

  .product-price-page .price-label-page {
    font-size: 15px;
    margin-right: 90px;
  }

  .product-price-page .price-current-page {
    font-size: 15px;
    margin: 0px;
  }

  .product-price-page .price-old-page {
    font-size: 15px;
  }

  .product-actions-page button {
    width: 100%;
  }

  .btn-buy-page {
    padding: 10px 15px;
  }

  .product-price-page {
    margin: 5px 0px;
  }

  .pagination-summary {
    display: flex;
    justify-content: center;
    gap: 5px;
  }

  .pagination-summary span {
    margin: 0px 5px;
  }

  .pagination-list {
    justify-content: center;
    margin-top: 15px;
    gap: 0;
  }

  .calculator {
    margin-top: 46px;
  }

  .fixed-button {
    display: none;
  }

  .form-grid {
    grid-template-columns: 1fr;
    padding: 0rem;
  }

  .calculator-container {
    padding: 45px 5px 14px 5px;
  }

  .form-grid-catalog {
    display: block;
  }

  .form-left input[type="text"],
  .form-left input[type="tel"] {
    margin-bottom: 10px;
  }

  .form-right {
    margin: 0px;
  }

  .features-container {
    margin-top: 46px;
  }

  .features-container .intro-text {
    margin-bottom: 36px;
  }

  .feature-item {
    font-size: 20px;
    padding: 10px;
    text-align: left;
    justify-content: flex-start;
  }

  .info-text {
    margin-top: 20px;
  }

  .container {
    padding: 0rem;
  }

  .article-card-modile {
    display: flex;
  }

  .br-none {
    display: none;
  }

  .footer-col .group {
    margin-left: 3rem;
  }

  .slider-track {
    width: 10rem;
    display: flex;
    gap: 5px;
  }

  .select-selected {
    padding: 0;
  }

  .sort-bar-page {
    display: block;
  }

  .sort-bar {
    width: 100%;
  }

  .select-selected::after {
    right: 0;
  }

  .sort-bar-page label {
    padding-left: 1rem;
  }
}