@charset "UTF-8";
/*
Skel Sass Theme
Author: Björn Arntsen
Version: 0.0.1
*/
/* BASE - base styles, variables, mixins, */
/* Font Colors */
@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@400;600&display=swap");
/* Background Colors */
/* Mixins*/
.img-xsm {
  width: 100px;
}

.img-sm {
  width: 200px;
}

.img-lg {
  width: 400px;
}

.img-xlg {
  width: 700px;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

.c-dark {
  color: #2e3532;
}

.c-light {
  color: #f5f5f5;
}

.c-primary {
  color: #8b2635;
}

/* MODULES - invidual site components*/
.block-primary {
  background-color: #8b2635;
  color: #ffffff;
  color: #f5f5f5;
}

.block-secondary {
  background-color: #d2d4c8;
  color: #ffffff;
  color: #2e3532;
}

.block-mid {
  background-color: #bcd1f1;
  color: #ffffff;
  color: #2e3532;
}

.block-light {
  background-color: #f5f5f5;
  color: #333;
  color: #2e3532;
}

.block-dark {
  background-color: #2e3532;
  color: #ffffff;
  color: #f5f5f5;
}

.btn-primary {
  background-color: #8b2635;
  border: 1px solid #2e3532;
}

.btn-primary:hover {
  background-color: #b33144;
  border: 1px solid #2e3532;
}

.search-container {
  float: right;
}

input[type=text] {
  padding: 6px;
  margin: 8px 0px;
  font-size: 17px;
  border: 1px solid #8b2635;
}

input[type=text]:focus {
  outline: none;
}

.search-container button {
  float: right;
  padding: 6px 10px;
  margin-top: 8px;
  margin-right: 16px;
  background: #8b2635;
  font-size: 17px;
  border: 1px solid #8b2635;
  color: #f5f5f5;
  cursor: pointer;
}

.search-container button:hover {
  background: #b33144;
}

.section-primary, .section-primary-b, .section-primary-a {
  background-color: #8b2635;
  color: #ffffff;
}

.section-primary-a {
  border-top: 4px solid #d2d4c8;
}

.section-primary-b {
  border-bottom: 4px solid #d2d4c8;
}

.section-secondary, .section-secondary-b, .section-secondary-a {
  background-color: #d2d4c8;
  color: #ffffff;
  color: #2e3532;
}

.section-secondary-a {
  border-top: 4px solid #8b2635;
}

.section-secondary-b {
  border-bottom: 4px solid #8b2635;
}

.section-mid, .section-mid-b, .section-mid-a {
  background-color: #bcd1f1;
  color: #ffffff;
  color: #2e3532;
}

.section-mid-a {
  border-top: 4px solid #8b2635;
}

.section-mid-b {
  border-bottom: 4px solid #8b2635;
}

.section-light {
  background-color: #f5f5f5;
  color: #333;
}

.section-dark {
  background-color: #2e3532;
  color: #ffffff;
}

.showcase {
  background: url(../img/slide1.jpg) no-repeat top center/cover;
  height: 600px;
}
.showcase .showcase-content {
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.showcase .showcase-content .box {
  padding: 10px;
  color: #f5f5f5;
  background-color: rgba(0, 0, 0, 0.6);
}

/* LAYOUTS - Page layout styles */
.nav-container {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 99;
  background-color: #8b2635;
  color: #ffffff;
}

nav {
  height: 60px;
}
nav h1 {
  color: #f5f5f5;
}

.nav-menu {
  display: flex;
  list-style: none;
  text-align: center;
}

.nav-links {
  padding: 20px 16px;
  font-weight: bold;
  text-decoration: none;
  font-family: "Raleway", sans-serif;
  color: #f5f5f5;
}

.nav-links:hover {
  font-weight: bold;
  color: #f5f5f5;
  background-color: #b33144;
  transition: all 0.2s ease-in-out;
}

.active {
  background-color: #b33144;
}

.menu-toggle .bar {
  width: 25px;
  height: 3px;
  margin: 5px auto;
  transition: all 0.4s ease-in-out;
  background: #000;
}

@media screen and (max-width: 640px) {
  .nav-menu {
    display: flex;
    flex-direction: column;
    margin: 0px;
    width: 100%;
    position: absolute;
    top: 0px;
    left: -100%;
    opacity: 0;
    transition: all 0.8s ease-in-out;
  }
  .nav-menu.active {
    top: 0px;
    left: 0px;
    opacity: 1;
    transition: all 0.8s ease-in-out;
  }
  .nav-links {
    text-align: center;
    line-height: 35px;
    display: block;
    background-color: black;
    opacity: 0.8;
    color: #f5f5f5;
  }
  .nav-links:hover {
    transition: all 0.5s ease-in-out;
  }
  #mobile-menu {
    position: absolute;
    top: 15%;
    right: 15px;
    transform: translate(5%, 20%);
    z-index: 100;
  }
  .menu-toggle .bar {
    display: block;
    background: #f5f5f5;
    z-index: 99;
  }
  .menu-toggle:hover {
    cursor: pointer;
  }
  #mobile-menu.is-active .bar:nth-child(2) {
    opacity: 0;
  }
  #mobile-menu.is-active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  #mobile-menu.is-active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}/*# sourceMappingURL=main.css.map */