* {
  margin: 0;
}

body {
  font-family: "Lato", sans-serif;
  line-height: 1.6;
  background: white;
  color: black;
}

img {
  width: 100%;
}

.brand {
  font-weight: 800;
  font-size: 2.5rem;
  font-family: "Montserrat", sans-serif;
  color: black;
  line-height: 1;
}

.text-emphasis {
  color: #c10000;
}

.text-emphasis-bold {
  font-weight: 600;
}

.text-bold {
  color: #c10000;
  font-weight: 600;
}

.btn {
  border: none;
  padding: 0.8rem 1.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  border-radius: 15px;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.btn-light {
  background: #f4f4f4;
  color: black;
}

.btn-primary {
  background: #c10000;
  color: #fff;
}

.btn:hover {
  opacity: 0.85;
}

.container {
  max-width: var(1100px);
  margin: auto;
  overflow: hidden;
}

.bottom-line {
  height: 1px;
  width: 7rem;
  background: #c10000;
  display: block;
  margin: auto;
}

#main-nav {
  background: white;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  -webkit-box-shadow: 0 2px 2px #dedede;
          box-shadow: 0 2px 2px #dedede;
}

#main-nav .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#main-nav .brand {
  text-decoration: none;
  padding: 1rem 5rem;
}

#main-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#main-nav ul li {
  padding: 0 2rem;
  list-style-type: none;
}

#main-nav ul a {
  text-decoration: none;
  color: #c10000;
  text-transform: uppercase;
  border-bottom: 3px transparent solid;
  padding-bottom: 0.5rem;
  -webkit-transition: border-color 0.5s;
  transition: border-color 0.5s;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 1.2rem;
}

#main-nav ul a:hover {
  border-color: #c10000;
}

#main-nav ul .current {
  border-color: #c10000;
}

.navbar.scrolled {
  background: #eeeeee !important;
  -webkit-transition: background 500ms linear;
  transition: background 500ms linear;
  color: white;
}

.header-home {
  position: relative;
  margin: auto;
  height: 100vh;
}

.header-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.header-container:before {
  content: "";
  background: url("/dist/header_image.jpg") no-repeat center center/cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  opacity: 0.85;
  z-index: -5;
}

.header-text {
  z-index: 1;
  font-size: 5.5rem;
  font-weight: 900;
  text-align: right;
  line-height: 1;
  padding-right: 5rem;
}

.container-about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  padding-bottom: 2rem;
  margin: 5rem auto 5rem auto;
}

.container-about img {
  width: 35%;
  height: 35%;
  margin: auto 3rem;
}

.container-about p {
  font-size: 2rem;
  margin: auto 6rem 2.5rem;
  text-align: center;
  font-weight: 400;
}

#home-articles {
  width: 100%;
  height: 100%;
}

#home-articles h2 {
  text-align: center;
  font-size: 3rem;
  font-weight: 400;
  margin: auto;
}

#home-articles .articles-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  grid-gap: 2rem;
  margin: 2rem 6rem 4rem 6rem;
}

#home-articles .articles-container a {
  text-decoration: none;
  color: black;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-size: 1.25rem;
}

#home-articles .articles-container a:hover {
  color: #c10000;
}

#home-articles .articles-container img:hover {
  opacity: 0.9;
}

/* Slideshow container */
.product-picks h2 {
  text-align: center;
  font-size: 3rem;
  font-weight: 400;
  margin: auto;
}

.slideshow-container {
  width: 100%;
  height: 100%;
  position: relative;
  margin: 2rem auto 0 auto;
  background-color: rgba(193, 0, 0, 0.5);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slideshow-container img {
  height: 20%;
  width: 20%;
  margin: 3rem;
}

.product-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Caption text */
.text {
  color: #1b1b1b;
  font-size: 1.2rem;
  padding: 8px 12px;
  bottom: 8px;
  width: 30%;
  text-align: left;
}

.text h2 {
  font-size: 2rem;
  font-weight: 600;
  text-align: left;
}

.text a {
  color: #f4f4f4;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px 3rem 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  -webkit-transition: background-color 0.6s ease;
  transition: background-color 0.6s ease;
}

.active,
.dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

.section-about .about-header {
  height: 80vh;
}

.container-about-page {
  position: relative;
  margin: 2.5rem auto;
  width: 55%;
}

.container-about-page h2 {
  font-size: 2.5rem;
}

.container-about-page p {
  font-size: 1.5rem;
  padding-top: 2rem;
  font-weight: 400;
}

#articles-page .container {
  width: 60%;
  position: flex;
}

#articles-page .container h2 {
  text-align: left;
  font-size: 3rem;
  font-weight: 400;
  padding: 5rem 0 2rem 0;
}

#articles-page .container .card {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2fr;
      grid-template-columns: 1fr 2fr;
  padding-bottom: 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#articles-page .container .card .link-text {
  text-decoration: none;
  color: black;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 0.75rem;
  font-size: 1.75rem;
}

#articles-page .container .card .link-text:hover {
  color: #c10000;
}

#articles-page .container .card img {
  width: 100%;
}

#articles-page .container .card img:hover {
  opacity: 0.9;
}

#articles-page .container .article-preview {
  padding-left: 1.5rem;
  font-size: 1.15rem;
}

.article-specific-page .container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 5fr 2fr;
      grid-template-columns: 5fr 2fr;
  width: 70%;
  grid-gap: 2rem;
}

.article-specific-page .container*:first-child {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  grid-row: 1 / span 3;
}

.article-header {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1.5fr 2fr;
      grid-template-columns: 1.5fr 2fr;
  width: 70%;
  margin: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 5rem;
}

.article-header h2 {
  text-align: left;
  font-size: 3rem;
  font-weight: 400;
  padding-left: 2rem;
}

.article-header img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  min-width: 100%;
  min-height: 100%;
}

.article-text {
  font-size: 1.25rem;
  margin-top: 2rem;
}

.article-text .text-emphasis {
  font-size: 1.5rem;
  font-weight: 600;
}

.article-text p {
  padding: 0.5rem 0 1.5rem 0;
}

.article-text a {
  color: black;
}

.article-text a:visited {
  color: black;
}

.aside aside {
  display: -ms-grid;
  display: grid;
  border: #eeeeee solid 3px;
  margin: 1.5rem auto;
  padding: 1rem;
}

.aside aside ul {
  -webkit-padding-start: 1rem;
          padding-inline-start: 1rem;
}

.aside aside ul li {
  padding-top: 0.75rem;
}

.aside aside a {
  padding: 1rem 0.5rem 0.75rem 0;
  text-decoration: none;
  color: black;
}

.aside aside a:hover {
  color: #c10000;
}

#product-page .container {
  width: 70%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 5fr 2fr;
      grid-template-columns: 5fr 2fr;
  grid-gap: 2rem;
  margin-top: 3rem;
}

#product-page .container a {
  color: black;
}

#product-page .container a:hover {
  color: #c10000;
}

#product-page .container p {
  padding-bottom: 1.5rem;
}

#product-page .container .card {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2fr;
      grid-template-columns: 1fr 2fr;
  padding: 2rem 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: #eeeeee solid 2px;
}

#product-page .container .card .link-text {
  text-decoration: none;
  color: black;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 0.75rem;
  font-size: 1.75rem;
}

#product-page .container .card .link-text:hover {
  color: #c10000;
}

#product-page .container .card img {
  width: 100%;
}

#product-page .container .card img:hover {
  opacity: 0.9;
}

#product-page .container .product-header {
  font-size: 1.25rem;
  padding: 1rem;
  border-bottom: #eeeeee solid 2px;
}

#product-page .container .product-header a {
  color: black;
}

#product-page .container .article-preview {
  padding-left: 1.5rem;
  font-size: 1.15rem;
}

/* Footer */
#main-footer {
  background: #333;
  color: #fff;
  padding: 2rem 0 0 0;
  margin: 3rem 0 0 0;
}

.connect-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.connect-container i {
  color: white;
  padding-right: 0.5rem;
  padding-top: 0.5rem;
  text-decoration: none;
  -ms-grid-column-align: center;
      justify-self: center;
}

.connect-container i:hover {
  color: #c10000;
}

#main-footer .footer-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 1.5rem;
  width: 80%;
}

#main-footer .footer-container img {
  width: 60%;
  margin-top: 1rem;
}

#main-footer .footer-container > *:last-child {
  background: #444;
  -ms-grid-column: 1;
  -ms-grid-column-span: 4;
  grid-column: 1 / span 4;
  padding: 0.5rem;
  text-align: center;
  font-size: 0.75rem;
}

#main-footer .footer-container input[type="email"] {
  width: 90%;
  padding: 0.5rem;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}

#main-footer .footer-container input[type="submit"] {
  width: 70%;
  border-radius: 0;
}

#main-footer .footer-container input[type="submit"]:hover {
  cursor: pointer;
}

.success {
  text-align: center;
  margin-top: 8rem;
}

@media screen and (max-width: 600px) {
  #main-nav .container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #main-nav .container .brand {
    font-weight: 600;
    font-size: 2rem;
    padding: 1rem;
    text-align: center;
  }
  #main-nav .container ul {
    -webkit-padding-start: 0;
            padding-inline-start: 0;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
  #main-nav .container ul li {
    padding: 0 0 0.25rem;
  }
  #main-nav .container ul li a {
    font-size: 0.95rem;
  }
  .header-home {
    height: 30rem;
  }
  .header-container:before {
    height: 10%;
    padding-top: 25rem;
  }
  .header-text {
    font-size: 2rem;
    font-weight: 600;
    padding: 1.5rem;
  }
  .container-about {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    text-align: center;
    margin: 0 auto;
  }
  .container-about img {
    width: 45%;
    margin: 2rem auto;
  }
  .container-about p {
    font-size: 1.25rem;
    margin: 2rem;
    font-weight: 400;
  }
  .btn {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
  .product-picks h2 {
    font-size: 2rem;
    font-weight: 400;
  }
  .slideshow-container img {
    height: 30%;
    width: 30%;
    margin: 1rem;
  }
  .text {
    font-size: 1rem;
    padding: 8px 12px;
    bottom: 8px;
    width: 45%;
  }
  .text h2 {
    font-size: 1.25rem;
    font-weight: 600;
    text-align: left;
  }
  .dot {
    height: 10px;
    width: 10px;
  }
  #home-articles h2 {
    font-size: 2rem;
  }
  #home-articles .articles-container {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    grid-gap: 2rem;
    margin: 2rem 1rem;
  }
  #home-articles .articles-container img {
    width: 80%;
  }
  #main-footer .footer-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #main-footer .footer-container div {
    padding-bottom: 1.2rem;
    border-bottom: #444 dotted 1px;
  }
  #main-footer .footer-container img {
    display: none;
  }
  .section-about .about-header {
    padding-top: 5rem;
    height: 50%;
  }
  .container-about-page {
    position: relative;
    margin: 2.5rem auto;
    width: 85%;
  }
  .container-about-page h2 {
    font-size: 2rem;
  }
  .container-about-page p {
    font-size: 1.2rem;
    padding-top: 2rem;
    font-weight: 400;
  }
  #articles-page .container {
    width: 85%;
  }
  #articles-page .container p {
    display: none;
  }
  #articles-page .container h2 {
    font-size: 2rem;
    padding: 8rem 0 2rem 0;
  }
  #articles-page .container .card {
    padding-bottom: 1rem;
  }
  #articles-page .container .card .link-text {
    font-size: 1.25rem;
  }
  .article-specific-page .container {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    width: 80%;
  }
  .article-header {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    width: 80%;
  }
  .article-header h2 {
    font-size: 1.5rem;
    padding-left: 0rem;
    font-weight: 600;
  }
  #product-page .container {
    width: 80%;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    grid-gap: 2rem;
    margin-top: 3rem;
  }
  #product-page .container .card {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  #product-page .container .product-header {
    font-size: 1.25rem;
    padding: 0 0 0.5rem;
    border-bottom: #eeeeee solid 2px;
  }
  #product-page .container .product-header a {
    color: black;
  }
  #product-page .container .article-preview {
    padding-left: 0;
    font-size: 1.15rem;
  }
}

@media screen and (min-width: 600px) and (max-width: 1023px) {
  #main-nav .container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #main-nav .container .brand {
    font-weight: 600;
    font-size: 2rem;
    padding: 1rem;
    text-align: center;
  }
  #main-nav .container ul {
    -webkit-padding-start: 0;
            padding-inline-start: 0;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
  #main-nav .container ul li {
    padding: 0 0 0.25rem;
  }
  #main-nav .container ul li a {
    font-size: 0.95rem;
  }
  .header-home {
    height: 35rem;
  }
  .header-container:before {
    height: 30%;
    padding-top: 25rem;
  }
  .header-text {
    font-size: 3.5rem;
    font-weight: 600;
    padding: 1.5rem;
  }
  .container-about {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    text-align: center;
    margin: 0 auto;
  }
  .container-about img {
    width: 25%;
    margin: 2rem auto;
  }
  .container-about p {
    font-size: 1.25rem;
    margin: 2rem;
    font-weight: 400;
  }
  .btn {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
  .product-picks h2 {
    font-size: 2rem;
    font-weight: 400;
  }
  .slideshow-container img {
    height: 30%;
    width: 30%;
    margin: 1rem;
  }
  .text {
    font-size: 1rem;
    padding: 8px 12px;
    bottom: 8px;
    width: 45%;
  }
  .text h2 {
    font-size: 1.25rem;
    font-weight: 600;
    text-align: left;
  }
  .dot {
    height: 10px;
    width: 10px;
  }
  #home-articles h2 {
    font-size: 2rem;
  }
  #home-articles .articles-container {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    grid-gap: 2rem;
    margin: 2rem 4rem;
  }
  #main-footer .footer-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #main-footer .footer-container div {
    padding-bottom: 1.2rem;
    border-bottom: #444 dotted 1px;
  }
  #main-footer .footer-container img {
    display: none;
  }
  .section-about .about-header {
    padding-top: 5rem;
    height: 50%;
  }
  .container-about-page {
    position: relative;
    margin: 2.5rem auto;
    width: 85%;
  }
  .container-about-page h2 {
    font-size: 2rem;
  }
  .container-about-page p {
    font-size: 1.2rem;
    padding-top: 2rem;
    font-weight: 400;
  }
  #articles-page .container {
    width: 85%;
  }
  #articles-page .container p {
    font-size: 1rem;
  }
  #articles-page .container h2 {
    font-size: 2rem;
    padding: 8rem 0 2rem 0;
  }
  #articles-page .container .card {
    padding-bottom: 1rem;
  }
  #articles-page .container .card .link-text {
    font-size: 1.25rem;
  }
  .article-specific-page .container {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    width: 80%;
  }
  .article-header {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    width: 80%;
  }
  .article-header h2 {
    font-size: 1.5rem;
    padding-left: 0rem;
    font-weight: 600;
  }
  #product-page .container {
    width: 80%;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    grid-gap: 2rem;
    margin-top: 3rem;
  }
  #product-page .container .card {
    -ms-grid-columns: 1fr 2fr;
        grid-template-columns: 1fr 2fr;
  }
  #product-page .container .product-header {
    font-size: 1.25rem;
    padding: 0 0 0.5rem;
    border-bottom: #eeeeee solid 2px;
  }
  #product-page .container .product-header a {
    color: black;
  }
  #product-page .container .article-preview {
    padding-left: 1rem;
    font-size: 1.15rem;
  }
}

@media print {
  .navbar,
  .aside {
    display: none;
  }
}
/*# sourceMappingURL=main.css.map */