@charset "UTF-8";
/**
 * Import different sass files for the project
 * Reference: https://sass-guidelin.es/es/#arquitectura
 */
/**
 * Abstracts: files for handles function, mixins, and variables
 */
/**
 * Documentation: http://kenwheeler.github.io/slick/
 */
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/**
 * Documentation: https://github.com/sass-mq/sass-mq
 */
html {
  box-sizing: border-box;
  font-size: 16px;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

input,
select,
textarea {
  border: none;
}

/**
 * Base: files for animations, base, typography, and utilities
 */
.color-primary {
  color: white;
}

.color-primary-light {
  color: rgba(255, 255, 255, 0.7);
}

.color-primary-lighter {
  color: rgba(255, 255, 255, 0.5);
}

.color-primary-lightest {
  color: rgba(255, 255, 255, 0.3);
}

.color-secondary {
  color: black;
}

.color-secondary-light {
  color: rgba(0, 0, 0, 0.7);
}

.color-secondary-lighter {
  color: rgba(0, 0, 0, 0.5);
}

.color-secondary-lightest {
  color: rgba(0, 0, 0, 0.3);
}

.color-tertiary {
  color: red;
}

.color-tertiary-light {
  color: rgba(255, 0, 0, 0.7);
}

.color-tertiary-lighter {
  color: rgba(255, 0, 0, 0.5);
}

.color-tertiary-lightedt {
  color: rgba(255, 0, 0, 0.3);
}

.bg-color-primary {
  background-color: white;
}

.bg-color-primary-light {
  background-color: rgba(255, 255, 255, 0.7);
}

.bg-color-primary-lighter {
  background-color: rgba(255, 255, 255, 0.5);
}

.bg-color-primary-lightest {
  background-color: rgba(255, 255, 255, 0.3);
}

.bg-color-secondary {
  background-color: black;
}

.bg-color-secondary-light {
  background-color: rgba(0, 0, 0, 0.7);
}

.bg-color-secondary-lighter {
  background-color: rgba(0, 0, 0, 0.5);
}

.bg-color-secondary-lightest {
  background-color: rgba(0, 0, 0, 0.3);
}

.bg-color-tertiary {
  background-color: red;
}

.bg-color-tertiary-light {
  background-color: rgba(255, 0, 0, 0.7);
}

.bg-color-tertiary-lighter {
  background-color: rgba(255, 0, 0, 0.5);
}

.bg-color-tertiary-lightedt {
  background-color: rgba(255, 0, 0, 0.3);
}

.container, .initial--component__container {
  width: 100%;
  max-width: 1100px;
}

/**
 * Components: have a single scss file for each individual component
 */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
.header .inner-header {
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  margin-top: 20px;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .inner-header .logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.header .inner-header .logos img {
  height: 30px;
  width: auto;
}
.header .inner-header .logos h1 {
  display: none;
}
.header .inner-header .logos .redragon-additional-logo img {
  transform: scale(1.5);
}
.header .main_menu {
  display: flex;
  gap: 80px;
  align-items: center;
}
.header .main_menu li a {
  color: #000;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 1.56px;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  display: block;
  overflow: hidden;
}
.header .main_menu li a span {
  display: block;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.header .main_menu li a span:last-of-type {
  opacity: 0;
  position: absolute;
  color: #E51B27;
}
.header .main_menu li a.active span {
  color: #E51B27 !important;
}
.header .main_menu li a:hover span {
  opacity: 1;
  transform: translateY(-100%);
}
.header .main_menu li .header-search {
  border: none;
  background-color: #E51B27;
  color: white;
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.header .main_menu li .header-search svg {
  transition: all 0.3s ease;
}
.header .main_menu li .header-search:hover {
  cursor: pointer;
  background-color: #A9000A;
}
.header .main_menu li .header-search:hover svg {
  transform: scale(0.85);
  height: auto;
}
.header .main_menu li .cat-menu-toggle.is-open span {
  opacity: 1;
  transform: translateY(-100%);
}
.header .main_menu li .cat-menu-toggle span {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header .search-input {
  position: absolute;
  right: 15px;
  display: flex;
  gap: 30px;
  display: none;
}
.header .search-input button {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: none;
  outline: none !important;
}
.header .search-input button:hover {
  cursor: pointer;
}
.header .search-input .form_wrapper {
  display: flex;
  gap: 0;
}
.header .search-input .form_wrapper input {
  border: 1px solid #E51B27;
  min-width: 570px;
  outline: none !important;
  padding: 3px 6px;
}
.header .search-input .form_wrapper button {
  background-color: #E51B27;
  border: none;
  margin-left: -1px;
}
.header .header-search:hover {
  cursor: pointer;
}

.inner-header-subMenu {
  background-color: white;
}
.inner-header-subMenu .categories-dropdown-safe {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.header .cats-dropdown {
  display: flex;
  color: #4B4B4B;
  font-family: Roboto;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 1.56px;
  text-transform: uppercase;
  height: 320px;
  position: relative;
  z-index: 2;
}
.header .cats-dropdown_image {
  min-width: 400px;
}
.header .cats-dropdown_image img {
  width: 100%;
  height: auto;
}
.header .cats-dropdown_sitemap, .header .cats-dropdown_contents {
  padding: 40px 45px;
}
.header .cats-dropdown_sitemap {
  border-right: 1px solid #E5E5E5;
  color: black;
  padding: 40px 45px;
}
.header .cats-dropdown_sitemap ul {
  width: 120px;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.header .cats-dropdown_sitemap ul li {
  line-height: 135%;
  display: flex;
  justify-content: space-between;
  margin: 0 0 20px 0;
  align-items: center;
  font-weight: 700;
}
.header .cats-dropdown_sitemap ul li:last-of-type {
  margin: 0;
}
.header .cats-dropdown_sitemap ul li.active, .header .cats-dropdown_sitemap ul li:hover {
  color: #E51B27;
}
.header .cats-dropdown_sitemap ul li.active svg, .header .cats-dropdown_sitemap ul li:hover svg {
  filter: brightness(0) saturate(100%) invert(16%) sepia(94%) saturate(5738%) hue-rotate(350deg) brightness(81%) contrast(89%);
}
.header .cats-dropdown_sitemap ul li:hover {
  cursor: pointer;
}
.header .cats-dropdown_contents {
  width: 100%;
  position: relative;
}
.header .cats-dropdown_contents ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  width: 100%;
  display: grid;
  gap: 20px 40px;
  grid-template-columns: repeat(3, 1fr);
}
.header .cats-dropdown_contents ul li a {
  color: #4B4B4B;
  font-family: "Roboto";
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 1.56px;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #4B4B4B;
  height: 100%;
}
.header .cats-dropdown_contents ul li a .name {
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
  display: block;
}
.header .cats-dropdown_contents ul li a .ornament {
  transition: all 0.3s ease;
  display: block;
  padding-left: 30px;
  padding-top: 10px;
  padding-right: 5px;
  padding-bottom: 5px;
  background-color: white;
  color: #4B4B4B;
  position: relative;
  font-size: 16px;
  font-weight: 600;
  z-index: 0;
  overflow: hidden;
}
.header .cats-dropdown_contents ul li a .ornament:before {
  content: "";
  position: absolute;
  left: -20px;
  width: 50px;
  height: 44px;
  transform: skew(-45deg) translateX(45px);
  display: block;
  background-color: #F3F3F3;
  bottom: 0px;
  transition: all 0.3s ease;
}
.header .cats-dropdown_contents ul li a .ornament svg {
  transform: translate(-5px, 1px);
}
.header .cats-dropdown_contents ul li a:hover .name {
  transform: translateX(5px);
  color: black;
}
.header .cats-dropdown_contents ul li a:hover .ornament:before {
  background-color: #E51B27;
}
.header .cats-dropdown_contents ul li a:hover .ornament svg path {
  fill: white !important;
}
.header .cats-dropdown_contents .category-goto {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 15px;
  text-align: center;
  background-color: #F3F3F3;
  color: black;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.header .header-desktop {
  display: block;
}
.header .header-responsive {
  display: none;
}
@media all and (max-width: 600px) {
  .header .header-desktop {
    display: none;
  }
  .header .header-responsive {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--blanco, #FFF);
    box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.1);
    padding: 10px 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
  }
  .header .header-responsive button {
    border: none;
    background-color: transparent;
  }
  .header .header-responsive_searchMask {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.77);
    z-index: 2;
    display: none;
  }
  .header .header-responsive_searchModule {
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background-color: white;
    z-index: 3;
    gap: 10px;
    align-items: center;
    height: 54px;
    padding: 0 20px;
  }
  .header .header-responsive_searchModule .icon svg {
    transform: translateY(3px);
  }
  .header .header-responsive_searchModule .field input {
    outline: none;
  }
  .header .header-responsive_searchModule .searchModule-close {
    background-color: transparent;
    border: none;
    outline: none;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
}

#burger-menu {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  z-index: 10;
  width: 100%;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
#burger-menu.is-open {
  transform: translateX(0%);
}
#burger-menu .inner-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--blanco, #FFF);
  box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.1);
  padding: 10px 20px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  position: relative;
}
#burger-menu .inner-header .main-logo {
  margin-left: -15px;
}
#burger-menu .inner-menu {
  width: calc(100vw - 60px);
  height: 100%;
  background-color: white;
  display: block;
  position: relative;
}
#burger-menu .inner-menu li {
  border-bottom: 1px solid #E7E7E7;
}
#burger-menu .inner-menu li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media all and (min-width: 800px) {
  #burger-menu {
    display: none;
  }
}
#burger-menu .main_menu,
#burger-menu .categories_menu,
#burger-menu .categories_submenu {
  width: 100%;
  margin: 0;
  padding: 0;
}
#burger-menu .main_menu li a,
#burger-menu .categories_menu li a,
#burger-menu .categories_submenu li a {
  padding: 30px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: black;
  font-family: Roboto;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 1.56px;
  text-transform: uppercase;
  text-decoration: none;
}
#burger-menu .categories_menu,
#burger-menu .categories_submenu {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  transform: translateX(-100%);
  transition: all 0.3s ease;
  z-index: 5;
  background-color: white;
}
#burger-menu .categories_menu.is-open,
#burger-menu .categories_submenu.is-open {
  transform: translateX(0);
}
#burger-menu .categories_menu .cat-menu-toggle,
#burger-menu .categories_menu .submenu-toggle,
#burger-menu .categories_submenu .cat-menu-toggle,
#burger-menu .categories_submenu .submenu-toggle {
  background-color: #f2f2f2;
  gap: 15px;
  justify-content: flex-start;
}

#burger-close {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: none;
}

body.burger-menu-open:after {
  height: 100%;
  width: 100%;
  z-index: 9;
  background-color: rgba(0, 0, 0, 0.88);
  display: block;
  content: "";
  position: fixed;
  top: 0;
  left: 0;
}

.footer {
  position: relative;
  background-color: #232323;
  color: white;
  padding: 40px 0;
}
.footer .top-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer .top-content .main_menu {
  display: flex;
  gap: 80px;
}
.footer .top-content .main_menu li a {
  display: block;
  color: white;
  font-family: Roboto;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.56px;
  text-transform: uppercase;
  text-decoration: none;
}
.footer .bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #565656;
  margin-top: 50px;
  padding-top: 25px;
  color: #FFF;
  font-family: Roboto;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
}
.footer .bottom-content a {
  color: white;
  text-decoration: none;
}
@media all and (max-width: 600px) {
  .footer .top-content .main_menu {
    display: none;
  }
}

section {
  padding: 50px 0;
}

.section-pretitle {
  color: #000000;
  font-family: Roboto;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-title {
  color: #000;
  font-family: "Bebas Neue";
  font-size: 48px;
  font-style: normal;
  font-weight: 100;
  line-height: normal;
}
.section-title small {
  display: block;
  color: #000;
  font-family: Roboto;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 21.6px */
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
@media all and (max-width: 600px) {
  .section-title {
    font-size: 30px;
    line-height: 100%;
    text-align: center;
  }
}

section.product-discover {
  margin-bottom: 60px;
}

section.news-discover {
  background-color: #f3f3f3;
  position: relative;
}
section.news-discover:before {
  position: absolute;
  right: -300px;
  top: -300px;
  width: 400px;
  height: 300px;
  background-color: #f3f3f3;
  display: block;
  content: "";
  transform: skew(-45deg);
  z-index: -1;
}

.products-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  transition: opacity 0.5s ease;
}
.products-list.is-loading {
  opacity: 0.25;
  pointer-events: none;
}
.products-list_product .product-image {
  border: 1px solid transparent;
  background-color: #F2F2F2;
  margin-bottom: 15px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.products-list_product .product-image img {
  width: 100%;
  height: auto;
}
.products-list_product .product-image .card-caret {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 17px;
  opacity: 0;
}
.products-list_product .product-image .card-caret:after {
  position: absolute;
  right: -60px;
  bottom: 0;
  width: 100px;
  height: 100px;
  background-color: #E51B27;
  transition: all 0.3s ease;
  transform: skew(-45deg) translate(100%, 100%);
  content: "";
  display: block;
  z-index: 0;
}
.products-list_product .product-image .card-caret svg {
  position: relative;
  z-index: 1;
}
.products-list_product .product-meta .title a {
  color: black;
  font-family: Roboto;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  margin-bottom: 10px;
  display: block;
  text-decoration: none;
  transition: all 0.3s ease;
}
.products-list_product .product-meta .excerpt {
  color: #4B4B4B;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  max-height: 87px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.products-list_product:hover .product-image {
  border-color: #E51B27;
}
.products-list_product:hover .product-image .card-caret {
  opacity: 1;
}
.products-list_product:hover .product-image .card-caret:after {
  transform: skew(-45deg) translate(0);
}
.products-list_product:hover .product-meta .title a {
  color: #E51B27;
}
@media all and (max-width: 600px) {
  .products-list_product .product-image .card-caret {
    opacity: 1;
  }
  .products-list_product .product-image .card-caret:after {
    transform: skew(-45deg) translate(0);
  }
}
.products-list.search-results-list_loop {
  grid-template-columns: repeat(4, 1fr);
}
@media all and (max-width: 600px) {
  .products-list.search-results-list_loop {
    grid-template-columns: repeat(1, 1fr);
  }
}

.searchitems-load-more {
  text-align: center;
  margin-top: 45px;
  padding-bottom: 45px;
  border-bottom: 1px solid #CACACA;
}
.searchitems-load-more .btn {
  background-color: white;
  border: 1px solid black;
}
.searchitems-load-more .btn:hover {
  cursor: pointer;
}

.category-landing_content {
  padding: 60px 0;
}
.category-landing_content .category-list {
  display: flex;
  gap: 30px;
}
.category-landing_content .category-list_menu {
  width: 300px;
}
.category-landing_content .category-list_menu .menu-label {
  color: #000;
  font-family: Roboto;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  display: flex;
  gap: 10px;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #E4E4E4;
  margin-bottom: 30px;
}
.category-landing_content .category-list_menu .menu-items_item {
  padding: 30px 0;
  border-bottom: 1px solid #E4E4E4;
}
.category-landing_content .category-list_menu .menu-items_item:first-of-type {
  padding-top: 0;
}
.category-landing_content .category-list_menu .menu-items_item .item-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #000;
  font-family: Roboto;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 180%;
  letter-spacing: 1.08px;
  text-transform: uppercase;
  margin: 0;
}
.category-landing_content .category-list_menu .menu-items_item .item-label .btn-collapse {
  color: #E51B27;
  background-color: transparent;
  border: none;
  font-size: 25px;
  font-weight: 100;
}
.category-landing_content .category-list_menu .menu-items_item .item-label .btn-collapse .collapse {
  display: none;
}
.category-landing_content .category-list_menu .menu-items_item .item-options {
  color: #4B4B4B;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  display: none;
  margin-top: 20px;
}
.category-landing_content .category-list_menu .menu-items_item .item-options label {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 5px 0;
  font-family: Roboto;
  font-weight: 400;
  font-size: 16px;
}
.category-landing_content .category-list_menu .menu-items_item .item-options label input[type=checkbox] {
  width: 20px;
  height: 20px;
  border-radius: 0;
  border: 1px solid black;
  padding: 0;
  margin: 0;
  accent-color: #E51B27;
}
.category-landing_content .category-list_menu .menu-items_item.expanded .item-options {
  display: block;
}
.category-landing_content .category-list_menu .menu-items_item.expanded .btn-collapse .expand {
  display: none;
}
.category-landing_content .category-list_menu .menu-items_item.expanded .btn-collapse .collapse {
  display: block;
}
.category-landing_content .category-list_menu .menu-items_item:hover .item-label {
  cursor: pointer;
}
.category-landing_content .category-list_menu .menu-mobile-close {
  position: absolute;
  right: 10px;
  display: none;
}
.category-landing_content .category-list_menu .menu-mobile-close button {
  border: none;
  background-color: transparent;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.category-landing_content .category-list_loop {
  width: 100%;
  position: relative;
}
.category-landing_content .category-list_loop .desktop-sortby {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  transform: translateY(-35px);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  color: #000;
  font-family: "Roboto";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.category-landing_content .category-list_loop .desktop-sortby select {
  color: #000;
  font-family: "Roboto";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.category-landing_content .category-list_loop .desktop-sortby .select-wrap {
  display: flex;
  gap: 5px;
  align-items: center;
}
@media all and (max-width: 600px) {
  .category-landing_content .category-list_loop .desktop-sortby {
    display: none;
  }
}
.category-landing_content .category-list .mobile-filters-toggler {
  display: none;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  background-color: #F6F6F6;
  padding: 20px;
}
.category-landing_content .category-list .mobile-filters-toggler button {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  border: none;
  background-color: transparent;
  color: #000;
  font-family: "Roboto";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.category-landing_content .category-list .mobile-filters-toggler select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  border: none;
  color: #000;
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  outline: none;
}
.category-landing_content .category-list .mobile-filters-toggler .filters-selectfilter:after {
  content: "▼"; /* Unicode down caret */
  font-size: 16px;
  color: #E51B27;
  margin-left: 10px;
}
@media all and (max-width: 600px) {
  .category-landing_content .category-list {
    display: block;
  }
  .category-landing_content .category-list .menu-mobile-close {
    display: block;
  }
  .category-landing_content .category-list .mobile-filters-toggler {
    display: flex;
  }
  .category-landing_content .category-list .menu-mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.65);
    display: none;
  }
  .category-landing_content .category-list_menu {
    position: fixed;
    width: 80%;
    height: 100%;
    left: 0;
    top: 50px;
    z-index: 3;
    padding: 0 15px;
    background-color: white;
    padding-top: 30px;
    transform: translateX(-100%);
    transition: all 0.3s ease;
    overflow-y: auto;
    padding-bottom: 60px;
  }
  .category-landing_content .category-list_loop .products-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
  }
  .category-landing_content .category-list_loop .products-list_product .product-meta .title a {
    font-size: 21px;
  }
  .category-landing_content .category-list_loop .products-list_product .product-meta .excerpt {
    line-height: 165%;
  }
  .category-landing_content .category-list.mobile-filters .menu-mobile-overlay {
    display: block;
  }
  .category-landing_content .category-list.mobile-filters .category-list_menu {
    transform: translate(0);
  }
}

.blog-landing-head {
  position: relative;
  margin-top: 100px;
}
@media all and (max-width: 600px) {
  .blog-landing-head {
    margin-top: 50px;
  }
}
.blog-landing-head_breadcrumb {
  margin-top: 20px;
  color: black;
  font-family: Roboto;
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
}
.blog-landing-head_breadcrumb a {
  text-decoration: none;
  color: #737373;
}
@media all and (max-width: 600px) {
  .blog-landing-head_breadcrumb {
    display: none;
  }
}
.blog-landing-head_title {
  padding: 50px 0 49px;
  border-bottom: 1px solid #CACACA;
  margin-bottom: 50px;
}
.blog-landing-head_title .title {
  color: #000;
  font-family: "Bebas Neue";
  font-size: 60px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  margin: 0;
}
@media all and (max-width: 600px) {
  .blog-landing-head_title {
    padding-bottom: 20px;
  }
  .blog-landing-head_title .title {
    font-size: 42px;
  }
}
.blog-landing-head_hero {
  margin-bottom: 80px;
}
.blog-landing-head .search-results-addendum {
  color: #4B4B4B;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 1.56px;
  text-transform: uppercase;
}

.blog-landing-cards {
  padding: 0 0 60px 0;
}
.blog-landing-cards .cards-filters {
  display: flex;
  justify-content: space-between;
}
.blog-landing-cards .cards-filters .filters-select select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml;base64,PHN2Zw0KICB3aWR0aD0iMTAiDQogIGhlaWdodD0iNiINCiAgdmlld0JveD0iMCAwIDEwIDYiDQogIGZpbGw9Im5vbmUiDQogIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyINCj4NCiAgPHBhdGgNCiAgICBkPSJNMSAxTDUgNUw5IDEiDQogICAgc3Ryb2tlPSIjRTUxQjI3Ig0KICAgIHN0cm9rZS13aWR0aD0iMiINCiAgICBzdHJva2UtbGluZWNhcD0icm91bmQiDQogICAgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCINCiAgLz4NCjwvc3ZnPg0K");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 12px auto;
  color: #666;
  font-family: Roboto;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  padding: 10px 20px;
  min-width: 200px;
  outline: none;
  height: 40px;
}
.blog-landing-cards .cards-filters .filters-categories {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}
.blog-landing-cards .cards-filters .filters-categories button {
  color: #666;
  font-family: Roboto;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  border: none;
  background-color: transparent;
  padding: 5px 20px;
}
.blog-landing-cards .cards-filters .filters-categories button:hover {
  cursor: pointer;
}
.blog-landing-cards .cards-filters .filters-categories button.active {
  background-color: #DDD;
  color: black;
}

.page-breadcrumb {
  margin-top: 100px;
  font-family: Roboto;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  color: black;
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.page-breadcrumb a {
  color: rgb(115, 115, 115);
  text-decoration: none;
}

@media all and (max-width: 600px) {
  .page-breadcrumb {
    display: none;
  }
  .page-breadcrumb + .category-single_intro {
    margin-top: 75px;
  }
}
.category-single_intro {
  display: flex;
  gap: 120px;
  padding-bottom: 100px;
}
.category-single_intro > div {
  flex: 1;
}
.category-single_intro .intro-gallery {
  position: relative;
  max-width: calc(50% - 120px);
}
.category-single_intro .intro-gallery_slider {
  position: relative;
  width: 100%;
  margin-bottom: 15px;
}
.category-single_intro .intro-gallery_slider__thumbs .slick-list {
  margin: 0 -15px;
}
.category-single_intro .intro-gallery_slider__thumbs .slick-list .slick-slide {
  padding: 0 15px;
}
.category-single_intro .intro-gallery_slider__thumbs .slick-list .slick-slide .item-thumb {
  border: 1px solid transparent;
  transition: all 0.3s ease;
}
.category-single_intro .intro-gallery_slider__thumbs .slick-list .slick-slide:hover {
  cursor: pointer;
}
.category-single_intro .intro-gallery_slider__thumbs .slick-list .slick-slide.slick-active.slick-current .item-thumb {
  border-color: #E51B27;
}
.category-single_intro .intro-content__meta .product-brand {
  color: #000;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.category-single_intro .intro-content__meta .product-title {
  margin: 15px 0;
  color: #000;
  font-family: "Bebas Neue";
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}
.category-single_intro .intro-content__meta .product-description {
  color: #4B4B4B;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
}
.category-single_intro .intro-content__meta.meta-mobile {
  display: none;
}
.category-single_intro .intro-content__meta.meta-mobile .product-title {
  font-size: 30px;
}
.category-single_intro .intro-content__data {
  margin-top: 15px;
  position: relative;
}
.category-single_intro .intro-content__data-item {
  border-top: 1px solid #E4E4E4;
  padding: 20px 0;
}
.category-single_intro .intro-content__data-item .button-title {
  margin: 0;
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 180%;
  letter-spacing: 1.08px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.category-single_intro .intro-content__data-item .button-title:hover {
  cursor: pointer;
}
.category-single_intro .intro-content__data-item .content {
  display: none;
  padding-top: 15px;
  color: #4B4B4B;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 165%;
}
.category-single_intro .intro-content__data-item .content .features-list {
  list-style-type: disc;
  margin: 0 0 0 15px;
}
.category-single_intro .intro-content__data-item:last-of-type {
  border-bottom: 1px solid #E4E4E4;
}
.category-single_intro .intro-content__data-item.expanded .button-title svg {
  transform: rotate(45deg);
}
@media all and (max-width: 600px) {
  .category-single_intro {
    display: block;
  }
  .category-single_intro .intro-gallery {
    max-width: 100%;
    margin-bottom: 30px;
  }
  .category-single_intro .intro-content__meta.meta-mobile {
    display: block;
  }
  .category-single_intro .intro-content__meta.meta-desktop {
    display: none;
  }
}

.product-single-details {
  background-color: #F2F2F2;
  padding: 60px 0;
}
.product-single-details .product-details-title {
  text-align: center;
  color: black;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  margin: 0 0 30px 0;
  border-bottom: 1px solid #E4E4E4;
  padding-bottom: 30px;
}
.product-single-details .product-details-list .detail-item {
  display: flex;
  gap: 250px;
  align-items: center;
  margin-bottom: 60px;
}
.product-single-details .product-details-list .detail-item:nth-child(even) {
  flex-direction: row-reverse;
}
.product-single-details .product-details-list .detail-item:first-of-type {
  padding-top: 60px;
}
@media all and (max-width: 600px) {
  .product-single-details .product-details-list .detail-item:first-of-type {
    padding-top: 30px;
  }
}
.product-single-details .product-details-list .detail-item:last-of-type {
  margin-bottom: 0;
}
.product-single-details .product-details-list .detail-item .detail-item_img {
  min-width: 520px;
}
.product-single-details .product-details-list .detail-item .detail-item_img img {
  width: 100%;
  height: auto;
}
@media all and (max-width: 600px) {
  .product-single-details .product-details-list .detail-item .detail-item_img {
    min-width: 100%;
  }
}
.product-single-details .product-details-list .detail-item .detail-item_content__title {
  color: black;
  font-family: "Bebas Neue";
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0 0 24px 0;
  line-height: 100%;
}
@media all and (max-width: 600px) {
  .product-single-details .product-details-list .detail-item .detail-item_content__title {
    font-size: 30px;
    margin: 0 0 20px 0;
  }
}
.product-single-details .product-details-list .detail-item .detail-item_content__content {
  color: #4B4B4B;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
}
@media all and (max-width: 600px) {
  .product-single-details .product-details-list .detail-item {
    display: block;
  }
  .product-single-details .product-details-list .detail-item_img {
    margin-bottom: 15px;
  }
}

.recommended-products {
  position: relative;
}
.recommended-products_title {
  text-align: center;
  color: black;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  padding-bottom: 30px;
  border-bottom: 1px solid #E4E4E4;
  margin-bottom: 60px;
}

.recommended-products_slider {
  position: relative;
}
.recommended-products_slider .recommended-products_item .product-image {
  border: 1px solid transparent;
  background-color: #F2F2F2;
  margin-bottom: 15px;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.recommended-products_slider .recommended-products_item .product-image img {
  width: 100%;
  height: auto;
}
.recommended-products_slider .recommended-products_item .product-image .card-caret {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 17px;
  opacity: 0;
}
.recommended-products_slider .recommended-products_item .product-image .card-caret:after {
  position: absolute;
  right: -60px;
  bottom: 0;
  width: 100px;
  height: 100px;
  background-color: #E51B27;
  transition: all 0.3s ease;
  transform: skew(-45deg) translate(100%, 100%);
  content: "";
  display: block;
  z-index: 0;
}
.recommended-products_slider .recommended-products_item .product-image .card-caret svg {
  position: relative;
  z-index: 1;
}
.recommended-products_slider .recommended-products_item .product-meta .title a {
  color: black;
  font-family: Roboto;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  margin-bottom: 10px;
  display: block;
  text-decoration: none;
  transition: all 0.3s ease;
}
.recommended-products_slider .recommended-products_item .product-meta .excerpt {
  color: #4B4B4B;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  max-height: 87px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.recommended-products_slider .recommended-products_item:hover .product-image {
  border-color: #E51B27;
}
.recommended-products_slider .recommended-products_item:hover .product-image .card-caret {
  opacity: 1;
}
.recommended-products_slider .recommended-products_item:hover .product-image .card-caret:after {
  transform: skew(-45deg) translate(0);
}
.recommended-products_slider .recommended-products_item:hover .product-meta .title a {
  color: #E51B27;
}
.recommended-products_slider .slick-list {
  margin: 0 -15px;
}
.recommended-products_slider .slick-list .slick-slide {
  padding: 0 15px;
}
.recommended-products_slider .slick-arrow {
  background-color: black;
  position: absolute;
  width: 44px;
  height: 44px;
  text-indent: -999em;
  overflow: hidden;
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background-image: url("../images/slider-arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
}
.recommended-products_slider .slick-arrow.slick-prev {
  left: -75px;
}
.recommended-products_slider .slick-arrow.slick-next {
  right: -75px;
  transform: translateY(-50%) rotate(180deg);
}
.recommended-products_slider .slick-arrow:hover {
  cursor: pointer;
}

.blog-single {
  display: flex;
  gap: 60px;
  padding-bottom: 60px;
}
.blog-single_content {
  min-width: 850px;
}
.blog-single_content .content-share {
  margin-bottom: 40px;
  display: flex;
}
.blog-single_content .content-share a {
  background-color: #E51B27;
  display: flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.blog-single_content .content-share a:hover {
  background-color: #A9000A;
}
.blog-single_content .content-share a .is-opened-icon {
  display: none;
}
.blog-single_content .content-share a.is-open .is-opened-icon {
  display: flex;
}
.blog-single_content .content-share a.is-open .is-closed-icon {
  display: none;
}
.blog-single_content .content-share .share {
  display: none;
}
.blog-single_content .content-body {
  color: #4B4B4B;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
}
.blog-single_content .content-body p + p {
  margin-top: 15px;
}
.blog-single_content .content-body blockquote {
  margin: 0;
  padding: 0;
  font-style: italic;
  font-weight: 700;
  color: black;
  font-size: 20px;
  margin: 40px 0;
}
.blog-single_sidebar {
  min-width: 380px;
}
@media all and (max-width: 600px) {
  .blog-single_sidebar {
    min-width: 100%;
  }
}
.blog-single_sidebar .sidebar-title {
  color: black;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #CACACA;
}
.blog-single_sidebar .sidebar-post-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.blog-single_sidebar .sidebar-post-list li {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 20px;
}
.blog-single_sidebar .sidebar-post-list li .post-img {
  position: relative;
  overflow: hidden;
  min-width: 120px;
}
.blog-single_sidebar .sidebar-post-list li .post-img img {
  width: 120px;
  height: 120px;
}
.blog-single_sidebar .sidebar-post-list li .post-img:before {
  height: 100px;
  width: 100px;
  content: "";
  display: block;
  background-color: white;
  right: -95%;
  bottom: 0;
  position: absolute;
  transform: skew(-45deg);
  z-index: 3;
}
.blog-single_sidebar .sidebar-post-list li .post-info_meta {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
.blog-single_sidebar .sidebar-post-list li .post-info_meta .category {
  background-color: black;
  color: white;
  text-transform: uppercase;
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  line-height: 180%;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  padding: 2px 10px 0;
}
.blog-single_sidebar .sidebar-post-list li .post-info_meta .date {
  color: #000;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
}
.blog-single_sidebar .sidebar-post-list li .post-info_title a {
  display: block;
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  text-decoration: none;
  transition: all 0.3s ease;
}
.blog-single_sidebar .sidebar-post-list li:hover .post-info_title a {
  color: #E51B27;
}
@media all and (max-width: 600px) {
  .blog-single {
    display: block;
  }
  .blog-single_content {
    min-width: unset;
    width: 100%;
  }
  .blog-single_sidebar {
    margin-top: 60px;
  }
  .blog-single_sidebar .sidebar-title {
    text-align: center;
    font-size: 16px;
  }
}

.single-blog-slider {
  position: relative;
  margin-top: 30px;
}
.single-blog-slider img, .single-blog-slider video {
  width: 100%;
  height: auto;
}
.single-blog-slider .slider-controller {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 30px 0;
}
.single-blog-slider .slider-controller_timeline .module {
  display: flex;
  gap: 10px;
  align-items: center;
}
.single-blog-slider .slider-controller_timeline .module .module-timer {
  height: 4px;
  width: 88px;
  background-color: #B8B8B8;
  position: relative;
}
.single-blog-slider .slider-controller_timeline .module .module-timer_progress {
  position: absolute;
  background-color: #E51B27;
  width: 0;
  height: 100%;
  left: 0;
  top: 0;
}
.single-blog-slider .slider-controller_timeline .module .module-timer.is-timing .module-timer_progress {
  animation-name: heroSliderProgressBar;
  animation-duration: 5s;
}
.single-blog-slider .slider-controller_timeline .module .module-dots ul {
  margin: 0;
  padding: 0;
  gap: 10px;
  align-items: center;
  display: flex;
}
.single-blog-slider .slider-controller_timeline .module .module-dots ul button {
  border: none;
  text-indent: -9999em;
  overflow: hidden;
  background-color: #B8B8B8;
  width: 4px;
  height: 4px;
  display: block;
  transition: all 0.3s ease;
}
.single-blog-slider .slider-controller_timeline .module .module-dots ul .slick-active button {
  background-color: #E51B27;
}
.single-blog-slider .slider-controller_arrows {
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: space-between;
}
.single-blog-slider .slider-controller_arrows button {
  border: none;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}
.single-blog-slider .slider-controller_arrows button.btn-next {
  transform: rotate(-180deg);
}
.single-blog-slider .slider-controller_arrows button:hover {
  cursor: pointer;
}

.help-pages-buttons-list {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
}
.help-pages-buttons-list ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
.help-pages-buttons-list ul li a {
  padding: 15px 20px;
  display: block;
  color: black;
  text-decoration: none;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 1.56px;
  text-transform: uppercase;
  border-bottom: 1px solid #E51B27;
  transition: all 0.3s ease;
}
.help-pages-buttons-list ul li.active {
  pointer-events: none;
}
.help-pages-buttons-list ul li.active a {
  background-color: #E51B27;
  color: white;
}
.help-pages-buttons-list ul li:hover a {
  background-color: black;
  color: white;
}
@media all and (max-width: 600px) {
  .help-pages-buttons-list {
    width: 100%;
  }
  .help-pages-buttons-list ul {
    width: 100%;
    flex-direction: column;
  }
  .help-pages-buttons-list ul li {
    width: 100%;
  }
  .help-pages-buttons-list ul li a {
    width: 100%;
    text-align: center;
  }
}

.helpcenter-page-innertitle .title {
  margin-bottom: 60px;
  color: black;
  font-family: "Bebas Neue";
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: center;
}
.helpcenter-page-innertitle .description {
  max-width: 850px;
  margin: 0 auto 60px;
  color: #4B4B4B;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
}
@media all and (max-width: 600px) {
  .helpcenter-page-innertitle .title {
    font-size: 30px;
  }
}

.faq-page-accordion {
  max-width: 850px;
  margin: 0 auto 60px;
}
.faq-page-accordion_item {
  margin-bottom: 30px;
  border-top: 1px solid #E4E4E4;
}
.faq-page-accordion_item .item-title {
  margin: 0;
  padding: 30px 0 0;
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 180%;
  letter-spacing: 1.08px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.faq-page-accordion_item .item-title:hover {
  cursor: pointer;
}
.faq-page-accordion_item .item-title button {
  border: none;
  background-color: transparent;
}
.faq-page-accordion_item .item-title button .contract {
  display: none;
}
@media all and (max-width: 600px) {
  .faq-page-accordion_item .item-title {
    line-height: 135%;
    font-size: 16px;
  }
}
.faq-page-accordion_item .item-content {
  padding-top: 30px;
  color: #4B4B4B;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
}
.faq-page-accordion_item:last-of-type {
  border-bottom: 1px solid #E4E4E4;
  padding-bottom: 30px;
}
.faq-page-accordion_item.expanded .item-title button .contract {
  display: block;
}
.faq-page-accordion_item.expanded .item-title button .expand {
  display: none;
}

.warranty-contact-form {
  max-width: 660px;
  margin: 0 auto;
  margin-bottom: 60px;
}
.warranty-contact-form .columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}
.warranty-contact-form .warranty-contact_field label {
  color: black;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 180%;
}
.warranty-contact-form .warranty-contact_field input, .warranty-contact-form .warranty-contact_field select, .warranty-contact-form .warranty-contact_field textarea {
  min-height: 40px;
  padding: 5px 15px;
  margin-top: 5px;
  width: 100%;
  display: block;
  border: 1px solid #CACACA;
  outline: none !important;
}
.warranty-contact-form .warranty-contact_field textarea {
  min-height: 150px;
  font-family: Roboto;
}
.warranty-contact-form .form-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}
.warranty-contact-form .form-buttons button[type=submit] {
  border: 2px solid black;
  background-color: transparent;
  padding: 15px 25px;
  display: block;
  color: black;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 1.56px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.warranty-contact-form .form-buttons button[type=submit]:hover {
  cursor: pointer;
  background-color: #E51B27;
  border-color: #E51B27;
  color: white;
}
.warranty-contact-form .form-buttons button[type=submit]:disabled {
  opacity: 0.35;
}
.warranty-contact-form .form-buttons button[type=submit]:disabled:hover {
  cursor: not-allowed;
}
@media all and (max-width: 600px) {
  .warranty-contact-form .columns {
    display: flex;
    flex-direction: column;
  }
}

.error-message {
  margin: 114px 0 100px;
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 600px;
  background-position: center;
  background-size: cover;
  color: white;
}
.error-message:before {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  opacity: 0.7;
  background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0) 100%);
}
.error-message .btn {
  margin-top: 15px;
  display: inline-block;
}
.error-message_body {
  position: absolute;
  left: 60px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 520px;
  max-width: calc(100% - 30px);
}
.error-message_body .byline {
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 1.56px;
  text-transform: uppercase;
}
.error-message_body .title {
  font-family: "Bebas Neue";
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media all and (max-width: 600px) {
  .error-message_body {
    left: 15px;
    gap: 10px;
  }
  .error-message_body .title {
    font-size: 24px;
  }
}

html, body {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  -webkit-font-smoothing: subpixel-antialiased;
  overflow-x: hidden;
}

.container, .initial--component__container {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
}

.btn {
  font-family: Roboto;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 1.56px;
  text-transform: uppercase;
  color: inherit;
  text-decoration: none;
  border-color: inherit;
  border-width: 1px;
  border-style: solid;
  padding: 15px 25px;
}

.grecaptcha-badge {
  display: none !important;
}

.initial--component {
  display: flex;
  justify-content: center;
}
.initial--component__title {
  text-align: center;
  margin-bottom: 20px;
}
.initial--component__image {
  width: 100%;
}

/* The animation code */
@keyframes heroSliderProgressBar {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
.home-hero {
  overflow: hidden;
  position: relative;
}
.home-hero .hero-slides-mask {
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}
.home-hero-slide {
  background-size: cover;
  background-position: bottom center;
  height: 100%;
  min-height: 800px;
  position: relative;
}
.home-hero-slide .img-desktop,
.home-hero-slide .img-responsive {
  width: 100%;
  height: 100%;
  position: absolute;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.home-hero-slide .img-responsive {
  display: none;
}
.home-hero-slide__content {
  color: white;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  width: 100%;
  color: white;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 32.4px */
}
.home-hero-slide__content .text-layer {
  width: 630px;
  padding-top: 60px;
}
.home-hero-slide__content .text-layer_title {
  color: white;
  font-family: "Bebas Neue", sans-serif;
  font-size: 85px;
  font-style: normal;
  font-weight: 100;
  line-height: 70px;
  margin: 0;
  letter-spacing: 1px;
}
.home-hero-slide__content .text-layer_content {
  margin: 30px 0;
}
.home-hero-slide .btn {
  position: relative;
  display: inline-block;
  padding: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}
.home-hero-slide .btn span {
  display: block;
  padding: 15px 25px;
  transition: all 0.3s ease;
}
.home-hero-slide .btn span:last-of-type {
  position: absolute;
}
.home-hero-slide .btn:hover {
  background-color: #E51B27;
  border-color: #E51B27;
}
.home-hero-slide .btn:hover span {
  transform: translateY(-100%);
}
.home-hero .home-hero-controls {
  background-color: white;
  height: 200px;
  width: 200px;
  position: absolute;
  bottom: 0;
  right: -100px;
  z-index: 1;
  transform: skew(-45deg);
}
.home-hero .home-hero-controls .inner {
  transform: skew(45deg);
  position: absolute;
  left: -50px;
  bottom: 0;
  transform: translateX(100px) skew(45deg);
  display: flex;
  gap: 30px;
}
.home-hero .home-hero-controls .inner button {
  border: none;
  background-color: transparent;
  outline: none;
}
.home-hero .home-hero-controls .inner button:hover {
  cursor: pointer;
}
.home-hero .home-hero-timerAndDots {
  position: absolute;
  left: 0;
  bottom: 20px;
  pointer-events: none;
  width: 100%;
  z-index: 3;
}
.home-hero .home-hero-timerAndDots .module {
  display: flex;
  gap: 10px;
  align-items: center;
}
.home-hero .home-hero-timerAndDots .module .module-timer {
  height: 4px;
  width: 88px;
  background-color: white;
  position: relative;
}
.home-hero .home-hero-timerAndDots .module .module-timer_progress {
  position: absolute;
  background-color: #E51B27;
  width: 0;
  height: 100%;
  left: 0;
  top: 0;
}
.home-hero .home-hero-timerAndDots .module .module-timer.is-timing .module-timer_progress {
  animation-name: heroSliderProgressBar;
  animation-duration: 5s;
}
.home-hero .home-hero-timerAndDots .module .module-dots ul {
  margin: 0;
  padding: 0;
  gap: 10px;
  align-items: center;
  display: flex;
}
.home-hero .home-hero-timerAndDots .module .module-dots ul button {
  border: none;
  text-indent: -9999em;
  overflow: hidden;
  background-color: white;
  width: 4px;
  height: 4px;
  display: block;
  transition: all 0.3s ease;
}
.home-hero .home-hero-timerAndDots .module .module-dots ul .slick-active button {
  background-color: #E51B27;
}
@media all and (max-width: 600px) {
  .home-hero .home-hero-controls {
    right: -190px;
  }
  .home-hero .home-hero-controls .inner {
    left: -80px;
    gap: 15px;
  }
  .home-hero-slide {
    min-height: 600px;
    overflow: hidden;
  }
  .home-hero-slide .img-desktop {
    display: none;
  }
  .home-hero-slide .img-responsive {
    display: block;
  }
  .home-hero-slide__content {
    transform: none;
    top: unset;
    bottom: 80px;
  }
  .home-hero-slide__content .text-layer {
    padding: 0;
    width: 100%;
  }
  .home-hero-slide__content .text-layer_title {
    font-size: 42px;
    line-height: 100%;
  }
  .home-hero-slide__content .text-layer_content {
    font-size: 14px;
    padding-right: 30px;
    line-height: 150%;
  }
  .home-hero-slide .btn {
    background-color: #E51B27;
    border-color: #E51B27;
    color: white;
  }
  .home-hero .home-hero-timerAndDots .module .module-dots ul button {
    padding: 0;
  }
}

.home-hero-slide__content .text-layer_title {
  opacity: 0;
  transition: all 0.3s ease;
  transform: translateX(30px);
  transition-delay: 0.2s;
}
.home-hero-slide__content .text-layer_content {
  opacity: 0;
  transition: all 0.3s ease;
  transform: translateX(30px);
  transition-delay: 0.25s;
}
.home-hero .slick-current .home-hero-slide__content .text-layer_title,
.home-hero .slick-current .home-hero-slide__content .text-layer_content {
  opacity: 1;
  transform: translateX(0px);
}

.categories-hero {
  overflow: hidden;
  position: relative;
}
.categories-hero-slide {
  background-size: cover;
  background-position: bottom center;
  height: 100%;
  min-height: 600px;
  position: relative;
}
.categories-hero-slide__content {
  color: black;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  width: 100%;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 32.4px */
}
.categories-hero-slide__content .text-layer {
  width: 630px;
  padding-top: 60px;
}
.categories-hero-slide__content .text-layer_title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 85px;
  font-style: normal;
  font-weight: 100;
  line-height: 70px;
  margin: 0;
  letter-spacing: 1px;
}
.categories-hero-slide__content .text-layer_content {
  margin: 30px 0;
}
.categories-hero-slide .btn {
  position: relative;
  display: inline-block;
  padding: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}
.categories-hero-slide .btn span {
  display: block;
  padding: 15px 25px;
  transition: all 0.3s ease;
}
.categories-hero-slide .btn span:last-of-type {
  position: absolute;
}
.categories-hero-slide .btn:hover {
  background-color: #E51B27;
  border-color: #E51B27;
}
.categories-hero-slide .btn:hover span {
  transform: translateY(-100%);
}
.categories-hero-slide .img-mobile {
  display: none;
}
@media all and (max-width: 600px) {
  .categories-hero-slide {
    background-image: none !important;
    min-height: unset;
  }
  .categories-hero-slide .img-mobile {
    display: block;
    width: 100%;
    height: auto;
  }
  .categories-hero-slide__content {
    transform: none;
    top: 40px;
  }
  .categories-hero-slide__content .text-layer_title {
    font-size: 42px;
  }
}
.categories-hero .categories-hero-controls {
  background-color: white;
  height: 200px;
  width: 200px;
  position: absolute;
  bottom: 0;
  right: -100px;
  z-index: 1;
  transform: skew(-45deg);
}
.categories-hero .categories-hero-controls .inner {
  transform: skew(45deg);
  position: absolute;
  left: -50px;
  bottom: 0;
  transform: translateX(100px) skew(45deg);
  display: flex;
  gap: 30px;
}
.categories-hero .categories-hero-controls .inner button {
  border: none;
  background-color: transparent;
  outline: none;
}
.categories-hero .categories-hero-controls .inner button:hover {
  cursor: pointer;
}
.categories-hero .categories-hero-timerAndDots {
  position: absolute;
  left: 0;
  bottom: 20px;
  pointer-events: none;
  width: 100%;
  z-index: 3;
}
.categories-hero .categories-hero-timerAndDots .module {
  display: flex;
  gap: 10px;
  align-items: center;
}
.categories-hero .categories-hero-timerAndDots .module .module-timer {
  height: 4px;
  width: 88px;
  background-color: #B8B8B8;
  position: relative;
}
.categories-hero .categories-hero-timerAndDots .module .module-timer_progress {
  position: absolute;
  background-color: #E51B27;
  width: 0;
  height: 100%;
  left: 0;
  top: 0;
}
.categories-hero .categories-hero-timerAndDots .module .module-timer.is-timing .module-timer_progress {
  animation-name: heroSliderProgressBar;
  animation-duration: 5s;
}
.categories-hero .categories-hero-timerAndDots .module .module-dots ul {
  margin: 0;
  padding: 0;
  gap: 10px;
  align-items: center;
  display: flex;
}
.categories-hero .categories-hero-timerAndDots .module .module-dots ul button {
  border: none;
  text-indent: -9999em;
  overflow: hidden;
  background-color: #B8B8B8;
  width: 4px;
  height: 4px;
  display: block;
  transition: all 0.3s ease;
}
.categories-hero .categories-hero-timerAndDots .module .module-dots ul .slick-active button {
  background-color: #E51B27;
}
.categories-hero .categories-hero-breadcrumb {
  position: absolute;
  left: 0;
  width: 100%;
  top: 100px;
  z-index: 1;
  font-family: Roboto;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  color: black;
}
.categories-hero .categories-hero-breadcrumb .container, .categories-hero .categories-hero-breadcrumb .initial--component__container {
  display: flex;
  gap: 10px;
}
.categories-hero .categories-hero-breadcrumb a {
  color: #737373;
  text-decoration: underline;
}
@media all and (max-width: 600px) {
  .categories-hero .categories-hero-breadcrumb {
    display: none;
  }
}

.blog-landing-head {
  position: relative;
}
.blog-landing-head .blog-landing-hero-controls {
  background-color: white;
  height: 200px;
  width: 200px;
  position: absolute;
  bottom: 0;
  right: -100px;
  z-index: 1;
  transform: skew(-45deg);
}
.blog-landing-head .blog-landing-hero-controls .inner {
  position: absolute;
  left: -50px;
  bottom: 0;
  transform: translateX(140px) skew(45deg);
  display: flex;
  gap: 30px;
}
.blog-landing-head .blog-landing-hero-controls .inner button {
  border: none;
  background-color: transparent;
  outline: none;
}
.blog-landing-head .blog-landing-hero-controls .inner button:hover {
  cursor: pointer;
}
@media all and (max-width: 600px) {
  .blog-landing-head .blog-landing-hero-controls {
    right: -150px;
  }
  .blog-landing-head .blog-landing-hero-controls .inner {
    left: -100px;
  }
}

.blog-landing-head_hero .hero-slide {
  position: relative;
}
.blog-landing-head_hero .hero-slide_img {
  position: relative;
}
.blog-landing-head_hero .hero-slide_img:after {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  content: "";
  display: block;
  background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0) 100%);
}
.blog-landing-head_hero .hero-slide_img .img-responsive {
  display: none;
  min-height: 550px;
}
.blog-landing-head_hero .hero-slide .hero-slide_content {
  color: white;
  position: absolute;
  top: 50%;
  left: 80px;
  transform: translateY(-50%);
  width: 480px;
  max-width: 100%;
}
.blog-landing-head_hero .hero-slide .hero-slide_content .meta {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
  color: #FFF;
  font-family: Roboto;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
}
.blog-landing-head_hero .hero-slide .hero-slide_content .meta span {
  display: block;
}
.blog-landing-head_hero .hero-slide .hero-slide_content .meta span.category {
  letter-spacing: 1px;
  text-transform: uppercase;
  color: black;
  background-color: white;
  font-size: 10px;
  padding: 0px 10px;
}
.blog-landing-head_hero .hero-slide .hero-slide_content .title {
  color: white;
  font-family: Roboto;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  margin: 0 0 20px 0;
}
.blog-landing-head_hero .hero-slide .hero-slide_content .excerpt {
  color: #FFF;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  margin-bottom: 30px;
}
.blog-landing-head_hero .hero-slide .hero-slide_content .btn {
  position: relative;
  display: inline-block;
  padding: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}
.blog-landing-head_hero .hero-slide .hero-slide_content .btn span {
  display: block;
  padding: 15px 25px;
  transition: all 0.3s ease;
}
.blog-landing-head_hero .hero-slide .hero-slide_content .btn span:last-of-type {
  position: absolute;
}
.blog-landing-head_hero .hero-slide .hero-slide_content .btn:hover {
  background-color: #E51B27;
  border-color: #E51B27;
}
.blog-landing-head_hero .hero-slide .hero-slide_content .btn:hover span {
  transform: translateY(-100%);
}
@media all and (max-width: 600px) {
  .blog-landing-head_hero .hero-slide_img .img-desktop {
    display: none;
  }
  .blog-landing-head_hero .hero-slide_img .img-responsive {
    width: 100%;
    height: auto;
    display: block;
  }
  .blog-landing-head_hero .hero-slide .hero-slide_content {
    max-width: 90%;
    top: unset;
    left: 15px;
    bottom: 45px;
    transform: none;
  }
}

.blog-landing-head_hero.var-warranty .hero-slide .hero-slide_content .title {
  font-family: "Bebas Neue";
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
}
@media all and (max-width: 600px) {
  .blog-landing-head_hero.var-warranty .hero-slide .hero-slide_content {
    text-align: center;
    transform: translateY(-25%);
  }
}

.blog-single-hero {
  position: relative;
  overflow: hidden;
  margin-bottom: 80px;
}
.blog-single-hero:before {
  width: 100%;
  height: 100%;
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.6;
  background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}
.blog-single-hero img {
  width: 100%;
  height: auto;
  margin-bottom: -10px;
}
.blog-single-hero img.img-responsive {
  display: none;
}
.blog-single-hero .hero-meta {
  position: absolute;
  top: 50%;
  left: 65px;
  transform: translateY(-50%);
  padding: 15px;
  color: white;
  max-width: 600px;
  z-index: 2;
}
.blog-single-hero .hero-meta .meta_info {
  margin-bottom: 40px;
  color: white;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  display: flex;
  gap: 15px;
}
.blog-single-hero .hero-meta .meta_info .category {
  background-color: white;
  padding: 0 10px;
  color: black;
  text-transform: uppercase;
  display: inline-block;
  font-size: 11px;
  letter-spacing: 1px;
}
.blog-single-hero .hero-meta_title {
  color: white;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  margin: 0;
  line-height: 120%;
}
.blog-single-hero:after {
  content: "";
  dsplay: block;
  height: 300px;
  width: 300px;
  background-color: white;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 3;
  transform: skew(-45deg) translateX(100%);
}
@media all and (max-width: 600px) {
  .blog-single-hero {
    margin-top: 50px;
    margin-left: -15px;
    margin-right: -15px;
  }
  .blog-single-hero .hero-meta {
    left: 20px;
  }
  .blog-single-hero .hero-meta .meta_info {
    margin-bottom: 10px;
  }
  .blog-single-hero .hero-meta_title {
    font-size: 24px;
  }
  .blog-single-hero img.img-desktop {
    display: none;
  }
  .blog-single-hero img.img-responsive {
    display: block;
  }
}

.product-discover .section-cards {
  margin-top: 60px;
  display: flex;
  gap: 30px;
}
.product-discover .section-cards .product-row {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.product-discover .section-cards .product-discover_card > a {
  display: block;
  position: relative;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.product-discover .section-cards .product-discover_card > a img {
  width: 100%;
  height: auto;
  transition: all 0.3s ease;
  transform-origin: top center;
}
.product-discover .section-cards .product-discover_card > a:after {
  display: block;
  height: 100%;
  width: 100%;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.03);
  pointer-events: none;
}
.product-discover .section-cards .product-discover_card > a .card-caret {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 17px;
  opacity: 0;
}
.product-discover .section-cards .product-discover_card > a .card-caret:after {
  position: absolute;
  right: -60px;
  bottom: 0;
  width: 100px;
  height: 100px;
  background-color: #E51B27;
  transition: all 0.3s ease;
  transform: skew(-45deg) translate(100%, 100%);
  content: "";
  display: block;
  z-index: 0;
}
.product-discover .section-cards .product-discover_card > a .card-caret svg {
  position: relative;
  z-index: 1;
}
.product-discover .section-cards .product-discover_card > a:hover {
  border-color: #E51B27;
}
.product-discover .section-cards .product-discover_card > a:hover .card-caret {
  opacity: 1;
}
.product-discover .section-cards .product-discover_card > a:hover .card-caret:after {
  transform: skew(-45deg) translate(0);
}
.product-discover .section-cards .product-discover_card > a:hover img {
  transform: scale(1.25);
}
.product-discover .section-cards .product-discover_card .card-title {
  padding: 0 30px;
  text-align: center;
  color: #000;
  text-align: center;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 1.56px;
  text-transform: uppercase;
  position: absolute;
  width: 100%;
  left: 0;
  top: 20px;
  position: relative;
  z-index: 1;
}
.product-discover .section-cards.discover-mobile {
  display: none;
}
@media all and (max-width: 600px) {
  .product-discover .section-cards.discover-desktop {
    display: none;
  }
  .product-discover .section-cards.discover-mobile {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
}

.news-discover .section-cards,
.search-discover .section-cards {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media all and (max-width: 600px) {
  .news-discover .section-cards,
  .search-discover .section-cards {
    grid-template-columns: repeat(1, 1fr);
  }
}

.news-discover-card {
  position: relative;
}
.news-discover-card .img-holder {
  overflow: hidden;
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
}
.news-discover-card .img-holder:before {
  width: 100px;
  height: 100px;
  background-color: #f3f3f3;
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  right: -80px;
  transform: skew(-45deg);
  z-index: 3;
}
.news-discover-card .img-holder img {
  width: 100%;
  height: auto;
  transition: all 0.3s ease;
  margin: 0;
  padding: 0;
  transform: scale(1.1);
}
.news-discover-card .card-meta_catAndDate {
  display: flex;
  align-items: center;
  margin: 30px 0;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  gap: 30px;
}
.news-discover-card .card-meta_catAndDate .cat-badge {
  background-color: black;
  color: white;
  padding: 0 15px;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 1px;
}
.news-discover-card .card-meta_title a {
  color: #000;
  font-family: Roboto;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 135%;
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
}
.news-discover-card .card-meta_content {
  margin-top: 20px;
  color: #4B4B4B;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}
.news-discover-card:hover .img-holder img {
  transform: scale(1.35);
}
.news-discover-card:hover .card-meta_title a {
  color: #E51B27;
}

.search-discover .section-title {
  text-align: center;
}
.search-discover .news-discover-card .img-holder:before {
  background-color: white;
}

.blog-page-cards-component {
  padding-top: 80px;
  background-color: #f3f3f3;
}
.blog-page-cards-component .blog-landing-cards .cards-list.is-loading {
  opacity: 0.25;
  pointer-events: none;
}
.blog-page-cards-component .blog-landing-cards .cards-list .cards-list_card .img-holder:before {
  background-color: #f3f3f3;
}
@media all and (max-width: 600px) {
  .blog-page-cards-component {
    padding-top: 15px;
  }
}

.blog-landing-cards .cards-list {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.blog-landing-cards .cards-list_card {
  position: relative;
}
.blog-landing-cards .cards-list_card .img-holder {
  overflow: hidden;
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
}
.blog-landing-cards .cards-list_card .img-holder:before {
  width: 100px;
  height: 100px;
  background-color: #FFFFFF;
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  right: -80px;
  transform: skew(-45deg);
  z-index: 3;
}
.blog-landing-cards .cards-list_card .img-holder img {
  width: 100%;
  height: auto;
  transition: all 0.3s ease;
  margin: 0;
  padding: 0;
  transform: scale(1.1);
}
.blog-landing-cards .cards-list_card .card-meta_catAndDate {
  display: flex;
  align-items: center;
  margin: 30px 0;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  gap: 30px;
}
.blog-landing-cards .cards-list_card .card-meta_catAndDate .cat-badge {
  background-color: black;
  color: white;
  padding: 0 15px;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 1px;
}
.blog-landing-cards .cards-list_card .card-meta_title a {
  color: #000;
  font-family: Roboto;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 135%;
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
}
.blog-landing-cards .cards-list_card .card-meta_content {
  margin-top: 20px;
  color: #4B4B4B;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}
.blog-landing-cards .cards-list_card:hover .img-holder img {
  transform: scale(1.35);
}
.blog-landing-cards .cards-list_card:hover .card-meta_title a {
  color: #E51B27;
}
@media all and (max-width: 600px) {
  .blog-landing-cards .cards-filters {
    display: none;
  }
  .blog-landing-cards .cards-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
  }
  .blog-landing-cards .cards-list_card .card-meta_title a {
    font-size: 21px;
  }
}

.driver-downloads_filters {
  max-width: 850px;
  margin: 0 auto 60px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 30px;
}
.driver-downloads_cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}
.driver-downloads_cards .driver-card_img {
  position: relative;
}
.driver-downloads_cards .driver-card_img .category {
  background-color: black;
  color: white;
  text-transform: uppercase;
  font-size: 10px;
  display: inline-block;
  padding: 5px 15px;
  position: absolute;
  top: 15px;
  left: 15px;
  letter-spacing: 1px;
}
.driver-downloads_cards .driver-card_img img {
  width: 100%;
  height: auto;
}
.driver-downloads_cards .driver-card_info .title {
  margin: 30px 0 20px;
  display: block;
  text-decoration: none;
  color: #000;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}
.driver-downloads_cards .driver-card_info .compat-list {
  color: #4B4B4B;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  margin-bottom: 20px;
}
.driver-downloads_cards .driver-card_info .compat-list li {
  color: black;
}
.driver-downloads_cards .driver-card .btn {
  align-items: center;
  gap: 10px;
  display: inline-flex;
}
@media all and (max-width: 600px) {
  .driver-downloads_filters {
    flex-direction: column;
  }
  .driver-downloads_cards {
    grid-template-columns: repeat(1, 1fr);
  }
}

.pagination-container {
  width: 100%;
  margin-top: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination-container button {
  color: black;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%;
  background-color: transparent;
  border: 1px solid black;
  width: 44px;
  height: 44px;
  margin-right: -1px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination-container button.active-page {
  border-color: transparent;
}
.pagination-container button.back-button, .pagination-container button.next-button {
  background-color: black;
}
.pagination-container button:hover {
  cursor: pointer;
}
