:root {
  --white: white;
  --black: black;
  --text-color: #333;
  --white-text: #cdcdcd;
  --red: #ed1c24;
  --bg-grey: #ececec;
  --button-black: #212121;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

h1 {
  color: var(--white);
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Poppins, sans-serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.4;
}

h2 {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}

h5 {
  text-align: center;
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-right: 20px;
  font-family: Poppins, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
}

h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: bold;
  line-height: 18px;
}

.body {
  color: var(--text-color);
  font-family: Lato, sans-serif;
  font-size: 18px;
  line-height: 1.4;
}

.home-banner-section {
  background-color: var(--black);
  background-image: url('../images/E3-banner-slide1_1.avif');
  background-position: 50%;
  background-size: cover;
  justify-content: flex-start;
  align-items: center;
  height: 100vh;
  margin-top: -100px;
  padding-top: 40px;
  display: flex;
}

.container {
  flex: 1;
  max-width: 80rem;
  margin-left: 12.5%;
  margin-right: 12.5%;
}

.container.home-banner {
  justify-content: flex-start;
  align-items: stretch;
  height: 60vh;
  display: flex;
}

.container.left {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.heading {
  color: var(--white);
  max-width: 500px;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 64px;
  line-height: 1.4;
}

.subtext {
  max-width: 600px;
  margin-top: 20px;
  margin-bottom: 40px;
  font-size: 18px;
  line-height: 1.4;
}

.subtext.white {
  color: var(--white-text);
  font-family: Poppins, sans-serif;
  font-weight: 500;
}

.subtext.not-home {
  color: var(--white-text);
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 18px;
}

.subtext.not-home.hide {
  display: none;
}

.home-banner-wrapper {
  flex-flow: column;
  justify-content: space-around;
  align-items: flex-start;
  display: flex;
}

.home-banner-heading {
  max-width: 750px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 54px;
  line-height: 1.2;
  overflow: visible;
}

.top-nav-bar {
  background-color: var(--black);
}

.navbar-logo-left-container {
  z-index: 5;
  background-color: #0000;
  width: 1030px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 15px 20px;
}

.navbar-logo-left-container.shadow-three {
  width: 100%;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  padding: 20px 0;
}

.container-2 {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.navbar-wrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.nav-menu-two {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.nav-link {
  color: var(--white);
  letter-spacing: .25px;
  padding: 5px 16px;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  text-decoration: none;
}

.nav-link:hover {
  color: var(--red);
}

.nav-link:focus-visible, .nav-link[data-wf-focus-visible] {
  outline-offset: 0px;
  border-radius: 4px;
  outline: 2px solid #0050bd;
}

.nav-dropdown {
  margin-left: 5px;
  margin-right: 5px;
}

.nav-dropdown-toggle {
  color: var(--white);
  letter-spacing: .25px;
  padding: 5px 30px 5px 10px;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

.nav-dropdown-toggle:hover {
  color: var(--red);
}

.nav-dropdown-toggle:focus-visible, .nav-dropdown-toggle[data-wf-focus-visible] {
  outline-offset: 0px;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-dropdown-toggle.dropdown {
  margin-top: 3px;
}

.nav-dropdown-icon {
  margin-right: 10px;
}

.nav-dropdown-list {
  background-color: #fff;
  border-radius: 12px;
}

.nav-dropdown-list.w--open {
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav-dropdown-list.shadow-three.mobile-shadow-hide.w--open {
  background-color: var(--white);
  border-radius: 0;
  margin-top: 16px;
  padding-top: 0;
  padding-bottom: 0;
}

.nav-dropdown-list.shadow-three.mobile-shadow-hide {
  border: 1px solid #000;
}

.nav-dropdown-list.shadow-three.mobile-shadow-hide.w--open {
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 0;
  margin-top: 16px;
  padding-top: 0;
  padding-bottom: 0;
}

.nav-dropdown-link {
  color: var(--text-color);
  border: .5px solid #ececec;
  width: 100%;
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 16px;
}

.nav-dropdown-link:hover {
  background-color: var(--red);
  color: var(--white);
}

.nav-dropdown-link:focus-visible, .nav-dropdown-link[data-wf-focus-visible] {
  outline-color: var(--white);
  outline-offset: 0px;
  color: var(--white);
  outline-width: 2px;
  outline-style: solid;
}

.nav-divider {
  background-color: #e4ebf3;
  width: 1px;
  height: 22px;
  margin-left: 15px;
  margin-right: 15px;
  display: none;
}

.nav-link-accent {
  color: #1a1b1f;
  letter-spacing: .25px;
  margin-left: 5px;
  margin-right: 20px;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
  display: none;
}

.nav-link-accent:hover {
  color: #1a1b1fbf;
}

.contact-button {
  border: 2px solid var(--red);
  background-color: var(--red);
  color: var(--white);
  letter-spacing: 2px;
  text-transform: none;
  padding: 1rem 1.5rem;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  text-decoration: none;
  transition: all .35s;
}

.contact-button:hover {
  border: 2px solid var(--black);
  background-color: var(--black);
  color: var(--white);
}

.text-block {
  font-size: 16px;
  font-weight: 500;
}

.home-about-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.home-about-wrapper {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.header-section {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-bottom: 60px;
  display: flex;
}

.header-section.hide {
  display: none;
}

.header-section-image {
  width: 40px;
  height: 40px;
}

.header-section-tag {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 400;
}

.header-section-tag.white {
  color: var(--white-text);
}

.header-section-tag.left {
  text-align: left;
  font-size: 16px;
}

.section-heading {
  color: var(--black);
  text-align: center;
  max-width: 600px;
  padding-right: 0;
  font-size: 32px;
  font-weight: 700;
}

.section-heading.white {
  color: var(--white);
  padding-right: 0;
}

.section-heading.left {
  text-align: left;
  max-width: none;
}

.home-about-content {
  flex-flow: row;
  justify-content: space-around;
  align-items: stretch;
  width: 100%;
  margin-top: 20px;
  display: flex;
}

.home-about-left {
  width: 50%;
  margin-right: 10%;
}

.home-about-right {
  width: 50%;
}

.paragraph-heading {
  margin-bottom: 20px;
  font-family: Poppins, sans-serif;
  font-size: 20px;
  line-height: 1.4;
}

.paragraph-heading.white {
  color: var(--white);
}

.paragraph-heading.subheader {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 500;
}

.paragraph-heading.subheader.red {
  color: var(--red);
}

.paragraph {
  color: var(--text-color);
  margin-left: 0;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}

.paragraph.white {
  z-index: 3;
  color: var(--white);
}

.paragraph.hide {
  display: none;
}

.paragraph.bold {
  font-weight: 700;
}

.text-wrapper {
  margin-bottom: 40px;
}

.text-wrapper.hide {
  display: none;
}

.text-wrapper.no-padding {
  margin-bottom: 0;
}

.home-about-right-image {
  aspect-ratio: auto;
  object-fit: contain;
  width: 100%;
  max-height: 80%;
}

.bullet-points {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.div-block {
  border: 2px solid #000;
  border-radius: 20px;
  flex: none;
  width: 8px;
  height: 8px;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-right: 16px;
  display: inline-block;
}

.bullet-point-wrapper {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex-flow: column;
  display: flex;
}

.category-section {
  background-color: var(--red);
  opacity: 1;
  padding-top: 80px;
  padding-bottom: 80px;
}

.category-grid {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.featured-brands-section {
  background-color: var(--black);
  padding-top: 80px;
  padding-bottom: 80px;
}

.featured-brand-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.more-about-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.contact-section {
  background-image: url('../images/Contact-us-bg_1.avif');
  background-position: 50%;
  background-size: cover;
  padding-top: 80px;
  padding-bottom: 80px;
}

.contact-header-section {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 50%;
  margin-bottom: 40px;
  display: flex;
}

.contact-form-inner-wrapper {
  background-color: var(--white);
  justify-content: center;
  align-items: center;
  display: flex;
  box-shadow: 0 2px 20px #0000001a;
}

.contact-form-inner-wrapper.no-shadow {
  box-shadow: none;
  justify-content: center;
  align-items: stretch;
}

.form-block {
  width: 50%;
  max-width: 600px;
  margin: 40px;
}

.form-block.no-padding {
  width: 100%;
  max-width: 500px;
  margin: 40px 0 0;
}

.bottom-link-strip {
  border-top: 1px solid #525252;
  justify-content: space-between;
  align-items: center;
  margin-left: 100px;
  margin-right: 100px;
  display: flex;
}

.phone-numbers {
  flex-flow: column;
  display: flex;
}

.social-media-iconbox {
  color: #fff;
  background-color: #222c31;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  display: flex;
}

.social-media-iconbox:hover {
  color: #ed1c24;
}

.bottom---about {
  color: #ccc;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.bottom-nav-grid {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 2fr 1fr 1.25fr;
  margin-top: 100px;
  margin-bottom: 100px;
}

.bottom-header {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 24px;
  font-family: Poppins, sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.2;
}

.container-3 {
  z-index: 3;
  max-width: 1440px;
  margin-left: 150px;
  margin-right: 150px;
  position: relative;
}

.social-media-grid {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  place-items: center start;
  display: flex;
}

.contact-infobox {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border-bottom: 1px solid #cdcdcd80;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 20px;
  padding-top: 0;
  padding-bottom: 20px;
  display: flex;
}

.contact-infobox.last {
  border-bottom-style: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.bottom---3-column.visible {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  flex-flow: column;
  width: auto;
  display: flex;
}

.bottom---1-column {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: column;
  width: 80%;
  display: flex;
}

.bottom-nav-bar {
  background-color: var(--black);
}

.bottom---2-column {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: column;
  display: flex;
}

.bottom-nav-link---contact {
  color: #ccc;
  margin-bottom: 0;
  padding: 5px 5px 5px 0;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  line-height: 1.2;
  text-decoration: none;
  transition: all .35s;
  display: inline-flex;
}

.bottom-nav-link---contact:hover {
  text-decoration: underline;
}

.emaar-info-wrapper {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: flex;
}

.contact-info-wrapper {
  flex-flow: column;
  display: flex;
}

.contact-icon {
  color: var(--red);
  width: 24px;
  height: 24px;
  margin-top: 5px;
}

.bottom-nav-link {
  color: #ccc;
  margin-bottom: 10px;
  padding: 5px 5px 5px 0;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  text-decoration: none;
  transition: all .35s;
  display: inline-flex;
}

.bottom-nav-link:hover {
  text-decoration: underline;
}

.whatsapp {
  width: 24px;
  height: 24px;
}

.bottom-logo-image {
  max-width: 80%;
  height: 64px;
}

.bottom-link-text {
  opacity: .65;
  color: #ccc;
  text-align: right;
  justify-content: space-between;
  padding: 16px;
  font-size: 16px;
  display: flex;
}

.bottom-link-text.left {
  text-align: left;
}

.bottom-link-text.right {
  text-align: right;
  text-decoration: none;
}

.quick-links-wrapper {
  flex-flow: column;
  display: flex;
}

.link {
  color: #ccc;
  transition: all .35s;
}

.link:hover {
  color: #000;
  background-color: #fff;
}

.link.left:hover {
  background-color: var(--red);
  color: var(--white);
}

.bottom---4-column.visible {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  flex-flow: column;
  display: flex;
}

.button-4 {
  background-color: var(--black);
  box-shadow: -7px 7px 0 -1px var(--red);
  color: #fff;
  border-radius: 0;
  padding: 1.5rem 2rem;
  font-size: 16px;
  text-decoration: none;
  transition: transform .3s, box-shadow .3s;
}

.button-4:hover {
  background-color: var(--red);
  box-shadow: none;
  transform: translate(-.25rem, .375rem);
}

.button-4.small {
  margin-top: 40px;
  padding: 1rem 2.5rem;
  font-family: Poppins, sans-serif;
}

.button-4.extra-padding {
  font-family: Poppins, sans-serif;
}

.click-text {
  text-transform: capitalize;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  text-decoration: none;
}

.category-card {
  border: 1px solid var(--white-text);
  justify-content: center;
  align-items: center;
  min-height: 200px;
  padding: 0;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.category-card.w--current {
  background-color: var(--white);
  border-width: 2px;
  padding: 4px;
  transition: all .35s;
}

.category-name {
  z-index: 3;
  color: var(--black);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
}

.category-name.white {
  color: var(--white);
}

.category-name.black {
  color: var(--white);
  font-weight: 500;
}

.category-hover-overlay {
  z-index: 4;
  background-color: var(--black);
  opacity: 0;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px;
  text-decoration: none;
  display: flex;
  position: absolute;
  inset: 0%;
}

.category-icon {
  color: var(--red);
  margin-top: 10px;
}

.category-icon.hide {
  z-index: 1;
  opacity: 0;
  display: block;
}

.category-icon-image {
  z-index: 1;
  opacity: 1;
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.category-icon-image.opacity {
  opacity: 1;
}

.textfield {
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.textfield.white {
  z-index: 1;
  color: var(--white);
  position: relative;
}

.contact-form-image-wrapper {
  justify-content: center;
  align-items: flex-end;
  width: 50%;
  display: flex;
}

.form {
  margin-top: auto;
  margin-bottom: auto;
}

.industries-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.industries-card {
  z-index: 2;
  border: 1px solid var(--white-text);
  background-color: var(--white);
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  padding: 24px;
  display: block;
}

.industry-name {
  z-index: 1;
  color: var(--black);
  font-family: Poppins, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  position: relative;
}

.industry-name.white {
  color: var(--white);
}

.industry-name.black {
  color: var(--black);
}

.banner-section {
  background-color: var(--black);
  background-image: url('../images/E3-banner-slide1_1.avif');
  background-position: 50%;
  background-size: cover;
  justify-content: flex-start;
  align-items: flex-end;
  height: 40vh;
  margin-top: -100px;
  display: flex;
}

.banner-section.brand {
  height: 35vh;
}

.banner-heading {
  max-width: 750px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 54px;
  line-height: 1.2;
  overflow: visible;
}

.banner-heading.bottom-padding {
  max-width: 1280px;
  font-size: 45px;
}

.breadcrumb {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: flex-start;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 20px;
  display: flex;
}

.code-embed {
  color: var(--white-text);
}

.breadcrumb-text {
  color: var(--white-text);
  padding-bottom: 1px;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  text-decoration: none;
}

.breadcrumb-text.w--current {
  font-family: Poppins, sans-serif;
}

.breadcrumb-text.white {
  z-index: 1;
  color: var(--white);
  position: relative;
}

.dot {
  background-color: var(--white-text);
  color: var(--white-text);
  border-radius: 20px;
  width: 4px;
  height: 4px;
}

.about-content-section {
  background-color: var(--bg-grey);
  padding-top: 80px;
  padding-bottom: 80px;
}

.about-content {
  flex-flow: row;
  justify-content: space-around;
  align-items: stretch;
  width: 100%;
  margin-top: 20px;
  display: flex;
}

.about-left {
  width: 50%;
}

.about-right {
  width: 50%;
  margin-left: 10%;
}

.about-left-image {
  aspect-ratio: auto;
  object-fit: contain;
  width: 100%;
  max-height: 80%;
}

._24px {
  height: 24px;
}

._24px.width {
  width: 24px;
}

.usps {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.usp-card {
  z-index: 2;
  border: 1px solid var(--white-text);
  background-color: var(--bg-grey);
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  padding: 24px;
  display: block;
}

.usp-number-box {
  background-color: var(--red);
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  display: flex;
}

.usp-number {
  color: var(--white);
  font-family: Poppins, sans-serif;
  font-size: 24px;
  font-weight: 500;
}

.contact-page-section {
  background-color: var(--white);
  padding-top: 80px;
  padding-bottom: 80px;
}

.contact-form-right {
  background-color: var(--black);
  justify-content: flex-start;
  align-items: center;
  width: 40%;
  padding: 40px;
  display: flex;
}

.contact-page-content-wrapper {
  grid-column-gap: 10%;
  grid-row-gap: 10%;
  display: flex;
}

.contact-info-header {
  color: var(--white);
  margin-bottom: 0;
  padding: 5px 5px 5px 0;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  line-height: 1.2;
  text-decoration: none;
  transition: all .35s;
  display: inline-flex;
}

.brand-card {
  z-index: 2;
  border: 1px solid var(--text-color);
  background-color: var(--black);
  color: var(--white);
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  padding: 16px 16px 20px;
  text-decoration: none;
  transition: all .3s;
  display: block;
}

.brand-card:hover {
  background-color: var(--red);
  color: var(--white);
}

.brand-card.category-page {
  border-color: var(--text-color);
  background-color: var(--white);
  color: var(--black);
  justify-content: space-around;
  align-items: center;
  height: 100%;
  padding-bottom: 16px;
  transition: all .25s;
  display: flex;
}

.brand-card.category-page:hover {
  background-color: var(--black);
  color: var(--white);
}

.brand-card.brand-page {
  background-color: var(--red);
  justify-content: space-around;
  align-items: center;
  padding-bottom: 16px;
  display: flex;
  overflow: hidden;
}

.brand-card.brand-page:hover {
  background-color: var(--black);
  color: var(--white);
}

.brand-card.brand-page.w--current {
  background-color: var(--red);
  justify-content: space-around;
  align-items: center;
  padding-bottom: 16px;
  display: flex;
  overflow: hidden;
}

.brand-card.brand-page.w--current:hover {
  background-color: var(--black);
}

.product-brand-name {
  z-index: 1;
  border-bottom: 2px solid var(--red);
  margin-bottom: 0;
  padding-bottom: 8px;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  display: inline-block;
  position: relative;
}

.product-brand-name.white {
  color: var(--white);
}

.product-brand-name.black {
  color: var(--black);
}

.product-brand-name.hide {
  margin-top: 35px;
  display: none;
}

.brand-card-imagebox {
  z-index: 2;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 0;
  display: flex;
  position: relative;
}

.brand-card-imagebox.small {
  width: 80%;
}

.brand-card-imagebox.square {
  object-fit: cover;
  height: 100%;
  overflow: clip;
}

.brand-card-imagebox.square.small.helmets {
  object-fit: contain;
  width: 75%;
  overflow: clip;
}

.brand-name {
  z-index: 1;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
  transition: all .35s;
  position: relative;
}

.brand-name.white {
  color: var(--white);
}

.brand-name.black {
  color: var(--black);
}

.brand-name.brand-page {
  font-size: 14px;
}

.brand-name.caegory-page {
  font-size: 14px;
  transition-duration: .25s;
}

.overlay-red {
  z-index: 2;
  opacity: 1;
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0%;
}

.category-icon-image-copy {
  z-index: 1;
  opacity: 1;
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0%;
}

.overlay {
  z-index: 1;
  background-color: var(--white);
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0%;
}

.overlay.high-opacity {
  opacity: .7;
}

.category-card-content {
  z-index: 3;
  border: 2px solid #000;
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  height: 100%;
  text-decoration: none;
  display: flex;
  position: relative;
}

.category-card-content.hide {
  display: none;
}

.category-main {
  background-color: var(--white);
  padding-top: 60px;
}

.category-chip-tab {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
}

.category-tab-content {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 16px;
  display: flex;
}

.category-tab {
  background-color: var(--white);
  border: 2px solid #ed1c2466;
  justify-content: flex-start;
  align-items: flex-end;
  height: 130px;
  padding: 4px;
  transition: all .35s;
  position: relative;
  overflow: hidden;
}

.category-tab:hover {
  border-width: 2px;
  border-color: var(--red);
}

.category-tab.w--current {
  border-color: var(--red);
  background-color: var(--red);
  color: var(--white);
}

.category-tab-image {
  object-fit: cover;
  width: 100%;
  display: none;
}

.category-tab-name {
  z-index: 3;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}

.category-tab-name.white {
  color: var(--white);
}

.category-tab-name.black {
  color: var(--black);
  font-weight: 500;
}

.tabs-menu {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.tabs-content {
  background-color: var(--white);
  margin-left: -150px;
  margin-right: -150px;
  padding: 60px 150px 80px;
}

.tab-header {
  color: var(--black);
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-family: Poppins, sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.2;
}

.tab-header.white {
  font-family: Poppins, sans-serif;
  font-weight: 500;
  display: block;
}

.tab-header.left {
  text-align: left;
  max-width: none;
}

.tab-content-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 40px;
  display: grid;
}

.contact-infobox---bottom-nav {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border-bottom: 1px #cdcdcd80;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 20px;
  padding-top: 0;
  padding-bottom: 10px;
  display: flex;
}

.contact-infobox---bottom-nav.last {
  border-bottom-style: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.brand-main-section {
  padding-top: 80px;
  padding-bottom: 100px;
}

.brand-product-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 40px;
  display: grid;
}

.fp-card {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  background-color: #fff;
  border-radius: 5px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 8px;
  text-decoration: none;
  transition: opacity .325s;
  display: flex;
  box-shadow: 0 0 15px #0000001a;
}

.fp-card:hover {
  box-shadow: 0 0 5px #0003;
}

.fb-product-image {
  object-fit: scale-down;
  background-color: #fff;
  border-radius: 3px;
  width: 100%;
  max-height: 200px;
}

.product-card-titlebox {
  justify-content: space-between;
  align-self: stretch;
  align-items: center;
  padding-left: 8px;
  padding-right: 8px;
  display: flex;
}

.fb-name {
  color: #333;
  text-align: center;
  flex: 1;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
}

.product-card-button {
  background-color: #d32f2f;
  border: 1px solid #bdbdbd;
  border-radius: 3px;
  justify-content: space-between;
  align-self: stretch;
  margin-top: auto;
  margin-bottom: 0;
  padding: 8px 12px;
  text-decoration: none;
  transition: all .35s;
  display: flex;
}

.product-card-button:hover {
  background-color: #333;
}

.secondary-text-copy {
  color: #fff;
  border-radius: 2px;
  align-self: center;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
}

.html-embed {
  color: #333;
  align-self: center;
  padding-top: 6px;
}

.html-embed.white {
  color: #fff;
  padding-top: 4px;
}

.list-item {
  flex: none;
}

.fn-navbar-menu-box-second {
  flex: 1;
  justify-content: space-between;
  display: flex;
}

.fn-dorpdown-link {
  margin-left: 0;
  margin-right: 0;
}

.container-4 {
  max-width: 1920px;
  margin-left: 100px;
  margin-right: 100px;
}

.container-4.vertical-centre {
  justify-content: center;
  align-items: center;
  display: flex;
}

.dropdown-list-link {
  color: #ecf0ef;
  width: 100%;
  min-width: 206px;
  padding: 12px 24px;
  font-size: 18px;
  line-height: 1.4em;
  transition: opacity .25s;
}

.dropdown-list-link:hover {
  color: #e62c37;
}

.dropdown-list-link.w--current {
  color: #df0;
}

.nav-link-2 {
  color: #f1f1f1;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  padding-right: 20px;
  transition: color .25s;
  display: flex;
}

.nav-link-2:hover {
  color: #e62c37;
}

.nav-link-2.w--current {
  color: var(--white);
}

.fn-navbar-menu-wrapper-second {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex: 1;
  justify-content: flex-end;
  display: flex;
}

.logobox {
  object-fit: contain;
  object-position: 0% 50%;
  width: 106px;
  height: 40px;
  margin-right: 0;
  transition: opacity .25s;
}

.logobox:hover {
  opacity: .7;
}

.fn-dropdown-link-icon {
  justify-content: center;
  align-items: center;
  width: 12px;
  height: 8px;
  margin-left: 8px;
  display: flex;
}

.main-logo {
  background-color: #e62c37;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.main-logo.w--current {
  background-color: #f1f2f2;
  justify-content: center;
  align-items: center;
  height: 64px;
  padding: 1.25% 50px 1%;
  display: flex;
}

.fn-navbar-link-list {
  text-align: left;
  background-color: #0f1213;
  border-radius: 12px;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 12px;
  padding-bottom: 12px;
  display: none;
}

.fn-navbar-link-list.w--open {
  display: flex;
}

.fn-navbar-link-list.first-look {
  background-color: #222c31;
  border-radius: 10px;
  display: flex;
}

.top-nav-bar-2 {
  z-index: 999;
  background-color: #f1f1f100;
  padding-top: 6px;
  padding-bottom: 6px;
  position: absolute;
  inset: 0% 0% auto;
}

.fn-navbar-links-wrapper {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.contact-button-2 {
  color: #f1f1f1;
  text-align: center;
  background-color: #e62c37;
  border: 2px solid #f1f1f1;
  border-radius: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 12px 24px;
  font-family: Open Sans, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6em;
  transition: opacity .25s, border-color .25s;
  display: flex;
}

.contact-button-2:hover {
  opacity: .9;
  border-width: 2px;
  border-color: #222c31;
}

.home-banner-section-2 {
  background-image: linear-gradient(#0006, #0006), url('../images/E3-banner_1.avif');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  height: 90vh;
}

.home-banner-wrapper-2 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  color: #f1f1f1;
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-start;
  height: 75vh;
  display: flex;
}

.banner-heading-2 {
  color: var(--white);
  max-width: 600px;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Oswald, sans-serif;
  font-size: 64px;
  line-height: 1.2em;
}

.subtext-2 {
  color: #f1f1f1;
  max-width: 700px;
  margin-bottom: 0;
  font-size: 18px;
  overflow: hidden;
}

.subtext-2.black {
  color: #222c31;
}

.subtext-2.black.hide {
  display: none;
}

.primary-button {
  color: #f1f1f1;
  text-align: center;
  background-color: #e62c37;
  border: 1px solid #f1f1f1;
  border-radius: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6em;
  transition: opacity .25s, border-color .25s;
  display: flex;
}

.primary-button:hover {
  opacity: .9;
  border-color: #0f1213;
}

.season-img-2 {
  object-fit: cover;
  width: 22em;
}

.container-10 {
  width: 95%;
  margin-left: auto;
  margin-right: auto;
}

.home-season-flex {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.home-season {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
  position: relative;
}

.season-img-4 {
  object-fit: cover;
  width: 8em;
}

.season-picture-4 {
  z-index: 1;
  border-radius: 1em;
  flex-direction: column;
  align-items: flex-start;
  display: inline-block;
  position: absolute;
  inset: 14% 0% auto auto;
  overflow: hidden;
}

.season-picture-1 {
  z-index: 1;
  border-radius: 1em;
  flex-direction: column;
  align-items: flex-start;
  display: inline-block;
  position: absolute;
  overflow: hidden;
}

.season-picture-3 {
  border-radius: 1em;
  flex-direction: column;
  align-items: flex-start;
  position: absolute;
  inset: 17% 0% auto auto;
  overflow: hidden;
}

.section-heading-2 {
  margin-top: 0;
  margin-bottom: 24px;
  font-family: Oswald, sans-serif;
  font-size: 52px;
  line-height: 1.2em;
}

.section-heading-2.centre {
  color: #222c31;
  text-align: center;
  font-size: 64px;
}

.section-heading-2.featured-brand-card-slider {
  color: #f1f1f1;
}

.section-heading-2._32px {
  font-size: 32px;
}

.home-season-head {
  width: 23.1em;
}

.season-picture-2 {
  border-radius: 1em;
  flex-direction: column;
  align-items: flex-start;
  display: inline-block;
  position: absolute;
  overflow: hidden;
}

.season-img-1 {
  object-fit: cover;
  width: 8em;
}

.season-img-3 {
  object-fit: cover;
  border-radius: 1em;
  width: 22em;
}

.home-season-pg {
  max-width: 17.5em;
  margin-top: 1em;
}

.card {
  background-color: #f5f5f5;
  border-radius: 1rem;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.product-category-section {
  color: #f1f1f1;
  background-color: #e62c37;
  flex-direction: column;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 80px;
}

.card-info {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.card-info.ap-1 {
  padding: 8px;
}

.p-white {
  color: #fff;
}

.p-white.is--price {
  display: none;
}

.p-white.is--large {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
}

.p-white.is--1 {
  display: none;
}

.category-heading {
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.card-image-wrapper {
  z-index: 1;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.card-image-wrapper._2 {
  z-index: 2;
  width: 100%;
  display: none;
  inset: 0% auto 0% 0%;
}

.section-header {
  flex-direction: column;
  align-items: flex-start;
  max-width: 500px;
  display: flex;
}

.section-header.centre {
  justify-content: flex-start;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}

.cta-with-arrow-text {
  font-size: 16px;
  line-height: 1.2em;
}

.hide {
  display: none;
  overflow: hidden;
}

.flex-wrapper-2 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  margin-top: 60px;
  display: grid;
}

.category-name-div {
  overflow: hidden;
}

.category-card-slider {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  margin-top: 60px;
  display: none;
}

.card-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.card-image-height {
  padding-top: 100%;
  display: block;
  position: relative;
  overflow: hidden;
}

.arrow-embed {
  object-fit: contain;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 12px;
  height: 18px;
  margin-left: 10px;
  display: flex;
}

.padding._32px {
  height: 32px;
}

.padding._24px {
  height: 24px;
}

.category-card-2 {
  color: #ecf0ef;
  background-color: #0f1213;
  border: 1px solid #0f1213;
  border-radius: 12px;
  flex-direction: column;
  align-items: flex-start;
  width: 25%;
  padding: 24px;
  text-decoration: none;
  transition: border-color .25s;
  display: flex;
}

.category-card-2:hover {
  color: #ecf0ef;
  border-color: #e62c37;
}

.card-image-hover {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.cta-with-arrow {
  color: #e62c37;
  align-items: center;
  margin-top: auto;
  font-family: Open Sans, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4em;
  text-decoration: none;
  display: flex;
}

.card-overlay {
  z-index: 3;
  text-align: left;
  background-color: #0000007a;
  background-image: linear-gradient(#0000, #000000bd);
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.paragraph-2 {
  color: #cdd3d2;
  margin-bottom: 0;
  font-size: 16px;
  overflow: hidden;
}

.paragraph-2.big {
  font-size: 18px;
}

.paragraph-2.big.centre {
  text-align: center;
}

.paragraph-2.big.black {
  color: #0c0f0a;
}

.category-icon-2 {
  color: #f1f1f1;
  object-fit: contain;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 19px;
  height: 19px;
  margin-bottom: 24px;
  display: flex;
}

.featured-brand-photo {
  object-fit: contain;
  background-color: #fff;
  width: 100%;
  height: 120px;
}

.brand-name-2 {
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Open Sans, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.featured-brands-section-2 {
  background-color: #0c0f0a;
  padding-top: 60px;
  padding-bottom: 80px;
}

.featured-brand-card {
  color: #ecf0ef;
  background-color: #fff;
  border: 1px #fff;
  border-radius: 12px;
  flex-direction: column;
  align-items: stretch;
  width: 25%;
  padding: 0;
  text-decoration: none;
  transition: border-color .25s;
  display: flex;
  overflow: hidden;
  box-shadow: 0 2px 14px 5px #0000000d;
}

.featured-brand-card:hover {
  color: #ecf0ef;
  box-shadow: 0 2px 6px 2px #0000001a;
}

.featured-brand-card-slider {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  margin-top: 60px;
  display: flex;
}

.featured-brand-contentbox {
  background-color: #222c31;
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  align-items: stretch;
  padding: 12px;
  display: flex;
}

.page-intro-splitscreen-wrapper {
  z-index: 1;
  pointer-events: none;
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
}

.form-2 {
  flex-direction: column;
  align-items: stretch;
  max-width: 600px;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.text-align-center {
  text-align: center;
  display: none;
}

.made-in-webflow-brand {
  max-width: 2.3em;
}

.page-intro-title {
  letter-spacing: -.06em;
  text-transform: uppercase;
  font-size: 10vw;
  font-weight: 900;
  line-height: .8;
}

.page-intro-title.is-skills {
  margin-left: .89em;
  font-family: Oswald, sans-serif;
}

.page-intro-title.is-animation {
  margin-left: 3em;
  font-family: Oswald, sans-serif;
}

.page-intro-title.is-webdesign {
  margin-left: 1.16em;
  font-family: Oswald, sans-serif;
}

.page-padding {
  padding-left: 4rem;
  padding-right: 4rem;
}

.success-message {
  color: #0f1213;
  background-color: #df0;
  border-radius: 8px;
  width: 100%;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3em;
}

.button {
  color: #eeebdc;
  text-align: center;
  letter-spacing: .03rem;
  background-color: #000;
  border: .15em solid #0000;
  border-radius: 999rem;
  padding: 1.2rem 1.7rem;
  font-size: 1rem;
  font-weight: 600;
}

.button.is-bright {
  color: #000;
  background-color: #eeebdc;
}

.button.is-bright.is-secondary {
  color: #eeebdc;
  background-color: #0000;
  border-color: #eeebdc;
  font-size: 1rem;
}

.page-intro-title-small {
  letter-spacing: -.02em;
  text-transform: uppercase;
  font-size: 1.5vw;
  font-weight: 400;
}

.page-intro-title-small.is-made-in-webflow {
  grid-column-gap: .8em;
  grid-row-gap: .8em;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  margin-right: 5.6em;
  display: none;
}

.page-intro-title-small.is-best-in-class {
  align-self: flex-start;
  margin-left: 7.9em;
  display: none;
}

.error-message {
  text-align: center;
  background-color: #c33939;
  border-radius: 8px;
  margin-top: 24px;
}

.spacer-xl-start {
  padding-top: 7.5rem;
  display: none;
}

.page-intro-wrapper {
  z-index: 0;
  justify-content: center;
  align-items: center;
  height: 100svh;
  padding-top: 5em;
  padding-bottom: 5em;
  display: flex;
  position: sticky;
  top: 0;
}

.heading-style-h1 {
  letter-spacing: -.01em;
  text-transform: uppercase;
  font-size: 5rem;
  font-weight: 900;
  line-height: .85;
}

.page-intro-splitscreen-top {
  background-color: #000;
  width: 100%;
  height: 0%;
}

.form-field {
  color: #ecf0ef;
  background-color: #0000;
  border: 1px solid #707676;
  border-radius: 8px;
  width: 100%;
  max-width: 100%;
  min-height: 42px;
  margin-bottom: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
  font-size: 16px;
  line-height: 1em;
  transition: border-color .25s;
}

.form-field:hover {
  border-color: #cdd3d2;
}

.form-field:active, .form-field:focus {
  border-color: #e62c37;
}

.form-field::placeholder {
  color: #ecf0ef;
}

.page-intro-title-wrapper {
  grid-column-gap: .5vh;
  grid-row-gap: .5vh;
  color: #e62c37;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.fn-success-message-wrapper {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 200px;
  display: flex;
}

.image-placeholder {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 1.8em;
  width: 100%;
}

.spacer-sm-start {
  padding-top: 2.25rem;
}

.form-wrapper {
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.form-button {
  color: #fff;
  background-color: #0000;
  border: 1px solid #fff;
  border-radius: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 42px;
  padding: 12px 42px;
  font-size: 16px;
  line-height: 1.6em;
  transition: background-color .25s;
  display: flex;
}

.form-button:hover {
  background-color: #3e4545;
}

.page-intro-text-wrapper {
  grid-column-gap: 2vh;
  grid-row-gap: 2vh;
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-top: -5vh;
  display: flex;
}

.heading-style-h3 {
  letter-spacing: -.005em;
  text-transform: none;
  font-size: 3rem;
  line-height: 1.1;
}

.section-page-intro {
  background-color: #f1f1f1;
  justify-content: center;
  align-items: center;
  min-height: 200svh;
  overflow: clip;
}

.form-field-message {
  color: #ecf0ef;
  background-color: #0000;
  border: 1px solid #707676;
  border-radius: 8px;
  width: 100%;
  max-width: 100%;
  min-height: 160px;
  max-height: 160px;
  margin-bottom: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
  font-size: 16px;
  line-height: 1em;
}

.form-field-message:hover {
  border-color: #cdd3d2;
}

.form-field-message:active, .form-field-message:focus {
  border-color: #e62c37;
}

.form-field-message::placeholder {
  color: #ecf0ef;
}

.heading-style-h6 {
  letter-spacing: .02em;
  text-transform: uppercase;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.1;
}

.form-standard {
  flex-direction: column;
  display: flex;
}

.page-intro-splitscreen-bottom {
  background-color: #000;
  width: 100%;
  height: 0%;
}

.section-after-intro-text {
  z-index: 3;
  color: #eeebdc;
  background-color: #000;
  margin-top: 21vh;
  padding-top: 7.5em;
  padding-bottom: 10em;
  position: relative;
}

.copy-medium {
  font-size: 1.25rem;
  line-height: 1.4;
}

.page-intro-content {
  z-index: 0;
  position: relative;
}

.upper-image-1 {
  object-fit: cover;
  width: 100%;
  max-width: 500px;
  height: 60%;
}

.bottom-image-1 {
  object-fit: cover;
  width: 80%;
  max-width: 500px;
  height: 90%;
}

.upper-image-2 {
  z-index: 1;
  object-fit: cover;
  width: 60%;
  height: 90%;
  position: absolute;
  bottom: 50px;
}

.about-bottom-left {
  justify-content: flex-end;
  align-items: flex-end;
  width: 50%;
  padding-right: 80px;
  display: flex;
  position: relative;
}

.about-upper-left {
  width: 50%;
  max-width: 500px;
  margin-top: auto;
  margin-bottom: auto;
}

.about-2-bottom {
  justify-content: space-between;
  display: flex;
}

.about-bottom-right {
  width: 50%;
  max-width: 500px;
  margin-top: auto;
  margin-bottom: auto;
}

.red-divider {
  background-color: #e62c37;
  width: 20%;
  height: 10px;
  margin-bottom: 24px;
}

.about-2-upper {
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: 60px;
  display: flex;
}

.bottom-image-2 {
  z-index: 1;
  object-fit: cover;
  width: 70%;
  max-width: 500px;
  height: 90%;
  position: absolute;
  inset: 0% auto auto 0%;
}

.about-us-2 {
  background-color: #f1f1f1;
  padding-top: 100px;
  padding-bottom: 100px;
}

.about-upper-right {
  justify-content: center;
  align-items: flex-end;
  width: 50%;
  padding-left: 80px;
  display: flex;
  position: relative;
}

.bottom-strip-right {
  grid-column-gap: 22px;
  grid-row-gap: 22px;
  flex-wrap: wrap;
  display: flex;
}

.bottom-strip-text {
  color: #687373;
  font-size: 16px;
}

.bottom-strip-container {
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.links-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  display: flex;
}

.bottom-link {
  color: #ecf0ef;
  font-size: 18px;
  line-height: 1.4em;
  text-decoration: none;
  transition: color .25s;
  display: block;
}

.bottom-link:hover {
  color: #e62c37;
}

.bottom-link.w--current {
  color: #df0;
}

.bottom-strip-left {
  grid-column-gap: 22px;
  grid-row-gap: 22px;
  flex-wrap: wrap;
  display: flex;
}

.bottom-nav-top {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  display: grid;
}

.bottom-strip-link {
  color: #939b9b;
  transition: color .25s;
}

.bottom-strip-link:hover {
  color: #e62c37;
}

.footer-link {
  background-color: #3e4545;
  width: 100%;
  height: 1px;
  margin-top: 60px;
  margin-bottom: 10px;
}

.brand-logo-footer {
  object-fit: contain;
  object-position: 0% 50%;
  width: 106px;
  height: 21.55px;
  margin-right: 20px;
}

.logo-footer {
  color: #df0;
  object-fit: contain;
  object-position: 0% 50%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.bottom-nav-bar-2 {
  background-color: #000;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 60px;
  padding-bottom: 20px;
}

.text-field {
  margin-bottom: 20px;
}

.product-card {
  z-index: 2;
  background-color: var(--red);
  color: var(--white);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 12px;
  text-decoration: none;
  transition: all .25s linear;
  display: flex;
  box-shadow: 0 0 15px #0000001a;
}

.product-card:hover {
  background-color: var(--black);
  color: var(--white);
  box-shadow: 0 0 5px #0003;
}

.product-card.category-page {
  border-color: var(--text-color);
  background-color: var(--white);
  color: var(--black);
  transition: all .35s;
}

.product-card.category-page:hover {
  background-color: var(--black);
  color: var(--white);
}

.product-card.white {
  background-color: var(--white);
}

.product-card-image {
  width: 1005px;
  margin-bottom: 20px;
}

.product-name {
  z-index: 1;
  text-align: center;
  margin: 8px 10px 20px;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
  transition: all .35s;
  position: relative;
}

.product-name.white {
  color: var(--white);
}

.product-name.black {
  color: var(--black);
}

.enquire-button {
  background-color: var(--white);
  color: var(--black);
  border: 1px solid #000;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 16px;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  transition: all .25s linear;
  display: flex;
}

.enquire-button:hover {
  border: 1px solid var(--red);
  background-color: var(--red);
  color: var(--white);
}

.enquire-button.red {
  background-color: var(--red);
  color: var(--white);
  border-style: none;
  transition-duration: .25s;
}

.enquire-button.red:hover {
  outline-color: var(--red);
  outline-offset: 0px;
  color: var(--black);
  background-color: #0000;
  outline-width: 1px;
  outline-style: solid;
  box-shadow: 0 2px 5px #0003;
}

.enquire-button.black {
  border-style: none;
  border-color: var(--red);
  background-color: var(--black);
  color: var(--white);
  transition-duration: .25s;
}

.enquire-button.black:hover {
  outline-offset: 0px;
  color: var(--black);
  background-color: #0000;
  border-style: none;
  outline: 1px solid #000;
}

.button-container {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex-flow: row;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  margin-top: auto;
  display: flex;
}

.category-imageholder {
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  height: 60%;
  display: flex;
}

.category-textbox {
  background-color: var(--white);
  justify-content: flex-start;
  align-items: flex-end;
  width: 100%;
  height: 40%;
  padding: 16px;
  display: flex;
}

.tab-content {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 40px;
  display: grid;
}

.tabs-content-2 {
  margin-top: 60px;
}

.tabs-menu-2 {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.tab-chip {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border: 2px solid var(--white-text);
  background-color: var(--white);
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  padding: 24px;
  transition: all .35s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.tab-chip:hover {
  border-width: 2px;
  border-color: var(--text-color);
}

.tab-chip.w--current {
  border-color: var(--text-color);
  background-color: var(--text-color);
  color: var(--white);
}

.tab-chip-name {
  z-index: 3;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}

.tab-chip-name.white {
  color: var(--white);
}

.tab-chip-name.black {
  color: var(--black);
  font-weight: 500;
}

.brand-card-wrapper {
  width: 100%;
  height: 60%;
  position: relative;
}

.brand-card-namebox {
  justify-content: center;
  align-items: center;
  height: 30%;
  display: flex;
}

.tabs-menu-3 {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.tabs-content-3 {
  margin-top: 80px;
}

.product-info-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.product-info-wrapper {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.lightbox-wrapper {
  width: 40%;
}

.product-info-textbox {
  width: 55%;
  margin-left: 100px;
}

.product-info-textbox.left {
  text-align: left;
}

.lightbox-main {
  border: 1px solid var(--white-text);
  border-radius: 3px;
  text-decoration: none;
}

.preview-image-main {
  width: 100%;
  height: auto;
}

.other-images {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 8px;
}

.other-images.helmets {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.cell {
  border: 1px solid var(--white-text);
  border-radius: 3px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.cell.hide {
  display: none;
}

.preview-image-other {
  width: 100%;
  height: auto;
}

.certification-image-grid {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 20px;
  display: flex;
}

.certification-image {
  object-fit: scale-down;
  height: 40px;
}

.text-wrapper-copy {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 20px;
  margin-bottom: 0;
  display: flex;
}

.text-wrapper-copy.hide {
  display: none;
}

.text-wrapper-copy.no-padding {
  margin-bottom: 0;
}

.product-cta-box {
  margin-top: 60px;
  display: flex;
}

.new-card-design {
  grid-column-gap: 10%;
  grid-row-gap: 10%;
  border: 1px solid var(--text-color);
  background-color: var(--white);
  color: var(--black);
  flex-flow: column;
  justify-content: space-between;
  display: flex;
}

.new-card-image {
  object-fit: cover;
  width: 100%;
  height: 60%;
  padding: 16px;
}

.brand-info-section {
  padding-top: 40px;
  padding-bottom: 0;
}

.brand-info-wrapper {
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.brand-page-logo {
  max-width: 150px;
}

.brand-card-placeholder {
  z-index: 1;
  position: absolute;
  inset: 0%;
}

.brand-card-overlay {
  z-index: 1;
  justify-content: center;
  align-items: flex-start;
  margin: 8px;
  display: flex;
  position: absolute;
  inset: 0%;
}

.image-text {
  color: var(--text-color);
  text-align: center;
  margin: 10px auto;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  text-decoration: none;
}

.image-text.white {
  z-index: 3;
  color: var(--white);
}

.image-text.hide {
  display: none;
}

.image-text.bold {
  font-weight: 700;
}

.fb_white_box {
  z-index: 3;
  box-sizing: border-box;
  background-color: var(--white);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 88%;
  display: flex;
  position: absolute;
  inset: 6% 0% 0%;
}

.fb_white_box.with-border {
  outline-offset: 0px;
  outline: 1px solid #000;
}

.imagebox {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: block;
  position: relative;
}

.fp-brand-grid {
  z-index: 6;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  place-items: center;
  width: 100%;
  height: 25%;
  position: absolute;
  inset: 0% 0% auto;
}

.fp-brand-logo {
  object-fit: scale-down;
  height: 40%;
}

.brand-logo {
  z-index: 6;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 20%;
  height: 20%;
  margin-top: 2%;
  margin-right: 2%;
  display: flex;
  position: absolute;
  inset: 0% 0% auto auto;
}

.brand-logo-image {
  height: auto;
}

.brand-description {
  color: var(--text-color);
  margin-left: 53px;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}

.brand-description.white {
  z-index: 3;
  color: var(--white);
}

.brand-description.hide {
  display: none;
}

.brand-description.bold {
  font-weight: 700;
}

.color-block {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  place-items: center start;
  display: grid;
}

.color-block.hide {
  display: none;
}

.light-grey {
  background-color: #f0f2fb;
  border-radius: 100%;
  width: 40px;
  height: 40px;
}

.yellow {
  background-color: #ffdb01;
  border-radius: 100%;
  width: 40px;
  height: 40px;
}

.dark-grey {
  background-color: #9199a6;
  border-radius: 100%;
  width: 40px;
  height: 40px;
}

.blue {
  background-color: #4169e1;
  border-radius: 100%;
  width: 40px;
  height: 40px;
}

.brown-circle {
  background-color: #af9d80;
  border-radius: 100%;
  width: 40px;
  height: 40px;
}

.orange-circle {
  background-color: #fd7c30;
  border-radius: 100%;
  width: 40px;
  height: 40px;
}

.dark-grey-copy {
  background-color: #9199a6;
  border-radius: 100%;
  width: 40px;
  height: 40px;
}

.maroon-circle {
  background-color: #e75248;
  border-radius: 100%;
  width: 40px;
  height: 40px;
}

.dark-blue-circle {
  background-color: #010081;
  border-radius: 100%;
  width: 40px;
  height: 40px;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.secondary-button {
  border: 2px solid var(--red);
  background-color: var(--white);
  color: var(--red);
  letter-spacing: 2px;
  text-transform: none;
  padding: 1rem 1.5rem;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  text-decoration: none;
  transition: all .35s;
  display: inline-block;
}

.secondary-button:hover {
  border: 2px solid var(--black);
  background-color: var(--black);
  color: var(--white);
}

.data-sheet-wrapper {
  margin-top: 20px;
}

.yellow-circle {
  background-color: #ffd000;
  border-radius: 100%;
  width: 40px;
  height: 40px;
}

.red-circle {
  background-color: red;
  border-radius: 100%;
  width: 40px;
  height: 40px;
}

.blue-circle {
  background-color: #00d0ff;
  border-radius: 100%;
  width: 40px;
  height: 40px;
}

.white-circle {
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 100%;
  width: 40px;
  height: 40px;
}

.green-circle {
  background-color: #056d02;
  border-radius: 100%;
  width: 40px;
  height: 40px;
}

.purple-circle {
  background-color: #7f00ff;
  border-radius: 100%;
  width: 40px;
  height: 40px;
}

.grey-circle {
  background-color: #afafae;
  border-radius: 100%;
  width: 40px;
  height: 40px;
}

.black-circle {
  background-color: #000;
  border-radius: 100%;
  width: 40px;
  height: 40px;
}

.nav-dropdown-toggle-2 {
  color: #fff;
  letter-spacing: .25px;
  padding: 5px 30px 5px 10px;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

.nav-dropdown-toggle-2:hover {
  color: #ed1c24;
}

.nav-dropdown-toggle-2:focus-visible, .nav-dropdown-toggle-2[data-wf-focus-visible] {
  outline-offset: 0px;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-dropdown-toggle-2.dropdown {
  margin-top: 3px;
}

.container-11 {
  flex: 1;
  max-width: 80rem;
  margin-left: 5%;
  margin-right: 5%;
}

.contact-button-3 {
  color: #fff;
  letter-spacing: 2px;
  text-transform: none;
  background-color: #ed1c24;
  border: 2px solid #ed1c24;
  padding: 1rem 1.5rem;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  text-decoration: none;
  transition: all .35s;
}

.contact-button-3:hover {
  color: #fff;
  background-color: #000;
  border: 2px solid #000;
}

.nav-dropdown-link-2 {
  color: #333;
  border: .5px solid #ececec;
  width: 100%;
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 16px;
}

.nav-dropdown-link-2:hover {
  color: #fff;
  background-color: #ed1c24;
}

.nav-dropdown-link-2:focus-visible, .nav-dropdown-link-2[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #fff;
  outline: 2px solid #fff;
}

.nav-dropdown-link-2.w--current {
  color: #ed1c24;
}

.image {
  width: 80%;
}

.nav-link-3 {
  color: #fff;
  letter-spacing: .25px;
  padding: 5px 16px;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  text-decoration: none;
}

.nav-link-3:hover {
  color: #ed1c24;
}

.nav-link-3:focus-visible, .nav-link-3[data-wf-focus-visible] {
  outline-offset: 0px;
  border-radius: 4px;
  outline: 2px solid #0050bd;
}

.container-12 {
  flex: 1;
  max-width: 80rem;
  margin-left: 5%;
  margin-right: 5%;
}

.bottom---about-2 {
  color: #ccc;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.bottom-header-2 {
  color: #fff;
  margin-top: 0;
  margin-bottom: 24px;
  font-family: Poppins, sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.2;
}

.bottom-header-2.sub {
  font-size: 1.1rem;
}

.bottom-nav-grid-2 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 2fr 1fr 1.25fr;
  margin-top: 100px;
  margin-bottom: 100px;
}

.contact-icon-2 {
  color: #ed1c24;
  width: 24px;
  height: 24px;
  margin-top: 5px;
}

.info-wrapper {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: flex;
}

.grid-2 {
  grid-column-gap: 1rem;
  grid-row-gap: .1rem;
  grid-auto-flow: row;
}

.bottom-logo-image-2 {
  max-width: 80%;
  height: 64px;
}

.bottom---about {
  line-height: 1.4;
}

.footer-header {
  color: #fff;
  margin-top: 0;
  margin-bottom: 24px;
  font-family: Poppins, sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.2;
}

.footer-header.sub {
  font-size: 1.1rem;
}

.bottom---about-3 {
  color: #ccc;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.contact-footer-icon {
  color: #ed1c24;
  width: 24px;
  height: 24px;
  margin-top: 5px;
}

.footer-logo-image {
  max-width: 80%;
  height: 64px;
}

.container-13 {
  flex: 1;
  max-width: 80rem;
  margin-left: 12.5%;
  margin-right: 12.5%;
}

.footer-grid {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 2fr 1fr 1.25fr;
  margin-top: 100px;
  margin-bottom: 100px;
}

@media screen and (min-width: 1280px) {
  .container {
    margin-left: 12.5%;
    margin-right: 12.5%;
  }

  .nav-menu-two {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .category-tab {
    height: 100px;
  }

  .category-tab-image {
    height: 70%;
  }

  .tabs-content {
    margin-left: -200px;
    margin-right: -200px;
    padding-left: 200px;
    padding-right: 200px;
  }

  .brand-main-section {
    margin-top: 8px;
  }

  .product-card-button {
    padding-left: 16px;
    padding-right: 16px;
  }

  .season-img-2 {
    width: 28em;
  }

  .season-img-4 {
    width: 10em;
  }

  .section-heading-2._32px {
    font-size: 42px;
  }

  .season-img-1 {
    width: 10em;
  }

  .season-img-3 {
    width: 28em;
  }

  .card-info.ap-1 {
    padding: 16px;
  }

  .p-white.is--large {
    font-size: 18px;
  }

  .featured-brand-photo {
    height: 150px;
  }

  .featured-brand-contentbox {
    padding: 16px;
  }

  .product-name {
    font-size: 18px;
  }

  .enquire-button {
    font-size: 16px;
  }

  .fp-brand-grid {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .container-11, .container-12 {
    margin-left: 200px;
    margin-right: 200px;
  }

  .container-13 {
    margin-left: 12.5%;
    margin-right: 12.5%;
  }
}

@media screen and (min-width: 1440px) {
  .home-banner-section {
    height: 90vh;
  }

  .container {
    margin-left: 12.5%;
    margin-right: 12.5%;
  }

  .contact-section {
    background-image: url('../images/Contact-us-bg_1.avif');
  }

  .container-3 {
    max-width: 1440px;
    margin-left: 150px;
    margin-right: 150px;
  }

  .brand-product-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }

  .season-img-2 {
    width: 32em;
  }

  .season-img-4, .season-img-1 {
    width: 12em;
  }

  .season-img-3 {
    width: 32em;
  }

  .card-info.ap-1 {
    padding: 24px;
  }

  .featured-brand-photo {
    height: 180px;
  }

  .featured-brand-card {
    justify-content: flex-start;
  }

  .featured-brand-contentbox {
    padding: 24px;
  }

  .fp-brand-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

@media screen and (min-width: 1920px) {
  .home-banner-section {
    height: 80vh;
  }

  .container {
    margin-left: 12.5%;
    margin-right: 12.5%;
  }

  .bottom-link-strip {
    margin-left: 140px;
    margin-right: 140px;
  }

  .container-3 {
    margin-left: 250px;
    margin-right: 250px;
  }

  .tabs-content {
    margin-left: -250px;
    margin-right: -250px;
    padding-left: 250px;
    padding-right: 250px;
  }

  .fb-product-image {
    object-fit: scale-down;
  }

  .container-4 {
    margin-left: 200px;
    margin-right: 200px;
  }

  .main-logo, .main-logo.w--current {
    height: 80px;
  }

  .container-11, .container-12 {
    margin-left: 250px;
    margin-right: 250px;
  }

  .container-13 {
    margin-left: 12.5%;
    margin-right: 12.5%;
  }
}

@media screen and (max-width: 991px) {
  .container {
    margin-left: 60px;
    margin-right: 60px;
  }

  .container-2 {
    max-width: 728px;
  }

  .navbar-wrapper {
    margin-right: -20px;
  }

  .nav-menu-wrapper {
    background-color: #0000;
  }

  .nav-menu-two {
    background-color: #fff;
    border-radius: 0;
    flex-flow: column;
    justify-content: space-around;
    align-items: center;
    margin-top: 10px;
    padding: 20px;
    display: flex;
    box-shadow: 0 8px 50px #0000000d;
  }

  .nav-link {
    color: var(--black);
    text-align: left;
    width: 100%;
    padding: 10px 5px;
    display: block;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-toggle.dropdown {
    color: var(--black);
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 0;
  }

  .nav-dropdown-list.shadow-three.w--open {
    position: absolute;
  }

  .nav-dropdown-list.shadow-three.mobile-shadow-hide {
    z-index: 10;
  }

  .nav-dropdown-list.shadow-three.mobile-shadow-hide.w--open {
    z-index: 10;
    box-shadow: 0 2px 5px #0003;
  }

  .nav-dropdown-link {
    width: 100%;
  }

  .nav-dropdown-link.w--current {
    color: var(--red);
  }

  .mobile-margin-top-10 {
    width: 100%;
  }

  .menu-button {
    padding: 12px;
  }

  .menu-button.w--open {
    color: #fff;
    background-color: #a6b1bf00;
  }

  .bottom-link-strip, .container-3 {
    margin-left: 40px;
    margin-right: 40px;
  }

  .icon {
    color: var(--white);
  }

  .tabs-content {
    margin-left: -60px;
    margin-right: -60px;
    padding-left: 60px;
    padding-right: 60px;
  }

  .brand-product-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .list-item {
    width: 100%;
  }

  .menu-button-second {
    margin-right: -15px;
    padding-right: 18px;
  }

  .menu-button-second.w--open {
    background-color: #0000;
  }

  .fn-navbar-menu-box-second {
    background-color: #0f1213;
    padding-top: 0;
    padding-left: 15px;
    padding-right: 15px;
  }

  .fn-dorpdown-link {
    width: 100%;
  }

  .fn-nav-line-1 {
    background-color: #19224c;
    border-radius: 4px;
    width: 16px;
    height: 2px;
    margin-top: 2px;
    margin-bottom: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .fn-nav-line-1.green-line {
    background-color: #e62c37;
    width: 24px;
  }

  .container-4 {
    margin-left: 40px;
    margin-right: 40px;
  }

  .container-4.vertical-centre {
    justify-content: space-between;
    align-items: center;
  }

  .dropdown-list-link {
    padding-left: 0;
    padding-right: 0;
    transition: none;
  }

  .dropdown-list-link:hover {
    color: #ecf0ef;
  }

  .nav-link-2 {
    color: #ecf0ef;
    border-top: 1px solid #3e4545;
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .nav-link-2:hover, .nav-link-2.w--current, .nav-link-2.w--current:hover {
    color: #ecf0ef;
  }

  .nav-link-2.last-link-on-mobile {
    border-bottom: 1px solid #3e4545;
  }

  .fn-navbar-menu-wrapper-second {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    background-color: #0f1213;
    border-radius: 16px;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0 0 24px;
    display: flex;
  }

  .logobox {
    z-index: 2;
    transition: none;
  }

  .logobox:hover {
    opacity: 1;
  }

  .main-logo {
    padding-left: 24px;
    padding-right: 24px;
  }

  .main-logo.w--current {
    height: 64px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .fn-navbar-link-list {
    margin-top: -12px;
    padding-top: 0;
    padding-bottom: 28px;
    display: none;
    position: relative;
  }

  .fn-navbar-link-list.w--open {
    position: relative;
  }

  .fn-navbar-links-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-menu-button-wrap {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    display: flex;
  }

  .banner-heading-2 {
    max-width: 400px;
    margin-bottom: 12px;
    font-size: 40px;
  }

  .subtext-2 {
    font-size: 16px;
  }

  .section-heading-2 {
    margin-bottom: 12px;
    font-size: 40px;
  }

  .card {
    width: 100%;
    max-width: 100%;
  }

  .product-category-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .flex-wrapper-2 {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-direction: column;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .category-card-slider {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: none;
  }

  .category-card-2 {
    width: 100%;
  }

  .category-card-2:hover {
    border-color: #0f1213;
  }

  .card-overlay {
    background-color: #0000;
    background-image: linear-gradient(#0000, #000000d6);
  }

  .featured-brand-card {
    width: 100%;
  }

  .featured-brand-card-slider {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .page-padding {
    padding-left: 6vw;
    padding-right: 6vw;
  }

  .bottom-link {
    transition: none;
  }

  .bottom-link:hover {
    color: #ecf0ef;
  }

  .bottom-strip-link {
    transition: none;
  }

  .bottom-strip-link:hover {
    color: #939b9b;
  }

  .brand-logo-footer {
    z-index: 2;
    margin-bottom: 11px;
  }

  .nav-dropdown-toggle-2.dropdown {
    color: #000;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 0;
  }

  .container-11 {
    margin-left: 60px;
    margin-right: 60px;
  }

  .nav-dropdown-link-2 {
    width: 100%;
  }

  .nav-dropdown-link-2.w--current {
    color: #ed1c24;
  }

  .nav-link-3 {
    color: #000;
    text-align: left;
    width: 100%;
    padding: 10px 5px;
    display: block;
  }

  .icon-2 {
    color: #fff;
  }

  .container-12, .container-13 {
    margin-left: 60px;
    margin-right: 60px;
  }
}

@media screen and (max-width: 767px) {
  .container {
    margin-left: 24px;
    margin-right: 24px;
  }

  .subtext.not-home {
    font-size: 16px;
  }

  .home-banner-heading {
    font-size: 48px;
  }

  .navbar-logo-left-container {
    max-width: 100%;
  }

  .navbar-logo-left-container.shadow-three {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .navbar-wrapper {
    margin-right: 0;
  }

  .navbar-brand {
    padding-left: 0;
  }

  .nav-menu-two {
    border-radius: 0;
    flex-direction: column;
    padding-bottom: 30px;
  }

  .nav-link {
    color: var(--black);
    text-align: left;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

  .nav-dropdown {
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    width: 100%;
    display: flex;
  }

  .nav-dropdown-toggle {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-dropdown-toggle.dropdown {
    color: var(--black);
    width: 100%;
    padding-left: 0;
  }

  .nav-dropdown-list.shadow-three {
    box-shadow: 0 8px 50px #0000000d;
  }

  .nav-dropdown-list.shadow-three.w--open {
    position: relative;
  }

  .nav-dropdown-list.shadow-three.mobile-shadow-hide {
    box-shadow: none;
    box-shadow: none;
  }

  .nav-divider {
    width: 200px;
    max-width: 100%;
    height: 1px;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .nav-link-accent {
    margin-right: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

  .mobile-margin-top-10 {
    width: 100%;
    margin-top: 10px;
  }

  .menu-button.w--open {
    background-color: #a6b1bf00;
  }

  .home-about-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .header-section {
    margin-bottom: 40px;
  }

  .home-about-content {
    flex-flow: column;
    margin-top: 0;
  }

  .home-about-left {
    width: 100%;
  }

  .home-about-right {
    width: 100%;
    margin-top: 60px;
  }

  .category-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .category-grid {
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 20px;
  }

  .featured-brand-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .more-about-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .contact-section {
    padding-top: 40px;
  }

  .contact-header-section, .form-block {
    width: 100%;
  }

  .bottom-link-strip {
    margin-left: 20px;
    margin-right: 20px;
  }

  .bottom---about {
    margin-top: 20px;
    font-size: 16px;
  }

  .bottom-nav-grid {
    grid-row-gap: 24px;
    grid-template-columns: 1.5fr 1fr;
    margin-top: 60px;
    margin-bottom: 60px;
  }

  .bottom-header {
    margin-bottom: 16px;
    font-size: 18px;
  }

  .container-3 {
    margin-left: 24px;
    margin-right: 24px;
  }

  .social-media-grid {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
  }

  .contact-infobox {
    flex-flow: column;
    margin-bottom: 16px;
  }

  .bottom---3-column.visible {
    display: flex;
  }

  .bottom---1-column {
    width: 100%;
    margin-bottom: 20px;
  }

  .bottom---2-column {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-flow: row;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
  }

  .bottom-nav-link---contact {
    font-size: 16px;
  }

  .emaar-info-wrapper {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .contact-info-wrapper {
    flex-flow: row;
  }

  .bottom-nav-link {
    margin-bottom: 8px;
    font-size: 16px;
  }

  .bottom-logo-image {
    height: 40px;
  }

  .bottom-link-text {
    padding: 12px;
    font-size: 14px;
  }

  .quick-links-wrapper {
    width: 50%;
  }

  .bottom---4-column.visible {
    display: flex;
  }

  .button-4 {
    box-shadow: -5px 5px 0 -1px var(--red);
    padding: 1rem 1.5rem;
  }

  .button-4.small {
    margin-top: 20px;
    padding-top: .8rem;
    padding-bottom: .8rem;
  }

  .contact-form-image-wrapper {
    display: none;
  }

  .banner-heading {
    font-size: 48px;
  }

  .about-content-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .about-content {
    flex-flow: column;
  }

  .about-left {
    width: 100%;
    margin-bottom: 40px;
  }

  .about-right {
    width: 100%;
    margin-left: 0%;
  }

  .usps {
    grid-template-columns: 1fr 1fr;
  }

  .usp-card {
    padding: 16px;
  }

  .usp-number-box {
    width: 40px;
    height: 40px;
  }

  .usp-number {
    font-size: 18px;
  }

  .contact-page-section {
    padding-top: 40px;
  }

  .contact-form-right {
    width: 100%;
    margin-top: 40px;
  }

  .contact-page-content-wrapper, .contact-info-wrapper {
    flex-flow: column;
  }

  .contact-info-header {
    font-size: 16px;
    display: inline-flex;
  }

  .tabs-menu {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }

  .tabs-content {
    margin-left: -24px;
    margin-right: -24px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .tab-content-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .contact-infobox---bottom-nav {
    margin-bottom: 10px;
  }

  .brand-main-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .list-item {
    width: 100%;
    display: flex;
  }

  .nav-link-2 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .fn-navbar-menu-wrapper-second {
    padding: 0 0 18px;
  }

  .logobox {
    margin-right: 0;
    padding-left: 0;
  }

  .main-logo, .main-logo.w--current {
    padding-left: 16px;
    padding-right: 16px;
  }

  .contact-button-2 {
    width: 100%;
  }

  .home-banner-wrapper-2 {
    height: 80vh;
  }

  .section-heading-2 {
    font-size: 34px;
  }

  .section-heading-2.featured-brand-card-slider {
    margin-top: 0;
  }

  .product-category-section {
    overflow: visible;
  }

  .category-heading {
    font-size: 18px;
  }

  .category-card-2 {
    padding: 12px;
  }

  .featured-brand-photo {
    height: 170px;
  }

  .brand-name-2 {
    font-size: 18px;
  }

  .page-intro-title {
    font-size: 13vw;
  }

  .page-intro-title.is-skills {
    margin-left: 0;
  }

  .page-intro-title.is-animation {
    flex: 1;
    margin-left: 0;
  }

  .page-intro-title.is-webdesign {
    margin-left: 0;
  }

  .page-intro-title-small {
    font-size: 2.6vw;
  }

  .page-intro-title-small.is-made-in-webflow {
    margin-right: 0;
  }

  .page-intro-title-small.is-best-in-class {
    margin-left: 0;
  }

  .heading-style-h1 {
    font-size: 3rem;
  }

  .page-intro-text-wrapper {
    margin-top: -4vh;
  }

  .upper-image-1 {
    align-self: flex-end;
  }

  .about-bottom-left {
    width: 100%;
    padding-right: 0;
  }

  .about-upper-left {
    width: 100%;
  }

  .about-2-bottom {
    flex-flow: column;
  }

  .about-bottom-right {
    width: 100%;
    margin-top: 40px;
  }

  .about-2-upper {
    flex-flow: column;
  }

  .about-us-2 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .about-upper-right {
    width: 100%;
    margin-top: 40px;
    padding-left: 0;
  }

  .bottom-nav-top {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .footer-link {
    margin-top: 12px;
  }

  .brand-logo-footer {
    margin-right: 0;
    padding-left: 0;
  }

  .tab-content {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .tabs-menu-3 {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }

  .product-info-section {
    padding-top: 40px;
  }

  .product-info-wrapper {
    flex-flow: column;
  }

  .lightbox-wrapper {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
  }

  .product-info-textbox {
    width: 100%;
    margin-top: 40px;
    margin-left: 0;
  }

  .brand-info-wrapper {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
  }

  .brand-description {
    margin-left: 0;
  }

  .nav-dropdown-toggle-2 {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-dropdown-toggle-2.dropdown {
    color: #000;
    width: 100%;
    padding-left: 0;
  }

  .container-11 {
    margin-left: 24px;
    margin-right: 24px;
  }

  .nav-link-3 {
    color: #000;
    text-align: left;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

  .container-12 {
    margin-left: 24px;
    margin-right: 24px;
  }

  .bottom---about-2 {
    margin-top: 20px;
    font-size: 16px;
  }

  .bottom-header-2 {
    margin-bottom: 16px;
    font-size: 18px;
  }

  .bottom-nav-grid-2 {
    grid-row-gap: 24px;
    grid-template-columns: 1.5fr 1fr;
    margin-top: 60px;
    margin-bottom: 60px;
  }

  .info-wrapper {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .bottom-logo-image-2 {
    height: 40px;
  }

  .footer-header {
    margin-bottom: 16px;
    font-size: 18px;
  }

  .bottom---about-3 {
    margin-top: 20px;
    font-size: 16px;
  }

  .footer-logo-image {
    height: 40px;
  }

  .container-13 {
    margin-left: 24px;
    margin-right: 24px;
  }

  .footer-grid {
    grid-row-gap: 24px;
    grid-template-columns: 1.5fr 1fr;
    margin-top: 60px;
    margin-bottom: 60px;
  }
}

@media screen and (max-width: 479px) {
  .container {
    margin-left: 5%;
    margin-right: 5%;
  }

  .container-2 {
    max-width: none;
  }

  .nav-menu-two {
    flex-direction: column;
  }

  .contact-button {
    text-align: center;
    width: 100%;
  }

  .header-section-tag {
    padding-right: 0;
    font-size: 14px;
  }

  .paragraph {
    margin-left: 0;
  }

  .category-grid, .featured-brand-grid {
    grid-template-columns: 1fr 1fr;
  }

  .form-block {
    margin: 40px 24px;
  }

  .bottom---3-column.visible {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    display: flex;
  }

  .bottom---2-column {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .bottom-link-text {
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 14px;
    line-height: 1.4;
  }

  .link.left {
    text-align: left;
    margin-left: 10px;
  }

  .bottom---4-column.visible {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    display: flex;
  }

  .button-4.extra-padding {
    margin-top: 20px;
  }

  .category-hover-overlay {
    padding: 16px;
  }

  .industries-grid {
    grid-template-columns: 1fr 1fr;
  }

  .industries-card {
    padding: 16px;
  }

  .banner-heading.bottom-padding._32px {
    font-size: 32px;
  }

  .contact-form-right {
    padding: 24px;
  }

  .brand-card.category-page {
    color: var(--black);
    font-family: Poppins, sans-serif;
    font-weight: 500;
    line-height: 1.4;
  }

  .brand-card.category-page:hover {
    color: var(--white);
    -webkit-text-stroke-color: var(--white);
  }

  .brand-name {
    color: var(--white);
  }

  .brand-name.caegory-page, .brand-name.caegory-page:hover {
    color: var(--black);
  }

  .category-main {
    padding-top: 40px;
  }

  .category-tab {
    height: 80px;
    padding: 0;
  }

  .tabs-menu {
    grid-template-columns: 1fr 1fr;
  }

  .tabs-content {
    padding-top: 20px;
  }

  .tab-header, .tab-header.white {
    text-align: left;
    font-family: Poppins, sans-serif;
    font-size: 24px;
    font-weight: 500;
  }

  .tab-content-grid, .brand-product-grid {
    grid-template-columns: 1fr 1fr;
  }

  .list-item.hide {
    display: none;
  }

  .fn-nav-line-1.green-line {
    background-color: #e62c37;
  }

  .container-4 {
    margin-left: 20px;
    margin-right: 20px;
  }

  .contact-button-2 {
    width: 100%;
  }

  .card-info.ap-1 {
    margin-bottom: 1.5rem;
    margin-left: 1.5rem;
  }

  .flex-wrapper-2 {
    grid-template-columns: 1fr 1fr;
  }

  .featured-brands-section-2 {
    padding-bottom: 60px;
  }

  .featured-brand-card-slider {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr 1fr;
  }

  .page-intro-text-wrapper {
    margin-top: -3vh;
  }

  .bottom-strip-right {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-direction: column;
    margin-top: 12px;
    margin-bottom: 12px;
  }

  .links-wrapper {
    margin-bottom: 20px;
  }

  .bottom-strip-left {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-direction: column;
    margin-top: 12px;
    margin-bottom: 12px;
  }

  .product-card {
    color: var(--black);
  }

  .product-card:hover {
    color: var(--white);
  }

  .enquire-button {
    width: 100%;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .button-container {
    flex-flow: column;
  }

  .tab-content {
    grid-template-columns: 1fr 1fr;
  }

  .tabs-content-2 {
    margin-top: 20px;
  }

  .tabs-menu-2 {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .tab-chip {
    padding: 16px;
  }

  .tabs-menu-3 {
    grid-template-columns: 1fr 1fr;
  }

  .tabs-content-3 {
    margin-top: 40px;
  }

  .lightbox-wrapper {
    width: 100%;
  }

  .brand-info-wrapper {
    flex-flow: column;
  }

  .fb_white_box {
    background-color: var(--white);
  }

  .brand-description {
    margin-left: 0;
  }

  .color-block {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .secondary-button {
    text-align: center;
    width: 100%;
  }

  .container-11 {
    margin-left: 5%;
    margin-right: 5%;
  }

  .contact-button-3 {
    text-align: center;
    width: 100%;
  }

  .container-12, .container-13 {
    margin-left: 5%;
    margin-right: 5%;
  }
}

@media screen and (max-width: 767px) {
  #w-node-f921aa94-57dd-c9cb-a909-cff2edd81e4e-6d29242b {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-f921aa94-57dd-c9cb-a909-cff2edd81e88-6d29242b {
    grid-area: span 1 / span 2 / span 1 / span 2;
    align-self: auto;
  }

  #w-node-f921aa94-57dd-c9cb-a909-cff2edd81ea7-6d29242b, #w-node-dcb6e6f3-d73a-e7d5-2269-78fb5314e63c-6d29242b {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-dcb6e6f3-d73a-e7d5-2269-78fb5314e676-6d29242b {
    grid-area: span 1 / span 2 / span 1 / span 2;
    align-self: auto;
  }

  #w-node-dcb6e6f3-d73a-e7d5-2269-78fb5314e695-6d29242b {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}


