@font-face {
  font-family: "kih-icons";
  font-style: normal;
  font-weight: 400;
  src: url(../../assets/fonts/icons.woff) format("woff"), url(../../assets/fonts/icons.svg) format("svg");
}
* {
  border: 0;
  box-sizing: border-box;
  margin: 0;
  outline: 0;
  padding: 0;
}
::selection {
  color: #fff;
  background-color: #c30000;
}
::-moz-selection {
  color: #fff;
  background-color: #c30000;
}
body {
  font-family: 'Poppins', -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
p {
  font-size: 16px;
  line-height: 1.5;
}
p a {
  color: #c30000;
  font-weight: 700;
  text-decoration: underline;
  transition: all 0.25s;
}
p a:hover {
  color: #000;
  transition: none;
}
address {
  font-style: normal;
}
@media only screen and (max-width: 767px) {
  .util-sm-hidden {
    display: none !important;
  }
  .util-sm-block {
    display: block !important;
  }
}
@media only screen and (min-width: 767.02px) {
  .util-md-hidden {
    display: none !important;
  }
  .util-md-inline {
    display: inline !important;
  }
  .util-md-block {
    display: block !important;
  }
}
.ArrowLink {
  align-items: center;
  display: inline-flex;
  border-bottom: 2px solid currentColor;
  color: #c30000;
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  gap: 6px;
  transition: all 0.25s;
  text-decoration: none;
}
.ArrowLink::before {
  content: "\e902";
  font-family: 'kih-icons';
  font-size: 10px;
  display: block;
}
.ArrowLink:hover {
  color: #000;
  transition: none;
}
.ArrowLink--small {
  font-size: 16px;
}
.ArrowLink--back::before {
  content: "\e901";
  font-family: 'kih-icons';
}
.Accordion {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.Accordion-head {
  align-items: center;
  background: #f2f2f2;
  cursor: pointer;
  display: flex;
  gap: 14px;
  justify-content: flex-start;
  min-height: 64px;
  padding: 20px 15px 20px 25px;
  transition: all 0.25s;
  user-select: none;
}
@media only screen and (max-width: 767px) {
  .Accordion-head {
    gap: 10px;
  }
}
.Accordion-head:hover {
  background: #e5e5e5;
  transition: none;
}
.Accordion-head::before {
  content: "\e900";
  font-family: 'kih-icons';
  color: #d4000f;
  font-size: 14px;
}
.Accordion-title {
  font-size: 21px;
  font-weight: 700;
  line-height: 24px;
}
.Accordion-body {
  align-items: flex-start;
  display: none;
  gap: 20px;
  flex-direction: column;
  padding: 45px 0;
}
@media only screen and (max-width: 991px) {
  .Accordion-body {
    padding: 45px 10px;
  }
}
.Accordion-body--noPadding {
  padding: 0;
}
@media only screen and (max-width: 991px) {
  .Accordion-body--noPadding {
    padding: 0 10px;
  }
}
.Accordion--open .Accordion-head::before {
  content: "\e904";
}
.Accordion--open .Accordion-body {
  display: flex;
}
.Button {
  align-items: center;
  -webkit-appearance: none;
  appearance: none;
  background: #d4000f;
  border: 0;
  display: inline-flex;
  color: #fff;
  cursor: pointer;
  font-family: 'Poppins', -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  font-weight: 900;
  gap: 16px;
  min-height: 48px;
  justify-content: flex-start;
  min-width: 150px;
  padding: 8px 20px 8px 16px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.25s;
  user-select: none;
}
.Button:hover {
  background: #c30000;
  transition: all 0.25s, background 1ms;
}
.Button:active {
  transform: scale(0.95);
}
.Button:disabled {
  filter: saturate(50%);
  opacity: 0.8;
  pointer-events: none;
}
.Button--grey {
  background: #f2f2f2;
  color: #000;
}
.Button--grey:hover {
  background: #e5e5e5;
}
.Button--outline {
  background-color: #fff;
  border: 3px solid rgba(0, 0, 0, 0.5);
  color: #000;
  padding: 5px 32px;
}
.Button--outline:hover {
  color: #fff;
  background: #c30000;
  border-color: #c30000;
}
.Button--noTransform {
  text-transform: none;
}
.Button .Icon {
  color: #000;
  font-size: 22px;
}
.Button-label {
  text-align: left;
}
.Breadcrumbs {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  font-size: 16px;
  gap: 4px;
  line-height: 20px;
  max-width: 960px;
  padding: 25px 10px;
  white-space: nowrap;
  width: 100%;
}
.Breadcrumbs-link {
  color: #d4000f;
  font-weight: 700;
  transition: all 0.25s;
}
.Breadcrumbs-link:hover {
  color: #000;
  transition: none;
}
.Breadcrumbs-arrow::after {
  content: "\e902";
  font-family: 'kih-icons';
  font-size: 8px;
}
.Breadcrumbs-static {
  color: #808080;
}
.Checkbox {
  align-items: center;
  display: flex;
  gap: 16px;
}
.Checkbox-input {
  display: none;
}
.Checkbox-visual {
  background: #f2f2f2;
  cursor: pointer;
  flex: 0 0 26px;
  height: 26px;
  position: relative;
  width: 26px;
}
.Checkbox-input:hover + .Checkbox-visual,
.Checkbox-input:focus + .Checkbox-visual {
  background: #e5e5e5;
}
.Checkbox-input:checked + .Checkbox-visual:after {
  border-bottom: 5px solid #000;
  border-right: 5px solid #000;
  content: "";
  height: 25px;
  left: 6px;
  position: absolute;
  top: -6px;
  transform: rotate(45deg);
  width: 10px;
}
.Checkbox-label {
  color: #000;
  font-size: 16px;
  line-height: 24px;
}
.Checkbox-label a {
  color: #000;
  transition: all 0.25s;
}
.Checkbox-label a:hover {
  color: #d4000f;
  transition: none;
}
.DownloadLink {
  align-items: center;
  display: inline-flex;
  color: #c30000;
  font-size: 16px;
  font-weight: 700;
  line-height: 32px;
  padding-left: 32px;
  position: relative;
  transition: all 0.25s;
}
@media only screen and (max-width: 767px) {
  .DownloadLink {
    line-height: 24px;
  }
}
.DownloadLink::before {
  content: "\e908";
  font-family: 'kih-icons';
  font-size: 16px;
  color: #000;
  display: block;
  position: absolute;
  left: 0;
}
.DownloadLink:hover {
  color: #000;
  transition: none;
}
.FileUpload-input {
  display: none;
}
.FileUpload-label {
  line-break: anywhere;
}
.Form {
  align-items: stretch;
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 100%;
}
.Form-item {
  align-items: flex-start;
  display: flex;
  gap: 10px;
  flex-direction: column;
  width: 100%;
}
.Form-label {
  font-size: 14px;
  color: #808080;
  line-height: 24px;
}
.Form-input,
.Form-textarea {
  background: #f2f2f2;
  border: 0;
  border-radius: 0;
  color: #000;
  font-family: 'Poppins', -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  height: 46px;
  line-height: 46px;
  padding: 0 8px;
  transition: all 0.25s;
  width: 100%;
}
.Form-input:hover,
.Form-textarea:hover,
.Form-input:focus,
.Form-textarea:focus {
  background: #e5e5e5;
  transition: none;
}
.Form-input[type=number] {
  padding-right: 0;
  width: 100px;
}
.Form-input--short {
  width: 60%;
}
@media only screen and (max-width: 767px) {
  .Form-input--short {
    width: 80%;
  }
}
.Form-textarea {
  min-height: 114px;
  resize: vertical;
}
.Form-selectWrap {
  position: relative;
  width: 100%;
}
.Form-selectWrap::after {
  content: "\e900";
  font-family: 'kih-icons';
  color: #808080;
  font-size: 14px;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  position: absolute;
  user-select: none;
}
.Form-select {
  -webkit-appearance: none;
  appearance: none;
  background: #f2f2f2;
  border: 0;
  border-radius: 0;
  color: #808080;
  font-family: 'Poppins', -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  height: 46px;
  line-height: 46px;
  padding: 0 40px 0 8px;
  transition: all 0.25s;
  text-align: center;
  width: 100%;
}
.Form-inputLabel {
  color: #808080;
  font-size: 14px;
  line-height: 24px;
}
.Form-inputAndLabel {
  align-items: center;
  display: flex;
  gap: 13px;
}
.Heading {
  font-weight: 700;
  margin: 0;
}
.Heading--h1 {
  font-size: 38px;
  text-transform: uppercase;
}
.Heading--news {
  font-size: 32px;
  line-height: 48px;
}
@media only screen and (max-width: 767px) {
  .Heading--news {
    font-size: 24px;
    line-height: 28px;
  }
}
.Heading--display {
  font-size: 28px;
}
.Heading--h2 {
  font-size: 24px;
}
.Heading--h3 {
  font-size: 16px;
}
.Heading--h4 {
  font-size: 18px;
  line-height: 22px;
}
.Heading--center {
  text-align: center;
}
.Contacts .Heading--h3 {
  font-size: 16px;
}
.ProductsCategory .Heading--h2 {
  font-size: 21px;
  line-height: 25px;
}
.TextileProductPage .Heading--h2 {
  font-size: 32px;
  line-height: 38px;
}
.TextileProductPage .Heading--h3 {
  font-size: 24px;
  line-height: 30px;
}
.Icon {
  display: inline-grid;
  font-style: normal;
  place-items: center;
}
.Icon--arrowDown::before {
  content: "\e900";
  font-family: 'kih-icons';
}
.Icon--basket::before {
  content: "\e905";
  font-family: 'kih-icons';
}
.Icon--cross::before {
  content: "\e907";
  font-family: 'kih-icons';
}
.Icon--doubleArrowRight::before {
  content: "\e903";
  font-family: 'kih-icons';
}
.Icon--download::before {
  content: "\e908";
  font-family: 'kih-icons';
}
.Icon--enquiry::before {
  content: "\e909";
  font-family: 'kih-icons';
}
.Icon--facebook::before {
  content: "\e90a";
  font-family: 'kih-icons';
}
.Icon--instagram::before {
  content: "\e90b";
  font-family: 'kih-icons';
}
.Icon--menu::before {
  content: "\e906";
  font-family: 'kih-icons';
}
.Icon--search::before {
  content: "\e90c";
  font-family: 'kih-icons';
}
.Icon--upload::before {
  content: "\e90d";
  font-family: 'kih-icons';
}
.Icon--youtube::before {
  content: "\e90e";
  font-family: 'kih-icons';
}
.Logo {
  background: url(../../assets/images/logo.svg) no-repeat center center;
  background-size: cover;
  box-sizing: content-box;
  display: block;
  height: 0;
  padding-bottom: 132.74336%;
  width: 100%;
}
.Logo--full {
  background: url(../../assets/images/logo.svg) no-repeat center top, url(../../assets/images/motto.svg) no-repeat center bottom;
  background-size: 100% auto, 100% auto;
  padding-bottom: 192.74336%;
}
.Logo--homepage {
  left: 0;
  position: absolute;
  top: 0;
}
.Logo--commonpage {
  left: 0;
  position: absolute;
  top: -20px;
}
@media only screen and (max-width: 991px) {
  .Logo--commonpage {
    top: 0;
  }
}
.Logo--mobile {
  left: 0;
  position: absolute;
  top: -6px;
}
.Logo--mobileFull::after {
  background: url(../../assets/images/motto-wide.svg) no-repeat center top;
  background-size: contain;
  content: "";
  display: block;
  height: 54px;
  position: absolute;
  left: 50%;
  pointer-events: none;
  top: calc(100% + 2px);
  transform: translateX(-50%);
  user-select: none;
  width: 236px;
}
.Logo-hiddenLabel {
  display: none;
}
.Notification {
  align-items: center;
  background: #f7f7f7;
  border-radius: 115px;
  display: flex;
  gap: 40px;
  margin: 50px 0;
  max-width: 740px;
  padding: 30px 80px;
  position: relative;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .Notification {
    align-items: center;
    border-radius: 10px;
    flex-direction: column;
    margin: 30px 0;
    max-width: calc(100% - 20px);
    padding: 30px 15px;
    text-align: center;
  }
}
.Notification::before {
  color: #c30000;
  content: "!";
  font-size: 33px;
  font-weight: 700;
  left: 30px;
  pointer-events: none;
  position: absolute;
  top: 0;
  user-select: none;
}
@media only screen and (max-width: 767px) {
  .Notification::before {
    left: 20px;
    top: -18px;
  }
}
.Notification-imageWrap {
  max-height: 120px;
  max-width: 150px;
  width: 100%;
}
.Notification-image {
  height: 100%;
  object-fit: contain;
  width: 100%;
}
.Notification-content {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media only screen and (max-width: 767px) {
  .Notification-content {
    align-items: center;
    gap: 10px;
  }
}
.VideoWrap {
  aspect-ratio: 16 / 9;
  background: #000;
  display: block;
  width: 100%;
}
.VideoWrap iframe {
  height: 100%;
  width: 100%;
}
.AboutUs {
  align-items: center;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 80px 0;
  width: 100%;
}
@media only screen and (max-width: 1280px) {
  .AboutUs {
    padding: 60px 10px;
  }
}
@media only screen and (max-width: 991px) {
  .AboutUs {
    padding: 40px 10px;
  }
}
.AboutUs-inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 45px;
  max-width: 1060px;
  position: relative;
  width: 100%;
}
.AboutUs-inner::after {
  background: url(../../assets/images/watermark.svg) no-repeat center center;
  background-size: 200% auto;
  content: "";
  bottom: -120px;
  height: 650px;
  pointer-events: none;
  position: absolute;
  right: -110px;
  user-select: none;
  width: 530px;
  z-index: -1;
}
@media only screen and (max-width: 991px) {
  .AboutUs-inner::after {
    content: none;
  }
}
.AboutUs-title {
  margin-bottom: 15px;
}
@media only screen and (max-width: 991px) {
  .AboutUs-title {
    margin: 0;
  }
}
.AboutUs-videoThumb {
  background: #f7f7f7;
  display: block;
  height: 400px;
  position: relative;
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .AboutUs-videoThumb {
    height: 300px;
  }
}
@media only screen and (max-width: 767px) {
  .AboutUs-videoThumb {
    margin-left: -10px;
    margin-right: -10px;
    width: auto;
  }
}
.AboutUs-videoThumb::after {
  content: "\e90f";
  font-family: 'kih-icons';
  border: 5px solid #e80000;
  border-radius: 50%;
  color: #fff;
  display: grid;
  font-size: 50px;
  height: 122px;
  left: 50%;
  place-items: center;
  position: absolute;
  text-indent: 12px;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.25s;
  width: 122px;
}
.AboutUs-videoThumb:hover::after {
  background: #e80000;
  transition: none;
}
.AboutUs-videoThumbPoster {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.AboutUs-content {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-right: auto;
  max-width: 630px;
  width: 100%;
}
@media only screen and (max-width: 1280px) {
  .AboutUs-content {
    max-width: 570px;
  }
}
@media only screen and (max-width: 991px) {
  .AboutUs-content {
    max-width: 100%;
  }
}
.AboutUs-arrowLink {
  margin-top: 15px;
}
.AboutUsPage {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: 0 15px 150px;
  width: 100%;
}
@media only screen and (max-width: 1280px) {
  .AboutUsPage {
    padding-bottom: 100px;
  }
}
@media only screen and (max-width: 767px) {
  .AboutUsPage {
    padding: 0 0 80px;
  }
}
.AboutUsPage p {
  font-size: 14px;
  line-height: 24px;
}
.AboutUsPage-inner {
  display: grid;
  gap: 25px 120px;
  grid-template-areas: "title title" "companyTitle companyTitle" "companyText video" "historyTitle historyTitle" "historyText historyItems";
  grid-template-columns: 27% 1fr;
  max-width: 1060px;
  width: 100%;
}
@media only screen and (max-width: 1280px) {
  .AboutUsPage-inner {
    gap: 25px 80px;
    grid-template-columns: 30% 1fr;
  }
}
@media only screen and (max-width: 991px) {
  .AboutUsPage-inner {
    grid-template-areas: "title" "video" "companyTitle" "companyText" "historyItems" "historyTitle" "historyText";
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 767px) {
  .AboutUsPage-inner {
    padding: 0 15px;
    overflow: hidden;
  }
}
.AboutUsPage-title {
  grid-area: title;
  padding: 0 15px;
  text-align: center;
}
.AboutUsPage-companyTitle {
  grid-area: companyTitle;
}
@media only screen and (max-width: 991px) {
  .AboutUsPage-companyTitle {
    justify-self: center;
    max-width: 600px;
    width: 100%;
  }
}
.AboutUsPage-companyText {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 25px;
  grid-area: companyText;
}
@media only screen and (max-width: 991px) {
  .AboutUsPage-companyText {
    justify-self: center;
    max-width: 600px;
    width: 100%;
  }
}
.AboutUsPage-video {
  grid-area: video;
}
@media only screen and (max-width: 991px) {
  .AboutUsPage-video {
    margin-left: -15px;
    margin-right: -15px;
    width: auto;
  }
}
.AboutUsPage-videoThumb {
  background: #f7f7f7;
  display: block;
  height: 272px;
  position: relative;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .AboutUsPage-videoThumb {
    margin-left: -10px;
    margin-right: -10px;
    width: auto;
  }
}
.AboutUsPage-videoThumb::after {
  content: "\e90f";
  font-family: 'kih-icons';
  border: 5px solid #e80000;
  border-radius: 50%;
  color: #fff;
  display: grid;
  font-size: 50px;
  height: 122px;
  left: 50%;
  place-items: center;
  position: absolute;
  text-indent: 12px;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.25s;
  width: 122px;
}
.AboutUsPage-videoThumb:hover::after {
  background: #e80000;
  transition: none;
}
.AboutUsPage-videoThumbPoster {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.AboutUsPage-historyTitle {
  grid-area: historyTitle;
  padding-top: 75px;
}
@media only screen and (max-width: 1280px) {
  .AboutUsPage-historyTitle {
    padding-top: 50px;
  }
}
@media only screen and (max-width: 991px) {
  .AboutUsPage-historyTitle {
    justify-self: center;
    max-width: 600px;
    width: 100%;
  }
}
.AboutUsPage-historyText {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 25px;
  grid-area: historyText;
}
@media only screen and (max-width: 991px) {
  .AboutUsPage-historyText {
    justify-self: center;
    max-width: 600px;
    width: 100%;
  }
}
.AboutUsPage-historyItems {
  display: flex;
  grid-area: historyItems;
  justify-content: space-between;
}
@media only screen and (max-width: 991px) {
  .AboutUsPage-historyItems {
    padding-top: 50px;
    justify-self: center;
    max-width: 600px;
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .AboutUsPage-historyItems {
    gap: 30px;
    margin-left: -15px;
    margin-right: -15px;
    width: auto;
    max-width: calc(100vw);
    overflow: auto hidden;
    scroll-snap-type: x mandatory;
    justify-content: flex-start;
    justify-self: flex-start;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .AboutUsPage-historyItems::-webkit-scrollbar {
    display: none;
  }
  .AboutUsPage-historyItems::before,
  .AboutUsPage-historyItems::after {
    content: "";
    height: 1px;
    width: 1px;
  }
}
.AboutUsPage-historyItem {
  align-items: stretch;
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 260px;
}
@media only screen and (max-width: 767px) {
  .AboutUsPage-historyItem {
    scroll-snap-align: center;
    flex: 0 0 260px;
  }
}
.AboutUsPage-historyItem:first-child {
  position: relative;
}
.AboutUsPage-historyItem:first-child::after {
  background: url(../../assets/images/history-dashes.svg) repeat-x center center;
  background-size: 100% auto;
  content: "";
  height: 20px;
  left: 100%;
  pointer-events: none;
  position: absolute;
  top: 70px;
  user-select: none;
  width: 200px;
  z-index: -1;
}
.AboutUsPage-historyItemImageWrap {
  box-shadow: rgba(0, 0, 0, 0.1) 0 5px 5px;
  height: 160px;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.AboutUsPage-historyItemImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.AboutUsPage-historyItemImageLabel {
  bottom: 0;
  color: #fff;
  font-size: 121px;
  font-weight: 700;
  left: 0;
  position: absolute;
  right: 0;
  text-align: center;
  text-indent: -4px;
  top: 0;
}
.CategoryHead {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 830px;
  padding: 50px 10px 100px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .CategoryHead {
    padding: 25px 10px;
  }
}
.Contacts {
  justify-items: center;
  display: grid;
  gap: 50px;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "title title" "banner banner" "mapWrap mapWrap" "branch hq" "branch2 hq2" "b2b b2b" "storesMapWrap storesMapWrap" "sjc sjc";
  flex-direction: column;
  position: relative;
  padding-bottom: 100px;
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .Contacts {
    grid-template-columns: 1fr;
    grid-template-areas: "title" "banner" "hq" "branch" "branch2" "mapWrap" "b2b" "storesMapWrap" "sjc";
    padding-bottom: 60px;
  }
}
.Contacts address,
.Contacts p {
  font-style: normal;
  font-size: 14px;
  line-height: 21px;
}
.Contacts dt {
  width: 32px;
}
.Contacts-title {
  grid-area: title;
}
.Contacts-banner {
  align-items: center;
  background: #fff;
  border-radius: 60px;
  box-shadow: rgba(0, 0, 0, 0.05) 0 10px 0;
  display: flex;
  gap: 20px;
  grid-area: banner;
  height: 120px;
  justify-content: space-between;
  max-width: 860px;
  padding: 0 85px;
  position: relative;
  width: 100%;
  z-index: 5;
}
@media only screen and (max-width: 991px) {
  .Contacts-banner {
    border-radius: 0;
    box-shadow: none;
    flex-direction: column;
    gap: 40px;
    height: auto;
    padding: 0;
  }
}
.Contacts-bannerItem {
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 991px) {
  .Contacts-bannerItem {
    align-items: center;
  }
}
.Contacts-bannerItem--socialLinks {
  align-items: center;
  flex-direction: row;
  gap: 30px;
  margin-top: 3px;
}
@media only screen and (max-width: 991px) {
  .Contacts-bannerItem--socialLinks {
    gap: 40px;
  }
}
.Contacts-bannerItemLabel {
  color: #808080;
  font-size: 14px;
}
.Contacts-bannerItemValue {
  color: #d4000f;
  font-size: 18px;
  font-weight: 700;
}
.Contacts-bannerItemValue:hover {
  color: #000;
  transition: none;
}
.Contacts-bannerSocialLink {
  color: #d4000f;
  font-size: 28px;
  text-decoration: none;
  transition: all 0.25s;
}
@media only screen and (max-width: 991px) {
  .Contacts-bannerSocialLink {
    display: grid;
    height: 28px;
    place-items: center;
    width: 28px;
  }
}
.Contacts-bannerSocialLink:hover {
  color: #000;
  transition: none;
}
.Contacts-mapWrap {
  background: #f7f7f7;
  grid-area: mapWrap;
  height: clamp(250px, 18.22916667vw, 700px);
  margin-top: -110px;
  position: relative;
  width: 100%;
  z-index: 1;
}
@media only screen and (max-width: 991px) {
  .Contacts-mapWrap {
    margin-top: 0;
    height: 540px;
  }
}
.Contacts-mapWrap::before,
.Contacts-mapWrap::after {
  background: rgba(0, 0, 0, 0.05);
  content: "";
  height: 10px;
  left: 0;
  position: absolute;
  right: 0;
  user-select: none;
  pointer-events: none;
}
.Contacts-mapWrap::before {
  top: 0;
}
.Contacts-mapWrap::after {
  bottom: 0;
}
.Contacts-map {
  background: url(../../assets/images/map.webp) no-repeat center center;
  background-size: cover;
  height: 100%;
  width: 100%;
}
.Contacts-branch {
  display: flex;
  flex-direction: column;
  gap: 25px;
  grid-area: branch;
  justify-self: flex-end;
  width: 495px;
}

.Contacts-branch.Contacts-branch2 {
  grid-area: branch2;
}
.ea-strong {font-weight: bold}

@media only screen and (max-width: 1280px) {
  .Contacts-branch {
    padding-left: 15px;
  }
}
@media only screen and (max-width: 991px) {
  .Contacts-branch {
    justify-self: center;
    max-width: 630px;
    padding: 0 15px;
    width: 100%;
  }
}
.Contacts-branch address {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.Contacts-hq {
  display: flex;
  flex-direction: column;
  gap: 25px;
  grid-area: hq;
  justify-self: flex-start;
  width: 495px;
}
@media only screen and (max-width: 1280px) {
  .Contacts-hq {
    padding-right: 15px;
  }
}
@media only screen and (max-width: 991px) {
  .Contacts-hq {
    justify-self: center;
    max-width: 630px;
    padding: 0 15px;
    width: 100%;
  }
}
.Contacts-hqContent {
  display: flex;
  gap: 30px;
}
.Contacts-hqContent address {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.Contacts-hqContentLogo {
  width: 140px;
}
.Contacts-b2b {
  max-width: 1040px;
  width: 100%;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 20px;
  grid-area: b2b;
  padding-top: 100px;
}
@media only screen and (max-width: 1280px) {
  .Contacts-b2b {
    padding: 0 15px;
  }
}
.Contacts-listsWrap {
  display: flex;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .Contacts-listsWrap {
    flex-wrap: wrap;
  }
}
.Contacts-list {
  gap: 20px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .Contacts-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 767px) {
  .Contacts-list {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
  }
}
.Contacts-list--half {
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 0;
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .Contacts-list--half {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
}
.Contacts-storesMapOuterWrap {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 40px;
  grid-area: storesMapWrap;
  width: 100%;
}
.Contacts-storesMapOuterWrap .Heading {
  max-width: 1040px;
  width: 100%;
}
@media only screen and (max-width: 1280px) {
  .Contacts-storesMapOuterWrap .Heading {
    padding: 0 15px;
  }
}
.Contacts-storesMapWrap {
  background: #f7f7f7;
  height: 780px;
  position: relative;
  width: 100%;
}
.Contacts-storesMapWrap::before,
.Contacts-storesMapWrap::after {
  background: rgba(0, 0, 0, 0.05);
  content: "";
  height: 10px;
  left: 0;
  position: absolute;
  right: 0;
  user-select: none;
  pointer-events: none;
}
.Contacts-storesMapWrap::before {
  top: 0;
}
.Contacts-storesMapWrap::after {
  bottom: 0;
}
.Contacts-storesMap {
  background: url(../../assets/images/map.webp) no-repeat center center;
  background-size: cover;
  height: 100%;
  width: 100%;
}
.Contacts-sjc {
  max-width: 1040px;
  width: 100%;
  grid-area: sjc;
}
@media only screen and (max-width: 1280px) {
  .Contacts-sjc {
    padding: 0 15px;
  }
}
.Contacts-address--headingOffset {
  padding-top: 60px;
}
@media only screen and (max-width: 767px) {
  .Contacts-address--headingOffset {
    padding-top: 0;
  }
}
.Contacts-hours {
  display: flex;
  flex-direction: column;
  font-style: normal;
  font-size: 14px;
  line-height: 21px;
  margin-top: 10px;
}
.Contacts-hoursItem {
  display: flex;
}
.Contacts-hoursItem div:first-child {
  width: 32px;
}
.Contacts .Heading--h2 {
  margin-top: 30px;
}
@media only screen and (max-width: 767px) {
  .Contacts .Heading--h2 {
    margin-top: 20px;
  }
}
.Contacts .Heading--h3 {
  margin-bottom: 25px;
  margin-top: 10px;
}
@media only screen and (max-width: 767px) {
  .Contacts .Heading--h3 {
    margin-bottom: 10px;
    margin-top: 5px;
  }
}
.Cooperation {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: 0 10px 110px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .Cooperation {
    padding-bottom: 60px;
  }
}
.Cooperation p {
  font-size: 14px;
  line-height: 24px;
}
.Cooperation-inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 810px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .Cooperation-inner {
    gap: 40px;
  }
}
.Cooperation-title,
.Cooperation-text {
  text-align: center;
}
.Cooperation-sections {
  display: flex;
  flex-direction: column;
  gap: 50px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .Cooperation-sections {
    gap: 30px;
  }
}
.Cooperation-section {
  align-items: flex-start;
  border-top: 1px solid #e6e6e6;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 40px 30px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .Cooperation-section {
    padding: 40px 5px;
  }
}
.Cooperation .ArrowLink {
  margin-top: 10px;
}
.Downloads {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 940px;
  padding: 30px 20px;
  width: 100%;
}
.Downloads:last-child {
  padding-bottom: 170px;
}
.Downloads-buttonsWrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.Downloads-text {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 20px;
  width: 100%;
}
.Downloads-text p {
  font-size: 14px;
  line-height: 24px;
}
.Downloads-links {
  justify-items: flex-start;
  display: grid;
  gap: 3px 20px;
  grid-template-columns: 1fr 1fr;
  padding: 20px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .Downloads-links {
    gap: 15px;
    grid-template-columns: 1fr;
    padding: 20px 0;
  }
}
@media only screen and (max-width: 767px) {
  .Downloads .Accordion {
    width: auto;
    margin-left: -10px;
    margin-right: -10px;
  }
}
.Downloads .VideoWrap {
  margin-bottom: 40px;
}
.EnquiryCTA {
  display: flex;
  justify-content: center;
  padding: 100px 0;
}
@media only screen and (max-width: 1280px) {
  .EnquiryCTA {
    padding: 60px 0;
  }
}
@media only screen and (max-width: 991px) {
  .EnquiryCTA {
    padding: 40px 0;
  }
}
.EnquiryCTA-inner {
  align-items: center;
  background: #000 url(../../assets/images/button.svg) no-repeat center -50px;
  background-size: auto 133%;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 38px;
  max-width: 1060px;
  padding: 100px 130px;
  text-align: center;
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .EnquiryCTA-inner {
    padding: 50px 60px;
  }
}
@media only screen and (max-width: 767px) {
  .EnquiryCTA-inner {
    background-size: contain;
    background-position: center center;
    padding: 60px 30px;
  }
}
.EnquiryCTA-title {
  font-size: 38px;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .EnquiryCTA-title {
    font-size: 24px;
    line-height: 44px;
  }
}
.EnquiryCTA-button {
  align-items: center;
  -webkit-appearance: none;
  appearance: none;
  background: #d4000f;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-size: 18px;
  font-weight: 900;
  height: 48px;
  justify-content: center;
  max-width: 318px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s;
  width: 100%;
}
.EnquiryCTA-button:hover {
  background: #c30000;
  transition: all 0.25s, background 1ms;
}
.EnquiryCTA-button:active {
  transform: scale(0.95);
}
.EnquiryModal {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.EnquiryModal-productCategory {
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
}
.EnquiryModal-productName {
  font-size: 14px;
  font-weight: 700;
  line-height: 17px;
}
.EnquiryModal-form {
  display: grid;
  grid-template-areas: "left right" "bottom bottom";
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
@media only screen and (max-width: 767px) {
  .EnquiryModal-form {
    gap: 25px;
    grid-template-areas: "left" "right" "bottom";
    grid-template-columns: 1fr;
  }
}
.EnquiryModal-left {
  align-items: stretch;
  display: flex;
  flex-direction: column;
  gap: 25px;
  grid-area: left;
  width: 100%;
}
.EnquiryModal-right {
  align-items: stretch;
  display: flex;
  flex-direction: column;
  gap: 25px;
  grid-area: right;
  width: 100%;
}
.EnquiryModal-bottom {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 25px;
  grid-area: bottom;
  width: 100%;
}
.EnquiryModal-bottom .Form-item {
  align-items: center;
}
.EnquirySection {
  display: grid;
  grid-template-areas: "graphical content .";
  grid-template-columns: 50% 530px 1fr;
  padding: 100px 0 140px;
  width: 100%;
}
@media only screen and (max-width: 1280px) {
  .EnquirySection {
    grid-template-areas: "graphical content";
    grid-template-columns: 1fr 1fr;
    padding: 60px 0;
  }
}
@media only screen and (max-width: 991px) {
  .EnquirySection {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding: 40px 0;
  }
}
.EnquirySection-left {
  grid-area: graphical;
  display: flex;
  justify-content: flex-end;
  position: relative;
}
.EnquirySection-left::before {
  background: #f7f7f7;
  content: "";
  height: 420px;
  left: 0;
  position: absolute;
  right: 0;
  top: 70px;
  z-index: -1;
}
@media only screen and (max-width: 991px) {
  .EnquirySection-left::before {
    content: none;
  }
}
.EnquirySection-left::after {
  background: #e6e6e6;
  content: "";
  height: 657px;
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  z-index: -1;
}
@media only screen and (max-width: 991px) {
  .EnquirySection-left::after {
    content: none;
  }
}
.EnquirySection-leftInner {
  padding: 40px 60px 40px 0;
  position: relative;
  max-width: 530px;
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .EnquirySection-leftInner {
    padding-right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .EnquirySection-leftInner {
    padding: 0;
  }
}
.EnquirySection-leftInner::after {
  background: url(../../assets/images/head.svg) no-repeat center center;
  background-size: contain;
  content: "";
  height: 430px;
  position: absolute;
  right: 0;
  width: 400px;
}
@media only screen and (max-width: 991px) {
  .EnquirySection-leftInner::after {
    content: none;
  }
}
.EnquirySection-title {
  line-height: 58px;
  text-align: right;
  text-transform: none;
}
@media only screen and (max-width: 991px) {
  .EnquirySection-title {
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .EnquirySection-title {
    font-size: 29px;
    line-height: 44px;
  }
}
.EnquirySection-title span {
  color: #d4000f;
}
.EnquirySection-right {
  display: flex;
  flex-direction: column;
  gap: 60px;
  grid-area: content;
  padding: 40px 0 0 50px;
}
@media only screen and (max-width: 1280px) {
  .EnquirySection-right {
    padding: 40px 20px 0 50px;
  }
}
@media only screen and (max-width: 991px) {
  .EnquirySection-right {
    padding: 20px;
    width: 100%;
  }
}
.EnquirySection-block {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.EnquirySection-block p {
  max-width: 405px;
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .EnquirySection-block p {
    max-width: none;
  }
}
.EnquirySection-blockTitle {
  position: relative;
}
.EnquirySection-blockTitle::before {
  background: #d4000f;
  border-radius: 5px;
  content: "";
  height: 5px;
  position: absolute;
  right: calc(100% + 15px);
  top: calc(50% - 3px);
  width: 50px;
}
@media only screen and (max-width: 991px) {
  .EnquirySection-blockTitle::before {
    right: calc(100% + 5px);
  }
}
.EnquirySection-links {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.Fairs {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: 100px 15px;
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .Fairs {
    padding: 60px 15px;
  }
}
.Fairs-inner {
  display: flex;
  flex-direction: column;
  gap: 35px;
  max-width: 1060px;
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .Fairs-inner {
    max-width: 600px;
  }
}
.Fairs-lists {
  display: grid;
  gap: 120px;
  grid-template-columns: repeat(2, 1fr);
}
@media only screen and (max-width: 991px) {
  .Fairs-lists {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}
.Fairs-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.Fairs-items {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.Fairs-item {
  display: grid;
  gap: 6px 25px;
  grid-template-areas: "image title" "image date" "image text";
  grid-template-columns: 100px 1fr;
}
@media only screen and (max-width: 767px) {
  .Fairs-item {
    grid-template-areas: "image" "title" "date" "text";
    grid-template-columns: 1fr;
  }
}
.Fairs-itemImageWrap {
  grid-area: image;
  height: 100px;
  width: 100px;
}
.Fairs-itemImage {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.Fairs-itemTitle {
  grid-area: title;
}
.Fairs-itemTitle a {
  color: #d4000f;
  transition: all 0.25s;
}
.Fairs-itemTitle a:hover {
  color: #000;
  transition: none;
}
.Fairs-itemDate {
  grid-area: date;
  color: #808080;
  font-size: 14px;
}
.Fairs-itemText {
  grid-area: text;
}
.Fairs-itemText p {
  font-size: 14px;
  line-height: 24px;
  max-height: 48px;
  overflow: hidden;
}
.Footer {
  align-items: center;
  background: #000;
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
}
.Footer::before {
  background: #d4000f;
  content: "";
  height: 135px;
  left: 0;
  right: 0;
  top: 0;
  position: absolute;
  z-index: 0;
}
@media only screen and (max-width: 991px) {
  .Footer::before {
    height: 100px;
  }
}
@media only screen and (max-width: 767px) {
  .Footer::before {
    content: none;
  }
}
.Footer-upper {
  display: grid;
  grid-template-areas: "logo contacts" "logo links" "branch branch";
  grid-template-columns: 160px 1fr;
  grid-template-rows: 135px 1fr 80px;
  gap: 0 70px;
  max-width: 1130px;
  width: 100%;
  z-index: 1;
}
@media only screen and (max-width: 1280px) {
  .Footer-upper {
    gap: 0 50px;
    padding: 0 10px;
  }
}
@media only screen and (max-width: 991px) {
  .Footer-upper {
    gap: 0 40px;
    grid-template-columns: 120px 1fr;
    grid-template-rows: 100px 1fr 70px;
  }
}
@media only screen and (max-width: 767px) {
  .Footer-upper {
    align-items: center;
    display: flex;
    flex-direction: column;
    padding: 0;
  }
}
.Footer-logoWrap {
  padding-top: 32px;
  grid-area: logo;
}
@media only screen and (max-width: 991px) {
  .Footer-logoWrap {
    padding: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .Footer-logoWrap {
    background: #d4000f;
    padding: 30px;
    width: 100%;
  }
}
.Footer-contacts {
  align-items: center;
  display: grid;
  grid-area: contacts;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .Footer-contacts {
    background: #d4000f;
    display: flex;
    flex-direction: column;
    padding: 0 10px 30px;
    gap: 30px;
    width: 100%;
  }
}
.Footer-contact {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 767px) {
  .Footer-contact {
    align-items: center;
  }
}
.Footer-contactTitle {
  color: #000;
  font-size: 18px;
  font-weight: 600;
  line-height: 21px;
}
@media only screen and (max-width: 991px) {
  .Footer-contactTitle {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .Footer-contactTitle {
    font-size: 18px;
  }
}
.Footer-contactValue {
  color: #fff;
  text-decoration: none;
  font-size: 28px;
  font-weight: 700;
  transition: all 0.25s;
}
@media only screen and (max-width: 1280px) {
  .Footer-contactValue {
    font-size: 22px;
  }
}
@media only screen and (max-width: 991px) {
  .Footer-contactValue {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .Footer-contactValue {
    font-size: 28px;
  }
}
.Footer-contactValue:hover {
  color: #000;
  transition: none;
}
.Footer-socialLinks {
  display: flex;
  gap: 32px;
  padding-top: 10px;
}
@media only screen and (max-width: 1280px) {
  .Footer-socialLinks {
    padding-top: 0;
  }
}
@media only screen and (max-width: 991px) {
  .Footer-socialLinks {
    gap: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .Footer-socialLinks {
    justify-content: center;
    flex-wrap: wrap;
  }
}
.Footer-socialLinks .Footer-contactTitle {
  text-align: center;
  width: 100%;
}
.Footer-socialLink {
  color: #fff;
  display: grid;
  font-size: 28px;
  height: 32px;
  place-items: center;
  text-decoration: none;
  transition: all 0.25s;
  width: 32px;
}
@media only screen and (max-width: 767px) {
  .Footer-socialLink {
    width: auto;
    padding: 4px;
  }
}
.Footer-socialLink:hover {
  color: #000;
  transition: none;
}
.Footer-linksGrid {
  grid-area: links;
  display: grid;
  grid-template-columns: 2fr 1fr;
  padding: 50px 0 100px;
}
@media only screen and (max-width: 1280px) {
  .Footer-linksGrid {
    padding-bottom: 60px;
  }
}
@media only screen and (max-width: 991px) {
  .Footer-linksGrid {
    padding: 40px 0 60px;
  }
}
@media only screen and (max-width: 767px) {
  .Footer-linksGrid {
    align-items: stretch;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 20px 20px 100px;
  }
}
.Footer-linksBlock {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.Footer-linksBlock--wide {
  padding-right: 110px;
}
@media only screen and (max-width: 991px) {
  .Footer-linksBlock--wide {
    padding-right: 50px;
  }
}
.Footer-linksGroup {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.Footer-linksGroupTitle {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
}
.Footer-linksGroupLinks {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 16px;
}
.Footer-linksGroupLinks a {
  color: #fff;
  transition: all 0.25s;
}
.Footer-linksGroupLinks a:hover {
  color: #d4000f;
  transition: none;
}
.Footer-branch {
  align-items: center;
  color: #fff;
  display: flex;
  gap: 38px;
  grid-area: branch;
  justify-content: center;
  padding-bottom: 20px;
}
@media only screen and (max-width: 1280px) {
  .Footer-branch {
    gap: 25px;
  }
}
@media only screen and (max-width: 991px) {
  .Footer-branch {
    flex-wrap: wrap;
    gap: 0 25px;
    justify-content: flex-start;
    padding-bottom: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .Footer-branch {
    gap: 25px;
    padding: 0 25px 25px;
  }
}
.Footer-branchTitle {
  font-size: 24px;
  font-weight: 700;
  width: 270px;
}
@media only screen and (max-width: 1280px) {
  .Footer-branchTitle {
    font-size: 18px;
  }
}
@media only screen and (max-width: 991px) {
  .Footer-branchTitle {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .Footer-branchTitle {
    font-size: 24px;
  }
}
.Footer-branchData {
  display: flex;
  font-size: 14px;
  font-style: normal;
  gap: 12px;
  margin-top: 4px;
}
@media only screen and (max-width: 767px) {
  .Footer-branchData {
    flex-direction: column;
  }
}
.Footer-branchData a {
  color: #d4000f;
  font-weight: 700;
  transition: all 0.25s;
}
.Footer-branchData a:hover {
  color: #fff;
  transition: none;
}
.Footer-map {
  background: #f7f7f7 url(../../assets/images/map.webp) no-repeat center center;
  background-size: cover;
  display: block;
  height: 300px;
  width: 100%;
}
.Footer-lower {
  align-items: center;
  color: #fff;
  display: flex;
  justify-content: space-between;
  max-width: 1920px;
  padding: 35px 10px;
  width: 100%;
}
@media only screen and (max-width: 1280px) {
  .Footer-lower {
    padding: 15px 10px;
  }
}
@media only screen and (max-width: 991px) {
  .Footer-lower {
    flex-direction: column-reverse;
    gap: 40px;
    text-align: center;
    width: 300px;
  }
}
@media only screen and (max-width: 767px) {
  .Footer-lower {
    gap: 60px;
    padding: 60px 10px 25px;
    width: 100%;
  }
}
.Footer-lower p {
  align-items: center;
  display: flex;
  font-size: 18px;
  font-weight: 500;
  gap: 20px;
}
@media only screen and (max-width: 1280px) {
  .Footer-lower p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 991px) {
  .Footer-lower p {
    flex-direction: column;
  }
}
.Header {
  background: #e72929;
  display: flex;
  height: 100px;
  justify-content: center;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .Header {
    height: 180px;
    padding-bottom: 100px;
  }
  .Header::before {
    background: radial-gradient(300px 60px ellipse at 50% 0px, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 80px;
    z-index: -1;
  }
}
@media only screen and (max-width: 767px) {
  .Header--mobileNarrow {
    height: 100px;
    padding-bottom: 0;
    margin-bottom: 60px;
  }
  .Header--mobileNarrow::before {
    content: none;
  }
}
.HeaderSeparator {
  background: transparent url(../../assets/images/hero-separator.svg) no-repeat center bottom;
  background-size: 3840px auto;
  display: block;
  height: 100px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .HeaderSeparator {
    display: none;
  }
}
.HomepageHero {
  background-color: #e72929;
  background-image: radial-gradient(600px 150px ellipse at 50% 0, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0)), linear-gradient(90deg, #e72929, #e72929 50%, #d72828 50%, #e72929 calc(50% + 700px));
  display: flex;
  justify-content: center;
  margin-bottom: 160px;
  position: relative;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .HomepageHero {
    background-image: none;
    margin-bottom: 90px;
    padding-bottom: 0;
  }
}
.HomepageHero::after {
  content: "";
  background: transparent url(../../assets/images/homepage-hero-separator.svg) no-repeat center center;
  background-size: 3840px 160px;
  height: clamp(140px, calc((100vw / 3840) * 160), 160px);
  position: absolute;
  top: 100%;
  width: 100%;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .HomepageHero::after {
    background-image: url(../../assets/images/hero-separator.svg);
  }
}
.HomepageHero-inner {
  display: flex;
  gap: 190px;
  justify-content: center;
  max-width: 1340px;
  position: relative;
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .HomepageHero-inner {
    gap: 120px;
  }
}
@media only screen and (max-width: 767px) {
  .HomepageHero-inner {
    align-items: center;
    flex-direction: column;
    gap: 45px;
  }
}
.HomepageHero-inner::after {
  background: url(../../assets/images/button.svg) no-repeat left top;
  background-size: contain;
  content: "";
  height: 700px;
  left: calc(50% - 780px);
  pointer-events: none;
  position: absolute;
  top: 0px;
  user-select: none;
  width: 640px;
  z-index: 0;
}
@media only screen and (max-width: 767px) {
  .HomepageHero-inner::after {
    content: none;
  }
}
.HomepageHero-item {
  align-items: flex-start;
  display: flex;
  height: 400px;
  justify-content: center;
  padding-top: 70px;
  position: relative;
  width: calc(50% - 95px);
  z-index: 1;
}
@media only screen and (max-width: 1280px) {
  .HomepageHero-item {
    height: 340px;
  }
}
@media only screen and (max-width: 991px) {
  .HomepageHero-item {
    height: 240px;
    padding-top: 50px;
    width: calc(50% - 60px);
  }
}
@media only screen and (max-width: 767px) {
  .HomepageHero-item {
    height: auto;
    padding: 30px;
    width: 100%;
  }
}
.HomepageHero-item::after {
  background: transparent center bottom no-repeat;
  background-size: contain;
  height: 240px;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  user-select: none;
  top: calc(100% - 105px);
}
@media only screen and (max-width: 1280px) {
  .HomepageHero-item--textile {
    padding-left: 30px;
  }
}
.HomepageHero-item--textile::after {
  background-image: url(../../assets/images/textilni-galanterie.webp);
  content: "";
}
@media only screen and (max-width: 767px) {
  .HomepageHero-item--textile::after {
    background: url(../../assets/images/textilni-galanterie-mobile.webp) no-repeat center center;
    background-size: contain;
    bottom: 0;
    height: auto;
    top: 0;
    z-index: 1;
  }
}
@media only screen and (max-width: 1280px) {
  .HomepageHero-item--industrial {
    padding-right: 30px;
  }
}
.HomepageHero-item--industrial::after {
  background-image: url(../../assets/images/prumyslove-vyrobky.webp);
  content: "";
}
@media only screen and (max-width: 767px) {
  .HomepageHero-item--industrial::after {
    background-image: url(../../assets/images/products-industrial-spread.webp);
    background-size: contain;
    bottom: 0;
    height: auto;
    top: 0;
    z-index: 1;
  }
}
.HomepageHero-link {
  align-items: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  max-width: 400px;
  text-decoration: none;
  width: 100%;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .HomepageHero-link {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    gap: 32px;
    max-width: 360px;
    padding: 50px 40px;
  }
}
@media only screen and (min-width: 767.02px) {
  .HomepageHero-link:hover {
    padding-bottom: 30px;
  }
  .HomepageHero-link:hover .HomepageHero-linkLabel {
    background: transparent;
  }
  .HomepageHero-link:hover .HomepageHero-linkButton {
    display: grid;
    margin-top: -30px;
    opacity: 1;
  }
}
.HomepageHero-linkLabel {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 22px;
  font-size: 38px;
  font-weight: 600;
  line-height: 1.3;
  padding: 50px 80px;
  text-align: center;
  transition: all 0.25s;
}
@media only screen and (max-width: 1280px) {
  .HomepageHero-linkLabel {
    padding: 50px;
  }
}
@media only screen and (max-width: 991px) {
  .HomepageHero-linkLabel {
    font-size: 32px;
    padding: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .HomepageHero-linkLabel {
    font-size: 28px;
    background: 0;
    padding: 0;
  }
}
.HomepageHero-linkButton {
  background: rgba(255, 255, 255, 0.2);
  display: grid;
  font-size: 18px;
  font-weight: 900;
  height: 48px;
  place-items: center;
  text-transform: uppercase;
  transition: all 0.25s;
  opacity: 0;
  margin-top: 10px;
  user-select: none;
  width: 176px;
}
@media only screen and (max-width: 767px) {
  .HomepageHero-linkButton {
    opacity: 1;
  }
}
.HomepageHero--subpage .HomepageHero-inner::after {
  content: none;
}
.HomepageHero--subpage .HomepageHero-item {
  padding-top: 110px;
}
@media only screen and (max-width: 991px) {
  .HomepageHero--subpage .HomepageHero-item {
    padding-top: 70px;
  }
}
.HomepageHero--subpage .HomepageHero-item--textile::after {
  background-image: url(../../assets/images/products-textile-spread.webp);
  background-position: center center;
  bottom: -140px;
  height: auto;
  right: clamp(-50px, calc((100vw - 1340px) / 100 * -50), 0px);
  left: clamp(-50px, calc((100vw - 1340px) / 100 * -50), 0px);
  top: -20px;
  z-index: -1;
}
@media only screen and (min-width: 767.02px) {
  .HomepageHero--subpage .HomepageHero-item--industrial::after {
    background-image: url(../../assets/images/products-industrial-spread.webp);
    background-position: center center;
    bottom: -140px;
    height: auto;
    right: clamp(-50px, calc((100vw - 1340px) / 100 * -50), 0px);
    left: clamp(-50px, calc((100vw - 1340px) / 100 * -50), 0px);
    top: -20px;
    z-index: -1;
  }
}
.HomepageNews {
  display: grid;
  gap: 70px 50px;
  grid-template-areas: "heading heading heading" "image latest older";
  grid-template-columns: repeat(3, 1fr);
  max-width: 1060px;
  padding: 100px 0;
  width: 100%;
}
@media only screen and (max-width: 1280px) {
  .HomepageNews {
    grid-template-columns: 2fr 3fr 3fr;
    gap: 50px 40px;
    padding: 60px 10px;
  }
}
@media only screen and (max-width: 991px) {
  .HomepageNews {
    padding: 40px 10px;
    gap: 30px 40px;
    grid-template-areas: "heading heading" "image image" "latest older";
    grid-template-columns: 1fr 1fr;
    grid-template-rows: min-content 255px 1fr;
  }
}
@media only screen and (max-width: 767px) {
  .HomepageNews {
    align-items: stretch;
    display: flex;
    flex-direction: column;
  }
}
.HomepageNews-heading {
  grid-area: heading;
  text-align: center;
}
.HomepageNews-imageWrap {
  grid-area: image;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .HomepageNews-imageWrap {
    margin-left: -10px;
    margin-right: -10px;
    width: auto;
  }
}
.HomepageNews-image {
  display: block;
  object-fit: cover;
  object-position: 42% 50%;
  height: 100%;
  width: 100%;
}
@media only screen and (max-width: 1280px) {
  .HomepageNews-image {
    object-fit: 30% 50%;
  }
}
@media only screen and (max-width: 991px) {
  .HomepageNews-image {
    object-position: center center;
  }
}
.HomepageNews-latest {
  grid-area: latest;
}
.HomepageNews-olderWrap {
  display: flex;
  flex-direction: column;
  gap: 48px;
  grid-area: older;
}
@media only screen and (max-width: 991px) {
  .HomepageNews-olderWrap {
    gap: 30px;
  }
}
.HomepageNews-article {
  align-items: flex-start;
  flex-direction: column;
  display: flex;
  gap: 15px;
}
.HomepageNews-article p {
  font-size: 14px;
  line-height: 24px;
  max-height: 312px;
  overflow: hidden;
}
.HomepageNews-article--older p {
  max-height: 72px;
}
.HomepageNews-articleTitle {
  max-height: 68px;
}
.ImagesAndTexts {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: 80px 15px;
  width: 100%;
}
.ImagesAndTexts-inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 50px;
  max-width: 940px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .ImagesAndTexts .Heading {
    text-align: center;
  }
}
.ImagesAndTexts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 75px 50px;
}
@media only screen and (max-width: 767px) {
  .ImagesAndTexts-grid {
    gap: 50px;
    grid-template-columns: 1fr;
  }
}
.ImageAndText {
  align-items: flex-start;
  display: flex;
  gap: 18px;
  flex-direction: column;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .ImageAndText {
    gap: 15px;
  }
}
.ImageAndText-imageWrap {
  height: 126px;
  margin-bottom: 7px;
  width: 100%;
}
.ImageAndText-image {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.IndustrialProductPage {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 1120px;
  padding: 90px 20px 0;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .IndustrialProductPage {
    padding-top: 5px;
    gap: 30px;
  }
}
.IndustrialProductPage p {
  font-size: 14px;
  line-height: 22px;
}
.IndustrialProductPage .Breadcrumbs {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}
@media only screen and (max-width: 767px) {
  .IndustrialProductPage .Breadcrumbs {
    padding-bottom: 5px;
  }
}
.IndustrialProductPage-gridTop {
  align-items: start;
  display: grid;
  grid-template-areas: "main gallery";
  grid-template-columns: 1fr 444px;
  gap: 100px;
}
@media only screen and (max-width: 1280px) {
  .IndustrialProductPage-gridTop {
    gap: 70px;
    grid-template-columns: 1fr 360px;
  }
}
@media only screen and (max-width: 767px) {
  .IndustrialProductPage-gridTop {
    gap: 30px;
    grid-template-areas: "gallery" "main";
    grid-template-columns: 1fr;
  }
}
.IndustrialProductPage-gridBottom {
  display: grid;
  grid-template-areas: "features additional";
  grid-template-columns: 300px 1fr;
  gap: 70px;
}
@media only screen and (max-width: 767px) {
  .IndustrialProductPage-gridBottom {
    gap: 40px;
    grid-template-areas: "features" "additional";
    grid-template-columns: 1fr;
    padding-top: 30px;
  }
}
.IndustrialProductPage-main {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  grid-area: main;
  gap: 15px;
}
.IndustrialProductPage-main .Button {
  margin-top: 15px;
}
.IndustrialProductPage-gallery {
  display: grid;
  gap: 18px;
  justify-content: space-between;
  grid-template-columns: 1fr 1fr;
  grid-area: gallery;
}
.IndustrialProductPage-galleryItem {
  border: 1px solid #e6e6e6;
  border-radius: 5px;
  display: grid;
  place-items: center;
  text-decoration: none;
  transition: all 0.25s;
  aspect-ratio: 1;
  box-sizing: content-box;
  height: 0;
  overflow: hidden;
  padding-bottom: 100%;
  position: relative;
  width: 100%;
  flex-grow: 0;
}
.IndustrialProductPage-galleryItem:hover {
  border-color: #d4000f;
  transition: none;
}
.IndustrialProductPage-galleryItem img {
  display: block;
  object-fit: contain;
  position: absolute;
  max-height: 100%;
  max-width: 100%;
}
.IndustrialProductPage-features {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 25px;
  grid-area: features;
}
.IndustrialProductPage-feature {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.IndustrialProductPage-additional {
  grid-area: additional;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.IndustrialProductPage .ImagesAndTexts {
  padding-left: 0;
  padding-right: 0;
}
.IndustrialProductPage .ImagesAndTexts-inner {
  max-width: 100%;
}
.IndustrialProductPage .ImagesAndTexts-grid {
  gap: 30px;
}
.IndustrialProductPage .ImageAndText-imageWrap {
  height: auto;
}
.Main {
  align-items: center;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.Navigation--homepage {
  display: grid;
  grid-template-columns: 1fr 190px 1fr;
  grid-template-areas: "left logo right";
  gap: 25px;
  transition: all 0.25s;
}
@media only screen and (max-width: 1280px) {
  .Navigation--homepage {
    gap: 15px;
    grid-template-columns: 1fr 150px 1fr;
  }
}
@media only screen and (max-width: 991px) {
  .Navigation--homepage {
    grid-template-columns: 1fr 100px 1fr;
  }
}
@media only screen and (max-width: 767px) {
  .Navigation--homepage {
    display: none;
  }
}
.Navigation--homepage .Navigation-left {
  align-items: center;
  display: flex;
  gap: 50px;
  grid-area: left;
  justify-content: flex-end;
}
@media only screen and (max-width: 1280px) {
  .Navigation--homepage .Navigation-left {
    gap: 15px;
  }
}
.Navigation--homepage .Navigation-logo {
  grid-area: logo;
  display: flex;
  justify-content: center;
  position: relative;
  align-self: flex-start;
}
.Navigation--homepage .Navigation-right {
  align-items: center;
  grid-area: right;
  display: flex;
  gap: 25px;
  justify-content: flex-start;
}
@media only screen and (max-width: 1280px) {
  .Navigation--homepage .Navigation-right {
    gap: 15px;
  }
}
@media only screen and (max-width: 991px) {
  .Navigation--homepage .Navigation-right {
    gap: 10px;
  }
}
.Navigation--common {
  align-items: center;
  display: flex;
  justify-content: center;
  width: 100%;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .Navigation--common {
    display: none;
  }
}
.Navigation--common .Navigation-inner {
  align-items: center;
  display: grid;
  grid-template-areas: "logo main cta";
  grid-template-columns: 170px 1fr 170px;
  height: 100%;
  max-width: 1340px;
  padding: 0 40px;
  width: 100%;
}
@media only screen and (max-width: 1280px) {
  .Navigation--common .Navigation-inner {
    grid-template-columns: 130px 1fr 130px;
    padding: 0 30px;
  }
}
@media only screen and (max-width: 991px) {
  .Navigation--common .Navigation-inner {
    grid-template-columns: 110px 1fr 110px;
    padding: 0 25px;
  }
}
.Navigation--common .Navigation-logo {
  align-self: flex-start;
  display: flex;
  grid-area: logo;
  justify-content: center;
  padding-right: 62px;
  width: 100;
}
@media only screen and (max-width: 1280px) {
  .Navigation--common .Navigation-logo {
    padding-right: 22px;
  }
}
.Navigation--common .Navigation-logoInner {
  display: block;
  height: 100%;
  position: relative;
  width: 100%;
}
.Navigation--common .Navigation-main {
  align-items: center;
  display: flex;
  gap: 25px;
  justify-content: center;
}
@media only screen and (max-width: 1280px) {
  .Navigation--common .Navigation-main {
    gap: 15px;
  }
}
.Navigation--common .Navigation-cta {
  align-items: center;
  display: flex;
  justify-content: flex-end;
}
.Navigation-item {
  color: #fff;
  display: block;
  font-size: 18px;
  font-weight: 700;
  padding: 14px;
  text-decoration: none;
  transition: all 0.25s;
}
@media only screen and (max-width: 1280px) {
  .Navigation-item {
    padding: 15px;
    font-size: 16px;
  }
}
@media only screen and (max-width: 991px) {
  .Navigation-item {
    padding: 10px;
    font-size: 14px;
  }
}
.Navigation-item:hover {
  color: #fff;;
  transition: none;
}
.Navigation-item--cta {
  align-items: center;
  border: 1px solid white;
  border-radius: 36px;
  display: flex;
  gap: 15px;
  padding: 12px 28px;
  text-transform: uppercase;
}
.Navigation-item--cta:hover {
border-color: #d4000f;
color: #d4000f;
}
@media only screen and (max-width: 1280px) {
  .Navigation-item--cta {
    padding: 15px 14px;
  }
}
@media only screen and (max-width: 991px) {
  .Navigation-item--cta {
    padding: 5px;
  }
}
.Navigation-item--cta .Icon {
  color: #000;
  font-size: 22px;
}
@media only screen and (max-width: 991px) {
  .Navigation-item--cta .Icon {
    font-size: 16px;
  }
}
.NewsDetail {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 840px;
  padding: 75px 20px 170px;
  width: 100%;
}
.NewsDetail-article {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
}
.NewsDetail-date {
  color: #808080;
  font-size: 14px;
  line-height: 24px;
}
.NewsDetail-imageWrap {
  margin: 25px 0 45px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .NewsDetail-imageWrap {
    margin: 15px 0 30px;
  }
}
.NewsDetail-image {
  display: block;
  max-width: 100%;
}
.NewsDetail-content {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.NewsDetail-content img {
 width: 100%;
}
.NewsDetail-content p {
  font-size: 14px;
  line-height: 24px;
}
.NewsPage {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 820px;
  padding-top: 60px;
  padding-bottom: 140px;
  width: 100%;
}
.NewsPage-text {
  text-align: center;
}
.NewsPage-text p {
  font-size: 14px;
  line-height: 24px;
}
.NewsPage-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}
.NewsPage-buttonWrap {
  padding: 40px 0;
}
.NewsPage-buttonWrap p {
  text-align: center;
  margin-bottom: 20px;
}
.NewsPage-buttonWrap .Button {padding:8px 16px}
.NewsPage-buttonWrap span.Button {background:rgb(234, 239, 242);color:rgb(45, 65, 86);font-weight: 400;}

.NewsPage .SingleTextAndImage {
  padding: 20px 10px;
}
@media only screen and (max-width: 767px) {
  .NewsPage .SingleTextAndImage {
    padding: 20px;
  }
  .NewsPage .SingleTextAndImage-imageWrap {
    margin-left: -20px;
    margin-right: -20px;
    max-height: 300px;
    width: auto;
  }
  .NewsPage .SingleTextAndImage-image {
    height: 100%;
    object-fit: cover;
  }
}
.NewsPage .SingleTextAndImage-content {
  align-self: center;
}
.MobileNavigation {
  display: none;
  gap: 8px;
  grid-template-areas: "left logo right";
  grid-template-columns: 1fr 102px 1fr;
}
@media only screen and (max-width: 767px) {
  .MobileNavigation {
    display: grid;
  }
}
.MobileNavigation-logo {
  grid-area: logo;
  position: relative;
}
.MobileNavigation-left {
  align-items: center;
  gap: 8px;
  grid-area: left;
  display: flex;
  justify-content: flex-end;
}
.MobileNavigation-right {
  align-items: center;
  gap: 8px;
  grid-area: right;
  display: flex;
  justify-content: flex-start;
}
.MobileNavigation-item {
  align-items: center;
  -webkit-appearance: none;
  appearance: none;
  background: none;
  border: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  text-decoration: none;
  width: 42px;
}
.MobileNavigation-item--menu .MobileNavigation-itemIcon {
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.MobileNavigation-item--menuOpened .MobileNavigation-itemIcon {
  background: #fff;
  border-color: #fff;
  color: #c30000;
}
.MobileNavigation-itemIcon {
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  color: #000;
  display: grid;
  height: 42px;
  place-items: center;
  width: 42px;
}
.MobileNavigation-itemLabel {
  color: #fff;
  font-size: 10px;
  text-align: center;
  text-transform: lowercase;
}
.MobileNavigation-itemLabel--menuOpened {
  display: none;
}
.MobileNavigation-panel {
  align-items: center;
  background: #e72929;
  display: none;
  flex-direction: column;
  gap: 40px;
  left: 0;
  padding-bottom: 32px;
  position: absolute;
  right: 0;
  top: 130px;
  z-index: 10;
}
.MobileNavigation-panel::after {
  background: url(../../assets/images/hero-separator.svg) no-repeat center center;
  background-size: 3840px auto;
  content: "";
  height: 50px;
  left: 0;
  position: absolute;
  right: 0;
  top: 100%;
  z-index: -1;
}
.MobileNavigation-panel--opened {
  display: flex;
}
.MobileNavigation-panelLinks {
  padding-bottom: 20px;
  padding-right: 35px;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.MobileNavigation-panelItem {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  display: flex;
  font-size: 28px;
  font-weight: 700;
  justify-content: flex-end;
  line-height: 70px;
  text-align: right;
  text-decoration: none;
}
.MobileNavigation-panelItem:last-child {
  border-bottom: 0;
}
.MobileNavigation-panelItem:hover {
  color: #000;
}
.MobileNavigation-contact {
  align-items: center;
  display: flex;
  flex-direction: column;
}
.MobileNavigation-contactLabel {
  color: #000;
  font-size: 18px;
  font-weight: 600;
}
.MobileNavigation-contactValuesWrap {
  align-items: center;
  display: flex;
  gap: 35px;
  justify-content: center;
  margin-top: 5px;
}
.MobileNavigation-contactValue {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  text-decoration: none;
}
.MobileNavigation-contactValue:hover {
  color: #000;
}
.MobileNavigation-contactValue--socialLink {
  font-size: 24px;
}
.Header--mobileNarrow .MobileNavigation-logo {
  z-index: 11;
}
.Header--mobileNarrow .MobileNavigation-panel::before {
  background: #e72929;
  content: "";
  height: 30px;
  left: 0;
  position: absolute;
  right: 0;
  top: -30px;
  z-index: -1;
}
.ModalContainer {
  bottom: 0;
  display: none;
  left: 0;
  place-items: center;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 100;
}
.ModalContainer--visible {
  display: grid;
}
.ModalContainer-backdrop {
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  background: rgba(0, 0, 0, 0.5);
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
.Modal {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 1020px;
  max-height: 100%;
  padding: 10px;
  pointer-events: none;
  width: 100%;
}
.Modal > * {
  pointer-events: initial;
}
.Modal-close {
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  border: 0;
  color: #fff;
  cursor: pointer;
  display: grid;
  height: 32px;
  padding: 0px;
  place-items: center;
  width: 32px;
}
.Modal-close:hover {
  color: #d4000f;
  transition: all 0.25s, background 1ms;
}
.Modal-close:active {
  transform: scale(0.8);
}
.Modal-close::after {
  content: "\e907";
  font-family: 'kih-icons';
  font-size: 16px;
}
.Modal-content {
  background: #fff;
  display: grid;
  gap: 60px;
  grid-template-columns: 1fr;
  grid-auto-rows: min-content 1fr;
  max-height: calc(100vh - 42px - 32px - 10px);
  overflow: hidden auto;
  padding: 60px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .Modal-content {
    gap: 40px;
    padding: 40px 10px 10px;
  }
}
.Modal-head {
  align-self: center;
  font-size: 38px;
  font-weight: 700;
  line-height: 58px;
  text-align: center;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  .Modal-head {
    font-size: 32px;
    line-height: 44px;
  }
}
.Modal-body {
  width: 100%;
}
.Page {
  position: relative;
}
.PageHero {
  background: #e72929;
  color: #fff;
  display: flex;
  justify-content: center;
  padding: 70px 0 110px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .PageHero {
    padding: 30px 15px 70px;
  }
}
.PageHero-inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  max-width: 840px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .PageHero-inner {
    text-align: center;
  }
}
.PageHero-inner p {
  font-size: 14px;
  line-height: 24px;
  text-align: center;
}
.Perks {
  display: grid;
  gap: 80px;
  grid-template-columns: repeat(3, 1fr);
  margin: 50px 0;
  max-width: 1060px;
  width: 100%;
}
@media only screen and (max-width: 1280px) {
  .Perks {
    gap: 50px;
    padding: 0 10px;
  }
}
@media only screen and (max-width: 991px) {
  .Perks {
    gap: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .Perks {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 50px;
  }
}
.Perk {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: center;
}
.Perk-imageWrap {
  height: 64px;
  margin-bottom: 15px;
  width: 64px;
}
.Perk-image {
  height: 100%;
  object-fit: contain;
  width: 100%;
}
.Perk p {
  text-align: center;
}
@media only screen and (max-width: 991px) {
  .Perk p {
    font-size: 14px;
    line-height: 24px;
  }
}
.ProductsCategory {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 960px;
  padding: 25px 10px;
  width: 100%;
}
.ProductsCategory-list {
  display: flex;
  flex-wrap: wrap;
  gap: 42px 35px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .ProductsCategory-list {
    gap: 45px 12px;
    padding: 0 10px 25px;
  }
}
.ProductsCategory-item {
  background: #fff;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.1) 0 5px 5px;
  height: 158px;
  position: relative;
  width: 158px;
}
@media only screen and (max-width: 767px) {
  .ProductsCategory-item {
    aspect-ratio: 1;
    height: auto;
    width: calc(50% - 6px);
  }
}
.ProductsCategory-item:hover .ProductsGrid-itemLabel {
  color: #c30000;
  transition: none;
}
.ProductsCategory-itemImageWrap {
  height: 158px;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: -30px;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .ProductsCategory-itemImageWrap {
    height: calc((100vw - 20px - 12px) / 2);
  }
}
.ProductsCategory-itemImage {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.ProductsCategory-itemLabel {
  align-items: center;
  bottom: 5px;
  color: #000;
  display: flex;
  font-size: 16px;
  font-weight: 700;
  height: 57px;
  justify-content: center;
  line-height: 19px;
  left: 0;
  padding: 0 20px;
  position: absolute;
  right: 0;
  text-align: center;
  transition: all 0.25s;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .ProductsCategory-itemLabel {
    bottom: 0;
    font-size: 14px;
    height: 51px;
    line-height: 17px;
  }
}
.ProductsGrid {
  align-items: center;
  background: transparent url(../../assets/images/hero-separator.svg) no-repeat center top;
  background-size: 3840px auto;
  display: flex;
  flex-direction: column;
  gap: 55px;
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .ProductsGrid {
    background-position-y: calc(100% - 100px);
    position: relative;
  }
  .ProductsGrid::before {
    background: #e72929;
    bottom: 250px;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
  }
}
@media only screen and (max-width: 767px) {
  .ProductsGrid {
    background-position-y: calc(100% - 60px);
  }
  .ProductsGrid::before {
    bottom: 190px;
  }
}
.ProductsGrid--large {
  background-position-y: 120px;
  position: relative;
}
.ProductsGrid--large::before {
  background: #e72929;
  bottom: calc(100% - 120px);
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
@media only screen and (max-width: 991px) {
  .ProductsGrid--large::before {
    bottom: 190px;
  }
}
@media only screen and (max-width: 767px) {
  .ProductsGrid--large {
    background-position-y: calc(100% - 60px);
  }
}
.ProductsGrid--large .ProductsGrid-inner {
  gap: 54px 38px;
}
@media only screen and (max-width: 991px) {
  .ProductsGrid--large .ProductsGrid-inner {
    gap: 45px 20px;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .ProductsGrid--large .ProductsGrid-inner {
    gap: 45px 12px;
    padding: 0 10px 60px;
  }
}
.ProductsGrid--large .ProductsGrid-item {
  height: 190px;
  width: 190px;
}
@media only screen and (max-width: 991px) {
  .ProductsGrid--large .ProductsGrid-item {
    height: calc((100vw - 60px - 20px) / 4);
    width: calc((100vw - 60px - 20px) / 4);
  }
}
@media only screen and (max-width: 767px) {
  .ProductsGrid--large .ProductsGrid-item {
    height: calc(50% - 6px);
    width: calc(50% - 6px);
  }
}
.ProductsGrid-heading {
  color: #fff;
  padding: 0 10px;
  text-align: center;
}
.ProductsGrid-inner {
  align-items: center;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  gap: 47px 35px;
  max-width: 940px;
  padding-bottom: 85px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .ProductsGrid-inner {
    gap: 45px 12px;
    padding: 0 10px 60px;
  }
}
.ProductsGrid-item {
  background: #fff;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.1) 0 5px 5px;
  height: 158px;
  position: relative;
  width: 158px;
}
@media only screen and (max-width: 767px) {
  .ProductsGrid-item {
    aspect-ratio: 1;
    height: auto;
    width: calc(50% - 6px);
  }
}
.ProductsGrid-item:hover .ProductsGrid-itemLabel {
  color: #c30000;
  transition: none;
}
.ProductsGrid-itemImageWrap {
  height: 158px;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: -30px;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .ProductsGrid-itemImageWrap {
    height: calc((100vw - 20px - 12px) / 2);
  }
}
.ProductsGrid-itemImage {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.ProductsGrid-itemLabel {
  align-items: center;
  bottom: 5px;
  color: #000;
  display: flex;
  font-size: 16px;
  font-weight: 700;
  height: 57px;
  justify-content: center;
  line-height: 19px;
  left: 0;
  padding: 0 20px;
  position: absolute;
  right: 0;
  text-align: center;
  transition: all 0.25s;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .ProductsGrid-itemLabel {
    bottom: 0;
    font-size: 14px;
    height: 51px;
    line-height: 17px;
  }
}
.ProductsUsers {
  padding: 100px 0;
  display: flex;
  justify-content: center;
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .ProductsUsers {
    align-items: center;
    flex-direction: column;
    gap: 40px;
    padding: 60px 15px;
  }
}
.ProductsUsers-inner {
  align-items: center;
  display: flex;
  gap: 80px;
  max-width: 940px;
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .ProductsUsers-inner {
    flex-direction: column;
    gap: 40px;
    max-width: 600px;
  }
}
.ProductsUsers-imageWrap {
  max-width: 280px;
  width: 100%;
  flex-shrink: 0;
}
@media only screen and (max-width: 991px) {
  .ProductsUsers-imageWrap {
    max-width: 450px;
  }
}
.ProductsUsers-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.ProductsUsers-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.ProductsUsers-content p {
  font-size: 14px;
  line-height: 24px;
}
.QualityControl {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: 60px 15px;
  width: 100%;
}
.QualityControl--full .QualityControl-inner {
  max-width: 1060px;
}
.QualityControl-inner {
  display: grid;
  gap: 30px 80px;
  grid-template-areas: "title title" "content licenses";
  grid-template-columns: 47% 1fr;
  max-width: 940px;
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .QualityControl-inner {
    gap: 25px;
    grid-template-areas: "licenses" "title" "content";
    grid-template-columns: 1fr;
    justify-content: center;
  }
}
.QualityControl-heading {
  grid-area: title;
}
@media only screen and (max-width: 991px) {
  .QualityControl-heading {
    max-width: 600px;
    justify-self: center;
    width: 100%;
  }
}
.QualityControl-content {
  grid-area: content;
}
@media only screen and (max-width: 991px) {
  .QualityControl-content {
    max-width: 600px;
    justify-self: center;
  }
}
.QualityControl-content p {
  font-size: 14px;
  line-height: 24px;
}
.QualityControl-licenses {
  display: flex;
  gap: 56px;
  grid-area: licenses;
  justify-content: flex-end;
}
@media only screen and (max-width: 991px) {
  .QualityControl-licenses {
    justify-content: center;
    padding: 0 20px 25px;
    gap: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .QualityControl-licenses {
    padding: 0 0 25px;
    justify-content: space-between;
  }
}
.QualityControl-license {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 147px;
}
@media only screen and (max-width: 767px) {
  .QualityControl-license {
    width: 116px;
  }
}
.QualityControl-licenseImageWrap {
  display: block;
  text-decoration: none;
}
.QualityControl-licenseImage {
  box-shadow: rgba(0, 0, 0, 0.1) 0 5px 5px;
  display: block;
  height: 208px;
  object-fit: contain;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .QualityControl-licenseImage {
    height: 164px;
  }
}
.QualityControl-licenseCaption {
  font-size: 14px;
  line-height: 19px;
  width: 100%;
}
.SingleTextAndImage {
  padding: 65px 10px;
  max-width: 960px;
  width: 100%;
}
.SingleTextAndImage-inner {
  display: grid;
  gap: 50px;
  grid-template-areas: "image content";
  grid-template-columns: 260px 1fr;
}
@media only screen and (max-width: 991px) {
  .SingleTextAndImage-inner {
    gap: 30px;
    grid-template-columns: 200px 1fr;
  }
}
@media only screen and (max-width: 767px) {
  .SingleTextAndImage-inner {
    grid-template-areas: "image" "content";
    grid-template-columns: 1fr;
  }
}
.SingleTextAndImage-inner--reverse {
  grid-template-areas: "content image";
  grid-template-columns: 1fr 260px;
}
@media only screen and (max-width: 991px) {
  .SingleTextAndImage-inner--reverse {
    gap: 30px;
    grid-template-columns: 1fr 200px;
  }
}
@media only screen and (max-width: 767px) {
  .SingleTextAndImage-inner--reverse {
    grid-template-areas: "image" "content";
    grid-template-columns: 1fr;
  }
}
.SingleTextAndImage-inner--reverse .SingleTextAndImage-content {
  align-items: flex-end;
  text-align: right;
}
.SingleTextAndImage-imageWrap {
  grid-area: image;
  width: 100%;
}
.SingleTextAndImage-image {
  width: 100%;
}
.SingleTextAndImage-content {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 15px;
  grid-area: content;
}
.SingleTextAndImage-content .Heading {
  max-width: 450px;
}
.SingleTextAndImage-content p {
  font-size: 14px;
  line-height: 24px;
}
.TextileProductPage {
  align-items: flex-start;
  flex-direction: column;
  display: flex;
  max-width: 1060px;
  padding-top: 50px;
  padding-left: 20px;
  padding-right: 20px;
  padding: 50px 20px 0;
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .TextileProductPage {
    padding: 50px 10px 0;
  }
}
@media only screen and (max-width: 767px) {
  .TextileProductPage {
    padding: 0;
  }
}
.TextileProductPage p {
  font-size: 14px;
  line-height: 24px;
}
.TextileProductPage .Breadcrumbs {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}
@media only screen and (max-width: 1280px) {
  .TextileProductPage .Breadcrumbs {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.TextileProductPage-grid {
  display: grid;
  gap: 40px 60px;
  grid-template-areas: "gallery main" "table main" "table features" "table highlights";
  grid-template-columns: 1fr 340px;
  width: 100%;
}
@media only screen and (max-width: 1280px) {
  .TextileProductPage-grid {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .TextileProductPage-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "main" "gallery" "table" "features" "highlights";
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .TextileProductPage-grid {
    padding-top: 15px;
  }
}
.TextileProductPage-main {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 10px;
  grid-area: main;
}
@media only screen and (max-width: 767px) {
  .TextileProductPage-main {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.TextileProductPage-main p {
  margin: 5px 0 30px;
}
.TextileProductPage-buttonsWrap {
  align-items: flex;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}
.TextileProductPage-gallery {
  display: flex;
  flex-direction: column;
  gap: 10px;
  grid-area: gallery;
}
@media only screen and (max-width: 767px) {
  .TextileProductPage-gallery {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.TextileProductPage-galleryText {
  color: #808080;
  padding-left: 20px;
  font-size: 14px;
  line-height: 24px;
}
.TextileProductPage-galleryWrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 17px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .TextileProductPage-galleryWrap {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 1fr;
  }
}
.TextileProductPage-galleryItem {
  aspect-ratio: 1;
  border: 1px solid #e6e6e6;
  border-radius: 5px;
  box-sizing: content-box;
  display: grid;
  height: 0;
  overflow: hidden;
  padding-bottom: 100%;
  place-items: center;
  position: relative;
  text-decoration: none;
  transition: all 0.25s;
  width: 100%;
}
.TextileProductPage-galleryItem:hover {
  border-color: #d4000f;
  transition: none;
}
.TextileProductPage-galleryItem img {
  display: block;
  object-fit: contain;
  position: absolute;
  max-height: 100%;
  max-width: 100%;
}
.TextileProductPage-tableAndBlueprint {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 50px;
  grid-area: table;
  width: 100%;
}
.TextileProductPage-tableOuterWrap {
  position: relative;
  max-width: 100vw;
  width: 100%;
}
.TextileProductPage-tableWrap {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .TextileProductPage-tableWrap {
    display: flex;
    overflow: auto hidden;
  }
  .TextileProductPage-tableWrap::before,
  .TextileProductPage-tableWrap::after {
    content: "";
    width: 10px;
    flex-shrink: 0;
  }
}
@media only screen and (max-width: 767px) {
  .TextileProductPage-tableScrollShade {
    bottom: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    transition: all 0.25s;
    user-select: none;
    width: 30px;
  }
  .TextileProductPage-tableScrollShade--left {
    background: transparent linear-gradient(90deg, #fff, rgba(255, 255, 255, 0));
    left: 0;
  }
  .TextileProductPage-tableScrollShade--right {
    background: transparent linear-gradient(270deg, #fff, rgba(255, 255, 255, 0));
    right: 0;
  }
  .TextileProductPage-tableScrollShade--visible {
    opacity: 1;
  }
}
.TextileProductPage-table {
  border-collapse: collapse;
  flex-shrink: 0;
  min-width: 100%;
}
.TextileProductPage-table tr {
  border-bottom: 1px solid #e6e6e6;
}
.TextileProductPage-table tr:last-child:not(:first-child) {
  border-bottom: 0;
}
.TextileProductPage-table th,
.TextileProductPage-table td {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  padding: 10px 20px;
  text-align: center;
}
.TextileProductPage-table th {
  color: #808080;
  white-space: nowrap;
}
.TextileProductPage-table td {
  text-align: center;
}
.TextileProductPage-table td span {
  color: #d4000f;
}
.TextileProductPage-blueprintWrap {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .TextileProductPage-blueprintWrap {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.TextileProductPage-blueprintText {
  color: #808080;
  padding-left: 20px;
  font-size: 14px;
  line-height: 24px;
}
.TextileProductPage-blueprints {
  display: flex;
  align-items: center;
  border: 1px solid #e6e6e6;
  border-radius: 5px;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  padding: 50px;
  text-decoration: none;
  width: 100%;
}
@media only screen and (max-width: 1280px) {
  .TextileProductPage-blueprints {
    gap: 30px;
    padding: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .TextileProductPage-blueprints {
    gap: 20px;
    padding: 20px;
  }
}
.TextileProductPage-blueprint {
  display: grid;
  flex: 0 0 auto;
  transition: all 0.25s;
}
.TextileProductPage-blueprint:hover {
  opacity: 0.8;
  transition: none;
}
.TextileProductPage-blueprint img {
  max-width: 100%;
  max-height: 100%;
  min-height: 100px;
}
.TextileProductPage-features {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 25px;
  grid-area: features;
  padding-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .TextileProductPage-features {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.TextileProductPage-highlights {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 50px;
  grid-area: highlights;
}
@media only screen and (max-width: 991px) {
  .TextileProductPage-highlights {
    flex-direction: row;
  }
}
@media only screen and (max-width: 767px) {
  .TextileProductPage-highlights {
    flex-direction: column;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.TextileProductPage .ImageAndText-imageWrap {
  height: auto;
  margin-bottom: 0;
}
.TopBar {
    align-items: center;
    background: #000;
    color: #fff;
    display: grid;
    grid-template-areas: ". inner massag";
    grid-template-columns: 0fr 1fr 0fr;
    height: 37px;
    width: 100%;
}
@media only screen and (max-width: 991px) {
  .TopBar {
    grid-template-areas: "inner";
    grid-template-columns: 1fr;
  }
}
.TopBar-inner {
    align-items: center;
    grid-area: inner;
    grid-template-columns: 0fr 0.06fr 1fr;
    display: grid;
    gap: 10px;
    justify-content: space-between;
    justify-self: center;
    /* max-width: 900px; */
    padding: 0 30px;
    width: 100%;
}
@media only screen and (max-width: 767px) {

  .TopBar-inner {
    gap: 10px;
    grid-template-columns: 40px 1fr 75px;
    grid-template-areas: "languages text socials";
    height: 100%;
  }
}
.TopBar-text {
  font-size: 14px;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .TopBar-text {
    font-size: 13px;
    grid-area: text;
  }
}
.TopBar-languages {
    align-items: center;
    display: flex;
    font-size: 15px;
    justify-content: flex-start;
}
@media only screen and (max-width: 767px) {
  .TopBar-languages--desktop {
    display: none;
  }
}
.TopBar-languages--mobile {
  display: none;
}
@media only screen and (max-width: 767px) {
  .TopBar-languages--mobile {
    display: flex;
    grid-area: languages;
    height: 100%;
    position: relative;
  }
}
@media only screen and (max-width: 767px) {
  .TopBar-languages--opened .TopBar-languagesCurrentWrap::after {
    content: "\e904";
  }
  .TopBar-languages--opened .TopBar-languagesOptionsWrap {
    margin-top: 0;
    opacity: 1;
    pointer-events: initial;
    visibility: visible;
  }
     .TopBar-socialLink--search {
        display: none !important;
    }
}
.TopBar-languagesCurrentWrap {
  align-items: center;
  display: flex;
  gap: 5px;
  justify-content: center;
}
.TopBar-languagesCurrentWrap::after {
  content: "\e900";
  font-family: 'kih-icons';
  display: block;
  font-size: 12px;
  color: #fff;
}
.TopBar-languagesOptionsWrap {
    background: #000;
    box-shadow: rgba(0, 0, 0, 0.2) 0 4px 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;       
    left: -5px;
    margin-top: -10px;
    opacity: 0;
    padding: 8px 12px;  
    pointer-events: none;
    position: absolute;
    top: calc(100% + 5px);
    user-select: none;
    visibility: hidden;
    transition: all 0.25s;
    width: auto;     
    min-width: 50px; 
    z-index: 10;
}
.TopBar-languagesOptionsWrap .TopBar-language {
    align-items: center;
    border-radius: 8px;
    color: #fff;
    display: flex;
    font-size: 13px;
    font-weight: 600;
    height: auto;
    text-decoration: none;
    text-indent: 0;   
    width: auto;      
    padding: 4px 8px;
}
.TopBar-languagesOptionsWrap .TopBar-language:hover {
  color: #c30000;
  transform: none;
}
.TopBar-language {
  background: none !important;
  background-size: cover;
  border-radius: 8px;
  display: block;
  font-size: 15px;
  height: auto;  
  width: auto;    
  transition: all 0.25s;
  user-select: none;
  color: #fff;
  text-decoration: none;
}
.TopBar-language:hover {
  transform: scale(1.1);
}

.TopBar-langSep {
    color: #5f5e5e;
    font-size: 13px;
    font-weight: 400;
    padding: 0 4px;
}
.TopBar-language--cz,
.TopBar-language--en {
    background-image: none;
}
@media only screen and (max-width: 767px) {
  .TopBar-language:hover {
    transform: none;
  }
}
.TopBar-language:active {
  transform: scale(0.9);
}
@media only screen and (max-width: 767px) {
  .TopBar-language:active {
    transform: none;
  }
}
.TopBar-language--cz {
  background-image: url(../../assets/images/flags/cz.svg);
}
.TopBar-language--en {
  background-image: url(../../assets/images/flags/en.svg);
}
.TopBar-language--de {
  background-image: url(../../assets/images/flags/de.svg);
}
.TopBar-language--fr {
  background-image: url(../../assets/images/flags/fr.svg);
}
.TopBar-language--es {
  background-image: url(../../assets/images/flags/es.svg);
}
.TopBar-language--ru {
  background-image: url(../../assets/images/flags/ru.svg);
}
.TopBar-socialLinks {
    align-items: center;
    display: flex;
    gap: 15px;
    justify-content: center;
}
@media only screen and (max-width: 767px) {
  .TopBar-socialLinks {
    gap: 4px;
    grid-area: socials;
  }
}
.TopBar-socialLink {
  color: #fff;
  display: grid;
  font-size: 15px;
  height: 28px;
  place-items: center;
  text-decoration: none;
  transition: all 0.25s;
  width: 28px;
}
.TopBar-socialLink--search {
    border: 1px solid white;
    border-radius: 50%;
    padding: 5px;
}
@media only screen and (max-width: 767px) {
  .TopBar-socialLink {
    font-size: 14px;
    padding: 0 4px;
    width: auto;
  }
}
.TopBar-socialLink:hover {
  color: #d4000f;
  transition: none;
}
.TopBar-massagLinkWrap {
  align-items: center;
  display: flex;
  grid-area: massag;
  justify-content: flex-end;
  padding: 0 30px;
}
@media only screen and (max-width: 991px) {
  .TopBar-massagLinkWrap {
    display: none;
  }
}
.TopBar-massagLink {
  display: block;
  height: 30px;
  text-decoration: none;
}
.TopBar-massagLink img {
  height: 30px;
}
.TopProducts {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: 80px 0 100px;
  gap: 45px;
  width: 100%;
}
@media only screen and (max-width: 1280px) {
  .TopProducts {
    padding: 60px 0;
  }
}
@media only screen and (max-width: 991px) {
  .TopProducts {
    padding: 40px 0;
  }
}
.TopProducts .Heading {
  margin-bottom: 25px;
}
@media only screen and (max-width: 767px) {
  .TopProducts .Heading {
    margin-bottom: 15px;
  }
}
.TopProducts-gridWrap {
  background: #c30000;
  display: flex;
  justify-content: center;
  width: 100%;
}
.TopProducts-grid {
  align-items: stretch;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1920px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .TopProducts-grid {
    align-items: stretch;
    display: flex;
    flex-direction: column;
  }
}
.TopProducts-item {
  align-items: flex-end;
  aspect-ratio: 1;
  background: #f7f7f7 no-repeat center center;
  background-size: cover;
  display: flex;
  justify-content: center;
  padding-bottom: 38px;
  position: relative;
  text-decoration: none;
}
@media only screen and (max-width: 1280px) {
  .TopProducts-item {
    padding-bottom: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .TopProducts-item {
    width: 100%;
  }
}
.TopProducts-item::before {
  background: rgba(212, 0, 15, 0.8) url(../../assets/images/button-flat.svg) no-repeat center 25px;
  background-size: auto calc(100% - 140px);
  -webkit-backdrop-filter: blur(5px) saturate(0);
  backdrop-filter: blur(5px) saturate(0);
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  user-select: none;
  transition: all 0.25s;
  z-index: 1;
}
.TopProducts-item:nth-child(2)::before {
  background: rgba(212, 0, 15, 0.8) url(../../assets/images/naprstek.svg) no-repeat center 25px;
  background-size: auto calc(100% - 140px);
}
.TopProducts-item:nth-child(3)::before {
  background: rgba(212, 0, 15, 0.8) url(../../assets/images/spendlik.svg) no-repeat center 25px;
  background-size: auto calc(100% - 140px);
}
.TopProducts-item:hover .TopProducts-itemLabel {
  background: transparent;
}
.TopProducts-item:hover::before {
  opacity: 1;
}
.TopProducts-item--buttons {
  background-image: url(../../assets/images/top-products/buttons.webp);
}
.TopProducts-item--thimbles {
  background-image: url(../../assets/images/top-products/thimbles.webp);
}
.TopProducts-item--safetyPins {
  background-image: url(../../assets/images/top-products/safety-pins.webp);
}
.TopProducts-itemLabel {
  align-items: center;
  background: rgba(212, 0, 15, 0.8);
  color: #fff;
  display: flex;
  font-size: 26px;
  font-weight: 600;
  height: 70px;
  justify-content: center;
  max-width: 320px;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.25s;
  width: 100%;
  z-index: 2;
}
@media only screen and (max-width: 1280px) {
  .TopProducts-itemLabel {
    font-size: 18px;
    height: 46px;
    max-width: 240px;
  }
}
@media only screen and (max-width: 767px) {
  .TopProducts-itemLabel {
    font-size: 16px;
    height: 42px;
    max-width: 200px;
  }
}



/** CUSTOM EABM **/
@media only screen and (max-width: 767px) {
  .ea-item-103 {display: none}
}