html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*,
*::after,
*::before {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
figure,
figcaption,
dl,
dd,
ul {
  margin: 0;
}

img {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

.mm-slideout { 
    z-index: 0; 
}
.mm-menu_offcanvas {
    z-index: 9;
}

body {
  font-family: "Red Hat Display", sans-serif;
  font-size: 14px;
  line-height: 21px;
  font-weight: 500;
  color: #000000;
}

.w-cookie-actions button[name="accept"] {
  background-color: #eee;
  color: initial;
  border: none;
}
.w-cookie-actions-wrapper .w-cookie-toggle {
  background: none;
  border: none;
  color: initial;
  outline: none;
}

.topBar{
    text-align: center;
    background: #FE710B;
    padding: 5px 0;
    margin-bottom: 10px;
}

.topBar p{
  color: #fff;
}

#page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 100vh;
}

.main {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.container {
  max-width: min(1400px, 100% - 30px);
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(100%);
          clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.main-headline {
  text-align: center;
  font-size: 24px;
  line-height: 40px;
  font-weight: 700;
}

.button-icon>.fa {
  display: none !important;
}
.button-icon {
  padding-left: 1em !important;
}
.button,
.button.small,
.main-button,
.main-button:visited {
  display: inline-block;
  text-decoration: none;
  font-weight: 500!important;
  padding: 5px 25px;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  height: auto;
  line-height: 1.5;
}
.main-button,
.main-button:visited {
  background-color: #58B383;
  color: #FFFFFF;
}
.main-button:hover,
.main-button:visited:hover {
  background-color: #E8E8E8;
  color: #000;
}

.cards + .blog {
  padding-top: 0;
}

.menu__item {
  position: relative;
}

.menu .menu.submenu {
  display: block;
  position: absolute;
  z-index: 1;
  padding: 10px;
  top: 100%;
  left: 0;
  background-color: #FFFFFF;
  color: #000000;
  min-width: 200px;
  -webkit-transform: translateY(-20px);
      -ms-transform: translateY(-20px);
          transform: translateY(-20px);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.menu .menu.submenu .menu__item-link {
  display: block;
}
.menu .menu.submenu .menu__item-link:hover {
  color: #EA2A27;
}

.menu__item:hover > .submenu {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  pointer-events: all;
}

.dropdown {
  position: relative;
}
.dropdown__list {
  position: absolute;
  z-index: 1;
  top: 100%;
  left: 0;
  width: 200px;
  background-color: #FFF;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);

  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;

  transition: all .3s ease;
  list-style: none;
  padding: 0;
}
a.dropdown__list-link {
  display: block;
  padding: 10px;
  color: #000;
  transition: all .3s;
  cursor: pointer;
}
.dropdown__list-link:hover {
  color: #EA2A27;
}
.dropdown:hover > .dropdown__list {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

header.header {
  position: sticky;
  z-index: 999;
  top: 0;
  left: 0;
  background-color: #FFFFFF;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0);
}
.header__top-inner, .header__center-inner, .header__bottom-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header__top-inner .menu, .header__center-inner .menu, .header__bottom-inner .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header__top-inner {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__phone {
  display: inline-block;
  padding: 4px 15px 0;
  background-color: #EA2A27;
  border-radius: 0 0 5px 5px;
  -ms-flex-item-align: start;
      -ms-grid-row-align: start;
      align-self: start;
  font-size: 13px;
  line-height: 25px;
  font-weight: 700;
  color: #FFFFFF;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header__phone:hover {
  background-color: #191919;
  color: #FFF;
}
.header__phone + .languages {
  margin-left: 13px;
}
.header .languages + .header__icons-menu {
  margin-left: 203px;
}
.header__top-inner .languages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header__top-inner .languages__item + .languages__item {
  margin-left: 8px;
}
.header__top-inner .languages__item-link {
  display: block;
  border-radius: 50%;
  overflow: hidden;
}
.header__top-inner .languages__item-icon {
  width: 20px;
  height: 20px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.header__icons-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: end;
      -ms-grid-row-align: end;
      align-self: end;
  padding-top: 7px;
  margin: 0;
}
.header__icons-menu-item-icon {
  height: 25px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header__icons-menu-item + .header__icons-menu-item {
  margin-left: 14px;
}
.header__icons-menu-item--cart .header__icons-menu-item-link {
  position: relative;
}
.header__icons-menu-item--cart .header__icons-menu-item-link .cart__number {
    position: absolute;
    bottom: -4px;
    right: -4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 15px;
    height: 15px;
    font-size: 10px;
    line-height: 10px;
    color: #fff;
    background-color: #ea2a27;
    border-radius: 50%;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    font-weight: bold;
}
.header__center-inner {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  padding-bottom: 15px;
}
.header__center-inner .logo {
  max-width: 280px;
  margin: -8px 0 0;
}
.header__center-inner .search__form {
  margin-left: 55px;
  max-width: 300px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header__center-inner .search__form-input, .header__center-inner .search__form-button {
  height: 40px;
  border: 1px solid #E0E0E0;
}
.header__center-inner .search__form-input {
  width: 100%;
  padding: 0 15px;
  border-right: none;
  font-size: 13px;
  line-height: 25px;
}
.header__center-inner .search__form-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  border-left: none;
  background-color: transparent;
  cursor: pointer;
}
.header__center-inner .search__form-button-icon {
  width: 17px;
  height: 17px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  stroke: #000000;
}
.header__center-inner .search__form-button:hover .search__form-button-icon, .header__center-inner .search__form-button:focus .search__form-button-icon {
  stroke: #EA2A27;
}
.header__center-inner .search__form-input, .header__center-inner .search__form-button {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  outline: none;
}
.header__center-inner .search__form-input:focus {
  border-color: #EA2A27;
}
.header__center-inner .search__form-input:focus + .search__form-button {
  border-color: #EA2A27;
}
.header__center-inner > .menu {
  margin-left: 175px;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  font-size: 13px;
  line-height: 25px;
  font-weight: 500;
}
.header__center-inner > .menu > .menu__item + .menu__item {
  margin-left: 35px;
}
.header__center-inner .menu__item-link {
  color: inherit;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header__center-inner .menu__item--important .menu__item-link {
  font-weight: 700;
}
.header__center-inner .menu__item-link:hover {
  color: #EA2A27;
}
.header__bottom {
  background-color: #E8E8E8;
  line-height: 25px;
  font-weight: 700;
  color: #191919;
}
.header__bottom .menu {
  position: relative;
  flex-wrap: wrap;
}
.header__bottom .menu__item {
  position: static;
}
.header__bottom .menu__item-link {
  display: inline-block;
  padding: 10px 8px;
  color: inherit;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
}
.header__bottom .menu__item-link:hover {
  border-color: #EA2A27;
}
.header__bottom .menu .menu.submenu {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[5];
  grid-template-columns: repeat(5, 1fr);
}
.header__bottom .menu .menu.submenu .menu__item-link {
  position: relative;
}
.header__bottom .menu .menu.submenu .menu__item-link::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #EA2A27;
  transition: all .3s ease;
}
.header__bottom .menu .menu.submenu .menu__item-link:hover {
  background-color: transparent;
  color: inherit;
}
.header__bottom .menu .menu.submenu .menu__item-link:hover::after {
  width: 100%;
}
.header__icons-menu-item--mobile-menu {
  display: none;
}
.header__icons-menu-item--mobile-menu .header__icons-menu-item-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 25px;
  width: 25px;
  padding: 5px;
}
.header__icons-menu-item--mobile-menu .header__icons-menu-item-link .line {
  width: 100%;
  height: 1px;
  background-color: #000000;
}
.header__icons-menu-item--search {
  display: none;
}
.header__icons-menu-item--search .header__icons-menu-item-link {
  border: none;
  background-color: transparent;
  padding: 0;
  cursor: pointer;
}
.header__icons-menu-item--search .header__icons-menu-item-icon {
  width: 25px;
  height: 25px;
  stroke: #000000;
}
.header.header--scrolled {
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1440px) {
  .header__bottom-inner .menu {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .header__bottom-inner .menu__item-link {
    padding: 10px 5px;
  }
}
@media (max-width: 1320px) {
  .header__center {
    margin-top: 15px;
  }
  .header__bottom-inner {
    font-weight: 400;
  }
}
@media (max-width: 1230px) {
  .header__center-inner {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .header__center-inner .menu {
    margin-left: 30px;
  }
}
@media (max-width: 950px) {
  .header__center-inner .menu__item + .menu__item {
    margin-left: 15px;
  }
}
@media (max-width: 850px) {
  .header__center-inner .logo {
    max-width: 200px;
  }
}
@media (max-width: 768px) {
  .header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 20px 15px 0;
  }
  .header__top .container {
    max-width: initial;
  }
  .header__phone {
    /* display: none; */
    position: absolute;
    top: 0;
    right: 80px;
  }
  .header .languages {
    position: absolute;
    top: 10px;
    right: 15px;
    margin: 0;
  }
  .header .languages + .header__icons-menu {
    margin-left: 15px;
  }
  .header__center-inner .search__form {
    position: absolute;
    z-index: -1;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    max-width: initial;
    margin-left: 0;
    background-color: #FFFFFF;
    border-color: #EA2A27;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
            transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
  }
  .header__center-inner .search__form.search--active {
    opacity: 1;
    pointer-events: all;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }
  .header__center-inner .menu {
    display: none;
  }
  .header__icons-menu-item--search {
    display: block;
  }
  .header__bottom {
    display: none;
  }
  .header__icons-menu-item--mobile-menu {
    display: block;
  }
}
@media (max-width: 600px) {
  .header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .header__center {
    width: 100%;
    padding-top: 15px;
  }
  .header__center .container {
    max-width: initial;
  }
  .header__center-inner {
    padding-bottom: 0;
  }
  .header__center-inner .logo {
    max-width: initial;
    width: 100%;
  }
  .header__top-inner {
    padding: 10px 0;
  }
}
.footer__top {
  background-color: #191919;
  background-image: url("../images/bg.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.footer__top-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 50px 0;
  color: #FFFFFF;
}
.footer__top-inner a {
  display: block;
  color: inherit;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.footer__top-inner a:hover {
  color: #EA2A27;
}
.footer__top-inner .menu {
  padding-left: 15px;
  list-style: disc;
}
.footer__top-inner .social__item-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #FFFFFF;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.footer__top-inner .social__item-link:hover {
  background-color: #EA2A27;
}
.footer__top-inner .social__item-link svg {
  width: 23px;
  height: 23px;
}
.footer__top-inner .social__item-link i {
  color: #000;
}
.footer__top-inner .social__item + .social__item {
  margin-top: 10px;
}
.footer__bottom {
  background-color: #EA2A27;
  font-size: 12px;
  line-height: 14px;
  color: #FFFFFF;
  text-align: center;
}
.footer__bottom-inner {
  padding: 28px 0 22px;
}
.footer__column-headline {
  font-size: 15px;
  line-height: 18px;
  font-weight: 700;
  color: #EA2A27;
  margin-bottom: 30px;
}
.footer__contact-info {
  font-style: normal;
}
.footer__contact-info p + p {
  margin-top: 28px;
}
.footer__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  width: 100%;
  margin-top: 24px;
}
.footer__logos img {
  margin: 0;
}
.footer__logos img + img {
  margin-left: 30px;
}

@media (max-width: 1000px) {
  .footer__top-inner {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 40px 20px;
    text-align: center;
  }
  .footer__top-inner .menu {
    padding-left: 0;
    list-style: none;
  }
  .footer__top-inner .social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .footer__top-inner .social__item + .social__item {
    margin-left: 20px;
    margin-top: 0;
  }
  .footer__top-inner img {
    margin: 30px auto 0;
  }
}
@media (max-width: 768px) {
  .footer__top-inner {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .footer__top-inner {
    display: block;
  }
  .footer__column + .footer__column {
    margin-top: 40px;
  }
}
.article {
  padding: 50px 0;
  background-color: #E8E8E8;
  text-align: center;
}
.article__headline {
  font-size: 19px;
  line-height: 24px;
  color: #EA2A27;
  font-weight: 700;
  margin-bottom: 30px;
}
.article__content {
  max-width: 940px;
  margin: 0 auto;
}
.article__content p + p {
  margin-top: 24px;
}

.main-slider {
  max-width: 1400px;
  margin: 0 auto;
}
.main-slider__slide {
  min-height: 500px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 100%;
  color: #000!important;
  text-decoration: none;
  text-align: left;
}
.main-slider__slide:hover h3{
  color: #000!important;
}

.main-slider__slide-image {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  /* filter: grayscale(1); */
  object-fit: cover;
  object-position: right 35% top 0;
}
.main-slider__slide-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 15px 15px 15px 35px;
  font-size: 29px;
  line-height: 35px;
  color: #000000!important;
  font-weight: 800;
}
.main-slider__slide-headline {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin-top: 40px!important;
}

@media(max-width:479px){
  .main-slider__slide-headline{
    font-size: 24px;
  }
  .main-slider__slide-text{
    padding-left: 15px;
  }
}

.main-slider__slide-text b {
  color: #EA2A27;
  display: inline-block;
}

.usp {
  padding: 25px 0 30px;
}
.usp__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.usp__item + .usp__item {
  margin-left: 100px;
}
.usp__item {
  text-align: center;
}
.usp__item-headline {
  font-size: 13px;
  line-height: 16px;
  font-weight: 700;
}
.usp__item-text {
  font-size: 12px;
  line-height: 16px;
  color: #EA2A27;
  font-weight: 700;
}
.usp__item-text a {
  color: #EA2A27;
}
.usp__item-image-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background-color: #EA2A27;
  margin: 0 auto 12px;
}
.usp__item-image {
  width: 38px;
  height: 38px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center center;
     object-position: center center;
}

@media(min-width:960px){
  .main-slider__slide-text {
    font-size: 42px;
    line-height: 46px;
  }
}

@media (max-width: 1200px) {
  .usp__list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .usp__item {
    padding: 20px;
  }
  .usp__item + .usp__item {
    margin-left: 0;
  }
}

@media (max-width: 600px) {
  .usp__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px 10px;
  }
  .usp__item {
    padding: 0px;
  }
}

.cards {
  padding: 35px 0;
}
.cards__headline {
  margin-bottom: 40px;
}
.cards__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 48px;
  max-width: 1270px;
  margin: 0 auto;
}
.cards__card,
.cards__card-link {
  display: flex;
  flex-direction: column;
}
.cards__card-link {
  height: 100%;
}
.cards__card-image {
  width: 100%;
  height: 260px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 13px 13px 0 0;
}
.cards__card-content {
  padding: 20px;
  background-color: #E8E8E8;
  border-radius: 0 0 13px 13px;

  display: flex;
  flex-direction: column;
  flex-grow: 1;
  align-items: flex-start;
}
.cards__card-headline {
  font-size: 15px;
  line-height: 17px;
  font-weight: 700;
  margin-bottom: 12px;
}
.cards__card-text {
  margin-bottom: 18px;
  font-size: 13px;
  line-height: 20px;
}
.cards__card-button {
  margin-top: auto;
}
.cards.cards--4-columns .cards__inner {
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 48px 20px;
}

@media (max-width: 1100px) {
  .cards__inner {
    grid-gap: 15px;
  }
  .cards.cards--4-columns .cards__inner {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .cards__inner {
    display: block;
  }
  .cards__card + .cards__card {
    margin-top: 30px;
  }
  .cards__card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .cards__card-image, .cards__card-content {
    width: 50%;
  }
  .cards__card-image {
    border-radius: 13px 0 0 13px;
  }
  .cards__card-content {
    border-radius: 0 13px 13px 0;
  }
    .cards.cards--4-columns .cards__inner {
      display: -ms-grid;
      display: grid;
      -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(2, 1fr);
  }
  .cards.cards--4-columns .cards__card {
    display: block;
  }
  .cards.cards--4-columns .cards__card-image,
  .cards.cards--4-columns .cards__card-content {
    width: 100%;
  }
  .cards.cards--4-columns .cards__card + .cards__card {
    margin-top: 0;
  }
  .cards.cards--4-columns .cards__card-content {
    border-radius: 0 0 13px 13px;
  }
}
@media (max-width: 600px) {
  .cards__card {
    display: block;
  }
  .cards__card-image, .cards__card-content {
    width: 100%;
  }
  .cards__card-image {
    border-radius: 13px 13px 0 0;
    height: 200px;
  }
  .cards__card-content {
    border-radius: 0 0 13px 13px;
  }
}
.blog {
  padding: 35px 0;
}
.blog__headline {
  margin-bottom: 40px;
}
.blog__list {
  max-width: 1270px;
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 48px;
  text-align: center;
}
.blog__article-image {
  width: 100%;
  height: 255px;
  border-radius: 15px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 29px;
}
.blog__article-info {
  display: inline-block;
  padding: 5px 10px;
  font-size: 11px;
  line-height: 11px;
  color: #EA2A27;
  font-weight: 900;
  border: 1px solid #EA2A27;
  margin-bottom: 20px;
}
.blog__article-headline {
  max-width: 220px;
  margin: 0 auto 20px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
}
.blog__article-text {
  max-width: 330px;
  margin: 0 auto 15px;
  /* min-height: 84px; */
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 1100px) {
  .blog__list {
    grid-gap: 15px;
  }
}
@media (max-width: 768px) {
  .blog__list {
    display: block;
  }
  .blog__article + .blog__article {
    margin-top: 30px;
  }
  .blog__article {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .blog__article-content, .blog__article-image {
    width: 50%;
  }
}
@media (max-width: 600px) {
  .blog__article {
    display: block;
  }
  .blog__article-content, .blog__article-image {
    width: 100%;
  }
  .blog__article-image {
    height: 200px;
  }
}
.about {
  background-image: url("../images/about/bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
  background-color: #E8E8E8;
}
.about__inner {
  max-width: 1250px;
  margin: 0 auto;
}
.about__top, .about__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.about__top {
  padding-top: 70px;
  justify-content: center;
  max-width: 880px;
  margin: 0 auto;
}
.about__top-right {
  margin-left: 100px;
  width: 260px;
  min-width: 260px;
}
.about__small-quote {
  display: block;
  background-color: #D0D0D0;
  padding: 23px 18px;
  border-radius: 12px;
  font-size: 15px;
  line-height: 20px;
  position: relative;
  margin: 0;
}
.about__small-quote::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background-color: #D0D0D0;
  top: 100%;
  right: 46px;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%);
          clip-path: polygon(0% 0%, 100% 0%, 100% 100%);
}
.about__small-quote:nth-child(even) {
  background-color: #DDDBDB;
}
.about__small-quote:nth-child(even)::after {
  background-color: #DDDBDB;
  right: auto;
  left: 46px;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 0% 100%);
          clip-path: polygon(0% 0%, 100% 0%, 0% 100%);
}
.about__small-quote + .about__small-quote {
  margin-top: 50px;
}
.about__small-quote-author {
  font-size: 11px;
  line-height: 14px;
  margin-top: 10px;
}
.about__top-left {
  font-size: 20px;
  line-height: 29px;
}
.about__top-left a:not(.main-button) {
  color: #EA2A27;
  text-decoration: none;
}
.about__top-left p {
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
}
.about__image-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 45px;
  font-size: 15px;
  line-height: 20px;
}
.about__image {
  -o-object-fit: contain;
     object-fit: contain;
     margin: 0;
}
.about__content {
  margin-left: 65px;
}
.about__content h1, .about__content h2, .about__content h3, .about__content h4, .about__content h5, .about__content h6 {
  font-size: 21px;
  line-height: 30px;
  font-weight: 700;
  margin-bottom: 25px;
}
.about__content ul li + li {
  margin-top: 15px;
}
.about__content ul {
  margin-top: 15px;
  list-style: none;
  padding: 0;
}
.about__content ul li {
  position: relative;
  padding-left: 25px;
}
.about__content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 17px;
  height: 13px;
  background-image: url("../images/icons/checkmark.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
}
.about__content .main-button {
  margin-top: 20px;
}
.about__bottom {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 25px auto 0;
  max-width: 880px;
}
.about__quote {
  padding: 30px 40px;
  border-radius: 12px;
  background-color: rgba(234, 42, 39, 0.8);
  color: #FFFFFF;
  max-width: 885px;
  margin-bottom: 45px;
  position: relative;
}
.about__quote h1, .about__quote h2, .about__quote h3, .about__quote h4, .about__quote h5, .about__quote h6 {
  font-size: 18px;
  line-height: 20px;
  font-weight: 700;
}
.about__quote > * + * {
  margin-top: 15px;
}
.about__quote::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 70px;
  width: 30px;
  height: 30px;
  background-color: rgba(234, 42, 39, 0.8);
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 0% 100%);
          clip-path: polygon(0% 0%, 100% 0%, 0% 100%);
}
.about__quote-image {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center bottom;
     object-position: center bottom;
     margin-left: 75px;
}

.price,
.panel-warning .h5 {
  font-weight: 700;
  color: #000;
}

.product-itemNumber.selected-itemNumber{
    margin-bottom: 20px;
    display: block;
}

.product-priceLines{
  order: 3;
}

.product-transaction .button-primary{
  width: 100%;
}

@media (max-width: 1250px) {
  .about__top-right {
    margin-left: 30px;
  }
  .about__image, .about__content {
    width: 50%;
  }
}
@media (max-width: 1000px) {
  .about__top {
    display: block;
  }
  .about__top-right {
    margin: 30px 0 0;
    width: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .about__small-quote {
    width: 30%;
  }
  .about__small-quote + .about__small-quote {
    margin-left: 20px;
    margin-top: 0;
  }
  .about__content {
    margin-left: 30px;
  }
  .about__quote {
    margin-left: 0;
  }
  .about__quote::after {
    top: 50%;
  }
}
@media (max-width: 768px) {
  .about__image-section {
    display: block;
  }
  .about__content {
    margin-left: 0;
    margin-top: 30px;
  }
  .about__content, .about__image {
    width: auto;
  }
  .about__image {
    margin: 0 auto;
  }
  .about__bottom {
    display: block;
  }
  .about__quote {
    margin-right: 0;
  }
  .about__quote::after {
    top: 100%;
    left: 70%;
  }
  .about__quote-image {
    margin: 30px auto 0;
  }
}
@media (max-width: 600px) {
  .about__top-right {
    display: block;
  }
  .about__small-quote {
    width: 100%;
  }
  .about__small-quote + .about__small-quote {
    margin-left: 0;
    margin-top: 15px;
  }
}

/* Main Content */
.main-content {
  padding: 35px 0;
}
.main-content__headline {
  text-align: left;
}
.main-content__text {
  font-size: 16px;
  line-height: 24px;
}
.main-content__text img,
.main-content__text table {
  margin: 16px 0;
}
.main-content__text table td {
  padding: 5px;
}
.main-content__text table tr:nth-child(even) {
  background-color: #EEEEEE;
}
.main-content__text p + p {
  margin-top: 24px;
}

.m-productlist-variants {
  margin-bottom: 1em;
}