/*
0px - 600px: Phone
600px - 900px: Tablet Portrait
900px - 1200px: Tablet Landscape
1200px - 1800px: Normal Styles (Desktop)
1800px + : Big Desktop

    $breakpoint argument choices:
    - phone
    - tab-port
    - tab-land
    - big-desktop

    ORDER: base + typography > general layout > page layout > components
*/
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Open+Sans:wght@400;700&display=swap");
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

h1 {
  font-size: 1.8rem;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 2rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.8rem;
}

html {
  font-size: 62.5%;
}

body {
  box-sizing: border-box;
}

body {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  line-height: 1.2;
  font-size: 1.8rem;
  color: #000;
}

.btn-small,
.btn-small:active,
.btn-small:visited {
  display: block;
  width: 50%;
  max-width: 30rem;
  min-width: 25rem;
  font-weight: bold;
  font-size: 1.8rem;
  text-decoration: none;
  color: blue;
  text-decoration: underline;
  margin: 0 auto;
  background-color: #4faafd;
  margin-bottom: 2rem;
  padding: 1.5rem;
  text-align: center;
}

.blur-layer {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: black;
  opacity: 0%;
  display: none;
}
.blur-layer--active {
  opacity: 50%;
  display: block;
}

.full-size {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 70vw;
  width: auto;
  height: auto;
  z-index: 50;
  cursor: default;
}

.click-for-full {
  margin-bottom: 2rem;
  font-size: 1.5rem;
  color: #0000ee;
}

.quote-box {
  text-align: center;
  background-color: #4faafd;
  font-weight: bold;
  max-width: 30rem;
  margin: 0 auto;
  padding: 1.8rem 0;
}

.section-divider {
  margin: 0 auto;
  width: 75%;
  height: 1px;
  margin-bottom: 2rem;
  border-bottom: 1px solid #4faafd;
}

@media only screen and (max-width: 37.5em) {
  .section-divider {
    width: 90%;
  }
}
.generic-slideshow__image {
  width: 100%;
  height: auto;
  transition: opacity 0.5s;
  z-index: 5;
}
.generic-slideshow__image--next {
  transition: opacity 0.5s;
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
}
.generic-slideshow__arrow {
  visibility: hidden;
  font-size: 5rem;
  position: absolute;
  top: 50%;
  transform: translate(0, -70%);
  z-index: 99;
}
.generic-slideshow__arrow--left {
  left: 2%;
}
.generic-slideshow__arrow--right {
  right: 2%;
}
.generic-slideshow__pane {
  position: absolute;
  top: 0;
  height: 100%;
  z-index: 100;
  opacity: 0.5;
}
.generic-slideshow__pane--left {
  cursor: pointer;
  left: 0;
  width: 20%;
}
.generic-slideshow__pane--center {
  width: 60%;
  left: 20%;
}
.generic-slideshow__pane--right {
  cursor: pointer;
  right: 0;
  width: 20%;
}

.fadeOut {
  opacity: 0;
}

.contact {
  text-align: center;
  margin-bottom: 6rem;
}
.contact__header {
  margin-bottom: 2rem;
}
.contact__info {
  margin-bottom: 2rem;
}

@media only screen and (max-width: 56.25em) {
  .contact {
    font-size: 2rem;
  }
  .contact__header {
    font-size: 2rem;
  }
}
.gear {
  text-align: center;
  margin: 2rem auto 3rem auto;
  width: 100%;
}
.gear__grid {
  max-width: 70%;
  margin: 0 auto;
  margin-bottom: 2rem;
  display: grid;
  grid-gap: 2rem;
  grid-template-columns: repeat(3, 1fr);
}
.gear__header {
  margin-bottom: 2rem;
}
.gear__gear-card {
  margin-bottom: 2rem;
  display: inline-block;
}
.gear__gear-card--image {
  display: block;
  margin-bottom: 2rem;
}
.gear__gear-card--image > img {
  width: 100%;
}
.gear__gear-card--link {
  display: block;
}

@media only screen and (max-width: 75em) {
  .gear__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 56.25em) {
  .gear {
    font-size: 2rem;
  }
  .gear__heading {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .gear__grid {
    max-width: 90%;
  }
  .gear__gear-card {
    margin-bottom: 0.5rem;
  }
  .gear__gear-card--image {
    margin-bottom: 0.5rem;
  }
}
.generic-container {
  margin: 0 auto;
  width: 70%;
}

@media only screen and (max-width: 37.5em) {
  .generic-container {
    width: 90%;
  }
}
.list-box {
  text-align: left;
}

.generic-list {
  padding-top: 2rem;
  text-align: center;
  width: 100%;
  margin-bottom: 2rem;
}
.generic-list__header {
  text-align: center;
  margin: 0 auto;
  margin-bottom: 2rem;
}
.generic-list__list {
  list-style: none;
  margin-bottom: 2rem;
}
.generic-list__category {
  font-weight: bold;
}

@media only screen and (max-width: 37.5em) {
  .gear-list {
    font-size: 1.5rem;
  }

  .blog-article-list {
    font-size: 2rem;
  }
  .blog-article-list li {
    margin-bottom: 1rem;
  }
}
.faq {
  text-align: center;
  width: 100%;
  margin-bottom: 6rem;
}
.faq__header {
  margin-bottom: 3rem;
}
.faq__card {
  margin-bottom: 2rem;
}
.faq__question {
  font-weight: bold;
}

@media only screen and (max-width: 56.25em) {
  .faq {
    font-size: 2rem;
  }
  .faq__header {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .faq-box {
    width: 90%;
  }

  .faq {
    font-size: 2rem;
  }
  .faq__header {
    font-size: 2rem;
  }
}
.information-box {
  padding: 2rem 0;
}

.information {
  width: 100%;
  background-color: #f1c52e;
  text-align: center;
  margin-bottom: 2rem;
}
.information__address-box {
  margin-bottom: 2rem;
}
.information__address {
  font-weight: bold;
}
.information__hours {
  margin: 0 auto;
}
.information__map {
  margin-bottom: 2rem;
  height: 40rem;
  width: 100%;
}
.information__map--google {
  width: 90%;
  height: 100%;
}
.information__hours {
  margin-bottom: 2rem;
}

.about-us__text {
  width: 70%;
  margin: 0 auto;
}

@media only screen and (max-width: 56.25em) {
  .information {
    font-size: 2rem;
    width: 100%;
  }
  .information__header {
    font-size: 2rem;
  }

  .about-us__header {
    font-size: 2rem;
  }

  .about-us__text {
    width: 90%;
  }
}
@media only screen and (max-width: 37.5em) {
  .information__map--google {
    width: 100%;
  }
  .information__hours {
    width: 90%;
  }
}
header {
  text-align: center;
}

.navigation::after {
  content: "";
  display: table;
  clear: both;
}
.navigation__mobile-nav {
  font-size: 3rem;
  position: fixed;
  top: 1rem;
  left: 1rem;
  display: none;
}
.navigation__logo {
  display: inline-block;
}
.navigation__list {
  margin-left: 2rem;
  list-style: none;
  display: inline-block;
}
.navigation__list::after {
  content: "";
  display: table;
  clear: both;
}
.navigation__list > a {
  font-size: 2rem;
  line-height: 12rem;
  text-transform: uppercase;
  float: left;
  font-weight: bold;
}
.navigation__list > a:not(:first-child) {
  margin-left: 2rem;
}
.navigation input {
  font-size: 5rem;
  width: 5rem;
  height: 5rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5002;
  opacity: 0;
  display: none;
}
.navigation input:checked + .navigation__list {
  transform: translate(0, 0);
}

@media only screen and (max-width: 56.25em) {
  .navigation__item {
    font-size: 1.3rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .navigation input {
    display: block;
  }
  .navigation__mobile-nav {
    display: block;
    z-index: 5001;
  }
  .navigation__logo {
    display: block;
    margin: 0 auto;
  }
  .navigation__list {
    transform: translate(-110%, 0);
    position: fixed;
    padding-top: 2rem;
    top: 0;
    margin-left: 0;
    left: 0;
    width: 70%;
    height: rem;
    text-align: left;
    z-index: 5000;
    background-color: white;
    box-shadow: 1px 1px 2px 1px #ccc;
    transition: ease-out 0.3s;
  }
  .navigation__list > a, .navigation__list > a:link, .navigation__list > a:visited {
    text-decoration: none;
    color: #000;
    display: block;
    float: none;
  }
  .navigation__list > a:not(:first-child), .navigation__list > a:link:not(:first-child), .navigation__list > a:visited:not(:first-child) {
    margin-left: 0;
  }
  .navigation__item {
    width: auto;
    position: relative;
    padding-left: 6rem;
    padding-bottom: 1rem;
    line-height: 2rem;
    float: none;
    font-size: 2rem;
    margin-top: 2rem;
    margin-bottom: 3rem;
  }
}
.welcome-box {
  padding: 2rem 0;
  background-image: url("../img/BG_building.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 100%;
}

.welcome {
  background-color: #f1c52e;
  width: 100%;
  text-align: center;
}
.welcome__text {
  position: relative;
  margin: 0 auto;
  margin-bottom: 4rem;
  width: 60%;
}
.welcome__text--subtitle {
  margin-bottom: 4rem;
  font-weight: bold;
}

@media only screen and (max-width: 56.25em) {
  .welcome {
    font-size: 2rem;
    background-size: auto 100%;
  }
  .welcome__text {
    width: 90%;
  }
  .welcome--header {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .welcome-box {
    background-image: none;
  }
}
.blog-box {
  display: flex;
  justify-content: center;
}

.blog {
  width: 100%;
  text-align: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f7f7f7;
}
.blog__title {
  display: block;
  width: 100%;
}

.preview-list {
  padding-top: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  display: inline-block;
  max-width: 100%;
  text-align: center;
  margin-bottom: 2rem;
  background-color: #f7f7f7;
}

.post-preview {
  max-width: 100%;
  margin: 0 auto;
  margin-bottom: 4rem;
}
.post-preview__title {
  margin-bottom: 0.5rem;
}
.post-preview__author {
  margin-bottom: 2rem;
}
.post-preview__excerpt--thumbnail {
  display: block;
  margin: 0 auto;
  max-width: 60%;
  height: auto;
  margin-bottom: 2rem;
}
.post-preview__excerpt--text {
  line-height: 1.3;
  text-align: left;
  width: 80%;
  max-width: 100rem;
  margin: 0 auto;
}

.read-more {
  margin-left: 1rem;
}

.post {
  text-align: center;
  padding-left: 3rem;
  padding-right: 3rem;
}
.post__title {
  margin-bottom: 0.5rem;
}
.post__author {
  margin-bottom: 2rem;
}
.post__text {
  line-height: 1.3;
  text-align: left;
  margin: 0 auto;
  margin-bottom: 2rem;
  width: 80%;
  max-width: 100rem;
}
.post__image {
  margin-bottom: 2rem;
  max-width: 70%;
  cursor: pointer;
  height: auto;
}

@media only screen and (max-width: 56.25em) {
  .blog-box {
    width: 100%;
    font-size: 2rem;
  }

  .post {
    width: 100%;
  }
}
@media only screen and (max-width: 37.5em) {
  .post {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .post__text {
    font-size: 1.5rem;
    line-height: 1.5;
    width: 100%;
  }
  .post__image {
    max-width: 90%;
  }

  .post-preview {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .post-preview__excerpt--text {
    font-size: 1.5rem;
    line-height: 1.5;
    width: 100%;
  }
}
.product {
  width: 100%;
  background-color: #f7f7f7;
  text-align: center;
  padding-bottom: 2rem;
  padding-top: 2rem;
}
.product__title {
  display: none;
}
.product__slideshow {
  width: 40%;
  margin-right: 3rem;
}
.product__information {
  text-align: center;
  font-size: 2rem;
  line-height: 1.5;
  width: 50%;
}
.product__information--title {
  margin-bottom: 1.5rem;
}
.product__information--description {
  margin-bottom: 1.5rem;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  margin-left: 1rem;
}
.product__information--heading {
  font-weight: bold;
  text-align: center;
}
.product__information--includes {
  margin-bottom: 1.5rem;
}
.product__information--includes--list {
  list-style: none;
}
.product-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 2rem;
}

@media only screen and (max-width: 75em) {
  .product__slideshow {
    width: 60%;
  }
  .product__information {
    width: 30%;
  }
}
@media only screen and (max-width: 56.25em) {
  .product-box {
    flex-direction: column;
  }

  .product__slideshow {
    margin-right: 0;
    width: 90%;
    margin-bottom: 2rem;
  }
  .product__information {
    width: 90%;
  }
  .product__information--description {
    margin-left: 1rem;
  }
}

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