

/* Start:/local/templates/Genlix/assets/css/style.css?175075726046800*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #1E1E1E;
  line-height: 1;
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100vh;
}

a {
  text-decoration: none;
  color: #1E1E1E;
}

button {
  border: none;
  background: transparent;
}

h2 {
  font-weight: 700;
  font-size: 48px;
  line-height: 110%;
}

.container {
  box-sizing: border-box;
  max-width: 1410px;
  padding: 0 25px;
  margin: 0 auto;
}

.header {
  background: #fff;
  position: fixed;
  top: 0px;
  padding: 10px 0;
  width: 100%;
}

.footer {
  padding: 50px 0;
  background-color: #1E1E1E;
}

.bg-color-black {
  background-color: #1E1E1E;
}

.button-block {
  background-color: #A91D1C;
  border-radius: 100px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  cursor: pointer;
}

.btn {
  background-color: #A91D1C;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.btn-sm {
  border-radius: 50px;
  padding: 20px 40px;
  cursor: pointer;
}

.btn-black {
  display: block;
  border: 1px solid #FFFFFF;
}

.btn-white {
  border: 1px solid #1E1E1E;
  transition: border 0.3s ease-in;
}

.btn-red {
  border: 1px solid #A91D1C;
}

.slide-btn {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  border: 1px solid #1E1E1E;
  display: flex;
  align-items: center;
  justify-content: center;
}

.number {
  font-weight: 700;
  font-size: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  position: relative;
  color: #FFFFFF;
}
.number::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #A91D1C;
  border-radius: 50%;
  z-index: -1;
}

.news-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(325px, 1fr));
  gap: 20px;
  justify-content: center;
}
.news-cards .card {
  background-size: cover;
  background-position: center;
  border-radius: 30px;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  padding: 20px;
  position: relative;
  cursor: pointer;
}
.news-cards .card img {
  position: relative;
  z-index: 99;
  justify-self: end;
}
.news-cards .card p {
  font-family: "Inter Tight", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  position: relative;
  z-index: 99;
  align-self: end;
  margin: 0;
  color: #FFFFFF;
}
.news-cards .card::before, .news-cards .card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  transition: opacity 0.5s ease;
}
.news-cards .card::before {
  background: linear-gradient(to bottom, transparent, rgba(30, 30, 30, 0.6));
}
.news-cards .card::after {
  background: linear-gradient(to top, transparent, rgba(30, 30, 30, 0.6));
  opacity: 0;
}
.news-cards .card:hover::after {
  opacity: 1;
}
.news-cards .card .open-link {
  position: relative;
  z-index: 99;
  justify-self: end;
}
.news-cards .card .open-link .bg {
  transition: fill 0.4s ease-in;
  fill: #A91D1C;
}
.news-cards .card .open-link .arrow {
  transition: stroke 0.4s ease-in;
  stroke: white;
}
.news-cards .card:hover .open-link .bg {
  fill: white;
}
.news-cards .card:hover .open-link .arrow {
  stroke: #A91D1C;
}

#nav-icon {
  width: 32px;
  height: 22px;
  position: relative;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
#nav-icon span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: #A91D1C;
  border-radius: 2px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
#nav-icon span:nth-child(1) {
  top: 0px;
  transform-origin: left center;
}
#nav-icon span:nth-child(2) {
  top: 10px;
  transform-origin: left center;
}
#nav-icon span:nth-child(3) {
  top: 20px;
  transform-origin: left center;
}
#nav-icon.open span:nth-child(1) {
  transform: rotate(45deg);
  top: -1px;
  left: 4px;
}
#nav-icon.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}
#nav-icon.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 21px;
  left: 4px;
}

.form-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.form-modal-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 20px;
  box-sizing: border-box;
}
.form-modal-content {
  background-color: #fefefe;
  padding: 25px 20px;
  border: 1px solid #888;
  width: 100%;
  max-width: 500px;
  border-radius: 5px;
  position: relative;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  animation: modalFadeIn 0.3s ease-out;
}
.form-modal-message {
  text-align: center;
}
.form-modal-message h3 {
  margin-top: 0;
  color: #333;
}
.form-modal-message ul {
  padding-left: 20px;
  margin-bottom: 0;
  text-align: left;
  display: inline-block;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.close-modal {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  right: 15px;
  top: 5px;
}
.close-modal:hover {
  color: #000;
}

.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top: 2px solid #fff;
  animation: spin 1s ease-in-out infinite;
  margin-right: 8px;
  vertical-align: middle;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.header-wrapper {
  min-height: 80px;
}

.header {
  z-index: 100;
}
.header img {
  height: auto;
  max-height: 100%;
}
.header .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.header .top-menu {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 30px;
}
.header .top-menu .top-menu-item:hover a {
  color: #A91D1C;
}
.header .top-menu .panel a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #FFFFFF;
  background-color: #A91D1C;
  border-radius: 100px;
  padding: 5px 5px 5px 18px;
}
.header .phone-list .phone-badge {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.header .phone-list .button-block {
  height: 100%;
}
.header .phone-list .button-block:hover ~ .list {
  opacity: 1;
  visibility: visible;
}
.header .phone-list .button-block a {
  color: #FFFFFF;
}
.header .phone-list .button-block .phone-block {
  display: flex;
  gap: 2px;
  padding-left: 31px;
  padding-right: 11px;
}
.header .phone-list .button-block .phone-block a {
  display: flex;
  align-items: center;
}
.header .phone-list .button-block .phone-button {
  display: flex;
  justify-content: center;
  margin-right: 5px;
  padding-top: 5px;
  padding-bottom: 5px;
  height: 100%;
}
.header .phone-list .list {
  position: relative;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in;
}
.header .phone-list .list .wrapper {
  position: absolute;
  width: 100%;
}
.header .phone-list .list:hover {
  opacity: 1;
  visibility: visible;
}
.header .phone-list .list a {
  display: block;
  width: 100%;
  background-color: #A91D1C;
  color: #FFFFFF;
  padding: 20px;
  border-radius: 100px;
  text-align: center;
  margin-top: 20px;
  transition: all 0.3s ease-in;
}
.header .phone-list .list a:hover {
  background-color: #7D1616;
}
.header .menu-btn {
  cursor: pointer;
}
.header .mobile {
  display: none;
}

.footer {
  color: white;
}
.footer a {
  color: #FFFFFF;
}
.footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}
.footer .menu {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  max-width: 790px;
}
.footer .contacts {
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: center;
}
.footer .contacts .social {
  display: flex;
  gap: 10px;
}
.footer .contacts .social a {
  background-color: #A91D1C;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  transition: all 0.3s ease-in;
}
.footer .contacts .social a svg path {
  transition: all 0.3s ease-in;
}
.footer .contacts .social a:hover {
  background-color: #FFFFFF;
}
.footer .contacts .social a:hover svg path {
  fill: #1E1E1E;
}
.footer .contacts .info {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 30px;
}
.footer .contacts .info a {
  display: block;
}
.footer .contacts .info a span {
  color: #A91D1C;
  font-weight: 700;
}
.footer .contacts .info .adress {
  color: #FFFFFF;
  text-align: center;
}
.footer .contacts .info .adress span {
  color: #A91D1C;
  font-weight: 700;
}
.footer .special {
  width: 100%;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #FFFFFF;
  padding-top: 22px;
  font-weight: 400;
}
.footer .special a span {
  font-weight: 700;
}
.footer .special .company-info {
  display: flex;
  flex-direction: column;
}
.footer .health-warning-modal {
  position: fixed;
  inset: 0;
  background-color: rgba(30, 30, 30, 0.97);
  z-index: 999;
  padding: 20px;
  display: flex;
}
.footer .health-warning-modal .block {
  margin: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.footer .health-warning-modal .block p {
  font-size: clamp(20px, 4vw, 48px);
  font-weight: 500;
}
.footer .health-warning-modal .block .question {
  font-size: clamp(20px, 4vw, 70px);
  font-weight: 600;
}
.footer .health-warning-modal .block .control {
  display: flex;
  margin: auto;
  gap: 10px;
}
.footer .health-warning-modal .block .control .btn-sm {
  outline: 1px solid #FFFFFF;
  transition: all 0.3s ease-in;
}
.footer .health-warning-modal .block .control .btn-sm:hover {
  background-color: #A91D1C;
  outline: transparent;
}
.footer .health-warning {
  width: 100%;
  height: 60px;
  padding: 5px;
  font-size: clamp(12px, 3.5vw, 50px);
  position: fixed;
  bottom: 0;
  background-color: #1E1E1E;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
}
.footer .health-warning-placeholder {
  width: 100%;
  height: 60px;
}
section.baner {
  background-size: cover;
  background-position: center, 0 70%;
  color: #FFFFFF;
  padding: 90px 0;
}
section.baner .container {
  height: 684px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
section.baner h1 {
  font-size: 96px;
  font-weight: 700;
}
section.baner .info {
  font-family: "Inter Tight", sans-serif;
  font-weight: 400;
  display: flex;
  flex-direction: row;
}
section.baner .info .block:first-child {
  font-size: 32px;
}
section.baner .info .block:last-child {
  font-size: 24px;
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
section.baner .info .block:last-child span {
  font-weight: 700;
  margin-left: 10px;
}

section.advantages {
  padding: 150px 0;
}
section.advantages .container {
  display: flex;
  flex-direction: column;
}
section.advantages h2 {
  font-weight: 700;
  font-size: 48px;
}
section.advantages .cards {
  display: grid;
  gap: 20px;
  margin-top: 38px;
  margin-bottom: 66px;
}
section.advantages .cards .wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
section.advantages .cards .card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 13px;
  align-items: center;
  border: 1px solid #A91D1C;
  border-radius: 30px;
  width: 325px;
  height: 325px;
  flex-grow: 1;
  padding: 20px;
  transition: background-color 0.4s ease-in-out;
}
section.advantages .cards .card:hover {
  background-color: #A91D1C;
  color: #FFFFFF;
}
section.advantages .cards .card:hover .circle {
  background-color: #1E1E1E;
}
section.advantages .cards .card .circle {
  background-color: #A91D1C;
  border-radius: 100%;
  padding: 30px;
  transition: background-color 0.4s ease-in-out;
}
section.advantages .cards .card span {
  font-family: "Inter Tight", sans-serif;
  font-weight: 700;
  font-size: 24px;
  text-align: center;
}
section.advantages .description {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  text-align: right;
  font-weight: 300;
  font-size: 20px;
  font-family: "Inter Tight", sans-serif;
  max-width: 600px;
  margin-left: auto;
}

section.about {
  background-color: #1E1E1E;
  color: #FFFFFF;
}
section.about .block {
  display: flex;
  justify-content: center;
  max-width: 1920px;
  margin: 0 auto;
}
section.about .left {
  max-height: 700px;
  width: 50.52%;
  padding-top: 38px;
  padding-bottom: 61px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
  flex-grow: 1;
}
section.about .left .wrapper {
  max-width: 637px;
  margin-right: 55px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-left: 25px;
}
section.about .left .top {
  display: flex;
  flex-direction: column;
  gap: 33px;
}
section.about .left .top h1, section.about .left .top h2 {
  font-weight: 700;
  font-size: clamp(32px, calc(1rem + 2vw), 48px);
}
section.about .left .top p {
  font-family: "Inter Tight", sans-serif;
  font-weight: 300;
  font-size: 24px;
}
section.about .left .bottom {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
section.about .left .bottom .product-title {
  font-family: "Inter Tight", sans-serif;
  font-weight: 700;
  font-size: 24px;
}
section.about .left .bottom .product {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
section.about .left .bottom .product span {
  border: 2px solid #A91D1C;
  border-radius: 50px;
  padding: 20px 40px;
  display: block;
  transition: background-color 0.3s ease-in-out;
}
section.about .left .bottom .product span:hover {
  background-color: #A91D1C;
  color: #FFFFFF;
}
section.about .right {
  background-size: cover;
  background-position: center;
  width: 49.48%;
  height: 700px;
  padding-top: 50px;
  padding-bottom: 60px;
}
section.about .right .wrapper {
  width: 424px;
  height: 589px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}
section.about .right .btn {
  width: 177px;
  height: 60px;
  color: #FFFFFF;
  transition: color 0.3s ease, background-color 0.4s ease-in-out;
}
section.about .right .btn:hover {
  background-color: #FFFFFF;
  color: #1E1E1E;
  transition: background-color 0.5s ease;
}
section.about .right .slogan {
  border-radius: 15px;
  padding: 20px 40px;
  background-color: #FFFFFF;
  font-family: "Inter Tight", sans-serif;
  font-weight: 400;
  font-size: 20px;
  text-align: right;
  color: #1E1E1E;
}

section.clients {
  padding: 150px 0;
  overflow: hidden;
}
section.clients .container.top h2 {
  font-weight: 700;
  font-size: 48px;
}
section.clients .brands {
  display: flex;
  flex-direction: row;
  margin: 50px 0;
}
section.clients .brands .swiper {
  max-width: 1920px;
  width: 100%;
}
section.clients .brands .swiper .swiper-slide {
  width: 173px;
}
section.clients .brands img {
  width: 100%;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}
section.clients .container.bottom {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
section.clients .container.bottom .control {
  display: flex;
  gap: 10px;
}
section.clients .container.bottom .control .slide-btn {
  cursor: pointer;
  transition: background-color 0.4s ease-in;
}
section.clients .container.bottom .control .slide-btn svg path {
  transition: stroke 0.4s ease-in;
}
section.clients .container.bottom .control .slide-btn:hover {
  background-color: #A91D1C;
  border: none;
}
section.clients .container.bottom .control .slide-btn:hover svg path {
  stroke: #FFFFFF;
}

section.news {
  padding: 40px 0;
  color: #FFFFFF;
}
section.news a {
  color: #FFFFFF;
}
section.news .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
section.news .container h2 {
  font-weight: 700;
  font-size: clamp(2rem, 4vw + 1rem, 3rem);
}
section.news .container .swiper {
  max-width: 1360px;
  width: 100%;
}
section.news .container .swiper .news-cards {
  gap: 0;
}
section.news .container .swiper .swiper-wrapper {
  justify-content: flex-start;
}
section.news .container .swiper .card {
  width: 325px;
  height: 400px;
}
section.news .btn-black {
  width: 177px;
  height: 60px;
  align-self: flex-end;
  transition: background-color 0.4s ease-in, border 0.4s ease-in;
}
section.news .btn-black:hover {
  background-color: #A91D1C;
  border: 1px solid transparent;
}

section.contacts {
  padding: 150px 0;
}
section.contacts h2 ,
section.contacts h1 {
  font-weight: 700;
  font-size: clamp(32px, calc(1rem + 2vw), 48px);
}
section.contacts .full {
  display: flex;
  flex-direction: row;
  gap: 72px;
  margin-top: 40px;
  margin-bottom: 100px;
}
section.contacts .full .list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, max-content));
  gap: 20px 15px;
  height: fit-content;
  flex: 1;
}
section.contacts .full .list .phones {
  display: flex;
  flex-direction: column;
  gap: 75px;
}
section.contacts .full .list .emails {
  display: flex;
  flex-direction: column;
  gap: 75px;
}
section.contacts .full .list .item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
section.contacts .full .list .item .description {
  display: flex;
  flex-direction: column;
}
section.contacts .full .list .item .description > span:nth-child(1) {
  font-weight: 400;
  font-size: 16px;
  color: #b0b0b0;
}
section.contacts .full .list .item .description > span:nth-child(2) {
  font-weight: 700;
  font-size: 20px;
  font-family: "Inter Tight", sans-serif;
}
section.contacts .full .list .item .description a {
  font-weight: 700;
  font-size: 20px;
  font-family: "Inter Tight", sans-serif;
}
section.contacts .full .block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-around;
  flex: 1;
  font-family: "Inter Tight", sans-serif;
  font-weight: 400;
  font-size: 24px;
}
section.contacts .full .block p:nth-child(2) {
  margin-top: 75px;
  margin-bottom: 25px;
}
section.contacts .full .block .btn-sm a {
  display: block;
  font-weight: 500;
  font-size: 16px;
}
section.contacts .full .block .btn-sm:hover a {
  color: #FFFFFF;
}
section.contacts .full .block .btn-white {
  transition: all 0.3s ease-in;
}
section.contacts .full .block .btn-white:hover {
  background-color: #A91D1C;
  color: #FFFFFF;
  border: 1px solid transparent;
}
section.contacts .bottom-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 40px;
  position: relative;
}
section.contacts .bottom-wrapper .map-info {
  border-radius: 15px;
  padding: 20px 40px;
  background-color: #1E1E1E;
  color: #FFFFFF;
  font-family: "Inter Tight", sans-serif;
  position: absolute;
  z-index: 99;
  max-width: 524px;
  top: 25px;
  left: 25px;
}
section.contacts .bottom-wrapper .map-info .title {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 25px;
}
section.contacts .bottom-wrapper .map-info .description {
  font-weight: 400;
}
section.contacts .map {
  width: 870px;
  max-width: 100%;
  height: 607px;
  overflow: hidden;
  position: relative;
}
section.contacts .map .ymaps-map {
  border-radius: 30px;
}
section.contacts .map .ymaps-copyrights-pane {
  display: none;
}
section.contacts .map .gotoymaps {
  display: none;
}
section.contacts .map .zoom-control {
  width: 40px;
  height: 80px;
}
section.contacts .map .zoom-control #zoom-in {
  width: 40px;
  height: 40px;
  border-radius: 10px 10px 0 0;
  background-color: #1E1E1E;
  position: relative;
  cursor: pointer;
}
section.contacts .map .zoom-control #zoom-in::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 2px;
  background-color: white;
}
section.contacts .map .zoom-control #zoom-in::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 12px;
  background-color: #FFFFFF;
}
section.contacts .map .zoom-control #zoom-out {
  width: 40px;
  height: 40px;
  border-radius: 0 0 10px 10px;
  background-color: #1E1E1E;
  position: relative;
  cursor: pointer;
}
section.contacts .map .zoom-control #zoom-out::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 2px;
  background-color: #FFFFFF;
}
section.contacts #ajax_form {
  display: flex;
  flex-direction: column;
  flex: 0 1 440px;
}
section.contacts #ajax_form .title {
  font-family: "Inter Tight", sans-serif;
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 15px;
}
section.contacts #ajax_form .inputs {
  display: flex;
  flex-direction: column;
  gap: 25px;
  height: 100%;
}
section.contacts #ajax_form .inputs input {
  padding: 18px 25px;
  border-radius: 15px;
  border: 1px solid #1E1E1E;
  outline: none;
  height: 60px;
  font-weight: 400;
  font-size: 20px;
}
section.contacts #ajax_form .inputs input::-moz-placeholder {
  color: #b0b0b0;
  font-family: "Inter Tight", sans-serif;
}
section.contacts #ajax_form .inputs input::placeholder {
  color: #b0b0b0;
  font-family: "Inter Tight", sans-serif;
}
section.contacts #ajax_form .inputs textarea {
  flex: 1;
  border: 1px solid #1E1E1E;
  border-radius: 15px;
  resize: none;
  min-height: 120px;
  padding: 18px 25px;
  font-weight: 400;
  font-size: 20px;
}
section.contacts #ajax_form .inputs textarea::-moz-placeholder {
  color: #b0b0b0;
}
section.contacts #ajax_form .inputs textarea::placeholder {
  color: #b0b0b0;
}
section.contacts #ajax_form .inputs .btn {
  color: #FFFFFF;
  font-weight: 500;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  transition: all 0.3s ease-in;
}
section.contacts #ajax_form .inputs .btn:hover {
  background-color: #1E1E1E;
}

section.UTP {
  padding: 150px 0;
}
section.UTP .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 440px), 1fr));
  grid-auto-rows: 200px;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}
section.UTP .grid img {
  border-radius: 30px;
}
section.UTP .grid .item {
  border: 1px solid #A91D1C;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  font-family: "Inter Tight", sans-serif;
  transition: all 0.3s ease-in;
}
section.UTP .grid .item .number {
  z-index: 2;
}
section.UTP .grid .item .number::before {
  transition: all 0.3s ease-in;
}
section.UTP .grid .item:hover {
  background-color: #A91D1C;
  color: #FFFFFF;
}
section.UTP .grid .item:hover .number::before {
  background: black;
}
section.UTP .grid .item .number {
  margin: 25px 25px 0 25px;
}
section.UTP .grid .item .description {
  font-weight: 400;
  font-size: 20px;
  margin: 0 25px 20px 25px;
}
section.UTP .grid img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

section.values {
  color: #FFFFFF;
  padding: 90px 0;
}
section.values .title {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
}
section.values .title h2 {
  font-weight: 700;
  font-size: 48px;
  line-height: 110%;
}
section.values .title p {
  font-weight: 300;
  font-size: 20px;
  font-family: "Inter Tight", sans-serif;
}
section.values .block {
  display: flex;
  flex-direction: row;
  margin-top: 40px;
  justify-content: space-between;
  align-items: flex-end;
  gap: 10px;
}
section.values .block .card {
  width: 440px;
  height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 30px;
  background: #F9F9F9;
}
section.values .block .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px 10px;
  max-width: 834px;
  width: 100%;
  height: 100%;
}
section.values .block .grid .item {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
  font-family: "Inter Tight", sans-serif;
}
section.values .block .grid .item .name {
  font-weight: 700;
  font-size: 24px;
}
section.values .block .grid .item .descrption {
  font-weight: 300;
  font-size: 20px;
}

section.problems {
  padding: 150px 0;
}
section.problems h2 {
  font-weight: 700;
  font-size: 48px;
  line-height: 110%;
}
section.problems .top {
  margin-top: 40px;
  margin-bottom: 50px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
section.problems .top img {
  width: 440px;
  height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 30px;
}
section.problems .bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
section.problems .bottom img {
  width: 440px;
  height: 440px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 30px;
}
section.problems .list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
section.problems .list .item {
  display: grid;
  grid-template-columns: 1fr 490px;
  max-width: 870px;
  width: 100%;
  gap: 20px;
}
section.problems .list .item .head {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}
section.problems .list .item .head span {
  font-weight: 700;
  font-size: 24px;
  font-family: "Inter Tight", sans-serif;
  color: #A91D1C;
}
section.problems .list .item p {
  display: flex;
  align-items: center;
  font-family: "Inter Tight", sans-serif;
  font-weight: 400;
  font-size: 20px;
  border-radius: 15px;
  background-color: #F9F9F9;
  padding: 14px 10px 14px 17px;
  line-height: 1.2;
}

section.cooperation {
  color: #FFFFFF;
}
section.cooperation .block {
  display: flex;
  flex-direction: row;
  max-width: 1920px;
  margin: 0 auto;
}
section.cooperation .block .left {
  width: 50.52%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
section.cooperation .block .left .wrapper {
  margin: 90px 55px 0 25px;
  max-width: 639px;
}
section.cooperation .block .left .wrapper h1{
  font-weight: 700;
  font-size: clamp(32px, calc(1rem + 2vw), 48px);
}
section.cooperation .block .left .wrapper .list {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
section.cooperation .block .left .wrapper .list .item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
section.cooperation .block .left .wrapper .list .item span {
  font-weight: 700;
  font-size: 32px;
  line-height: 110%;
  border-radius: 15px;
  padding: 10px 20px;
  background-color: #A91D1C;
  display: block;
}
section.cooperation .block .left .wrapper .list .item p {
  font-family: "Inter Tight", sans-serif;
  font-size: 20px;
  font-weight: 300;
}
section.cooperation .block .right {
  width: 49.48%;
  max-width: 950px;
  height: 800px;
}
section.cooperation .block .right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

section.news-list {
  padding-top: 90px;
  padding-bottom: 160px;
}
section.news-list .title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-bottom: 45px;
}
section.news-list .title h1 {
  font-weight: 700;
  font-size: 48px;
  line-height: 110%;
}
section.news-list .title p {
  font-family: "Inter Tight", sans-serif;
  font-weight: 400;
  font-size: 24px;
  text-align: center;
}

section.news-page {
  padding-top: 100px;
  padding-bottom: 160px;
}
section.news-page .top {
  display: flex;
  flex-direction: column;
  align-items: center;
}
section.news-page .top .btn-sm:hover {
  background-color: #A91D1C;
  color: #FFFFFF;
}
section.news-page .top .btn-sm:hover svg path {
  stroke: #FFFFFF;
}
section.news-page .top .btn-red {
  color: #A91D1C;
  display: flex;
  gap: 10px;
}
section.news-page .top .title {
  margin-top: 50px;
  margin-bottom: 45px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
section.news-page .top .title h1 {
  font-weight: 700;
  font-size: 32px;
  line-height: 110%;
  text-align: center;
}
section.news-page .top .title p {
  font-family: "Inter Tight", sans-serif;
  font-weight: 400;
  font-size: 20px;
  text-align: center;
}
section.news-page .top .title p span {
  font-weight: 700;
}
section.news-page .news-photo {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(250px, 50% - 10px, 670px), 1fr));
  gap: 20px;
  width: 100%;
}
section.news-page .news-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.news-page .news-photo .photo {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  background: #1E1E1E;
  border-radius: 30px;
  overflow: hidden;
}

section.brands {
  padding-top: 90px;
  padding-bottom: 160px;
}
section.brands .title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
section.brands .title h1 {
  font-weight: 700;
  font-size: 48px;
  line-height: 110%;
}
section.brands .title p {
  font-family: "Inter Tight", sans-serif;
  font-weight: 400;
  font-size: 24px;
  text-align: center;
}
section.brands .grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: minmax(340px, auto);
  margin-top: 45px;
  gap: 20px;
  color: #FFFFFF;
}
section.brands .grid img {
  width: 90%;
  height: 90%;
  object-fit: contain;
}
section.brands .grid .item:nth-child(even) {
  background-color: #A91D1C;
}
section.brands .grid .item:nth-child(odd) {
  background-color: #1E1E1E;
}
section.brands .grid .item {
  display: flex;
  flex-direction: column;
  border-radius: 30px;
  padding: 25px 25px 20px 26px;
  justify-content: space-between;
  color: #FFFFFF;
  cursor: pointer;
}
section.brands .grid .item .top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
section.brands .grid .item .top svg {
  flex-shrink: 0;
}
section.brands .grid .item .top .logo {
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFFFFF;
  border-radius: 100%;
  overflow: hidden;
}
section.brands .grid .item .bottom {
  font-family: "Inter Tight", sans-serif;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
section.brands .grid .item .bottom span {
  font-weight: 700;
  font-size: 32px;
}
section.brands .grid .item .bottom p {
  font-weight: 400;
  font-size: 20px;
}

section.product-catalog {
  padding-top: 90px;
  padding-bottom: 160px;
}
section.product-catalog .title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 33px;
}
section.product-catalog .title h1 {
  font-weight: 700;
  font-size: 48px;
}
section.product-catalog .title .description {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
section.product-catalog .title .description p {
  font-family: "Inter Tight", sans-serif;
  font-weight: 400;
  font-size: 24px;
  text-align: center;
}
section.product-catalog .title .description span {
  text-transform: uppercase;
  font-weight: 700;
}
section.product-catalog .title .description span.red {
  color: #A91D1C;
}
section.product-catalog .category {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 95px;
  margin-bottom: 50px;
}
section.product-catalog .category span {
  border: 1px solid #A91D1C;
  border-radius: 50px;
  padding: 20px 40px;
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  color: #A91D1C;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
section.product-catalog .category span.active,
section.product-catalog .category span:hover {
  background-color: #A91D1C;
  color: #FFFFFF;
}
section.product-catalog .brands {
  margin-bottom: 50px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
section.product-catalog .brands .block {
  flex: 0 1 160px;
  height: 160px;
  background-color: #F9F9F9;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
section.product-catalog .brands .block img {
  width: 90%;
  height: 90%;
  -o-object-fit: contain;
     object-fit: contain;
}
section.product-catalog .brands .block span {
  font-family: "Inter Tight", sans-serif;
  text-align: center;
}
section.product-catalog .brands .block.active,
section.product-catalog .brands .block:hover {
  outline: 1px solid #A91D1C;
  color: #A91D1C;
}
section.product-catalog .grid {
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex-wrap: wrap;
}
section.product-catalog .grid .item {
  min-height: 425px;
  flex: 1 0 325px;
  padding: 25px;
  border: 1px solid #A91D1C;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}
section.product-catalog .grid .item.disable {
  display: none;
}
section.product-catalog .grid .item .preview {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: center;
}
section.product-catalog .grid .item .preview svg {
  position: absolute;
  right: 0;
}
section.product-catalog .grid .item .preview img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
section.product-catalog .grid .item .preview .photo {
  padding-top: 40px;
  height: 260px;
  aspect-ratio: 1/1;
}
section.product-catalog .grid .item .info {
  font-family: "Inter Tight", sans-serif;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
section.product-catalog .grid .item .info .name {
  font-weight: 700;
  font-size: 24px;
  text-align: center;
}
section.product-catalog .grid .item .info .characteristics {
  font-weight: 400;
  font-size: 16px;
  text-align: center;
}

.modal {
  display: none;
}
.modal .product-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  z-index: 99999;
  padding: 25px 15px;
  overflow-y: auto;
  opacity: 0;
  transition: all 0.3s ease-in;
}
.modal .product-popup.active {
  opacity: 1;
}
.modal .product-popup .container {
  background-color: #FFFFFF;
  border-radius: 30px;
  padding: 100px;
  max-width: 1360px;
  width: 100%;
  margin: auto;
  height: -moz-fit-content;
  height: fit-content;
}
.modal .product-popup .container .panel .close {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  position: relative;
  cursor: pointer;
}
.modal .product-popup .container .panel .close svg {
  position: absolute;
  translate: 50px -50px;
}
.modal .product-popup .container .wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}
.modal .product-popup .container .wrapper .photo {
  width: 500px;
  height: 600px;
  border-radius: 30px;
  overflow: hidden;
  flex: 1;
}
.modal .product-popup .container .wrapper .photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.modal .product-popup .container .wrapper .description {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 537px;
  flex: 1;
  gap: 20px;
}
.modal .product-popup .container .wrapper .description .top {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.modal .product-popup .container .wrapper .description .top .title {
  font-weight: 700;
  font-size: 32px;
}
.modal .product-popup .container .wrapper .description .top .brand {
  aspect-ratio: 1/1;
  width: 160px;
  height: 80px;
  background-color: #F9F9F9;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal .product-popup .container .wrapper .description .top .brand img {
  width: 90%;
  height: 90%;
  object-fit: contain;
}
.modal .product-popup .container .wrapper .description .top p {
  font-family: "Inter Tight", sans-serif;
  font-weight: 400;
  font-size: 20px;
}
.modal .product-popup .container .wrapper .description .list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.modal .product-popup .container .wrapper .description .list .item {
  display: grid;
  grid-template-columns: 1fr 80px;
  align-items: center;
  font-family: "Inter Tight", sans-serif;
}
.modal .product-popup .container .wrapper .description .list .item .label {
  font-weight: 400;
}
.modal .product-popup .container .wrapper .description .list .item .value {
  font-weight: 700;
}

@media (max-width: 1400px) {
  section.problems .container .top .list .item {
    display: flex;
    flex-direction: column;
  }
  section.problems .container .bottom .list .item {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 1200px) {
  section.about .block {
    flex-wrap: wrap;
  }
  section.about .block .left {
    flex-shrink: 1;
    max-height: 100%;
  }
  section.about .block .left .wrapper {
    padding: 0 25px;
    max-width: 100%;
    margin: 0;
    flex-shrink: 1;
    flex-basis: 0;
    gap: 40px;
  }
  section.about .block .left .wrapper .bottom .product {
    justify-content: center;
  }
  section.about .block .left .wrapper .bottom .product span {
    flex-grow: 1;
    text-align: center;
  }
  section.about .block .right {
    width: 100%;
  }
  section.about .block .right .wrapper {
    height: 100%;
    padding: 0 25px;
  }
}
@media (max-width: 1100px) {
  .header-wrapper {
    min-height: 190px;
  }
  .header .container {
    flex-wrap: wrap;
    gap: 20px;
  }
  .header .container .top-menu {
    order: 1;
    width: 100%;
    justify-content: center;
    background: black;
    max-width: 820px;
    margin: 0 auto;
    align-items: center;
    border-radius: 30px;
    background-color: #F9F9F9;
    padding: 20px 0;
  }
  section.baner .container .info {
    flex-direction: column;
    gap: 25px;
  }
  section.baner .container .info div.block {
    justify-content: flex-start;
  }
  section.contacts .container .bottom-wrapper {
    justify-content: center;
    flex-wrap: wrap;
    gap: unset;
  }
  section.contacts .container .bottom-wrapper .map {
    flex-grow: 1;
    margin-bottom: 40px;
  }
  section.cooperation .block {
    flex-direction: column;
    gap: 45px;
  }
  section.cooperation .block .left {
    align-items: flex-start;
    width: 100%;
  }
  section.cooperation .block .left .wrapper {
    margin: 45px 25px 45px 25px;
    max-width: 639px;
  }
  section.cooperation .block .left .wrapper .list {
    margin-top: 20px;
  }
  section.cooperation .block .right {
    max-width: 100%;
    height: 380px;
    width: 100%;
  }
}
@media (max-width: 900px) {
  section.contacts .container .full {
    flex-direction: column;
  }
  section.advantages .container .cards .wrapper .card {
    width: 100%;
  }
  section.advantages .container .cards .wrapper .card .circle {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100px;
    max-height: 100px;
  }
  section.advantages .container .cards .wrapper .card .circle img {
    width: 150%;
    height: 150%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  section.about .left .bottom .product span{
    padding: 20px
  }
  section.product-catalog .category{
    margin-top: 45px;
  }
  section.problems {
    padding: 90px 0;
  }
  section.problems .container h2 {
    font-size: 32px;
  }
  section.problems .container .top {
    flex-direction: column;
  }
  section.problems .container .top > img {
    width: 100%;
    height: 360px;
  }
  section.problems .container .bottom {
    flex-direction: column-reverse;
  }
  section.problems .container .bottom > img {
    width: 100%;
    height: 360px;
  }
  section.values .container .block {
    align-items: flex-start;
  }
  section.values .container .block .grid {
    grid-template-columns: 1fr;
  }
  section.brands .container .grid {
    grid-template-columns: 1fr;
  }
  .modal .product-popup .container {
    padding: 25px;
  }
  .modal .product-popup .container .panel .close {
    margin-bottom: 20px;
  }
  .modal .product-popup .container .panel .close svg {
    translate: unset;
    position: static;
  }
  .modal .product-popup .container .wrapper {
    flex-direction: column-reverse;
    align-items: center;
    gap: 25px;
  }
  .modal .product-popup .container .wrapper .description {
    max-width: 100%;
  }
  .modal .product-popup .container .wrapper .description .top {
    gap: 17px;
  }
  .modal .product-popup .container .wrapper .photo {
    max-width: 500px;
    width: 100%;
  }
  .footer .container {
    gap: 45px;
  }
  .footer .menu {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .footer .contacts {
    flex-direction: column;
    gap: 47px;
  }
  .footer .contacts .info {
    flex-direction: column;
    align-items: center;
  }
  .footer .special {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
  .footer .special .company-info {
    text-align: center;
    align-items: center;
  }
}
@media (max-width: 700px) {
   .header{
    padding: 15px 0;
  }
  .desktop {
    display: none;
  }
  .header-wrapper {
    min-height: 80px;
  }
  .header .container {
    height: 50px;
  }
  .header .container .top-menu {
    position: absolute;
    flex-direction: column;
    left: 0;
    top: 80px;
    border-radius: 0;
    overflow: hidden;
    padding: 0;
    opacity: 0;
    padding: 20px 0;
    transform: translateX(-100%);
    transition: all 0.3s ease-in;
  }
  .header .container .top-menu.visible {
    opacity: 1;
    transform: translateX(0);
  }
  .header .container #mobile-menu-open-btn {
    display: block;
  }
  .header .container .panel.mobile {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .header .container .panel.mobile .button-block .phone-block {
    padding-left: 18px;
  }
  section.baner {
    background-position: center;
    padding: 40px 0;
  }
  section.baner .container {
    height: 520px;
  }
  section.baner .container h1 {
    font-size: 54px;
  }
  section.baner .info .block:first-child br{
    display:none;
  }
  section.clients .brands{
    margin: 17px 0;
  }
  section.clients .brands .swiper {
    max-width: 90%;
  }
  section.clients .brands .swiper .swiper-slide {
    width: 90px;
  }
  section.contacts {
    padding: 100px 0;
  }
  section.contacts .container .full {
    margin-bottom: 50px;
  }
  section.contacts .container .full .list {
    gap: 25px;
  }
  section.contacts .container .full .list .phones {
    gap: 25px;
  }
  section.contacts .container .full .list .emails {
    gap: 25px;
  }
  section.contacts .container .bottom-wrapper .map-info {
    position: static;
    margin-bottom: 20px;
    max-width: 100%;
  }
  section.contacts .container .bottom-wrapper .map {
    height: 240px;
  }
  section.contacts .container .bottom-wrapper #ajax_form {
    flex: 1;
  }
  section.values {
    padding: 45px 0;
  }
  section.values .container .title {
    flex-direction: column;
    justify-content: unset;
    align-items: unset;
    gap: 16px;
  }
  section.values .container .title h2 {
    font-size: 32px;
  }
  section.values .container .block {
    flex-direction: column;
  }
  section.values .container .block > img {
    width: 100%;
    margin-bottom: 50px;
    height: 362px;
  }
  section.UTP {
    padding: 100px 0;
  }
  section.UTP .container h2 {
    font-size: 32px;
  }
  section.UTP .container .grid {
    gap: 10px;
  }
  section.UTP .container .grid .item {
    padding: 20px 0;
    gap: 10px;
  }
  section.UTP .container .grid .item .description {
    font-size: 16px;
  }
  section.news-list .container .title h1 {
    font-size: 32px;
  }
  section.news-list .container .title p {
    font-size: 20px;
  }
  section.brands .container .grid .item .top .logo {
    width: 100px;
    height: 100px;
  }
  section.brands .container .grid .item .bottom span {
    font-size: 24px;
  }
  section.brands .container .grid .item .bottom p {
    font-size: 16px;
  }
  section.product-catalog .title h1 {
    font-size: 32px;
  }
  section.product-catalog .title .description p {
    font-size: 20px;
  }
  .modal .product-popup .container .wrapper .description .top .title {
    font-size: 24px;
  }
  .modal .product-popup .container .wrapper .description .top p {
    font-size: 16px;
  }
  .modal .product-popup .container .wrapper .description .list {
    font-size: 14px;
  }
}
@media (max-width: 500px) {
  section.baner .container .info .block:first-child {
    font-size: 24px;
  }
  section.baner .container .info .block:last-child {
    font-size: 20px;
  }
  section.clients {
    padding: 100px 0;
  }
  section.clients .container.top h2 {
    font-size: 32px;
  }
  section.advantages {
    padding: 100px 0;
  }
  section.advantages .container h2 {
    font-size: 32px;
  }
  section.advantages .container .cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  section.advantages .container .cards .wrapper {
    gap: 12px;
  }
  section.advantages .container .cards .wrapper .card {
    max-height: 200px;
  }
  section.advantages .container .cards .wrapper .card span {
    font-size: 16px;
  }
  section.advantages .container .description {
    font-size: 16px;
  }
  section.contacts .container h2 {
    font-size: 32px;
  }
  section.contacts .container .full .block p {
    font-size: 20px;
  }
  section.contacts .container .full .block p:nth-child(2) {
    margin-top: 40px;
  }
  section.contacts .container .full .block .btn-white {
    background-color: #A91D1C;
    color: #FFFFFF;
    border: none;
  }
  section.contacts .container .full .block .btn-white a{
    color: #FFFFFF;
  }
  section.cooperation .block .left .wrapper h2{
    font-size: 32px;
  }
  section.about .block .left .wrapper .top h2 {
    font-size: 32px;
  }
  section.about .block .left .wrapper .top p {
    font-size: 20px;
  }
  section.about .block .left .wrapper .bottom .product-title {
    font-size: 20px;
  }
  section.about .block .right {
    position: relative;
  }
  section.about .block .right .wrapper {
    width: 100%;
    position: relative;
    z-index: 90;
  }
  section.about .block .right .wrapper .slogan {
    font-size: 16px;
  }
  section.about .block .right::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
  }
  section.brands .container .title h1 {
    font-size: 32px;
  }
  section.product-catalog .brands {
    flex-direction: column;
  }
}/*# sourceMappingURL=style.css.map */
/* End */
/* /local/templates/Genlix/assets/css/style.css?175075726046800 */
