@charset "UTF-8";

@font-face {
  font-family: Montserrat;
  src: url("https://fonts.googleapis.com/css?family=Montserrat:100,200,300,400,500,600,700,600,900");
}

* {
  box-sizing: border-box;
  font-family: Montserrat, sans‑serif;
  padding: 0;
  margin: 0;
}

body {
  font-size: 18px;
  margin: 0;
  padding: 0;
  color: #000;
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: inherit;
}

a[href] {
  text-decoration: underline;
}

a:hover,
a:active {
  color: #702283;
}

p {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
}

p+p {
  margin: 1rem 0;
}

a+p {
  margin-top: 1rem;
}

img {
  width: 100%;
}

.fluidContainer {
  padding: 0 1rem;
  max-width: calc(1440px + 104px);
  margin: auto;
}

.header {
  background-color: #fff;
  color: #f6f9f9;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 600;
}

.header__row {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 0 2rem;
}

.header__logo {
  width: 117px;
}

.header__actionGroup {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  margin-left: auto;
}

.header__action {
  width: auto;
  height: auto;
  margin-right: 2rem;
}

.header__action:last-of-type {
  margin: 0;
}

.button {
  vertical-align: middle;
  cursor: pointer;
  height: 100%;
  border: none;
  background-color: #000;
  padding: 0.5rem 1rem;
  color: #fff;
  font-weight: 500;
  letter-spacing: 1px;
}

.button:hover {
  background-color: #3e3e3e;
}

.button--secondary {
  border: 1px solid #000;
  color: #000;
  background: #fff;
}

.button--secondary:hover {
  color: #fff;
}

.button--round {
  border: 1px solid #000;
  color: #000;
  background: #fff;
  padding: 0.5rem;
  border-radius: 20px;
  width: 40px;
  height: 40px;
}

.button--round:hover {
  color: #fff;
}

.button--withColor {
  background: #000;

}

.button--withColor:hover {
  background-color: #e5004b;

}

.button--large {
  padding: 1rem 2rem;
}

.button--icon {
  height: 30px;
  width: 30px;
  background: none;
}

.fullWidthBanner {
  background-color: #702283;
  color: #fff;
  padding: 0.5rem 0;
  font-size: 12px;
  display: flex;
}

.fullWidthBanner__content {
  margin: auto;
  max-width: 480px;
  text-align: center;
}

.fullWidthBanner__content a:hover {
  text-decoration: underline;
}

.mainContent {
  width: 100%;
  max-width: 810px;
  margin-inline: auto;
  margin-top: 2rem;
}

.hero {
  background: #e5004b;
  padding: 3rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-transform: uppercase;
}

.hero--small {
  padding: 2rem;
}

.hero--small .hero__title {
  font-size: 1.75rem;
}

.hero--small .hero__subheading {
  font-size: 12px;
}

.hero__title {
  color: #fff;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.1;
  margin: 0;
}

.hero__subheading {
  font-weight: 400;
  color: #fff;
  margin: 0;
  font-size: 2rem;
}

.section {
  margin-bottom: 4rem;
  text-align: center;
  position: relative;
}

.section__title {
  line-height: 1.1;
  font-size: 1.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section__title--withSeperation {
  margin: 4rem 0;
  position: relative;
}

.section__title--withSeperation::after {
  position: absolute;
  bottom: -1rem;
  width: 8rem;
  left: 50%;
  transform: translate(-50%);
  display: block;
  height: 2px;
  background: #e5004b;
  content: "";
}

.section--withBackground {
  padding: 1rem 0;
  background: #f6f9f9;
}

.section--withBackground .section__title {
  margin: 1rem;
}

.section--withBackground .section__title--withSeperation {
  margin: 2rem 0;
}

.section--overlay {
  position: absolute;
  background: #fff;
  border: 1px solid #702283;
  padding: 2rem 1rem;
  width: calc(100% - 4rem);
  left: 50%;
  transform: translate(-50%);
  border-radius: 8px;
}

.section--afterOverlay {
  margin-top: 23rem;
}

.block {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.block__media {
  width: 400px;
  height: 225px;
  overflow: hidden;
}

.block__text {
  font-size: 18px;
  width: 340px;
  text-align: left;
}

.block__text .section__title {
  margin-top: 1rem;
  font-size: 1rem;
}

.block__text p {
  margin-top: 0.5rem;
}

.text--subheading {
  font-weight: 600;
  font-size: 18px;
  margin: 1rem 0;
}

.text--light {
  color: #808080;
}

.hero+.text {
  margin-top: 1rem;
}

.gridGallery {
  display: grid;
  grid-template-rows: repeat(2, 196px);
  grid-template-columns: repeat(4, 196px);
}

.gridGallery__text {
  text-align: center;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gridGallery__text h4 {
  color: #702283;
  text-transform: uppercase;
  line-height: 1;
  font-weight: 600;
}

.gridGallery__text p {
  margin-top: 0.5rem;
}

.tiles {
  display: grid;
  grid-gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
  margin: 2rem;
}

.tiles--col2 {
  grid-template-columns: repeat(2, 1fr);
}

.tiles__number {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  font-weight: 900;
}

.tiles__item {
  text-align: center;
  position: relative;
}

.tiles__item p {
  margin: 0;
  text-transform: none;
  letter-spacing: normal;
  line-height: normal;
}

.tiles__item h4 {
  font-size: 12px;
  margin: 0.5rem 0;
  font-weight: 900;
}

.tiles__item h3 {
  margin: 0;
  font-weight: 900;
  padding-bottom: 1rem;
  letter-spacing: 2px;
  color: #ffffff;
}

.tiles__item img {
  max-width: 100%;
}

.tiles__item--colored {
  text-align: left;
  color: #fff;
  padding: 2rem;
  padding-bottom: 3rem;
  text-transform: uppercase;
}

.tiles__item--colored1 {
  background: #e11d58;
}

.tiles__item--colored2 {
  background: #bf1f85;
}

.tiles__item--colored3 {
  background: #9823b3;
}

.tiles__item--colored4 {
  background: #391d40;
}

.feature {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.feature__wrapper {
  text-align: center;
  padding: 0 1rem;
  border-right: 1px solid #ccc;
}

.feature__wrapper:first-of-type {
  padding-left: 0;
}

.feature__wrapper:last-of-type {
  border: none;
  padding-right: 0;
}

.feature__wrapper h6 {
  color: #de1c57;
  text-transform: uppercase;
  margin: 0;
  height: 3rem;
  font-weight: 700;
  font-size: 14px;
}

.feature__wrapper img {
  width: 2.5em;
}

.feature__wrapper p {
  margin: 0.5rem 0;
}

.products {
  max-width: 100%;
  margin: 2rem;
  display: grid;
  grid-gap: 2rem;
  grid-template-columns: repeat(2, 1fr);
}

.products__item p {
  text-align: left;
  margin-top: 1rem;
}

.products__item ul {
  text-align: left;
  font-size: 12px;
  font-weight: 500;
  padding-inline-start: 1rem;
  margin-top: 0.5rem;
}

.products__item h4 {
  margin: 1rem 0;
  font-weight: 800;
}

.products__item span {
  text-decoration: line-through;
  color: #de1c57;
  display: block;
  font-size: 12px;
}

@media (max-width: 750px) {
  .gridGallery {
    grid-template-rows: repeat(3, minmax(auto, 196px));
    grid-template-columns: repeat(2, minmax(auto, 196px));
    justify-content: center;
  }

  .gridGallery>div:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
  }

  .gridGallery>div:nth-child(4) {
    grid-column: 1;
    grid-row: 2;
  }

  .gridGallery>div:nth-child(5) {
    grid-column: 2;
    grid-row: 3;
  }

  .gridGallery>div:nth-child(6) {
    grid-column: 1;
    grid-row: 3;
  }

  .feature {
    grid-template-columns: auto;
  }

  .feature__wrapper {
    padding: 0.5rem 0;
    margin: 0 1rem;
    border-right: none;
    border-bottom: 1px solid #ccc;
  }

  .feature__wrapper h6 {
    height: auto;
    margin: 0.5rem 0;
  }

  .block {
    flex-direction: column;
    gap: 0;
  }

  .block__text {
    width: 100%;
  }

  .section {
    margin: 1rem;
    margin-top: unset;
  }

  .tiles {
    margin: 1rem 0;
  }

  .tiles__item--colored {
    padding: 1rem;
    padding-bottom: 3rem;
  }

  .tiles__number {
    bottom: 0.5rem;
  }

  .products {
    margin: 1rem 0;
    grid-gap: 1rem;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 556px) {
  .tiles {
    grid-template-columns: auto;
  }
}

html {
  scroll-behavior: smooth;
}

.shopify-bar-wrapper {
  height: 1685px;
}

@media only screen and (min-width: 768px) {
  .shopify-bar-wrapper {
    height: 1120px;
  }
}