/* Breakpoints */
/* Colours */
@font-face {
  font-family: "Helotypo";
  src: url("/assets/fonts/Helotypo/Helotypo.otf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  font-weight: 300;
  src: url("/assets/fonts/Gotham/Gotham-Light.otf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  font-weight: 400;
  src: url("/assets/fonts/Gotham/Gotham-Medium.otf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  font-weight: 600;
  src: url("/assets/fonts/Gotham/Gotham-Bold.otf") format("truetype");
  font-display: swap;
}
/* General */
/* Media Queries */
.accordion {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}
.accordion__item {
  border: 1px solid #E8E8E8;
  border-radius: 6px;
}
.accordion__item-title {
  position: relative;
  padding: 12px 48px 12px 24px;
  cursor: pointer;
}
.accordion__item-title:after {
  position: absolute;
  content: "";
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  width: 10px;
  height: 6px;
  background-image: url("/assets/icons/chevron-down.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.accordion__item-content {
  opacity: 0;
  max-height: 0;
  padding: 0px 24px;
  border-top: 1px solid #E8E8E8;
  transition: all 200ms ease-in-out;
}
.accordion__item-content--open {
  opacity: 1;
  padding: 12px 24px;
  max-height: 500px;
}

.banner {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
  align-items: flex-end;
  padding: 72px 1rem;
  text-align: center;
  color: #ffffff;
  background-color: #3C3C3B;
  background-image: url("/assets/img/shared/watermark.png");
  background-position: 33%;
  background-repeat: no-repeat;
  background-size: 200%;
}
@media (min-width: 1024px) {
  .banner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding: 72px 0 72px 72px;
    text-align: left;
    background-position: right;
    background-size: 60%;
  }
}
.banner__content {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 1024px) {
  .banner__content {
    align-items: flex-start;
  }
}
.banner__title {
  font-size: 2rem;
  font-weight: 600;
}
.banner__image {
  margin: 0 auto;
  width: 256px;
}
@media (min-width: 768px) {
  .banner__image {
    width: 350px;
  }
}
@media (min-width: 1320px) {
  .banner__image {
    position: relative;
    top: 15px;
    width: 499px;
  }
}

.breadcrumbs {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  padding: 30px 0 0;
}
.breadcrumbs a:not(:first-of-type):before {
  content: ">";
  margin-right: 10px;
}
.breadcrumbs a.active {
  font-weight: 600;
}
.breadcrumbs a span {
  display: inline-block;
  padding-bottom: 1px;
  border-bottom: 1px solid;
}

.button {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 47px;
  padding: 10px 16px;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
  background-color: transparent;
  border: 4px solid currentColor;
  cursor: pointer;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.3s;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .button {
    min-width: 250px;
    width: fit-content;
  }
}
.button:before {
  content: attr(data-hover-content);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 10px 0;
  color: #000000;
  background-color: #ffffff;
  transform: translateY(100%) scaleY(0.5);
  transition: all 0.2s ease-in-out;
}
.button:hover:before {
  transform: translateY(0) scaleY(1);
}
.button--primary {
  background-color: #EF3E33;
  border-color: #EF3E33;
}
.button--primary:before {
  color: #EF3E33;
}
.button--primary.button--outline {
  color: #EF3E33;
}
.button--primary.button--outline:before {
  color: #ffffff;
  background-color: #EF3E33;
}
.button--outline {
  color: currentColor;
  background-color: transparent;
}
.button--full {
  width: 100%;
}

.button-group {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media (min-width: 1024px) {
  .button-group {
    display: flex;
    flex-direction: row;
    gap: 1rem;
  }
  .button-group:not(.button-group--auto) {
    align-items: start;
    justify-content: start;
  }
}

.usps {
  padding: 24px 0;
  text-align: center;
  background-color: #EDEDED;
}
@media (min-width: 1024px) {
  .usps {
    padding: 70px 0;
  }
}
.usps__inner {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}
@media (min-width: 1024px) {
  .usps__inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}
.usps__item {
  display: flex;
  flex-direction: row;
  gap: 0;
  flex-direction: column;
  align-items: center;
}
.usps__item-icon {
  width: 71px;
  height: 71px;
}
.usps__item-title {
  margin: 1rem 0;
  font-size: 24px;
  line-height: 30px;
}
@media (min-width: 1024px) {
  .usps__item-description {
    max-width: 342px;
  }
}

.footer {
  padding-top: 70px;
  background-color: #EDEDED;
}
.footer__top .container {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 48px;
}
@media (min-width: 1320px) {
  .footer__top .container {
    grid-template-columns: 528px 1fr;
  }
}
.footer__brand {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (min-width: 1320px) {
  .footer__brand {
    align-items: start;
    text-align: left;
  }
}
.footer__title {
  font-family: "Gotham", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  display: block;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 600;
  line-height: 25px;
}
.footer__contact {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .footer__contact {
    gap: 16px;
  }
}
.footer__phone {
  font-family: "Helotypo", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 1.875rem;
  font-weight: 400;
  line-height: 2.344rem;
  letter-spacing: 0.08em;
  color: #EF3E33;
}
.footer__opening-times {
  font-size: 0.875rem;
  font-weight: 600;
}
.footer__opening-times span {
  margin: 0 0.5rem;
}
.footer__email span {
  font-weight: 600;
}
.footer__address {
  max-width: 100%;
  width: 314px;
  margin: 0 auto;
  line-height: 25px;
}
@media (min-width: 1024px) {
  .footer__address {
    margin: 0;
  }
}
.footer__social-list {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 0.875rem;
}
.footer__nav {
  display: flex;
  flex-direction: row;
  gap: 48px;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (min-width: 1320px) {
  .footer__nav {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: start;
    justify-content: space-between;
    text-align: left;
  }
}
.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-size: 1.25rem;
  line-height: 1.563rem;
}
.footer__nav-title {
  display: block;
  text-transform: uppercase;
  font-weight: 600;
}
@media (min-width: 1024px) {
  .footer__nav-title {
    margin-bottom: 1rem;
  }
}
.footer__bottom {
  padding: 70px 0;
}
.footer__bottom .container {
  display: flex;
  flex-direction: row;
  gap: 48px;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 1320px) {
  .footer__bottom .container {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.footer__copyright {
  padding: 1rem;
  background-color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  font-size: 0.875rem;
}

form {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-direction: column;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  flex-direction: column;
}

.form-consent {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  font-size: 14px;
  line-height: 23.52px;
}

input:not([type=checkbox]),
textarea {
  width: 100%;
  min-height: 51px;
  padding: 12px;
  border: 1px solid #E8E8E8;
  border-radius: 6px;
}

[type=submit] {
  margin-left: auto;
}

.header {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0;
  grid-template-areas: "top" "nav" "usp";
  background-color: #ffffff;
}
.header__top {
  grid-area: top;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: center;
  grid-template-areas: "account brand contact";
  width: 100%;
  padding: 1rem;
  margin: 0 auto;
  text-align: center;
}
@media (min-width: 1024px) {
  .header__top {
    gap: 0;
    grid-template-areas: "brand search account contact";
    grid-template-columns: 1fr 1.5fr 100px 100px;
    text-align: left;
  }
}
@media (min-width: 1320px) {
  .header__top {
    grid-template-columns: 1fr 1fr 100px 100px;
  }
}
.header__brand {
  grid-area: brand;
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1024px) {
  .header__brand {
    justify-content: start;
  }
}
.header__contact {
  display: none;
}
@media (min-width: 1320px) {
  .header__contact {
    display: block;
  }
}
.header__phone {
  font-family: "Helotypo", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 1.875rem;
  font-weight: 400;
  line-height: 2.344rem;
  letter-spacing: 0.08em;
  color: #EF3E33;
}
.header__opening-times {
  font-size: 0.875rem;
  font-weight: 600;
}
.header__opening-times span {
  color: #EF3E33;
  margin: 0 0.5rem;
}
.header__search {
  grid-area: search;
  display: none;
  align-items: center;
  width: 415px;
  height: 38px;
  padding-right: 0.5rem;
  background-color: #ffffff;
  border: 1px solid #E8E8E8;
}
.header__search.mobile {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  width: 100%;
}
.header__search input {
  min-height: 36px;
  width: 100%;
  height: 100%;
  padding: 0 0.5rem;
  font-size: 0.875rem;
  font-weight: 300;
  font-family: inherit;
  color: #3C3C3B;
  border: none;
  transition: all 0.2s ease-in-out;
}
.header__search input:focus, .header__search input:active, .header__search input:hover {
  outline: none;
}
.header__search [type=submit] {
  background-color: #ffffff;
  border: none;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .header__search {
    display: flex;
    flex-direction: row;
    gap: 1rem;
  }
}
.header__button a {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  flex-direction: column;
  align-items: center;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.016rem;
  text-transform: uppercase;
  color: inherit;
}
.header__button a p {
  line-height: 1.016rem;
}
.header__button a img {
  margin: 0 auto;
}
.header__button--account {
  grid-area: account;
}
.header__button--contact {
  grid-area: contact;
}
.header__nav {
  grid-area: nav;
  background-color: #3C3C3B;
  overflow-x: hidden;
}
.header__nav nav:not(.open) {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  display: none;
}
@media (min-width: 1024px) {
  .header__nav nav:not(.open) {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content: center;
  }
}
.header__nav-control {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
}
@media (min-width: 1024px) {
  .header__nav-control {
    display: none;
  }
}
.header__nav-toggle {
  cursor: pointer;
}
.header__nav-list {
  background-color: #EDEDED;
}
.header__nav-list-item {
  display: block;
  padding: 1rem;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.2s ease-in-out;
}
@media (min-width: 1024px) {
  .header__nav-list-item {
    padding: 0.75rem;
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.563rem;
    color: #F6F6F6;
  }
}
@media (min-width: 1024px) {
  .header__nav-list {
    display: flex;
    flex-direction: row;
    gap: 2.5rem;
    background-color: inherit;
    overflow-x: auto;
  }
  .header__nav-list li {
    display: flex;
    flex-direction: row;
    gap: 0;
    flex-direction: column;
    flex: none;
  }
  .header__nav-list li:focus, .header__nav-list li:focus-visible, .header__nav-list li:focus-visible, .header__nav-list li:active, .header__nav-list li:hover {
    background-color: #EDEDED;
  }
  .header__nav-list li:focus > a, .header__nav-list li:focus-visible > a, .header__nav-list li:focus-visible > a, .header__nav-list li:active > a, .header__nav-list li:hover > a {
    background-color: #EDEDED;
    color: #EF3E33;
  }
}
.header__usp {
  grid-area: usp;
  background-color: #F6F6F6;
  overflow-x: hidden;
}
.header__usp-list {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  padding: 0.5rem 0;
  width: 100%;
  overflow-x: auto;
}
@media (min-width: 1024px) {
  .header__usp-list {
    gap: 2rem;
  }
}
@media (min-width: 1320px) {
  .header__usp-list {
    gap: 4rem;
    justify-content: center;
  }
}
.header__usp-list-item {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  flex: none;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
}

.hero {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
  align-items: center;
  padding: 50px 0;
  min-height: 610px;
  text-align: center;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.83);
}
@media (min-width: 1024px) {
  .hero {
    padding: 100px;
  }
}
.hero__inner {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 828px;
}
.hero__description {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  flex-direction: column;
  font-size: 19px;
  line-height: 1.9;
}
.hero__description > p {
  margin: 0;
}
.hero .swiper-nav {
  margin: 40px auto 0;
}

.one-col {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 48px;
  align-items: center;
  text-align: center;
}
.two-col img {
  order: 0;
}
@media (min-width: 1024px) {
  .two-col img {
    order: initial;
  }
}
@media (min-width: 1024px) {
  .two-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    text-align: left;
  }
}
.two-col--align-start {
  align-items: flex-start;
}
.two-col__content {
  order: 1;
  display: flex;
  flex-direction: row;
  gap: 30px;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .two-col__content {
    order: initial;
  }
}
.two-col__buttons {
  margin-top: 1rem;
}

.three-col {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
  text-align: center;
}
@media (min-width: 1024px) {
  .three-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
  }
}
.three-col__item, .three-col__content {
  display: flex;
  flex-direction: row;
  gap: 30px;
  flex-direction: column;
}
.three-col__description {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .three-col__description {
    width: 342px;
  }
}

.has-mega-menu:not(.open) .mega-menu {
  display: none;
}
@media (min-width: 1024px) {
  .has-mega-menu:focus .mega-menu, .has-mega-menu:focus-visible .mega-menu, .has-mega-menu:focus-within .mega-menu, .has-mega-menu:active .mega-menu, .has-mega-menu:hover .mega-menu {
    display: block;
  }
}
.has-mega-menu.open {
  background-color: #E1E1E1;
}
.has-mega-menu.open > [data-toggle-mega-menu]::after {
  transform: rotate(90deg);
}
@media (min-width: 1024px) {
  .has-mega-menu.open {
    background-color: initial;
  }
}
.has-mega-menu [data-toggle-mega-menu] {
  position: relative;
}
.has-mega-menu [data-toggle-mega-menu]::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: url("/assets/icons/chevron-right.svg") no-repeat;
}
@media (min-width: 1024px) {
  .has-mega-menu [data-toggle-mega-menu]::after {
    display: none;
  }
}

.mega-menu {
  padding-bottom: 1rem;
}
.mega-menu__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0;
}
@media (min-width: 1024px) {
  .mega-menu__list {
    gap: 2rem;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    padding: 0.8rem 2rem;
    font-size: 1rem;
    line-height: 1.5rem;
    background-color: #EDEDED;
  }
}
.mega-menu__item {
  padding: 1rem;
}
.mega-menu__item:not(.open) .mega-menu__sub-list {
  display: none;
}
@media (min-width: 1024px) {
  .mega-menu__item:not(.open) .mega-menu__sub-list {
    display: block;
  }
}
@media (min-width: 1024px) {
  .mega-menu__item {
    padding-left: 0;
    padding-right: 0;
  }
}
.mega-menu__title {
  display: block;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
}
.mega-menu__sub-list {
  padding-top: 1rem;
}
.mega-menu__sub-item {
  padding: 1rem;
}
@media (min-width: 1024px) {
  .mega-menu__sub-item {
    padding: 0.6rem 0;
  }
}
.mega-menu__link {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}
.mega-menu__link:hover {
  color: #EF3E33;
}
@media (min-width: 1024px) {
  .mega-menu {
    display: none;
    position: absolute;
    left: 50%;
    z-index: 9;
    transform: translateX(-50%);
    width: 100%;
  }
}

.pagination {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 24px;
  margin: auto auto 0;
  background-color: #ffffff;
}
.pagination__links {
  display: flex;
  flex-direction: row;
  gap: 0;
  align-items: center;
}
.pagination__links li:not(:first-of-type),
.pagination__links li:not(:last-of-type) {
  display: none;
}
@media (min-width: 1024px) {
  .pagination__links li:not(:first-of-type),
.pagination__links li:not(:last-of-type) {
    display: block;
  }
}
.pagination__links a {
  display: block;
  padding: 16px;
}
.pagination__links a.active {
  border-top: 2px solid #EF3E33;
}
.pagination__button:not([disabled]) {
  font-weight: bold;
  color: #EF3E33;
}
.pagination__button[disabled] {
  cursor: not-allowed;
}

.product-range {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-direction: column;
  padding: 24px 0;
}
@media (min-width: 1024px) {
  .product-range {
    gap: 48px;
    padding: 0;
  }
}
.product-range__title {
  text-align: center;
  font-size: 24px;
}
@media (min-width: 1024px) {
  .product-range__title {
    text-align: left;
  }
}
.product-range__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (min-width: 1024px) {
  .product-range__items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}
.product-range__item {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-direction: column;
  text-align: left;
}
@media (min-width: 1024px) {
  .product-range__item {
    text-align: center;
  }
}
@media (min-width: 1024px) {
  .product-range__buttons {
    margin: 0 auto;
  }
}

.rating {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
}
.rating__text {
  font-size: 12px;
  line-height: 20.16px;
}

/* Swiper */
.swiper {
  max-width: 100%;
}
.swiper-wrapper {
  height: fit-content !important;
}
.swiper-nav {
  display: flex;
  flex-direction: row;
  gap: 48px;
  padding: 48px 50px 48px;
  justify-content: center;
}
@media (min-width: 1024px) {
  .swiper-nav--left {
    justify-content: start;
  }
}
@media (min-width: 1024px) {
  .swiper-nav--right {
    justify-content: end;
  }
}
.swiper-nav__control {
  position: relative;
  width: 15px;
  height: 27px;
}
.swiper-nav__control:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.swiper-nav__control--prev:after {
  background-image: url("/assets/icons/swiper-left-white.svg");
}
.swiper-nav__control--prev.black:after {
  background-image: url("/assets/icons/swiper-left-black.svg");
}
.swiper-nav__control--next:after {
  background-image: url("/assets/icons/swiper-right-white.svg");
}
.swiper-nav__control--next.black:after {
  background-image: url("/assets/icons/swiper-right-black.svg");
}
.swiper-nav--central-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 9;
  justify-content: space-between;
  width: calc(100% - 48px);
  padding: 0;
  transform: translateY(-50%) translateX(-50%);
}
.swiper-nav--bottom-overlay {
  position: absolute;
  right: 0;
  bottom: 25px;
  z-index: 9;
}
.swiper-pagination {
  display: flex;
  flex-direction: row;
  gap: 0;
  width: fit-content;
  padding: 6px 12px;
  font-weight: 600;
  color: #ffffff;
  background-color: #EF3E33;
  border-radius: 24px;
}
.swiper-pagination:before {
  content: "";
  width: 18px;
  height: 18px;
  margin-right: 6px;
  background: url("/assets/icons/swiper-paginator.svg") no-repeat;
}

/* Default Carousel */
.carousel {
  display: flex;
  flex-direction: row;
  gap: 38px;
  flex-direction: column;
  max-width: 100vw;
  padding: 50px 0;
  background-color: #F6F6F6;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .carousel {
    gap: 69px;
    padding: 100px 0;
  }
}
.carousel--white {
  background-color: #ffffff;
}
.carousel--without-padding {
  padding: 0;
}
.carousel .item {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
  padding: 0 20px;
  text-align: center;
}
.carousel .item > * {
  margin: 0 auto;
}
.carousel .item p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.carousel .swiper-nav {
  padding: 50px 50px 0;
}

/* Two Col Carousel */
.two-col-carousel {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0;
  align-items: center;
  color: #ffffff;
  background-color: #3C3C3B;
  overflow-x: hidden;
}
@media (min-width: 1024px) {
  .two-col-carousel {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    background-image: url("/assets/img/shared/watermark.png");
    background-position: 140%;
    background-repeat: no-repeat;
    background-size: 55%;
  }
}
.two-col-carousel--flex {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  flex-direction: column;
}
@media (min-width: 1320px) {
  .two-col-carousel--flex {
    display: flex;
    flex-direction: row;
    gap: 0;
  }
}
.two-col-carousel__item {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  flex-direction: column;
  padding: 24px;
  text-align: center;
}
@media (min-width: 1024px) {
  .two-col-carousel__item {
    padding: 50px;
    text-align: right;
  }
}
.two-col-carousel__item-buttons {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .two-col-carousel__item-buttons {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content: end;
    align-items: end;
  }
}
.two-col-carousel .swiper-nav {
  padding-top: 0;
}

/* Contact Rep Carousel */
.contact-rep-carousel .two-col-carousel {
  background-image: url("/assets/img/shared/watermark.png");
  background-repeat: no-repeat;
  background-position: 30% 130%;
  background-size: 150%;
}
@media (min-width: 1024px) {
  .contact-rep-carousel .two-col-carousel {
    background-position: 120%;
    background-size: 65%;
  }
}
.contact-rep-carousel .two-col-carousel__item {
  padding-top: 70px;
  padding-bottom: 70px;
}
.contact-rep-carousel .swiper-nav--bottom-overlay {
  position: initial;
  padding-top: 24px;
  background-color: transparent;
}
@media (min-width: 1024px) {
  .contact-rep-carousel .swiper-nav--bottom-overlay {
    position: absolute;
  }
}

/* Testimonial Carousel */
.testimonial-carousel {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  flex-direction: column;
  align-items: center;
  color: #ffffff;
  background-color: #3C3C3B;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .testimonial-carousel {
    display: flex;
    flex-direction: row;
    gap: 0;
  }
}
.testimonial-carousel__image {
  background: url("/assets/img/components/testimonial-carousel/background.png") no-repeat center/cover;
  width: 100%;
  height: 250px;
}
@media (min-width: 1024px) {
  .testimonial-carousel__image {
    height: 500px;
  }
}
.testimonial-carousel__item {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  flex-direction: column;
  padding: 24px;
  text-align: center;
}
@media (min-width: 1024px) {
  .testimonial-carousel__item {
    padding: 50px;
    text-align: left;
  }
}
.testimonial-carousel__item img {
  margin: 0 auto 1rem;
}
@media (min-width: 1024px) {
  .testimonial-carousel__item img {
    margin: 0 0 1rem;
  }
}
.testimonial-carousel .swiper-nav {
  padding-top: 0;
}

/* Product Carousel */
.product-carousel__content {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  flex-direction: column;
}
.product-carousel__info {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: space-between;
  font-weight: 600;
}
.product-carousel__title {
  line-height: 25px;
}
.product-carousel__code {
  color: #EF3E33;
}

.associated-product-swiper .item {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  text-align: left;
}
@media (min-width: 1024px) {
  .associated-product-swiper .item {
    display: flex;
    flex-direction: row;
    gap: 0;
    flex-direction: column;
  }
}
.associated-product-swiper .item img {
  width: 100px;
}
@media (min-width: 1024px) {
  .associated-product-swiper .item img {
    width: 100%;
  }
}
.associated-product-swiper .item > * {
  margin-left: 0;
}

.register-form {
  padding: 50px 0;
  color: #ffffff;
  background-image: linear-gradient(rgba(60, 60, 59, 0.8980392157), rgba(60, 60, 59, 0.8980392157)), url("/assets/img/components/register-form/background.jpeg");
  background-repeat: no-repeat;
  background-position: center;
}
@media (min-width: 1024px) {
  .register-form {
    padding: 75px 0;
  }
}
.register-form__container {
  display: flex;
  flex-direction: row;
  gap: 48px;
  flex-direction: column;
  text-align: center;
}
@media (min-width: 1024px) {
  .register-form__container {
    display: flex;
    flex-direction: row;
    gap: 48px;
    text-align: left;
  }
}
.register-form__content {
  display: flex;
  flex-direction: row;
  gap: 30px;
  flex-direction: column;
  flex: 1;
}
.register-form__image {
  display: none;
}
@media (min-width: 1024px) {
  .register-form__image {
    display: block;
    margin-top: auto;
  }
}
.register-form__form {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  flex-direction: column;
  width: 783px;
  max-width: 100%;
  padding: 24px;
  margin: 0 auto;
  color: initial;
  background-color: #ffffff;
  text-align: left;
}
@media (min-width: 1024px) {
  .register-form__form {
    width: 50%;
    padding: 48px;
  }
}
@media (min-width: 1320px) {
  .register-form__form {
    width: 783px;
  }
}
.register-form__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}
@media (min-width: 1024px) {
  .register-form__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
.register-form__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 20px;
}
.register-form__checkbox {
  margin-top: 3px;
}
.register-form__consent-text {
  font-size: 0.875rem;
  line-height: 1.4;
}

.stats {
  padding: 80px 0;
  text-align: center;
  color: #ffffff;
  background-color: #757575;
}
.stats__inner {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 75px;
}
@media (min-width: 1024px) {
  .stats__inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}
.stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stats__count {
  font-family: "Helotypo", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 64px;
  line-height: 51px;
}
.stats__label {
  margin-top: 1rem;
  font-size: 24px;
  line-height: 30px;
}

.anchor-tabs {
  position: sticky;
  top: 0;
  z-index: 9;
  display: flex;
  flex-direction: row;
  gap: 48px;
  padding: 24px;
  background-color: #ffffff;
  overflow-x: auto;
}
@media (min-width: 1024px) {
  .anchor-tabs {
    justify-content: center;
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
.anchor-tabs__content {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
  scroll-margin-top: 144px;
}
@media (min-width: 1024px) {
  .anchor-tabs__content {
    gap: 100px;
  }
}
.anchor-tabs .anchor-tab {
  flex: none;
  position: relative;
  font-size: 20px;
  line-height: 19.14px;
  text-transform: uppercase;
  color: inherit;
  background-color: #ffffff;
  cursor: pointer;
}
.anchor-tabs .anchor-tab[aria-selected=true] {
  font-weight: 600;
  color: #EF3E33;
}
@media (min-width: 1024px) {
  .anchor-tabs .anchor-tab[aria-selected=true]:before {
    content: "";
    position: absolute;
    bottom: -24px;
    left: 50%;
    width: 60%;
    height: 4px;
    background-color: #EF3E33;
    border-radius: 8px;
    transform: translateX(-50%);
  }
}

.tabs {
  overflow: hidden;
}
.tabs__list {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
  flex-direction: row;
  gap: 48px;
  flex-direction: column;
  padding-top: 24px;
  padding-bottom: 48px;
  overflow-x: auto;
}
@media (min-width: 1024px) {
  .tabs__list {
    display: flex;
    flex-direction: row;
    gap: 48px;
    padding-top: 0;
    padding-bottom: 96px;
    justify-content: center;
  }
}
.tabs .tab {
  flex: none;
  position: relative;
  font-size: 20px;
  line-height: 19.14px;
  text-transform: uppercase;
  color: inherit;
  background-color: #ffffff;
  cursor: pointer;
}
.tabs .tab[aria-selected=true] {
  font-weight: 600;
  color: #EF3E33;
}
@media (min-width: 1024px) {
  .tabs .tab[aria-selected=true]:before {
    content: "";
    position: absolute;
    bottom: -24px;
    left: 50%;
    width: 60%;
    height: 4px;
    background-color: #EF3E33;
    border-radius: 8px;
    transform: translateX(-50%);
  }
}
.tabs .panel {
  display: none;
}
.tabs .panel:not([hidden]) {
  display: block;
}

.trade-account {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  flex-direction: column;
  align-items: center;
  background-color: #EDEDED;
}
@media (min-width: 1024px) {
  .trade-account {
    display: flex;
    flex-direction: row;
    gap: 0;
  }
}
.trade-account__full {
  background-image: linear-gradient(rgba(237, 237, 237, 0.8), rgba(237, 237, 237, 0.8)), url("/assets/img/components/trade-account-cta/background.jpeg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.trade-account__full .trade-account__content {
  align-items: center;
  padding: 24px;
  text-align: center;
}
@media (min-width: 1024px) {
  .trade-account__full .trade-account__content {
    padding: 100px 0;
  }
}
@media (min-width: 1024px) {
  .trade-account__full .trade-account__description {
    width: 720px;
  }
}
.trade-account__image {
  max-width: 100%;
  width: 100%;
  height: 300px;
  background-image: url("/assets/img/components/trade-account-cta/background.jpeg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media (min-width: 1024px) {
  .trade-account__image {
    width: 50%;
    height: 100%;
  }
}
@media (min-width: 1320px) {
  .trade-account__image {
    width: 720px;
  }
}
.trade-account__content {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-direction: column;
  flex: 1;
  align-items: center;
  padding: 24px;
  text-align: center;
}
@media (min-width: 1024px) {
  .trade-account__content {
    padding: 72px;
    align-items: flex-end;
    text-align: right;
  }
}
.trade-account__title {
  font-size: 2rem;
}

.wayfinder {
  align-items: center;
  height: 650px;
  overflow: hidden;
  margin: 0 auto;
  width: 100%;
  display: flex;
  position: relative;
}
.wayfinder__item {
  flex-grow: 1;
  position: relative;
  width: 256px;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: all 0.2s ease-in-out;
  border: 5px solid #fff;
  border-top: 0;
  border-bottom: 0;
}
.wayfinder__item:hover {
  flex-grow: 3;
}
@media (min-width: 1024px) {
  .wayfinder__item {
    flex: 1;
    width: auto;
  }
}
.wayfinder__item .overlay-holder {
  height: 50%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: end;
}
.wayfinder__item .panel-content-holder {
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: end;
  width: 100%;
}
.wayfinder__title {
  flex-grow: 1;
  position: absolute;
  bottom: 0;
  padding: 24px;
  font-weight: 600;
  font-size: 18px;
  line-height: 31.5px;
  color: #ffffff;
  text-transform: uppercase;
  word-wrap: break-word;
  pointer-events: none;
}

.about .hero {
  background: linear-gradient(rgba(60, 60, 59, 0.831372549), rgba(60, 60, 59, 0.831372549)), url("/assets/img/pages/about/hero.jpeg") no-repeat center/cover;
}

.aspects .hero {
  background-color: rgba(54, 81, 114, 0.8980392157);
}
.aspects .hero h1 {
  font-size: 60px;
  line-height: 59.23px;
}
@media (min-width: 1024px) {
  .aspects .hero h1 {
    font-size: 88px;
    line-height: 86.87px;
  }
}
.aspects .hero .button--primary {
  color: rgba(54, 81, 114, 0.8980392157);
  background-color: #ffffff;
  border-color: #ffffff;
}
.aspects .hero .button--primary:before {
  color: #ffffff;
  background-color: rgba(54, 81, 114, 0.8980392157);
}
.aspects .tabs .tab[aria-selected=true] {
  color: rgba(54, 81, 114, 0.8980392157);
}
.aspects .tabs .tab[aria-selected=true]:before {
  background-color: rgba(54, 81, 114, 0.8980392157);
}
.aspects .anchor-tab[aria-selected=true] {
  color: rgba(54, 81, 114, 0.8980392157);
}
.aspects .anchor-tab[aria-selected=true]:before {
  background-color: rgba(54, 81, 114, 0.8980392157);
}
.aspects .hero {
  background: linear-gradient(rgba(54, 81, 114, 0.3), rgba(54, 81, 114, 0.3)), url("/assets/img/pages/aspects/hero.png") no-repeat center/cover;
}

.aspire .hero {
  background-color: #3C3C3B;
}
.aspire .hero h1 {
  font-size: 60px;
  line-height: 59.23px;
}
@media (min-width: 1024px) {
  .aspire .hero h1 {
    font-size: 88px;
    line-height: 86.87px;
  }
}
.aspire .hero .button--primary {
  color: #3C3C3B;
  background-color: #ffffff;
  border-color: #ffffff;
}
.aspire .hero .button--primary:before {
  color: #ffffff;
  background-color: #3C3C3B;
}
.aspire .tabs .tab[aria-selected=true] {
  color: #3C3C3B;
}
.aspire .tabs .tab[aria-selected=true]:before {
  background-color: #3C3C3B;
}
.aspire .anchor-tab[aria-selected=true] {
  color: #3C3C3B;
}
.aspire .anchor-tab[aria-selected=true]:before {
  background-color: #3C3C3B;
}
.aspire .hero {
  color: #3C3C3B;
  background: linear-gradient(rgba(79, 125, 111, 0.3), rgba(79, 125, 111, 0.3)), url("/assets/img/pages/aspire/hero.png") no-repeat center/cover;
}
.aspire .hero .button {
  color: #ffffff;
  background-color: #3C3C3B;
  border: none;
}
.aspire .hero .button:before {
  padding: 15px 0 0;
  color: #3C3C3B;
  background-color: #ffffff;
}

.auth__wrapper {
  display: flex;
  flex-direction: row;
  gap: 38px;
  flex-direction: column;
  align-items: center;
  max-width: 100%;
  width: 720px;
  padding: 100px 24px;
}
.auth__content {
  display: flex;
  flex-direction: row;
  gap: 12px;
  flex-direction: column;
  max-width: 100%;
  width: 500px;
}
.auth__heading {
  font-family: "Gotham", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.auth__card {
  height: 100%;
  padding: 50px 24px;
  background-color: #ffffff;
}
.auth__card-heading {
  font-size: 20px;
  line-height: 25px;
}
.auth__card .button {
  margin-top: auto;
}

.blog-archive .hero {
  background: linear-gradient(rgba(60, 60, 59, 0.831372549), rgba(60, 60, 59, 0.831372549)), url("/assets/img/pages/blog-archive/hero.png") no-repeat center/cover;
}
.blog-archive__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
  padding-bottom: 50px;
}
@media (min-width: 1024px) {
  .blog-archive__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
.blog-archive__item {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  flex-direction: column;
}
.blog-archive__item-content {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  flex-direction: column;
  align-items: center;
  padding: 24px;
  text-align: center;
}
.blog-archive__item-title {
  color: #EF3E33;
}
.blog-archive__item-excerpt {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  width: 85%;
  margin-bottom: 24px;
}
.blog-archive__item .timestamp {
  margin-top: -56px;
}

.blog-post__info {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
}
@media (min-width: 1024px) {
  .blog-post__info {
    width: 955px;
    margin: 0 auto;
  }
}
.blog-post__category {
  font-weight: 600;
  text-transform: uppercase;
}
.blog-post__subtitle {
  font-size: 48px;
  line-height: 51px;
}
.blog-post__content {
  display: flex;
  flex-direction: row;
  gap: 48px;
  flex-direction: column;
  max-width: 100%;
}
@media (min-width: 1024px) {
  .blog-post__content {
    max-width: 824px;
    margin: 0 auto;
  }
}

.category .two-col__content {
  order: 0;
}
.category__docs {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .category__docs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
.category__docs-icon {
  width: 24px;
  height: 24px;
}
.category__docs li {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  padding: 12px;
  background-color: #ffffff;
  border: 1px solid #E8E8E8;
}
.category__docs a {
  color: #EF3E33;
  font-weight: 600;
  text-decoration: underline;
}
.category__images {
  position: relative;
}
.category__images .swiper-pagination {
  position: absolute;
  left: auto;
  right: 24px;
  bottom: 24px;
  color: #ffffff;
  width: fit-content;
}
.category__inner {
  padding: 24px 0;
  background-color: #E1E1E1;
}
@media (min-width: 1024px) {
  .category__inner {
    padding: 50px 0;
  }
}
.category__filters {
  max-width: 100%;
  width: 100%;
  height: min-content;
  background-color: #ffffff;
}
@media (min-width: 1024px) {
  .category__filters {
    width: 342px;
  }
}
.category__filters-toggle {
  position: relative;
  display: block;
  padding: 24px;
  font-weight: 600;
}
@media (min-width: 1024px) {
  .category__filters-toggle {
    display: none;
  }
}
.category__filters-toggle:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  display: block;
  width: 24px;
  height: 20px;
  background: url("/assets/icons/toggle.svg") no-repeat center/cover;
  cursor: pointer;
}
.category__filters--open .category__filters-content {
  display: block;
}
.category__filters-content {
  display: none;
  padding: 24px;
}
@media (min-width: 1024px) {
  .category__filters-content {
    display: block;
  }
}
.category__filters-action {
  display: block;
  margin-bottom: 48px;
  font-weight: 600;
  text-align: right;
  color: #EF3E33;
}
.category__filters .accordion__item {
  border: none;
}
.category__filters .accordion__item-title {
  padding: 0;
  font-weight: bold;
  color: #656D74;
}
.category__filters .accordion__item-title:after {
  right: 0;
}
.category__filters .accordion__item-content {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  flex-direction: column;
  padding-left: 0;
  padding-right: 0;
  border-top: none;
}
.category__filters-form {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}
.category__filters-form input {
  width: 217px;
  margin-right: 0;
}
.category__filters-form [type=submit] {
  width: 100%;
  min-width: auto;
  flex: 1;
}
.category__filters [type=checkbox] {
  margin-right: 16px;
}
.category__flex {
  display: flex;
  flex-direction: row;
  gap: 42px;
}
.category__product {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-direction: column;
  padding: 24px;
  background-color: #ffffff;
}
.category__products {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  flex-direction: column;
  flex: 1;
}
.category__products-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}
@media (min-width: 1024px) {
  .category__products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    grid-template-rows: max-content;
  }
}
.category__products-item {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  height: fit-content;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .category__products-item {
    display: flex;
    flex-direction: row;
    gap: 24px;
    flex-direction: column;
  }
}
.category__products-item-name {
  font-family: "Helotypo", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 20px;
  line-height: 20px;
}
@media (min-width: 1024px) {
  .category__products-item-name {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}
.category__products-item img {
  width: 100px;
  height: 100px;
}
@media (min-width: 1024px) {
  .category__products-item img {
    width: 100%;
    height: 100%;
  }
}
.category__table thead {
  display: none;
}
@media (min-width: 1024px) {
  .category__table thead {
    display: block;
  }
}
.category__table tr {
  display: block;
  background-color: #ffffff;
}
@media (min-width: 1024px) {
  .category__table tr {
    display: flex;
    flex-direction: row;
    gap: 0;
    flex-wrap: wrap;
  }
}
.category__table tr:not(.show-associated-products) {
  border-bottom: 1px solid;
}
.category__table tr:nth-child(odd) {
  background-color: #ffffff;
}
.category__table tbody tr:last-child {
  border-bottom: none;
}
.category__table th {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  color: #ffffff;
  background-color: #3C3C3B;
  cursor: pointer;
}
.category__table th:after {
  content: "";
  display: inline-block;
  position: relative;
  top: 5px;
  left: 10px;
  width: 18px;
  height: 18px;
  background: url("/assets/icons/table-filter.svg") no-repeat;
}
.category__table th, .category__table td {
  display: block;
  flex: 1;
  text-align: left;
  font-weight: 400;
}
.category__table th:not(.drop), .category__table td:not(.drop) {
  display: inline-block;
  font-weight: 600;
}
.category__table th:not(.drop):first-of-type, .category__table td:not(.drop):first-of-type {
  display: block;
}
.category__table .drop {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  flex-direction: column;
  flex: auto;
  width: 100%;
}
@media (min-width: 1024px) {
  .category__table .drop {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
  }
}
.category__table .drop .quick-links {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  flex-direction: column;
  flex-direction: column-reverse;
  font-weight: 400;
}
@media (min-width: 1024px) {
  .category__table .drop .quick-links {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
  }
}
@media (min-width: 1024px) {
  .category__table .drop .quick-links li {
    display: initial;
  }
}
.category__table .associated-product-row {
  background-color: #ffffff;
}
.category__table .associated-product-row tr {
  background-color: #F3F3F3;
  border-bottom: none;
}
.category__table .associated-product-row tr:nth-child(odd) {
  background-color: #E6E6E6;
}
.category__table .associated-product-row td {
  font-weight: 300;
}
.category__table .associated-product-row td > :first-child {
  padding-top: 0;
}
.category--optional-filters .category__inner > div {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .category--optional-filters .category__inner > div {
    display: flex;
    flex-direction: row;
    gap: 48px;
  }
}
.category--optional-filters .category__inner {
  background-color: #F6F6F6;
}
.category--optional-filters .category__inner .pagination {
  margin-top: auto;
  background-color: transparent;
}
.category--full-grid .category__inner {
  padding-top: 0;
}
.category--repeating-grid .category__product-grid {
  display: flex;
  flex-direction: row;
  gap: 42px;
  flex-direction: column;
}

.contact .hero {
  background: linear-gradient(rgba(60, 60, 59, 0.831372549), rgba(60, 60, 59, 0.831372549)), url("/assets/img/pages/contact/hero.png") no-repeat center/cover;
}
.contact .contact-map__wrapper {
  order: 2;
  padding-bottom: 24px;
}
@media (min-width: 1024px) {
  .contact .contact-map__wrapper {
    order: 0;
  }
}

.glide .hero {
  background-color: rgba(76, 64, 89, 0.8980392157);
}
.glide .hero h1 {
  font-size: 60px;
  line-height: 59.23px;
}
@media (min-width: 1024px) {
  .glide .hero h1 {
    font-size: 88px;
    line-height: 86.87px;
  }
}
.glide .hero .button--primary {
  color: rgba(76, 64, 89, 0.8980392157);
  background-color: #ffffff;
  border-color: #ffffff;
}
.glide .hero .button--primary:before {
  color: #ffffff;
  background-color: rgba(76, 64, 89, 0.8980392157);
}
.glide .tabs .tab[aria-selected=true] {
  color: rgba(76, 64, 89, 0.8980392157);
}
.glide .tabs .tab[aria-selected=true]:before {
  background-color: rgba(76, 64, 89, 0.8980392157);
}
.glide .anchor-tab[aria-selected=true] {
  color: rgba(76, 64, 89, 0.8980392157);
}
.glide .anchor-tab[aria-selected=true]:before {
  background-color: rgba(76, 64, 89, 0.8980392157);
}
.glide .hero {
  background: linear-gradient(rgba(76, 64, 89, 0.3), rgba(76, 64, 89, 0.3)), url("/assets/img/pages/glide/hero.png") no-repeat center/cover;
}
.glide .wardrobe-designer__heading {
  padding-bottom: 24px;
  color: #EF3E33;
  text-transform: uppercase;
  border-bottom: 1px solid #000000;
}
.glide .wardrobe-designer__description {
  max-width: 100%;
  width: 100%;
  margin: 30px auto 0;
}
@media (min-width: 1024px) {
  .glide .wardrobe-designer__description {
    width: 342px;
  }
}

.home .hero {
  background: linear-gradient(rgba(60, 60, 59, 0.831372549), rgba(60, 60, 59, 0.831372549)), url("/assets/img/pages/home/hero.png") no-repeat center/cover;
}

.manufacturing-automation .hero {
  background: linear-gradient(rgba(60, 60, 59, 0.831372549), rgba(60, 60, 59, 0.831372549)), url("/assets/img/pages/manufacturing-automation/hero.png") no-repeat center/cover;
}
@media (min-width: 1024px) {
  .manufacturing-automation .video {
    margin-top: -150px;
  }
}

.product .two-col__content {
  order: -1;
}
.product__code {
  font-weight: 600;
}
.product__rating {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .product__rating {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
  }
}
.product__price {
  font-family: "Helotypo", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 24px;
  line-height: 36px;
}
.product__price-wrapper {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
}
.product__add-to-cart {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  flex-direction: row;
  gap: 0;
  width: 100%;
  margin-left: auto;
}
@media (min-width: 1024px) {
  .product__add-to-cart {
    width: fit-content;
  }
}
.product__add-to-cart input {
  width: 50%;
  text-align: center;
  color: #EF3E33;
  border-color: #EF3E33;
  border-width: 4px;
  border-radius: 0;
}
@media (min-width: 1024px) {
  .product__add-to-cart input {
    width: 250px;
  }
}
.product__add-to-cart input:focus {
  outline: none;
}
.product__add-to-cart [type=submit] {
  width: 50%;
}
@media (min-width: 1024px) {
  .product__add-to-cart [type=submit] {
    width: auto;
  }
}
.product__detail td:nth-child(1) {
  width: 390px;
  font-weight: bold;
}
.product .two-col {
  text-align: left;
}
.product .tabs__list {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: start;
  gap: 0;
  padding: 0;
}
.product .tabs__list .tab {
  padding: 10px 24px;
  font-weight: bold;
  color: #3C3C3B;
  text-transform: none;
}
.product .tabs__list .tab:before {
  display: none;
}
.product .tabs__list .tab[aria-selected=true] {
  color: #ffffff;
  background-color: #3C3C3B;
}

.sign-in .auth__card {
  width: 100%;
  background-color: #EDEDED;
}
@media (min-width: 1024px) {
  .sign-in .auth__card {
    width: 342px;
  }
}
.sign-in form {
  width: 100%;
}
.sign-in form label {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  text-align: left;
}
.sign-in form label.password {
  justify-content: space-between;
}

.sign-up {
  background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url("/assets/img/pages/sign-up/background.jpeg") no-repeat center/cover;
}

.trade-counters .hero {
  background: linear-gradient(rgba(60, 60, 59, 0.831372549), rgba(60, 60, 59, 0.831372549)), url("/assets/img/pages/trade-counters/hero.png") no-repeat center/cover;
} /* General Reset */
* {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: middle;
  box-sizing: border-box;
}

/* HTML5 Elements */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
spacing {
  display: block;
}

body {
  line-height: 1;
  font-family: "Gotham", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  scroll-behavior: smooth;
  color: #3C3C3B;
}

ol,
ul {
  list-style: none;
}

.list {
  display: flex;
  flex-direction: row;
  gap: 0;
  flex-direction: column;
  list-style: disc;
  list-style-position: inside;
  padding-left: 1rem;
  line-height: 38.24px;
}
@media (min-width: 1024px) {
  .list {
    list-style-position: outside;
  }
}

blockquote,
q {
  quotes: none;
}
blockquote::before, blockquote::after,
q::before,
q::after {
  content: "";
}

/* Tables */
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}
table tr:nth-child(odd) {
  background-color: #F6F6F6;
}
table th,
table td {
  padding: 12px;
}

/* Links */
a {
  text-decoration: none;
  color: inherit;
}
a.anchor {
  text-decoration: underline;
}
a.anchor:hover {
  color: #EF3E33;
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Helotypo", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-weight: 400;
  letter-spacing: 0.02rem;
}

h1 {
  font-size: 36px;
  line-height: 38.52px;
}
@media (min-width: 1024px) {
  h1 {
    font-size: 48px;
    line-height: 51px;
  }
}

h2 {
  font-size: 38px;
  line-height: 51px;
  letter-spacing: 2%;
}

main p {
  font-size: 1rem;
  line-height: 1.9rem;
}

.text-accent {
  color: #EF3E33;
}

/* Input Placeholders */
::-webkit-input-placeholder {
  font-family: inherit;
}

/* Utility Classes */
.container {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.spacing {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
  padding-top: 24px;
  padding-bottom: 24px;
}
@media (min-width: 1024px) {
  .spacing {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 100px;
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.spacing--with-narrow-gap {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 50px;
}
.spacing--without-padding {
  padding-top: 0;
  padding-bottom: 0;
}
.spacing--without-padding-top {
  padding-top: 0;
}
.spacing--without-padding-bottom {
  padding-bottom: 0;
}

.visually-hidden {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  width: 1px;
  height: 1px;
  overflow: hidden;
  white-space: nowrap;
}

.centered {
  text-align: center;
}
.centered > * {
  margin: 0 auto;
}

.highlight {
  width: 100%;
  padding: 24px;
  margin: 0 auto;
  color: #ffffff;
  background-color: #EF3E33;
}
@media (min-width: 1024px) {
  .highlight {
    width: 80%;
  }
}

/* Inline Utilities */
.inline {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1024px) {
  .inline {
    justify-content: start;
  }
}
.inline img {
  order: 0;
}

/* Quick Links */
.quick-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (min-width: 1024px) {
  .quick-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
.quick-links.flex {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .quick-links.flex {
    display: flex;
    flex-direction: row;
    gap: 24px;
  }
}
.quick-links a {
  padding-bottom: 5px;
}
.quick-links a:after {
  content: ">";
  display: inline-block;
  margin-left: 5px;
  transition: all 200ms ease-in-out;
}
.quick-links a.expanded:after {
  transform: rotate(-90deg);
}
.quick-links a:hover {
  color: #EF3E33;
}

/* Quote */
.quote {
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex-direction: column;
  padding: 20px 0;
  font-style: italic;
  text-align: center;
}
@media (min-width: 1024px) {
  .quote {
    padding: 0 0 0 20px;
    text-align: left;
    border-left: 5px solid #EF3E33;
  }
}
.quote__title {
  font-size: 24px;
  font-weight: 400;
}
.quote__title:after {
  content: "";
  display: block;
  width: 60%;
  height: 5px;
  margin: 24px auto 0;
  background-color: #EF3E33;
}
@media (min-width: 1024px) {
  .quote__title:after {
    display: none;
  }
}
.quote__text {
  font-size: 20px;
}
.quote__author {
  font-weight: 600;
}

/* Masonry */
.masonry {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}
.masonry .stacked {
  display: flex;
  flex-direction: row;
  gap: 48px;
  flex-direction: column;
}
.masonry .flex {
  display: flex;
  flex-direction: row;
  gap: 48px;
}

/* Timestamp */
.timestamp {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  max-width: 100%;
  width: 149px;
  padding: 6px 12px;
  color: #EF3E33;
  background-color: #ffffff;
  font-weight: 600;
  border: 1px solid #E8E8E8;
  border-radius: 6px;
}
.timestamp:before {
  content: "";
  display: block;
  width: 15px;
  height: 16px;
  background-image: url("/assets/icons/calendar.svg");
}

/*# sourceMappingURL=main.css.map */
