@charset "UTF-8";
body {
  background: #fff;
  color: #000;
  font-family: "Lato", sans-serif;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  background: transparent;
  backdrop-filter: blur(50px);
  transition: transform 0.5s ease-in-out, background 0.3s ease;
}
header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: -1;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 1220px) {
  header .container {
    width: 80%;
  }
}
header .container img {
  height: 100px;
  width: auto;
}
@media (max-width: 820px) {
  header .container img {
    height: 80px;
  }
}
header .container .burger {
  display: none;
  order: 3;
  font-size: 24px;
  cursor: pointer;
  color: #000;
}
@media (max-width: 820px) {
  header .container .burger {
    display: block;
  }
}
header .container nav {
  display: flex;
  gap: 30px;
}
@media (max-width: 820px) {
  header .container nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    text-align: center;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s;
  }
}
header .container nav.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
header .container nav a {
  color: #000;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  position: relative;
  transition: 0.3s ease;
}
@media (max-width: 1440px) {
  header .container nav a {
    font-size: 12px;
  }
}
header .container nav a:hover {
  color: black;
}
header .container nav a::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #000;
  position: absolute;
  bottom: -5px;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
header .container nav a:hover::after {
  opacity: 1;
}
header .container .language-selector {
  position: relative;
  display: inline-block;
}
header .container .language-selector .dropdown-toggle {
  background-color: #f5f5f5;
  border: none;
  padding: 10px 30px;
  min-width: 150px;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
header .container .language-selector .dropdown-toggle:hover {
  background-color: #e5e5e5;
}
header .container .language-selector .dropdown-menu {
  display: none;
  position: absolute;
  top: 110%;
  right: 0;
  background-color: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
  padding: 0;
  margin: 0;
  z-index: 100;
  width: 100%;
}
header .container .language-selector .dropdown-menu li {
  list-style: none;
  border-bottom: 1px solid #f0f0f0;
  text-align: center;
  width: 100%;
}
header .container .language-selector .dropdown-menu li:last-child {
  border-bottom: none;
}
header .container .language-selector .dropdown-menu li a {
  display: block;
  color: #333;
  text-decoration: none;
  transition: background-color 0.2s ease;
  padding: 10px;
}
header .container .language-selector .dropdown-menu li a:hover {
  background-color: #f9f9f9;
}
header .container .language-selector .dropdown-menu.show {
  display: block;
}

.hidden {
  transform: translateY(-100%);
}

.main {
  margin-top: 130px;
}
@media (max-width: 820px) {
  .main {
    margin-top: 110px;
  }
}
.main .main-descr {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: calc(100vh - 130px);
  margin: 0;
  overflow: hidden;
  background: url("./image/hero-building-new.png") no-repeat center right/cover;
}
.main .main-descr::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.98) 34%, rgba(255, 255, 255, 0.78) 56%, rgba(255, 255, 255, 0.3) 78%, rgba(255, 255, 255, 0.06) 100%);
  backdrop-filter: blur(1px);
  pointer-events: none;
}
.main .main-descr .main-descr__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  min-height: calc(100vh - 130px);
}
@media (max-width: 900px) {
  .main .main-descr .main-descr__inner {
    min-height: calc(100vh - 110px);
  }
}
.main .main-descr .main-descr__content {
  width: min(780px, 58vw);
  max-width: 780px;
  padding: 80px 32px 80px max(40px, (100vw - 1200px) / 2 + 20px);
  text-align: left;
}
@media (max-width: 1220px) {
  .main .main-descr .main-descr__content {
    width: min(740px, 64vw);
    padding-left: 10%;
  }
}
@media (max-width: 900px) {
  .main .main-descr .main-descr__content {
    width: 100%;
    max-width: none;
    padding: 50px 10%;
    text-align: center;
  }
}
.main .main-descr h1 {
  font-size: 64px;
  line-height: 1.05;
  margin: 0;
}
@media (max-width: 1220px) {
  .main .main-descr h1 {
    font-size: 50px;
  }
}
@media (max-width: 768px) {
  .main .main-descr h1 {
    font-size: 40px;
  }
}
@media (max-width: 500px) {
  .main .main-descr h1 {
    font-size: 32px;
  }
}
.main .main-descr .hero-subhead {
  margin: 18px 0 0;
  font-size: 28px;
  line-height: 1.25;
  font-weight: 700;
  text-transform: none;
  font-style: normal;
}
@media (max-width: 1220px) {
  .main .main-descr .hero-subhead {
    font-size: 24px;
  }
}
@media (max-width: 500px) {
  .main .main-descr .hero-subhead {
    font-size: 20px;
  }
}
.main .main-descr .slogan {
  color: #09a509;
  position: relative;
  display: inline-block;
  margin: 34px 50px 0;
  font-size: 32px;
  line-height: 1.2;
  text-transform: uppercase;
  font-style: italic;
}
.main .main-descr .slogan::before {
  content: "";
  position: absolute;
  left: -50px;
  top: 50%;
  width: 40px;
  height: 40px;
  background: url("./image/slogan.png") no-repeat center/contain;
  transform: translateY(-50%);
}
.main .main-descr .slogan::after {
  content: "";
  position: absolute;
  right: -50px;
  top: 50%;
  width: 40px;
  height: 40px;
  background: url("./image/slogan.png") no-repeat center/contain;
  transform: translateY(-50%);
}
@media (max-width: 1220px) {
  .main .main-descr .slogan {
    font-size: 26px;
  }
}
@media (max-width: 500px) {
  .main .main-descr .slogan {
    margin-left: 0;
    margin-right: 0;
    font-size: 19px;
  }
  .main .main-descr .slogan::before, .main .main-descr .slogan::after {
    display: none;
  }
}
.main .main-descr .hero-note {
  margin: 26px 0 0;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 700;
  text-transform: none;
  font-style: normal;
}
.main .main-descr .hero-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 14px;
  margin-top: 30px;
  width: 100%;
  max-width: 720px;
  margin-left: 0;
  margin-right: 0;
}
@media (max-width: 900px) {
  .main .main-descr .hero-cards {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }
}
.main .main-descr .hero-cards span {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  flex: 0 1 calc((100% - 28px) / 3);
  min-height: 44px;
  padding: 11px 18px;
  border-left: 3px solid #09a509;
  background: rgba(255, 255, 255, 0.62);
  color: #000;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
  backdrop-filter: blur(6px);
}
@media (max-width: 900px) {
  .main .main-descr .hero-cards span {
    justify-content: center;
    flex-basis: calc((100% - 14px) / 2);
    text-align: center;
  }
}
@media (max-width: 500px) {
  .main .main-descr .hero-cards span {
    flex-basis: 100%;
  }
}
.main .main-descr .hero-consultation {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 32px;
  min-width: 230px;
  border-radius: 0.5rem;
  background: #f5f5f5;
  color: #000;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: background-color 0.3s ease;
}
.main .main-descr .hero-consultation:hover {
  background: #e5e5e5;
}
.main .swiper {
  padding-top: 0;
  padding-bottom: 0;
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
}
@media (max-width: 1220px) {
  .main .swiper {
    width: 80%;
  }
}
.main .swiper .slider-video {
  width: 100%;
  height: auto;
}
@media (max-width: 880px) {
  .main .swiper .slider-video {
    display: none;
  }
}
.main .swiper .slider-video-mobile {
  display: none;
}
@media (max-width: 880px) {
  .main .swiper .slider-video-mobile {
    width: 100%;
    height: auto;
    display: block;
  }
}
.main .benefits {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 1220px) {
  .main .benefits {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (max-width: 768px) {
  .main .benefits {
    padding-bottom: 20px;
  }
}
.main .benefits .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 1220px) {
  .main .benefits .container {
    width: 80%;
  }
}
@media (max-width: 768px) {
  .main .benefits .container {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.main .benefits .container .current_benefit {
  width: 20%;
  text-align: center;
  text-transform: uppercase;
  padding: 0 20px;
  font-size: 20px;
}
.main .benefits .container .current_benefit:hover {
  color: #6859A3;
}
.main .benefits .container .current_benefit:hover svg:nth-child(1) path {
  stroke: #6859A3;
}
.main .benefits .container .current_benefit:hover svg:nth-child(1) path:nth-child(3), .main .benefits .container .current_benefit:hover svg:nth-child(1) path:nth-child(4), .main .benefits .container .current_benefit:hover svg:nth-child(1) path:nth-child(5) {
  fill: #6859A3;
}
.main .benefits .container .current_benefit:nth-child(1):hover {
  color: #36B4A9;
}
.main .benefits .container .current_benefit:nth-child(1):hover svg path {
  stroke: #36B4A9;
}
.main .benefits .container .current_benefit:nth-child(2):hover {
  color: #DD6451;
}
.main .benefits .container .current_benefit:nth-child(2):hover path {
  stroke: #DD6451 !important;
}
.main .benefits .container .current_benefit:nth-child(2):hover svg:nth-child(1) path:nth-child(3) {
  fill: none !important;
}
.main .benefits .container .current_benefit:nth-child(3):hover {
  color: #36B4A9;
}
.main .benefits .container .current_benefit:nth-child(3):hover svg path {
  stroke: #36B4A9;
}
.main .benefits .container .current_benefit:nth-child(4):hover svg mask {
  stroke: #6859A3;
}
.main .benefits .container .current_benefit:nth-child(4):hover svg circle {
  stroke: #6859A3;
}
.main .benefits .container .current_benefit:nth-child(4):hover svg line {
  stroke: #6859A3;
}
.main .benefits .container .current_benefit:nth-child(4):hover svg:nth-child(1) path:nth-child(4) {
  fill: none !important;
}
@media (max-width: 1220px) {
  .main .benefits .container .current_benefit {
    font-size: 12px;
  }
  .main .benefits .container .current_benefit img {
    height: 80px;
  }
}
@media (max-width: 768px) {
  .main .benefits .container .current_benefit {
    width: calc(50% - 40px);
    padding: 0;
    margin-right: 20px;
    margin-left: 20px;
    margin-bottom: 40px;
  }
  .main .benefits .container .current_benefit:nth-child(2n) {
    margin-right: 0;
  }
  .main .benefits .container .current_benefit:nth-child(2n-1) {
    margin-left: 0;
  }
  .main .benefits .container .current_benefit:last-child {
    margin-left: 0;
    margin-right: 0;
  }
}
@media (max-width: 500px) {
  .main .benefits .container .current_benefit {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
  .main .benefits .container .current_benefit p {
    width: 80%;
    margin: 10px auto 0 auto;
  }
}
.main .references-preview {
  padding-top: 50px;
  padding-bottom: 20px;
}
@media (max-width: 1220px) {
  .main .references-preview {
    padding-top: 40px;
  }
}
.main .references-preview .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 44px;
  border-bottom: 1px solid #000;
}
@media (max-width: 1220px) {
  .main .references-preview .container {
    width: 80%;
  }
}
.main .references-preview h2 {
  font-size: 40px;
  text-transform: uppercase;
  text-align: center;
  margin: 0 auto 32px auto;
  max-width: 80%;
}
@media (max-width: 768px) {
  .main .references-preview h2 {
    font-size: 32px;
  }
}
.main .references-preview .references-carousel.swiper {
  position: relative;
  display: block;
  width: 100%;
  max-width: none;
  padding: 0 0 38px;
  margin: 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .main .references-preview .references-carousel.swiper {
    padding: 0 0 34px;
  }
}
.main .references-preview .references-preview__card {
  position: relative;
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 0.5rem;
  background: #f5f5f5;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  color: #000;
  text-decoration: none;
}
.main .references-preview .references-preview__card img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.35s ease;
}
.main .references-preview .references-preview__card span {
  position: absolute;
  top: 14px;
  right: 14px;
  max-width: calc(100% - 28px);
  padding: 9px 14px;
  border-radius: 0.5rem;
  background: #f5f5f5;
  color: #000;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
.main .references-preview .references-preview__card:hover img {
  transform: scale(1.04);
}
.main .references-preview .references-carousel__pagination {
  bottom: 0;
}
.main .references-preview .references-carousel__pagination .swiper-pagination-bullet {
  background: #000;
  opacity: 0.2;
}
.main .references-preview .references-carousel__pagination .swiper-pagination-bullet-active {
  opacity: 1;
}
.main .references-preview .references-preview__button {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 26px auto 0;
  padding: 10px 30px;
  min-width: 180px;
  border-radius: 0.5rem;
  background: #f5f5f5;
  color: #000;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: background-color 0.3s ease;
}
.main .references-preview .references-preview__button:hover {
  background: #e5e5e5;
}
.main .additional_info {
  padding-top: 20px;
  padding-bottom: 20px;
}
.main .additional_info .container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  border-top: 1px solid black;
  border-bottom: 1px solid black;
}
@media (max-width: 1220px) {
  .main .additional_info .container {
    width: 80%;
  }
}
@media (max-width: 768px) {
  .main .additional_info .container {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.main .additional_info .container p {
  text-align: center;
  font-size: 20px;
  max-width: 40%;
  margin: 0 auto 20px;
}
@media (max-width: 1220px) {
  .main .additional_info .container p {
    font-size: 12px;
  }
}
.main .numbers {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 1220px) {
  .main .numbers {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (max-width: 768px) {
  .main .numbers {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.main .numbers h2 {
  font-size: 40px;
  text-transform: uppercase;
  text-align: center;
  margin: 0 auto 60px auto;
}
@media (max-width: 800px) {
  .main .numbers h2 {
    font-size: 32px;
  }
}
.main .numbers .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  row-gap: 52px;
}
@media (max-width: 1220px) {
  .main .numbers .container {
    width: 80%;
  }
}
.main .numbers .container .current_number {
  box-sizing: border-box;
  width: calc(33.3333333333% - 1px);
  text-align: center;
  padding-left: 30px;
  padding-right: 30px;
}
@media (max-width: 600px) {
  .main .numbers .container .current_number {
    padding-left: 0;
    padding-right: 0;
  }
}
.main .numbers .container .current_number p {
  color: black;
  transition: 0.3s ease color;
}
.main .numbers .container .current_number:hover {
  color: #6859A3;
}
.main .numbers .container .current_number:hover p {
  color: #6859A3;
}
.main .numbers .container .current_number:hover {
  cursor: default;
}
.main .numbers .container .current_number:hover:nth-child(2n) {
  color: #36B4A9;
}
.main .numbers .container .current_number:hover:nth-child(2n) p {
  color: #36B4A9;
}
.main .numbers .container .current_number:hover:nth-child(3n) {
  color: #DD6451;
}
.main .numbers .container .current_number:hover:nth-child(3n) p {
  color: #DD6451;
}
.main .numbers .container .current_number:not(:nth-child(3n)) {
  border-right: 1px solid #000;
}
@media (max-width: 768px) {
  .main .numbers .container .current_number {
    width: calc(50% - 1px);
  }
  .main .numbers .container .current_number:not(:nth-child(3n)) {
    border-right: 0;
  }
  .main .numbers .container .current_number:nth-child(odd) {
    border-right: 1px solid #000;
  }
  .main .numbers .container .current_number:last-child:nth-child(odd) {
    width: 100%;
    border-right: 0;
  }
}
@media (max-width: 500px) {
  .main .numbers .container .current_number {
    width: 100%;
    border-right: 0 !important;
    border-bottom: 1px solid #000;
  }
  .main .numbers .container .current_number:last-child {
    border-bottom: 0;
  }
}
.main .numbers .container .current_number h2 {
  font-size: 40px;
  margin-bottom: 20px;
}
@media (max-width: 1220px) {
  .main .numbers .container .current_number h2 {
    font-size: 32px;
  }
}
.main .numbers .container .current_number h2 span {
  font-size: 80px;
}
@media (max-width: 1220px) {
  .main .numbers .container .current_number h2 span {
    font-size: 50px;
  }
}
.main .numbers .container .current_number p {
  font-size: 20px;
  text-transform: uppercase;
}
@media (max-width: 1220px) {
  .main .numbers .container .current_number p {
    font-size: 12px;
  }
}
.main .numbers .container .current_number.number_7 h2 {
  text-transform: none;
}
.main .product {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (max-width: 1220px) {
  .main .product {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .main .product {
    padding-top: 0px;
    padding-bottom: 0px;
  }
}
.main .product .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}
@media (max-width: 1220px) {
  .main .product .container {
    width: 80%;
  }
}
.main .product .container .current_product {
  display: flex;
  flex-direction: row;
}
@media (max-width: 880px) {
  .main .product .container .current_product {
    flex-direction: column;
  }
}
.main .product .container .current_product img {
  width: 50%;
  height: auto;
}
@media (max-width: 880px) {
  .main .product .container .current_product img {
    width: 100%;
  }
}
.main .product .container .current_product .descr {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 880px) {
  .main .product .container .current_product .descr {
    text-align: center;
  }
}
.main .product .container .current_product .descr h2 {
  font-size: 20px;
  text-transform: uppercase;
}
@media (max-width: 1220px) {
  .main .product .container .current_product .descr h2 {
    font-size: 12px;
  }
}
.main .product .container .current_product .descr p {
  font-size: 14px;
  margin-top: 20px;
  width: 100%;
  max-width: 100%;
  margin-bottom: 0;
}
.main .product .container .current_product .descr p span {
  font-style: italic;
  margin-top: 0;
}
@media (max-width: 1220px) {
  .main .product .container .current_product .descr p {
    font-size: 12px;
  }
}
@media (max-width: 500px) {
  .main .product .container .current_product .descr p {
    margin: 10px auto 0 auto;
  }
}
.main .product .container .current_product .descr a {
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 20px;
}
@media (max-width: 880px) {
  .main .product .container .current_product .descr a {
    align-self: center;
  }
}
.main .product .container .current_product .descr a button {
  background-color: #f5f5f5;
  border: none;
  padding: 10px 30px;
  min-width: 150px;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
.main .product .container .current_product .descr a button:hover {
  background-color: #e5e5e5;
}
.main .comparison {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (max-width: 1220px) {
  .main .comparison {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.main .comparison .container {
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1220px) {
  .main .comparison .container {
    width: 80%;
  }
}
.main .comparison h2 {
  font-size: 40px;
  text-transform: uppercase;
  text-align: center;
  margin: 0 auto 30px auto;
  max-width: 80%;
}
@media (max-width: 768px) {
  .main .comparison h2 {
    font-size: 32px;
  }
}
.main .comparison .comparison-table-wrap {
  overflow-x: auto;
  border-radius: 0.5rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  background: #fff;
}
.main .comparison .comparison-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: #fff;
}
.main .comparison .comparison-table th,
.main .comparison .comparison-table td {
  padding: 22px 24px;
  text-align: left;
  border-bottom: 1px solid #e5e5e5;
  font-size: 15px;
}
.main .comparison .comparison-table th {
  font-weight: 700;
}
.main .comparison .comparison-table tr:last-child td {
  border-bottom: none;
}
.main .comparison .comparison-table th:last-child,
.main .comparison .comparison-table td:last-child {
  font-weight: 700;
  background: #f5f5f5;
}
@media (max-width: 768px) {
  .main .comparison .comparison-table th,
  .main .comparison .comparison-table td {
    padding: 16px 18px;
    font-size: 13px;
  }
}
.main .where-traditional {
  padding-top: 40px;
  padding-bottom: 80px;
}
@media (max-width: 1220px) {
  .main .where-traditional {
    padding-top: 30px;
    padding-bottom: 60px;
  }
}
.main .where-traditional .container {
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1220px) {
  .main .where-traditional .container {
    width: 80%;
  }
}
.main .where-traditional .where-traditional__intro {
  text-align: center;
  margin: 0 auto 34px auto;
  max-width: 860px;
}
.main .where-traditional h2 {
  font-size: 40px;
  text-transform: uppercase;
  margin: 0 auto 16px auto;
  max-width: 900px;
}
@media (max-width: 768px) {
  .main .where-traditional h2 {
    font-size: 32px;
  }
}
@media (max-width: 500px) {
  .main .where-traditional h2 {
    font-size: 28px;
  }
}
.main .where-traditional .where-traditional__intro p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 680px;
}
@media (max-width: 768px) {
  .main .where-traditional .where-traditional__intro p {
    font-size: 14px;
  }
}
.main .where-traditional .where-traditional__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
@media (max-width: 1100px) {
  .main .where-traditional .where-traditional__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .main .where-traditional .where-traditional__grid {
    grid-template-columns: 1fr;
  }
}
.main .where-traditional .where-traditional-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #e5e5e5;
  border-radius: 0.5rem;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
.main .where-traditional .where-traditional-card__content {
  min-height: 116px;
  padding: 18px 20px 14px 20px;
}
@media (max-width: 640px) {
  .main .where-traditional .where-traditional-card__content {
    min-height: auto;
    padding: 18px 18px 12px 18px;
  }
}
.main .where-traditional .where-traditional-card h3 {
  font-size: 20px;
  line-height: 1.2;
  margin: 0 0 8px 0;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .main .where-traditional .where-traditional-card h3 {
    font-size: 19px;
  }
}
.main .where-traditional .where-traditional-card p {
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
}
@media (max-width: 768px) {
  .main .where-traditional .where-traditional-card p {
    font-size: 14px;
  }
}
.main .where-traditional .where-traditional-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.main .our_standarts {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 1220px) {
  .main .our_standarts {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.main .our_standarts h2 {
  font-size: 60px;
  text-align: center;
  margin: 0 auto 40px auto;
  max-width: 80%;
}
.main .our_standarts h2 span {
  font-size: 48px;
  text-transform: uppercase;
}
@media (max-width: 1220px) {
  .main .our_standarts h2 {
    font-size: 50px;
  }
}
@media (max-width: 768px) {
  .main .our_standarts h2 {
    font-size: 40px;
  }
}
@media (max-width: 500px) {
  .main .our_standarts h2 {
    font-size: 32px;
  }
}
.main .our_standarts .container {
  overflow: hidden;
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.main .our_standarts .container a {
  margin: 60px auto 0 auto;
}
.main .our_standarts .container a .learn-more {
  background-color: #f5f5f5;
  border: none;
  padding: 10px 30px;
  min-width: 150px;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
.main .our_standarts .container a .learn-more:hover {
  background-color: #e5e5e5;
}
.main .our_standarts .standarts-track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: scroll-ltr 40s linear infinite;
}
html[dir=rtl] .main .our_standarts .standarts-track {
  animation: scroll-rtl 40s linear infinite;
}
.main .our_standarts .standarts-track .current_standart {
  flex: 0 0 auto;
  padding: 0 20px;
}
.main .our_standarts .standarts-track .current_standart img {
  max-height: 120px;
  width: auto;
}
@keyframes scroll-ltr {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes scroll-rtl {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(50%);
  }
}
.main .areas h2 {
  font-size: 60px;
  text-align: center;
  margin-bottom: 80px;
  text-transform: uppercase;
}
.main .areas h2 span {
  font-size: 48px;
}
@media (max-width: 1220px) {
  .main .areas h2 span {
    width: 80%;
    margin: 0 auto 60px auto;
    font-size: 40px;
  }
}
@media (max-width: 500px) {
  .main .areas h2 span {
    font-size: 26px;
  }
}
@media (max-width: 1220px) {
  .main .areas h2 {
    width: 80%;
    margin: 0 auto 60px auto;
    font-size: 40px;
  }
}
@media (max-width: 500px) {
  .main .areas h2 {
    font-size: 26px;
  }
}
.main .areas .container {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1220px) {
  .main .areas .container {
    width: 80%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 40px;
  }
}
@media (max-width: 880px) {
  .main .areas .container {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 500px) {
  .main .areas .container {
    margin: 0 auto;
  }
  .main .areas .container .current_standart:nth-child(2n) img {
    margin-right: 0;
  }
  .main .areas .container .current_standart:last-child img {
    margin-right: 20px;
    margin-left: 20px;
  }
}
.main .areas .container .current_area {
  width: 100%;
  margin-right: 0;
  margin-left: 0;
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: black;
}
.main .areas .container .current_area:hover:nth-child(1) {
  color: #6859A3;
}
.main .areas .container .current_area:hover:nth-child(2) {
  color: #36B4A9;
}
.main .areas .container .current_area:hover:nth-child(3) {
  color: #DD6451;
}
.main .areas .container .current_area:hover:nth-child(4) {
  color: #2F7EB8;
}
@media (max-width: 1220px) {
  .main .areas .container .current_area {
    margin-right: 0;
  }
}
@media (max-width: 880px) {
  .main .areas .container .current_area {
    margin: 0 auto 30px auto;
  }
}
.main .areas .container .current_area img {
  width: 100%;
  height: auto;
}
.main .areas .container .current_area h3 {
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 0;
  text-align: center;
}
.main .areas .container .current_area p {
  font-size: 14px;
  text-align: center;
  margin-top: 20px;
  width: 100%;
  max-width: 100%;
  margin-bottom: 0;
}
.main .areas .container .current_area p span {
  font-style: italic;
  margin-top: 0;
}
@media (max-width: 1220px) {
  .main .areas .container .current_area p {
    font-size: 12px;
  }
}
@media (max-width: 500px) {
  .main .areas .container .current_area p {
    margin: 10px auto 0 auto;
  }
}
.main .faq_section {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 1220px) {
  .main .faq_section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (max-width: 768px) {
  .main .faq_section {
    padding-bottom: 20px;
  }
}
.main .faq_section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 1220px) {
  .main .faq_section .container {
    width: 80%;
  }
}
@media (max-width: 768px) {
  .main .faq_section .container {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.main .faq_section .container h1 {
  font-size: 60px;
  text-align: center;
}
@media (max-width: 1220px) {
  .main .faq_section .container h1 {
    font-size: 50px;
  }
}
@media (max-width: 768px) {
  .main .faq_section .container h1 {
    font-size: 40px;
  }
}
@media (max-width: 500px) {
  .main .faq_section .container h1 {
    font-size: 32px;
  }
}
.main .faq_section .container .faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.main .faq_section .container .faq-item .faq-question {
  padding: 1rem;
  padding-right: 40px;
  cursor: pointer;
  font-weight: bold;
  position: relative;
}
.main .faq_section .container .faq-item .faq-question::after {
  content: "+";
  position: absolute;
  right: 1rem;
  transition: transform 0.3s ease;
}
.main .faq_section .container .faq-item .faq-question.active::after {
  content: "-";
}
.main .faq_section .container .faq-item .faq-answer {
  display: none;
  padding: 1rem;
  border-top: 1px solid #eee;
  background-color: #fafafa;
}
.main .faq_section .container .faq-item .faq-answer.active {
  display: block;
}
.main .videos {
  padding-bottom: 60px;
}
@media (max-width: 1220px) {
  .main .videos {
    padding-bottom: 40px;
  }
}
@media (max-width: 500px) {
  .main .videos {
    padding-bottom: 20px;
  }
}
.main .videos .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-direction: column;
}
.main .videos .container h2 {
  font-size: 40px;
  text-transform: uppercase;
  text-align: center;
}
@media (max-width: 1220px) {
  .main .videos .container h2 {
    font-size: 32px;
  }
}
@media (max-width: 500px) {
  .main .videos .container h2 {
    font-size: 24px;
  }
}
.main .videos .container p {
  font-size: 14px;
  text-align: center;
  max-width: 60%;
}
@media (max-width: 1220px) {
  .main .videos .container p {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  .main .videos .container p {
    width: 80%;
    max-width: 100%;
  }
}
.main .videos .container .all_videos {
  padding-top: 80px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}
@media (max-width: 1220px) {
  .main .videos .container .all_videos {
    padding-top: 60px;
    width: 80%;
    justify-content: center;
  }
}
.main .videos .container .all_videos .current_video {
  width: calc(33.3333333333% - 26.6666666667px);
  margin-right: 20px;
  margin-left: 20px;
  margin-bottom: 80px;
}
@media (max-width: 1220px) {
  .main .videos .container .all_videos .current_video {
    width: calc(50% - 40px);
    margin-left: 0;
    margin-right: 40px;
  }
}
@media (max-width: 500px) {
  .main .videos .container .all_videos .current_video {
    width: 100%;
    margin: 0 auto 30px auto;
  }
}
.main .videos .container .all_videos .current_video:nth-child(3n) {
  margin-right: 0;
}
.main .videos .container .all_videos .current_video:nth-child(3n-2) {
  margin-left: 0;
}
@media (max-width: 1220px) {
  .main .videos .container .all_videos .current_video:nth-child(2n) {
    margin-right: 0;
  }
}
.main .videos .container .all_videos .current_video .video-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.main .videos .container .all_videos .current_video .video-container iframe {
  width: 100%;
  height: 300px;
}
@media (max-width: 1220px) {
  .main .videos .container .all_videos .current_video .video-container iframe {
    height: 200px;
  }
}
.main .videos .container .all_videos .current_video .video-container p {
  font-size: 14px;
  text-align: center;
  margin-top: 20px;
  width: 100%;
  max-width: 100%;
}
@media (max-width: 1220px) {
  .main .videos .container .all_videos .current_video .video-container p {
    font-size: 12px;
  }
}
@media (max-width: 500px) {
  .main .videos .container .all_videos .current_video .video-container p {
    margin: 10px auto 0 auto;
  }
}
.main .links h2 {
  font-size: 40px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 100px;
}
@media (max-width: 1220px) {
  .main .links h2 {
    font-size: 32px;
  }
}
@media (max-width: 500px) {
  .main .links h2 {
    font-size: 24px;
    margin-bottom: 50px;
  }
}
.main .links .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}
@media (max-width: 1220px) {
  .main .links .container {
    width: 80%;
  }
}
.main .links .container .current_link {
  width: 33.3333333333%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: center;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 60px;
}
@media (max-width: 650px) {
  .main .links .container .current_link {
    width: 50%;
  }
}
@media (max-width: 500px) {
  .main .links .container .current_link {
    width: 100%;
  }
}
.main .links .container .current_link img {
  width: 80px;
  margin: 0 auto;
}
.main .links .container .current_link a {
  margin-top: 20px;
  text-decoration: none;
  color: #000;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
@media (max-width: 1220px) {
  .main .links .container .current_link a {
    font-size: 12px;
    line-height: 0px;
  }
}
.main .links .container .current_link a p {
  margin-top: 20px;
  margin-bottom: 20px;
}
.main .map {
  padding-bottom: 80px;
}
@media (max-width: 1220px) {
  .main .map {
    padding-bottom: 60px;
    width: 80%;
    margin: 0 auto;
  }
}
.main .map .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.main .map .container #map {
  width: 100%;
  height: 450px;
}
@media (max-width: 1220px) {
  .main .map .container #map {
    height: 350px;
  }
}

.footer {
  background-image: url("image/new color 2/footer.png");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: auto;
  color: #000;
}
.footer .container {
  display: flex;
  border-top: 1px solid #000;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  padding-top: 40px;
  margin: 0 auto;
  flex-wrap: wrap;
  text-transform: uppercase;
}
@media (max-width: 1220px) {
  .footer .container {
    width: 80%;
  }
}
@media (max-width: 880px) {
  .footer .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.footer .container .secondary-menu {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
@media (max-width: 880px) {
  .footer .container .secondary-menu {
    justify-content: center;
  }
}
.footer .container .secondary-menu a {
  position: relative;
  text-decoration: none;
  color: #000;
  margin-bottom: 20px;
}
.footer .container .secondary-menu a:hover {
  color: #36B4A9;
}
.footer .container .links a {
  text-decoration: none;
  color: #000;
  text-transform: uppercase;
}
.footer .container .links h3 {
  margin-top: 0;
}
.footer .container .links img {
  width: 40px;
}
.footer .container .links .social {
  margin-bottom: 40px;
}
.footer .copyright {
  text-align: center;
  color: #000;
}
.footer .copyright p {
  margin: 0;
  padding: 20px;
}

.main.ar .numbers .container .current_number.number_1 {
  border-left: 1px solid #000;
  border-right: unset;
}
@media (max-width: 500px) {
  .main.ar .numbers .container .current_number.number_1 {
    border-left: unset;
  }
}
.main.ar .numbers .container .current_number.number_2 {
  border-left: 1px solid #000;
  border-right: unset;
}
@media (max-width: 768px) {
  .main.ar .numbers .container .current_number.number_2 {
    border-left: unset;
  }
}
@media (max-width: 768px) {
  .main.ar .numbers .container .current_number.number_3 {
    border-left: 1px solid #000;
    border-right: unset;
  }
}
@media (max-width: 500px) {
  .main.ar .numbers .container .current_number.number_3 {
    border-left: unset;
  }
}
.main.ar .numbers .container .current_number.number_4 {
  border-left: 1px solid #000;
  border-right: unset;
}
@media (max-width: 768px) {
  .main.ar .numbers .container .current_number.number_4 {
    border-left: unset;
  }
}

.current_news {
  padding-top: 40px;
  padding-bottom: 40px;
}
.current_news .container {
  display: flex;
  flex-direction: row;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 1220px) {
  .current_news .container {
    width: 80%;
    flex-direction: column;
  }
}
.current_news .container .left-block {
  width: 40%;
}
@media (max-width: 1220px) {
  .current_news .container .left-block {
    width: 80%;
  }
}
.current_news .container .left-block img {
  width: 100%;
}
.current_news .container .right-block {
  width: 50%;
  padding-left: 50px;
}
@media (max-width: 1220px) {
  .current_news .container .right-block {
    width: 80%;
    text-align: center;
    padding-left: 0;
  }
}
.current_news .container .right-block button {
  margin-top: 20px;
  background-color: #f5f5f5;
  border: none;
  padding: 10px 30px;
  min-width: 150px;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
.current_news .container .right-block button:hover {
  background-color: #e5e5e5;
}

.new {
  padding-top: 40px;
  padding-bottom: 80px;
}
.new .container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 1220px) {
  .new .container {
    width: 80%;
  }
}
.new .container h1 {
  text-align: center;
  margin: 0 auto;
  margin-bottom: 20px;
}
@media (max-width: 680px) {
  .new .container h1 {
    font-size: 24px;
  }
}
.new .container img {
  width: 80%;
  margin: 0 auto;
}
.new .container .descr {
  width: 100%;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.rail-news .rail-hero {
  min-height: clamp(520px, calc(100svh - 90px), 700px);
  padding: clamp(48px, 6vw, 82px) 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 34%, rgba(255, 255, 255, 0.68) 54%, rgba(255, 255, 255, 0.16) 76%, rgba(255, 255, 255, 0) 100%), url("image/news/02/rail-rolling-stock.jpg") center right/cover no-repeat;
}
@media (max-width: 900px) {
  .rail-news .rail-hero {
    min-height: auto;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.9) 58%, rgba(255, 255, 255, 0.72) 100%), url("image/news/02/rail-rolling-stock.jpg") center top/cover no-repeat;
  }
}
.rail-news .rail-hero__inner {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}
@media (max-width: 1100px) {
  .rail-news .rail-hero__inner {
    width: min(920px, calc(100% - 40px));
  }
}
@media (max-width: 500px) {
  .rail-news .rail-hero__inner {
    width: calc(100% - 28px);
  }
}
.rail-news .rail-hero__copy {
  min-width: 0;
  max-width: 720px;
}
.rail-news .rail-hero h1 {
  margin: 0;
  color: #000;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}
.rail-news .rail-hero__product {
  display: block;
  font-size: clamp(34px, 4vw, 56px);
}
.rail-news .rail-hero__thermo {
  color: inherit;
}
.rail-news .rail-hero__guard {
  color: inherit;
}
.rail-news .rail-hero__suffix {
  display: block;
  margin-top: 10px;
  font-size: clamp(20px, 2.1vw, 30px);
  line-height: 1.1;
}
.rail-news .rail-hero__subtitle {
  max-width: 600px;
  margin: 20px 0 0;
  color: #000;
  font-size: clamp(16px, 1.65vw, 22px);
  font-weight: 700;
  line-height: 1.28;
  text-transform: lowercase;
}
.rail-news .rail-hero__features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 620px;
  margin-top: 32px;
  gap: 22px 18px;
}
@media (max-width: 760px) {
  .rail-news .rail-hero__features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 420px) {
  .rail-news .rail-hero__features {
    grid-template-columns: 1fr;
  }
}
.rail-news .rail-feature {
  min-width: 0;
  padding: 0 8px;
  text-align: left;
}
@media (max-width: 760px) {
  .rail-news .rail-feature {
    padding: 0 8px;
  }
}
.rail-news .rail-feature__icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 76px;
}
.rail-news .rail-feature__icon img {
  display: block;
  width: 76px;
  height: 76px;
  object-fit: contain;
}
.rail-news .rail-feature__title {
  display: block;
  margin: 12px 0 8px;
  color: #000;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}
.rail-news .rail-feature__text {
  margin: 0;
  color: #000;
  font-size: 12px;
  line-height: 1.4;
}
.rail-news .rail-compare {
  padding: clamp(58px, 7vw, 96px) 0 clamp(70px, 8vw, 112px);
  background: #f4f7f8;
}
.rail-news .rail-compare__inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}
@media (max-width: 500px) {
  .rail-news .rail-compare__inner {
    width: calc(100% - 28px);
  }
}
.rail-news .rail-compare__intro {
  max-width: 960px;
  margin: 0 auto clamp(34px, 4.5vw, 54px);
  text-align: center;
}
.rail-news .rail-compare__eyebrow {
  margin: 0 0 14px;
  color: #0a8d8a;
  font-size: clamp(13px, 1.4vw, 17px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.25;
}
.rail-news .rail-compare h2 {
  margin: 0;
  color: #000;
  font-size: 40px;
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}
.rail-news .rail-compare h2 span {
  display: block;
}
.rail-news .rail-compare__matrix {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 20px;
  align-items: stretch;
}
.rail-news .rail-compare__column-title {
  padding: 22px 28px;
  display: flex;
  align-items: center;
  color: #fff;
  font-size: clamp(18px, 2.1vw, 26px);
  font-weight: 900;
  line-height: 1.12;
  text-transform: uppercase;
}
.rail-news .rail-compare__column-title--challenge {
  background: #243142;
}
.rail-news .rail-compare__column-title--solution {
  background: #0a8d8a;
}
.rail-news .rail-compare__item {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(7, 31, 61, 0.1);
  background: #fff;
  box-shadow: 0 14px 32px rgba(7, 31, 61, 0.06);
  transition: background 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease, color 0.24s ease;
}
.rail-news .rail-compare__item h3 {
  margin: 0 0 10px;
  color: #000;
  font-size: clamp(17px, 1.55vw, 22px);
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
  transition: color 0.24s ease;
}
.rail-news .rail-compare__item p {
  margin: 0;
  color: #1c2732;
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.48;
  transition: color 0.24s ease;
}
.rail-news .rail-compare__challenge {
  border-left: 5px solid #ff6900;
  cursor: pointer;
}
.rail-news .rail-compare__challenge:hover, .rail-news .rail-compare__challenge:focus {
  outline: 0;
  border-color: rgba(255, 105, 0, 0.44);
  border-left-color: #ff6900;
  box-shadow: 0 18px 40px rgba(255, 105, 0, 0.16);
  transform: translateY(-2px);
}
.rail-news .rail-compare__challenge:hover + .rail-compare__solution, .rail-news .rail-compare__challenge:focus + .rail-compare__solution {
  border-color: rgba(10, 141, 138, 0.46);
  background: #e6f7f5;
  box-shadow: 0 22px 46px rgba(10, 141, 138, 0.2);
  transform: translateY(-2px);
}
.rail-news .rail-compare__challenge:hover + .rail-compare__solution h3, .rail-news .rail-compare__challenge:focus + .rail-compare__solution h3 {
  color: #087875;
}
.rail-news .rail-compare__challenge:has(+ .rail-compare__solution:hover), .rail-news .rail-compare__challenge:has(+ .rail-compare__solution:focus) {
  outline: 0;
  border-color: rgba(255, 105, 0, 0.44);
  border-left-color: #ff6900;
  box-shadow: 0 18px 40px rgba(255, 105, 0, 0.16);
  transform: translateY(-2px);
}
.rail-news .rail-compare__solution {
  border-left: 5px solid #0a8d8a;
  cursor: pointer;
}
.rail-news .rail-compare__solution:hover, .rail-news .rail-compare__solution:focus {
  outline: 0;
  border-color: rgba(10, 141, 138, 0.46);
  border-left-color: #0a8d8a;
  background: #e6f7f5;
  box-shadow: 0 22px 46px rgba(10, 141, 138, 0.2);
  transform: translateY(-2px);
}
.rail-news .rail-compare__solution:hover h3, .rail-news .rail-compare__solution:focus h3 {
  color: #087875;
}
.rail-news .rail-compare__mobile-label {
  display: none;
}
@media (max-width: 760px) {
  .rail-news .rail-compare__matrix {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .rail-news .rail-compare__column-title {
    display: none;
  }
  .rail-news .rail-compare__item {
    padding: 22px;
  }
  .rail-news .rail-compare__solution {
    margin-bottom: 18px;
  }
  .rail-news .rail-compare__mobile-label {
    display: block;
    margin: 0 0 9px;
    color: #69717a;
    font-size: 11px;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
  }
}
.rail-news .rail-safety {
  padding: clamp(58px, 7vw, 96px) 0 clamp(70px, 8vw, 112px);
  background: #fff;
}
.rail-news .rail-safety__inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}
@media (max-width: 500px) {
  .rail-news .rail-safety__inner {
    width: calc(100% - 28px);
  }
}
.rail-news .rail-safety h2 {
  max-width: 900px;
  margin: 0 auto clamp(34px, 4.5vw, 54px);
  color: #000;
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}
.rail-news .rail-safety__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
@media (max-width: 1100px) {
  .rail-news .rail-safety__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .rail-news .rail-safety__grid {
    grid-template-columns: 1fr;
  }
}
.rail-news .rail-safety__card {
  padding: 28px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-top: 5px solid #0a8d8a;
  background: #f4f7f8;
  box-shadow: 0 14px 32px rgba(7, 31, 61, 0.06);
}
.rail-news .rail-safety__card h3 {
  margin: 0;
  color: #000;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 900;
  line-height: 1.15;
}
.rail-news .rail-safety__card p {
  margin: 0;
  color: #1c2732;
  font-size: 17px;
  line-height: 1.5;
}
.rail-news .rail-safety__card h3 + p {
  margin-top: 14px;
}
@media (max-width: 640px) {
  .rail-news .rail-safety__card {
    padding: 24px;
  }
}
.rail-news .rail-safety__label {
  display: block;
  margin: 0 0 14px;
  color: #0a8d8a;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
}
.rail-news .rail-safety__icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 76px;
  height: 76px;
  margin: 0 0 18px;
}
.rail-news .rail-safety__icon img {
  display: block;
  width: 76px;
  height: 76px;
  object-fit: contain;
}
.rail-news .rail-safety__mini-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}
@media (max-width: 960px) {
  .rail-news .rail-safety__mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .rail-news .rail-safety__mini-grid {
    grid-template-columns: 1fr;
  }
}
.rail-news .rail-safety__mini-card {
  padding: 22px 24px;
  border-left: 5px solid #ff6900;
  background: #fff;
  box-shadow: 0 12px 28px rgba(7, 31, 61, 0.08);
}
.rail-news .rail-safety__mini-card h3 {
  margin: 0 0 8px;
  color: #000;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.15;
}
.rail-news .rail-safety__mini-card p {
  margin: 0;
  color: #1c2732;
  font-size: 16px;
  line-height: 1.4;
}
.rail-news .rail-specs {
  padding: clamp(58px, 7vw, 96px) 0 clamp(74px, 8vw, 118px);
  background: #f4f7f8;
}
.rail-news .rail-specs__inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}
@media (max-width: 500px) {
  .rail-news .rail-specs__inner {
    width: calc(100% - 28px);
  }
}
.rail-news .rail-specs__block {
  padding: clamp(46px, 5.5vw, 72px) 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.rail-news .rail-specs__block:first-child {
  padding-top: 0;
  border-top: 0;
}
.rail-news .rail-specs__block:last-child {
  padding-bottom: 0;
}
.rail-news .rail-specs__eyebrow {
  margin: 0 0 12px;
  color: #0a8d8a;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.2;
}
.rail-news .rail-specs h2 {
  max-width: 860px;
  margin: 0 0 clamp(28px, 4vw, 44px);
  color: #000;
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}
.rail-news .rail-specs__grid {
  display: grid;
  gap: 18px;
}
.rail-news .rail-specs__grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 1100px) {
  .rail-news .rail-specs__grid--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .rail-news .rail-specs__grid--four {
    grid-template-columns: 1fr;
  }
}
.rail-news .rail-specs__grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 900px) {
  .rail-news .rail-specs__grid--three {
    grid-template-columns: 1fr;
  }
}
.rail-news .rail-specs__grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 960px) {
  .rail-news .rail-specs__grid--six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 620px) {
  .rail-news .rail-specs__grid--six {
    grid-template-columns: 1fr;
  }
}
.rail-news .rail-specs__card {
  padding: 26px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-left: 5px solid #0a8d8a;
  background: #fff;
  box-shadow: 0 14px 32px rgba(7, 31, 61, 0.06);
}
.rail-news .rail-specs__card p {
  margin: 0;
  color: #1c2732;
  font-size: 16px;
  line-height: 1.48;
}
@media (max-width: 640px) {
  .rail-news .rail-specs__card {
    padding: 24px;
  }
}
.rail-news .rail-specs__label {
  display: block;
  margin: 0 0 10px;
  color: #0a8d8a;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}
.rail-news .rail-specs__label--combined {
  font-size: 16px;
}
.rail-news .rail-specs__card--comparison {
  border-left-color: #ff6900;
}
.rail-news .rail-specs__card--statement {
  border-left-color: #ff6900;
  background: #fff7f1;
}
.rail-news .rail-results {
  padding: clamp(58px, 7vw, 96px) 0 clamp(74px, 8vw, 118px);
  background: #fff;
}
.rail-news .rail-results__inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}
@media (max-width: 500px) {
  .rail-news .rail-results__inner {
    width: calc(100% - 28px);
  }
}
.rail-news .rail-results__intro {
  max-width: 900px;
  margin: 0 auto clamp(34px, 4.5vw, 54px);
  text-align: center;
}
.rail-news .rail-results__intro h2 {
  margin: 0 0 16px;
  color: #000;
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}
.rail-news .rail-results__intro p {
  margin: 0;
  color: #1c2732;
  font-size: clamp(18px, 1.7vw, 23px);
  font-weight: 700;
  line-height: 1.35;
}
.rail-news .rail-results__intro span {
  display: block;
  margin-top: 18px;
  color: #0a8d8a;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}
.rail-news .rail-results__gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
@media (max-width: 980px) {
  .rail-news .rail-results__gallery {
    grid-template-columns: 1fr;
  }
}
.rail-news .rail-results__figure {
  margin: 0;
  background: #f4f7f8;
  box-shadow: 0 14px 32px rgba(7, 31, 61, 0.08);
  overflow: hidden;
}
.rail-news .rail-results__figure img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.rail-news .rail-results__figure figcaption {
  padding: 16px 18px;
  color: #000;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}
.rail-news .rail-results__final {
  max-width: 900px;
  margin: clamp(34px, 4.5vw, 54px) auto 0;
  text-align: center;
}
.rail-news .rail-results__final h3 {
  margin: 0 0 16px;
  color: #000;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  line-height: 1.08;
  text-transform: uppercase;
}
.rail-news .rail-results__final p {
  margin: 0;
  color: #1c2732;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
}
.company .origins {
  padding-bottom: 20px;
}
.company .origins .container {
  display: flex;
  margin: 0 auto;
  flex-wrap: wrap;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 1220px) {
  .company .origins .container {
    width: 100%;
  }
}
.company .origins .container h2 {
  font-size: 40px;
  text-transform: uppercase;
  text-align: center;
  max-width: 80%;
}
@media (max-width: 500px) {
  .company .origins .container h2 {
    font-size: 32px;
  }
}
.company .origins .container p {
  max-width: 60%;
  text-align: center;
  margin-bottom: 30px;
}
@media (max-width: 900px) {
  .company .origins .container p {
    max-width: 80%;
  }
}
.company .origins .container img {
  width: 100%;
}
.company .solutions {
  padding-top: 20px;
  padding-bottom: 20px;
}
.company .solutions .container {
  display: flex;
  margin: 0 auto;
  flex-wrap: wrap;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  max-width: 1200px;
}
@media (max-width: 1220px) {
  .company .solutions .container {
    width: 80%;
  }
}
.company .solutions .container h2 {
  font-size: 40px;
  text-transform: uppercase;
  text-align: center;
  max-width: 80%;
}
@media (max-width: 500px) {
  .company .solutions .container h2 {
    font-size: 32px;
  }
}
.company .solutions .container p {
  max-width: 60%;
  text-align: center;
  margin-bottom: 30px;
}
@media (max-width: 900px) {
  .company .solutions .container p {
    max-width: 80%;
  }
}
.company .products {
  padding-top: 20px;
  padding-bottom: 20px;
}
.company .products .container {
  display: flex;
  margin: 0 auto;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  max-width: 1200px;
}
@media (max-width: 1220px) {
  .company .products .container {
    width: 80%;
  }
}
.company .products .container h2 {
  font-size: 40px;
  text-transform: uppercase;
  text-align: center;
  max-width: 80%;
  margin: 0 auto 40px auto;
}
@media (max-width: 500px) {
  .company .products .container h2 {
    font-size: 32px;
  }
}
.company .products .container .products_block {
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
}
.company .products .container .products_block .current_block {
  width: 49%;
  box-sizing: border-box;
  padding: 20px 20px 40px 20px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: none;
  border-radius: 0.5rem;
  text-decoration: none;
  color: #000;
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  position: relative;
}
@media (max-width: 900px) {
  .company .products .container .products_block .current_block {
    width: 100%;
  }
}
.company .products .container .products_block .current_block:hover {
  background-color: #e5e5e5;
}
.company .products .container .products_block .current_block h3 {
  text-align: center;
}
.company .products .container .products_block .current_block p {
  text-align: center;
}
.company .products .container .products_block .current_block span {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-weight: 600;
}
.company .mission {
  padding-top: 20px;
  padding-bottom: 20px;
}
.company .mission .container {
  display: flex;
  margin: 0 auto;
  flex-wrap: wrap;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  max-width: 1200px;
}
@media (max-width: 1220px) {
  .company .mission .container {
    width: 80%;
  }
}
.company .mission .container h2 {
  font-size: 40px;
  text-transform: uppercase;
  text-align: center;
  max-width: 80%;
}
@media (max-width: 500px) {
  .company .mission .container h2 {
    font-size: 32px;
  }
}
.company .mission .container h2 .slogan {
  color: #09a509;
  position: relative;
  display: inline-block;
}
.company .mission .container h2 .slogan::before {
  content: "";
  position: absolute;
  left: -50px;
  top: 50%;
  width: 40px;
  height: 40px;
  background: url("./image/slogan.png") no-repeat center/contain;
  transform: translateY(-50%);
}
.company .mission .container h2 .slogan::after {
  content: "";
  position: absolute;
  right: -50px;
  top: 50%;
  width: 40px;
  height: 40px;
  background: url("./image/slogan.png") no-repeat center/contain;
  transform: translateY(-50%);
}
.company .mission .container p {
  max-width: 60%;
  text-align: center;
  margin-bottom: 30px;
}
@media (max-width: 900px) {
  .company .mission .container p {
    max-width: 80%;
  }
}
.company .chest {
  padding-top: 20px;
  padding-bottom: 20px;
}
.company .chest .container {
  display: flex;
  margin: 0 auto;
  flex-wrap: wrap;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  max-width: 1200px;
}
@media (max-width: 1220px) {
  .company .chest .container {
    width: 80%;
  }
}
.company .chest .container .current_block {
  width: 100%;
  display: flex;
  flex-direction: row;
}
@media (max-width: 1200px) {
  .company .chest .container .current_block {
    flex-direction: column;
  }
}
.company .chest .container .current_block .left_block {
  width: 50%;
}
@media (max-width: 1200px) {
  .company .chest .container .current_block .left_block {
    width: 100%;
  }
}
.company .chest .container .current_block .left_block h3 {
  font-size: 24px;
  text-align: left;
  max-width: 80%;
}
.company .chest .container .current_block .left_block p {
  max-width: 80%;
  text-align: left;
  margin-bottom: 30px;
}
.company .chest .container .current_block .left_block img {
  width: 100%;
  margin-bottom: 20px;
}
.company .chest .container .current_block .right_block {
  width: 50%;
  padding-left: 40px;
}
@media (max-width: 1200px) {
  .company .chest .container .current_block .right_block {
    width: 100%;
    padding-left: 0;
  }
}
.company .chest .container .current_block .right_block h3 {
  font-size: 24px;
  text-align: left;
  max-width: 80%;
}
.company .chest .container .current_block .right_block p {
  max-width: 80%;
  text-align: left;
  margin-bottom: 30px;
}
.company .chest .container .current_block .right_block img {
  width: 100%;
  margin-bottom: 20px;
}
@media (max-width: 1200px) {
  .company .chest .container .current_block:nth-child(2n-1) .right_block {
    order: -1;
  }
  .company .chest .container .current_block:nth-child(2n-1) .right_block h3 {
    text-align: center;
    margin: 0 auto 20px auto;
  }
  .company .chest .container .current_block:nth-child(2n-1) .right_block p {
    text-align: center;
    margin: 0 auto 20px auto;
  }
  .company .chest .container .current_block:nth-child(2n) .left_block h3 {
    text-align: center;
    margin: 0 auto 20px auto;
  }
  .company .chest .container .current_block:nth-child(2n) .left_block p {
    text-align: center;
    margin: 0 auto 20px auto;
  }
  .company .chest .container .current_block:nth-child(3n) .right_block {
    order: -1;
  }
  .company .chest .container .current_block:nth-child(3n) .right_block h3 {
    text-align: center;
    margin: 0 auto 20px auto;
  }
  .company .chest .container .current_block:nth-child(3n) .right_block p {
    text-align: center;
    margin: 0 auto 20px auto;
  }
}
.company .certificates {
  padding-bottom: 64px;
}
@media (max-width: 768px) {
  .company .certificates {
    padding-bottom: 48px;
  }
}
.company .certificates .container {
  display: flex;
  margin: 0 auto;
  flex-wrap: wrap;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  max-width: 1200px;
}
@media (max-width: 1220px) {
  .company .certificates .container {
    width: 100%;
  }
}
.company .certificates .container h2 {
  font-size: 40px;
  text-transform: uppercase;
  text-align: center;
  max-width: 80%;
}
@media (max-width: 500px) {
  .company .certificates .container h2 {
    font-size: 32px;
  }
}
.company .certificates .container p {
  max-width: 60%;
  text-align: center;
  margin-bottom: 30px;
}
@media (max-width: 900px) {
  .company .certificates .container p {
    max-width: 80%;
  }
}
.company .certificates .container .certificates-carousel {
  box-sizing: border-box;
  width: calc(100% - 112px);
  max-width: 1080px;
  padding: 10px 0 46px;
  position: relative;
  overflow: visible;
}
@media (max-width: 768px) {
  .company .certificates .container .certificates-carousel {
    width: calc(100% - 76px);
    padding: 8px 0 42px;
  }
}
@media (max-width: 500px) {
  .company .certificates .container .certificates-carousel {
    width: 90%;
    padding: 0 0 38px;
  }
}
.company .certificates .container .certificates-carousel .certificates-carousel__viewport {
  width: 100%;
  overflow: hidden;
}
.company .certificates .container .certificates-carousel .swiper-wrapper {
  display: flex;
  align-items: stretch;
}
.company .certificates .container .certificates-carousel .certificate-card {
  box-sizing: border-box;
  flex-shrink: 0;
  height: auto;
  margin: 0;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #000;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.company .certificates .container .certificates-carousel .certificate-card:hover {
  transform: translateY(-4px);
  border-color: #36B4A9;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}
.company .certificates .container .certificates-carousel .certificate-card img {
  display: block;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: contain;
  object-position: top center;
  background: #f5f5f5;
}
.company .certificates .container .certificates-carousel .certificate-card span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}
.company .certificates .container .certificates-carousel .certificates-carousel__nav {
  position: absolute;
  top: calc(50% - 22px);
  z-index: 2;
  width: 34px;
  height: 64px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  appearance: none;
  color: #111;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  line-height: 1;
  box-shadow: none;
  transition: color 0.3s ease, transform 0.3s ease;
  transform: translateY(-50%);
}
.company .certificates .container .certificates-carousel .certificates-carousel__nav::before {
  content: "";
  width: 18px;
  height: 18px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transition: transform 0.3s ease;
}
.company .certificates .container .certificates-carousel .certificates-carousel__nav:hover {
  color: #36B4A9;
  transform: translateY(-50%) scale(1.08);
}
.company .certificates .container .certificates-carousel .certificates-carousel__nav:focus-visible {
  outline: 2px solid #6859A3;
  outline-offset: 6px;
}
.company .certificates .container .certificates-carousel .certificates-carousel__nav:active {
  transform: translateY(-50%) scale(0.98);
}
@media (max-width: 500px) {
  .company .certificates .container .certificates-carousel .certificates-carousel__nav {
    display: none;
  }
}
.company .certificates .container .certificates-carousel .certificates-carousel__nav--prev {
  left: -52px;
}
@media (max-width: 768px) {
  .company .certificates .container .certificates-carousel .certificates-carousel__nav--prev {
    left: -38px;
  }
}
.company .certificates .container .certificates-carousel .certificates-carousel__nav--prev::before {
  transform: translateX(4px) rotate(-135deg);
}
.company .certificates .container .certificates-carousel .certificates-carousel__nav--next {
  right: -52px;
}
@media (max-width: 768px) {
  .company .certificates .container .certificates-carousel .certificates-carousel__nav--next {
    right: -38px;
  }
}
.company .certificates .container .certificates-carousel .certificates-carousel__nav--next::before {
  transform: translateX(-4px) rotate(45deg);
}
.company .certificates .container .certificates-carousel .certificates-carousel__pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.company .certificates .container .certificates-carousel .certificates-carousel__pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  margin: 0;
  border-radius: 50%;
  background: #000;
  opacity: 0.25;
}
.company .certificates .container .certificates-carousel .certificates-carousel__pagination .swiper-pagination-bullet-active {
  background: #36B4A9;
  opacity: 1;
}

.product_descr {
  padding-bottom: 40px;
}
.product_descr .container {
  display: flex;
  margin: 0 auto;
  flex-wrap: wrap;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  max-width: 1200px;
}
@media (max-width: 1220px) {
  .product_descr .container {
    width: 100%;
  }
}
.product_descr .container .block-1 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
@media (max-width: 900px) {
  .product_descr .container .block-1 {
    flex-direction: column;
    margin-bottom: 20px;
  }
}
.product_descr .container .block-1 p {
  text-align: left;
}
@media (max-width: 900px) {
  .product_descr .container .block-1 p {
    text-align: center;
  }
}
.product_descr .container .block-1 img {
  width: 40%;
}
@media (max-width: 700px) {
  .product_descr .container .block-1 img {
    width: 60%;
  }
}
.product_descr .container .block-2 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
@media (max-width: 900px) {
  .product_descr .container .block-2 {
    flex-direction: column;
  }
}
.product_descr .container .block-2 p {
  text-align: left;
}
@media (max-width: 900px) {
  .product_descr .container .block-2 p {
    text-align: center;
  }
}
.product_descr .container .block-2 img {
  width: 33%;
}
@media (max-width: 900px) {
  .product_descr .container .block-2 img {
    order: -1;
    margin-bottom: 20px;
  }
}
@media (max-width: 700px) {
  .product_descr .container .block-2 img {
    width: 60%;
  }
}
.product_descr .container h2 {
  font-size: 40px;
  text-transform: uppercase;
  text-align: center;
  max-width: 80%;
}
@media (max-width: 500px) {
  .product_descr .container h2 {
    font-size: 32px;
  }
}
.product_descr .container p {
  max-width: 60%;
  text-align: center;
  margin-bottom: 20px;
}
@media (max-width: 900px) {
  .product_descr .container p {
    max-width: 80%;
  }
}

.advantages {
  padding-bottom: 40px;
}
.advantages h2 {
  font-size: 40px;
  text-transform: uppercase;
  text-align: center;
  margin: 0 auto 40px auto;
  max-width: 80%;
}
@media (max-width: 500px) {
  .advantages h2 {
    font-size: 32px;
  }
}
.advantages .container {
  display: flex;
  margin: 0 auto;
  flex-wrap: wrap;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  max-width: 1200px;
}
@media (max-width: 1000px) {
  .advantages .container {
    width: 100%;
    flex-direction: column;
  }
}
.advantages .container .left-block {
  width: 30%;
}
@media (max-width: 1000px) {
  .advantages .container .left-block {
    width: 50%;
    margin-bottom: 40px;
  }
}
.advantages .container .left-block img {
  width: 100%;
}
.advantages .container .right-block {
  width: 60%;
  padding-left: 40px;
}
@media (max-width: 1000px) {
  .advantages .container .right-block {
    width: 80%;
    padding-left: 0;
  }
}
.advantages .container .right-block ul {
  list-style-type: none;
  padding-left: 0;
  margin: 0 auto;
}
@media (max-width: 1000px) {
  .advantages .container .right-block ul {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.advantages .container .right-block ul li {
  margin-bottom: 20px;
}
@media (max-width: 900px) {
  .advantages .container .right-block ul li {
    max-width: 80%;
  }
}
.advantages .container .right-block ul li::before {
  content: "•";
  margin: 0 8px;
}

.specifications {
  padding-bottom: 40px;
}
.specifications .container {
  display: flex;
  margin: 0 auto;
  flex-wrap: wrap;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 1220px) {
  .specifications .container {
    width: 100%;
  }
}
.specifications .container h2 {
  font-size: 40px;
  text-transform: uppercase;
  text-align: center;
  max-width: 80%;
}
@media (max-width: 500px) {
  .specifications .container h2 {
    font-size: 32px;
  }
}
@media (max-width: 500px) {
  .specifications .container table {
    width: 80%;
  }
}
.specifications .container table th {
  font-size: 18px;
}
.specifications .container table td {
  max-width: 60%;
  margin-bottom: 20px;
}
@media (max-width: 900px) {
  .specifications .container table td {
    max-width: 80%;
  }
}

.guide {
  padding-bottom: 40px;
}
.guide .container {
  display: flex;
  margin: 0 auto;
  flex-wrap: wrap;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 1220px) {
  .guide .container {
    width: 100%;
  }
}
.guide .container h2 {
  font-size: 40px;
  text-transform: uppercase;
  text-align: center;
  max-width: 80%;
}
@media (max-width: 500px) {
  .guide .container h2 {
    font-size: 32px;
  }
}
.guide .container h3 {
  font-size: 32px;
  text-transform: uppercase;
  text-align: center;
  max-width: 80%;
}
@media (max-width: 500px) {
  .guide .container h3 {
    font-size: 28px;
  }
}
.guide .container .surface {
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
}
.guide .container .surface .block {
  width: 24%;
  box-sizing: border-box;
  padding: 20px 20px 40px 20px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: none;
  border-radius: 0.5rem;
  text-decoration: none;
  color: #000;
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  position: relative;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1200px) {
  .guide .container .surface .block {
    width: 49%;
  }
}
@media (max-width: 900px) {
  .guide .container .surface .block {
    width: 100%;
  }
}
.guide .container .surface .block img {
  width: 50%;
  margin: 0 auto;
}
.guide .container .surface .block h4 {
  font-size: 24px;
  text-align: center;
  margin: 20px 0;
}
@media (max-width: 500px) {
  .guide .container .surface .block h4 {
    font-size: 20px;
  }
}
.guide .container .surface .block p {
  text-align: center;
  margin: 10px 0;
}
.guide .container .material {
  width: 80%;
  margin: 40px auto 0 auto;
}
.guide .container .material h3 {
  font-size: 32px;
  text-transform: uppercase;
  text-align: center;
  max-width: 80%;
  margin: 0 auto 40px auto;
}
@media (max-width: 500px) {
  .guide .container .material h3 {
    font-size: 28px;
  }
}
.guide .container .material p {
  max-width: 60%;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 20px;
}
@media (max-width: 900px) {
  .guide .container .material p {
    max-width: 80%;
  }
}
.guide .container .application {
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  flex-wrap: wrap;
}
.guide .container .application .block {
  width: 32%;
  box-sizing: border-box;
  padding: 20px 20px 20px 20px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: none;
  border-radius: 0.5rem;
  text-decoration: none;
  color: #000;
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1200px) {
  .guide .container .application .block {
    width: 49%;
  }
}
@media (max-width: 900px) {
  .guide .container .application .block {
    width: 100%;
  }
}
.guide .container .application .block p {
  text-align: center;
  margin: 0;
}

.packing {
  padding-bottom: 40px;
}
.packing .container {
  display: flex;
  margin: 0 auto;
  flex-wrap: wrap;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 1220px) {
  .packing .container {
    width: 100%;
  }
}
.packing .container h2 {
  font-size: 40px;
  text-transform: uppercase;
  text-align: center;
  max-width: 80%;
}
@media (max-width: 500px) {
  .packing .container h2 {
    font-size: 32px;
  }
}
.packing .container p {
  max-width: 60%;
  text-align: center;
  margin-bottom: 20px;
}
@media (max-width: 900px) {
  .packing .container p {
    max-width: 80%;
  }
}

.header {
  padding-bottom: 40px;
}
.header .container {
  display: flex;
  margin: 0 auto;
  flex-wrap: wrap;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 1220px) {
  .header .container {
    width: 100%;
  }
}
.header .container h2 {
  font-size: 40px;
  text-transform: uppercase;
  text-align: center;
  max-width: 80%;
}
.header .container h2.green {
  color: #09a509;
}
@media (max-width: 500px) {
  .header .container h2 {
    font-size: 32px;
  }
}
.header .container p {
  max-width: 60%;
  text-align: center;
  margin-bottom: 20px;
}
@media (max-width: 900px) {
  .header .container p {
    max-width: 80%;
    text-align: center;
  }
}

.image-carousel-panel {
  padding-top: 60px;
  padding-bottom: 60px;
}
.image-carousel-panel .container {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 1220px) {
  .image-carousel-panel .container {
    width: 80%;
    padding: 0;
  }
}
.image-carousel-panel .image-carousel {
  display: grid;
  grid-template-columns: 34px minmax(0, 920px) 34px;
  align-items: center;
  justify-content: center;
  column-gap: 24px;
  width: 100%;
  margin: 0;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .image-carousel-panel .image-carousel {
    grid-template-columns: 28px minmax(0, 1fr) 28px;
    column-gap: 14px;
  }
}
@media (max-width: 500px) {
  .image-carousel-panel .image-carousel {
    grid-template-columns: 24px minmax(0, 1fr) 24px;
    column-gap: 10px;
  }
}
.image-carousel-panel .image-carousel__viewport.swiper {
  display: block;
  width: 100%;
  max-width: 920px;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.image-carousel-panel .image-carousel__slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.image-carousel-panel .image-carousel__slide img {
  display: block;
  width: 100%;
  height: auto;
}
.image-carousel-panel .image-carousel__nav {
  width: 34px;
  height: 64px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  appearance: none;
  color: #111;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  line-height: 1;
  box-shadow: none;
  transition: color 0.3s ease, transform 0.3s ease;
}
.image-carousel-panel .image-carousel__nav::before {
  content: "";
  width: 18px;
  height: 18px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transition: transform 0.3s ease;
}
.image-carousel-panel .image-carousel__nav:hover {
  color: #36B4A9;
  transform: scale(1.08);
}
.image-carousel-panel .image-carousel__nav:focus-visible {
  outline: 2px solid #6859A3;
  outline-offset: 6px;
}
.image-carousel-panel .image-carousel__nav:active {
  transform: scale(0.98);
}
.image-carousel-panel .image-carousel__nav span {
  display: none;
}
@media (max-width: 768px) {
  .image-carousel-panel .image-carousel__nav {
    width: 28px;
    height: 54px;
  }
}
@media (max-width: 500px) {
  .image-carousel-panel .image-carousel__nav {
    width: 24px;
    height: 48px;
  }
}
.image-carousel-panel .image-carousel__nav--prev::before {
  transform: translateX(4px) rotate(-135deg);
}
.image-carousel-panel .image-carousel__nav--next::before {
  transform: translateX(-4px) rotate(45deg);
}

.btn-panel {
  padding-top: 60px;
  padding-bottom: 60px;
}
.btn-panel .container {
  display: flex;
  margin: 0 auto;
  max-width: 1200px;
  flex-wrap: wrap;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 1220px) {
  .btn-panel .container {
    width: 100%;
  }
}
.btn-panel .container .btns {
  display: flex;
  flex-direction: row;
}
@media (max-width: 800px) {
  .btn-panel .container .btns {
    flex-direction: column;
  }
}
.btn-panel .container .btns .btn {
  background-color: #f5f5f5;
  border: none;
  padding: 10px 30px;
  margin-right: 20px;
  min-width: 150px;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
@media (max-width: 800px) {
  .btn-panel .container .btns .btn {
    margin-bottom: 15px;
  }
}
.btn-panel .container .btns .btn:hover {
  background-color: #e5e5e5;
}
.btn-panel .container .content {
  padding: 60px;
}
@media (max-width: 800px) {
  .btn-panel .container .content {
    padding: 10px;
  }
}
.btn-panel .container .content img {
  width: 100%;
}

.references .btn-panel {
  padding-top: 60px;
  padding-bottom: 60px;
}
.references .btn-panel .container {
  display: flex;
  margin: 0 auto;
  max-width: 1200px;
  flex-wrap: wrap;
  align-items: center;
  flex-direction: row;
  justify-content: center;
}
@media (max-width: 1220px) {
  .references .btn-panel .container {
    width: 100%;
  }
}
.references .btn-panel .container .btns {
  display: flex;
  flex-direction: row;
}
@media (max-width: 800px) {
  .references .btn-panel .container .btns {
    flex-direction: column;
  }
}
.references .btn-panel .container .btns .btn {
  background-color: #f5f5f5;
  border: none;
  padding: 10px 30px;
  margin-right: 20px;
  min-width: 150px;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
@media (max-width: 800px) {
  .references .btn-panel .container .btns .btn {
    margin-bottom: 15px;
  }
}
.references .btn-panel .container .btns .btn:hover {
  background-color: #e5e5e5;
}
.references .btn-panel .container .content {
  padding: 60px;
}
@media (max-width: 800px) {
  .references .btn-panel .container .content {
    padding: 10px;
  }
}
.references .btn-panel .container .content img {
  width: 100%;
}
.references .origins {
  padding-bottom: 20px;
}
.references .origins .container {
  display: flex;
  margin: 0 auto;
  flex-wrap: wrap;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 1220px) {
  .references .origins .container {
    width: 100%;
  }
}
.references .origins .container h2 {
  font-size: 40px;
  text-transform: uppercase;
  text-align: center;
  max-width: 80%;
}
@media (max-width: 500px) {
  .references .origins .container h2 {
    font-size: 32px;
  }
}
.references .origins .container p {
  max-width: 60%;
  text-align: center;
  margin-bottom: 30px;
}
@media (max-width: 900px) {
  .references .origins .container p {
    max-width: 80%;
  }
}
.references .origins .container img {
  width: 100%;
}
.references .current_references {
  padding-top: 40px;
  padding-bottom: 40px;
}
.references .current_references .container {
  display: flex;
  flex-direction: row;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 1220px) {
  .references .current_references .container {
    width: 80%;
    flex-direction: column;
  }
}
.references .current_references .container .left-block {
  width: 40%;
}
@media (max-width: 1220px) {
  .references .current_references .container .left-block {
    width: 80%;
  }
}
.references .current_references .container .left-block img {
  width: 100%;
}
.references .current_references .container .right-block {
  width: 50%;
  padding-left: 50px;
}
@media (max-width: 1220px) {
  .references .current_references .container .right-block {
    width: 80%;
    text-align: center;
    padding-left: 0;
  }
}
.references .current_references .container .right-block button {
  margin-top: 20px;
  background-color: #f5f5f5;
  border: none;
  padding: 10px 30px;
  min-width: 150px;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
.references .current_references .container .right-block button:hover {
  background-color: #e5e5e5;
}
.references .descr {
  padding-bottom: 20px;
  text-align: center;
  max-width: 80%;
  margin: 0 auto;
}
.references .descr h2 {
  font-size: 36px;
}
@media (max-width: 1220px) {
  .references .descr h2 {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .references .descr h2 {
    font-size: 24px;
  }
}
.references .descr p {
  max-width: 70%;
  margin: 0 auto 16px;
  font-size: 18px;
}
@media (max-width: 1220px) {
  .references .descr p {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .references .descr p {
    font-size: 14px;
  }
}
.references .gallery {
  max-width: 1200px;
  margin: 0 auto 40px auto;
  padding: 0 40px 40px 40px;
}
.references .gallery .grid {
  display: flex;
}
.references .gallery .grid-item {
  width: calc(33.3333333333% - 10px);
  padding: 5px;
}
.references .gallery .grid-item img {
  width: 100%;
  display: block;
  transition: transform 0.3s ease;
}
.references .gallery .grid-item:hover img {
  transform: scale(1.03);
}
@media (max-width: 992px) {
  .references .gallery .grid-item {
    width: calc(50% - 10px);
  }
}
@media (max-width: 576px) {
  .references .gallery .grid-item {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */
