/**
 * Noscript
 *
 * CSS only loaded when javascript is disabled. Makes content that is
 * normally accessible only with JavaScript visible, and hides elements
 * where that is not possible or desired
 */
/**
 * General configuration
 */
/**
 * Config for Gorko Utility Class Generator
 *
 * @see https://github.com/hankchizljaw/gorko
 */
/**
 * BASE SIZE
 * All calculations are based on this. It's recommended that
 * you keep it at 1rem because that is the root font size. You
 * can set it to whatever you like and whatever unit you like.
 */
/**
 * SIZE SCALE
 * This is a Perfect Fourth scale that powers all the utilities that
 * it is relevant for (font-size, margin, padding). All items are
 * calcuated off the base size, so change that and cascade across
 * your whole project.
 */
/**
 * COLORS
 * Colors are shared between backgrounds and text by default.
 * You can also use them to power borders, fills or shadows, for example.
 */
/**
 * CORE CONFIG
 * This powers everything from utility class generation to breakpoints
 * to enabling/disabling pre-built components/utilities.
 */
/**
 * Mixins
 *
 * sass mixins, currently media query helpers
 */
@media screen and (max-width: 767px) {
  .l-header__wrap {
    display: block;
  }
}

.l-nav__toggle {
  display: none;
}

@media screen and (max-width: 767px) {
  .l-nav__wrap {
    background: none;
    color: currentColor;
    left: 0;
    position: relative;
    right: 0;
    -webkit-transform: none;
            transform: none;
    visibility: visible;
  }
}

@media screen and (max-width: 767px) {
  .l-nav__menu {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    font-size: 2rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (max-width: 767px) {
  .b-social {
    padding: 0;
  }
}

.glide__bullets,
.glide__arrows {
  display: none;
}

.s-carousel__slide + * {
  display: none;
}

.s-slider .glide__slides {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap-reverse;
      flex-wrap: wrap-reverse;
  gap: 1rem;
}

.s-slider .glide__slides > * {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 16rem;
          flex: 1 0 16rem;
}

/*# sourceMappingURL=../../sourcemaps/noscript.css.map */
