/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:homepage-double-column (INDEX:32) */
.homepage-double-column {
    display: flex;
    width: 100%;
    flex-wrap: wrap;

    &.homepage-double-column--mobile-column {
      flex-direction: column;
    }

    &.homepage-double-column--mobile-row {
      flex-direction: row;

      .homepage-double-column__block {
        flex: 1 0 calc(100% / 2);
      }

      .homepage-double-column__block-media img,
      .homepage-double-column__block-media video {
        width: 100%;
        height: 100%;
      }
    }

    .homepage-double-column__block {
      position: relative;
      width: 100%;
      display: flex;
      flex-direction: column;
      box-sizing: border-box;

      .homepage-double-column__block-media {
        position: relative;
        width: 100%;
        height: 100%;

        img,
        video {
          width: 100%;
          height: 100%;
          display: block;
          object-fit: cover;
        }

        .homepage-double-column__block-video {
          width: 100%;
          height: 100%;

          video {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
          }
        }
      }

      .homepage-double-column__block-overlay {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        background-color: black;
        opacity: 10%;
        z-index: 1;
      }

      .homepage-double-column__block-content {
        position: absolute;
        inset: 0;
        z-index: 1;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        padding: 3rem 2rem;
        box-sizing: border-box;

        .homepage-double-column__block-content-inner {
          width: 100%;
          text-align: center;
          display: flex;
          flex-direction: column;
          align-items: center;
          gap: 1rem;
        }

        .homepage-double-column__heading {
          margin: 0;
          font-family: var(--font-family-secondary, inherit);
          font-size: 2.4rem;
          font-weight: 700;
          line-height: 1.2;
          text-transform: uppercase;
          color: rgb(255, 255, 255);
          letter-spacing: 0.02em;
        }

        .homepage-double-column__subheading {
          margin: 0;
          font-size: 1.4rem;
          font-weight: 400;
          line-height: 1.5;
          color: rgb(255, 255, 255);
        }

        .homepage-double-column__button {
          margin-top: 0.5rem;
          text-decoration: none;

          &.button--block {
            padding: 0.6rem 3.1rem;
            background-color: rgb(255, 255, 255);
            color: rgb(33, 33, 33);
            border: none;
            font-weight: 500;
            transition: background-color 0.45s ease-in-out, color 0.45s ease-in-out;

            &:hover,
            &:focus {
              background-color: rgba(0, 0, 0, 0.9);
              color: rgb(255, 255, 255);
            }
          }

          &.button--link {
            position: relative;
            color: rgb(255, 255, 255);
            text-transform: uppercase;
            transition: color 0.45s ease-in-out;

            &::after {
              content: '';
              position: absolute;
              left: 0;
              right: 0;
              bottom: 0;
              height: 1px;
              background-color: rgb(255, 255, 255);
            }

            .homepage-double-column__button-text {
              display: inline-block;
              transition: transform 0.45s ease-in-out;
            }

            &:hover,
            &:focus {
              color: rgba(255, 255, 255, 0.9);

              .homepage-double-column__button-text {
                transform: translateY(-0.5rem);
              }
            }
          }
        }
      }

      &.inverted {
        .homepage-double-column__block-overlay {
          background-color: white;
          opacity: 10%;
        }

        .homepage-double-column__block-content {
          .homepage-double-column__heading {
            color: rgb(33, 33, 33);
          }

          .homepage-double-column__subheading {
            color: rgb(33, 33, 33);
          }

          .homepage-double-column__button {
            &.button--block {
              background-color: rgb(33, 33, 33);
              color: rgb(255, 255, 255);

              &:hover, &:focus {
                background-color: rgb(255, 255, 255, 0.9);
                color: rgb(33, 33, 33);
              }
            }

            &.button--link {
              color: rgb(33, 33, 33);

              &::after {
                background-color: rgb(33, 33, 33);
              }

              &:hover, &:focus {
                color: rgba(33, 33, 33, 0.9);
              }
            }
          }
        }
      }
    }

    @media screen and (min-width: 768px) {
      &.homepage-double-column--mobile-column {
        flex-direction: row;
      }

      .homepage-double-column__block {
        flex: 0 0 50%;
      }
    }
  }
/* END_SECTION:homepage-double-column */

/* START_SECTION:homepage-single-column (INDEX:33) */
.homepage-single-column {
    display: flex;
    width: 100%;
    height: 424px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;

    .homepage-single-column__media {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;

      .homepage-single-column__image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
      }

      .homepage-single-column__image--desktop {
        display: none;
      }

      .homepage-single-column__image--mobile {
        display: block;
      }
    }

    @media screen and (min-width: 768px) {
      .homepage-single-column__media .homepage-single-column__image--desktop {
        display: block;
      }

      .homepage-single-column__media .homepage-single-column__image--mobile {
        display: none;
      }
    }

    .homepage-single-column__overlay {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      background-color: black;
      opacity: 10%;
      z-index: 0;
    }

    .homepage-single-column__content {
      position: relative;
      z-index: 1;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 3rem 2rem;
      box-sizing: border-box;

      .homepage-single-column__content-inner {
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;

        .homepage-single-column__heading {
          margin: 0;
          font-family: var(--font-family-secondary, inherit);
          font-size: 2.4rem;
          font-weight: 700;
          line-height: 1.2;
          text-transform: uppercase;
          color: rgb(255, 255, 255);
          letter-spacing: 0.02em;
        }

        .homepage-single-column__subheading {
          margin: 0;
          font-size: 1.4rem;
          font-weight: 400;
          line-height: 1.5;
          color: rgb(255, 255, 255);
        }

        .homepage-single-column__button {
          margin-top: 0.5rem;
          text-decoration: none;

          &.button--block {
            padding: 0.6rem 3.1rem;
            background-color: rgb(255, 255, 255);
            color: rgb(33, 33, 33);
            border: none;
            font-weight: 500;
            transition: background-color 0.45s ease-in-out, color 0.45s ease-in-out;

            &:hover,
            &:focus {
              background-color: rgba(0, 0, 0, 0.9);
              color: rgb(255, 255, 255);
            }
          }

          &.button--link {
            position: relative;
            color: rgb(255, 255, 255);
            text-transform: uppercase;
            transition: color 0.45s ease-in-out;

            &::after {
              content: '';
              position: absolute;
              left: 0;
              right: 0;
              bottom: 0;
              height: 1px;
              background-color: rgb(255, 255, 255);
            }

            .homepage-single-column__button-text {
              display: inline-block;
              transition: transform 0.45s ease-in-out;
            }

            &:hover,
            &:focus {
              color: rgba(255, 255, 255, 0.9);

              .homepage-single-column__button-text {
                transform: translateY(-0.5rem);
              }
            }
          }
        }
      }
    }

    &.inverted {
      .homepage-single-column__overlay {
        background-color: white;
        opacity: 10%;
      }

      .homepage-single-column__content {
        .homepage-single-column__content-inner {
          .homepage-single-column__heading {
            color: rgb(33, 33, 33);
          }
          .homepage-single-column__subheading {
            color: rgb(33, 33, 33);
          }
          .homepage-single-column__button {
            &.button--block {
              background-color: rgb(33, 33, 33);
              color: rgb(255, 255, 255);

              &:hover,&:focus {
                background-color: rgb(255, 255, 255, 0.9);
                color: rgb(33, 33, 33);
              }
            }

            &.button--link {
              color: rgb(33, 33, 33);

              &::after {
                background-color: rgb(33, 33, 33);
              }

              &:hover, &:focus {
                color: rgba(33, 33, 33, 0.9);
              }
            }
          }
        }
      }
    }
  }
/* END_SECTION:homepage-single-column */

/* START_SECTION:homepage-three-column (INDEX:36) */
.homepage-three-column {
    display: flex;
    width: 100%;
    flex-wrap: wrap;

    .homepage-three-column__block {
      position: relative;
      width: 100%;
      display: flex;
      flex-direction: column;

      @media screen and (min-width: 768px) {
        flex-direction: row;
        flex: 1 0 calc(100% / 3);
      }
      .homepage-three-column__block-media {
        position: relative;
        width: 100%;
        height: 100%;

        img,
        video {
          width: 100%;
          height: 100%;
          display: block;
          object-fit: cover;
        }

        .homepage-three-column__block-video {
          width: 100%;
          height: 100%;

          video {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
            aspect-ratio: 3 / 4;
          }
        }
      }
      .homepage-three-column__block-overlay {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        background-color: black;
        opacity: 10%;
        z-index: 1;
      }
      .homepage-three-column__block-content {
        position: absolute;
        inset: 0;
        z-index: 1;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        padding: 3rem 2rem;
        box-sizing: border-box;

        .homepage-three-column__block-content-inner {
          width: 100%;
          text-align: center;
          display: flex;
          flex-direction: column;
          align-items: center;
          gap: 1rem;
        }

        .homepage-three-column__heading {
          margin: 0;
          font-family: var(--font-family-secondary, inherit);
          font-size: 2.4rem;
          font-weight: 700;
          line-height: 1.2;
          text-transform: uppercase;
          color: rgb(255, 255, 255);
          letter-spacing: 0.02em;
        }

        .homepage-three-column__subheading {
          margin: 0;
          font-size: 1.4rem;
          font-weight: 400;
          line-height: 1.5;
          color: rgb(255, 255, 255);
        }

        .homepage-three-column__button {
          margin-top: 0.5rem;
          text-decoration: none;

          &.button--block {
            padding: 0.6rem 3.1rem;
            background-color: rgb(255, 255, 255);
            color: rgb(33, 33, 33);
            border: none;
            font-weight: 500;
            transition: background-color 0.45s ease-in-out, color 0.45s ease-in-out;

            &:hover,
            &:focus {
              background-color: rgba(0, 0, 0, 0.9);
              color: rgb(255, 255, 255);
            }
          }

          &.button--link {
            position: relative;
            color: rgb(255, 255, 255);
            text-transform: uppercase;
            transition: color 0.45s ease-in-out;

            &::after {
              content: '';
              position: absolute;
              left: 0;
              right: 0;
              bottom: 0;
              height: 1px;
              background-color: rgb(255, 255, 255);
            }

            .homepage-three-column__button-text {
              display: inline-block;
              transition: transform 0.45s ease-in-out;
            }

            &:hover,
            &:focus {
              color: rgba(255, 255, 255, 0.9);

              .homepage-three-column__button-text {
                transform: translateY(-0.5rem);
              }
            }
          }
        }
      }
      &.inverted {
        .homepage-three-column__block-overlay {
          background-color: white;
          opacity: 10%;
        }
        .homepage-three-column__block-content {
          .homepage-three-column__heading {
            color: rgb(33, 33, 33);
          }
          .homepage-three-column__subheading {
            color: rgb(33, 33, 33);
          }
          .homepage-three-column__button {
            &.button--block {
              background-color: rgb(33, 33, 33);
              color: rgb(255, 255, 255);

              &:hover, &:focus {
                background-color: rgb(255, 255, 255, 0.9);
                color: rgb(33, 33, 33);
              }
            }
            &.button--link {
              color: rgb(33, 33, 33);

              &::after {
                background-color: rgb(33, 33, 33);
              }
              &:hover, &:focus {
                color: rgba(33, 33, 33, 0.9);
              }
            }
          }
        }
      }
    }
  }
/* END_SECTION:homepage-three-column */

/* START_SECTION:image-login (INDEX:39) */
.login-image {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
/* END_SECTION:image-login */

/* START_SECTION:styleguide (INDEX:117) */
.styleguide .icon {
  width: 2rem;
}

.styleguide .buttons li,
.styleguide .icons li  {
  padding: 2rem 0;
}

.styleguide ul span {
 font-family: 'Courier New';
}

.styleguide .buttons span {
 display:block;
 padding: 0.5rem 0;
}

.styleguide .icons span {
 padding: 0 1rem;
}
/* END_SECTION:styleguide */