@font-face {
  font-family: 'Open Sans';
  src: url(./../fonts/OpenSans-Light.ttf);
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
}

html {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}

body main {
  margin: 1rem 10%;
  background-color: ghostwhite;
  width: 100%;
  -webkit-box-shadow: rgba(255, 255, 255, 0.5) 5px 5px 0px 0px;
          box-shadow: rgba(255, 255, 255, 0.5) 5px 5px 0px 0px;
  position: relative;
}

body main:after {
  content: "";
  position: absolute;
  width: 2rem;
  padding-bottom: 2rem;
  background: #795548;
  left: -1rem;
  top: 1rem;
}

div.bg-container {
  position: fixed;
  background-image: url("./../assets/bg.jpg");
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-size: cover;
  background-position: center;
}

div.bg-container div.bg-backdrop {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(linear, left bottom, right top, from(#008364aa), color-stop(#00906eaa), color-stop(#009e78aa), color-stop(#00ab83aa), to(#00b98daa));
  background-image: linear-gradient(to right top, #008364aa, #00906eaa, #009e78aa, #00ab83aa, #00b98daa);
}

.logo-container {
  padding: 1rem 2.5rem;
  margin-top: 1rem;
  margin-bottom: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.logo-container img {
  width: 300px;
  max-width: 100%;
}

.tab-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1rem;
}

.tab {
  color: #008364;
  padding: 1rem;
  margin: 0 0.5rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.75rem;
  position: relative;
  z-index: 1;
  border: solid thin #008364;
  overflow: hidden;
}

.tab:hover {
  color: ghostwhite;
}

.tab:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 0%;
  background: #008364;
  z-index: -1;
}

.tab:hover:after {
  width: 100%;
}

.tab[href="#"] {
  border-color: lightgray;
  cursor: not-allowed;
  color: lightgray;
}

.tab[href="#"]:hover {
  color: white;
}

.tab[href="#"]:after {
  background-color: lightgray;
}

.tab:after {
  -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
          transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -webkit-transition-duration: 150ms;
          transition-duration: 150ms;
}

@media only screen and (max-width: 768px) {
  main {
    margin: 1rem !important;
  }
}
/*# sourceMappingURL=style.css.map */