.eshadow {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.eshadow-1, .shadow-1-hoverable::before, .shadow-1 {
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
}

.eshadow-2 {
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
}

.eshadow-3, .shadow-1-hoverable::after {
  box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.3);
}

.eshadow-4 {
  box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.3);
}

.eshadow-5 {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

@font-face {
  font-family: "Titillium";
  src: url("../fonts/Titillium.ttf");
}
@font-face {
  font-family: "Titillium-Bold";
  src: url("../fonts/Titillium-Bold.ttf");
}
@font-face {
  font-family: "Titillium-Light";
  src: url("../fonts/Titillium-Light.ttf");
}
html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Titillium", Arial;
  line-height: 1.5;
  background-color: rgb(250, 250, 250);
}

.hidden {
  opacity: 0 !important;
}

body {
  font-size: 15px;
  overflow-y: scroll;
}

div {
  margin: 0;
  float: left;
  display: inline-block;
}

div:focus {
  outline-color: transparent;
  outline-style: none;
}

input, textarea {
  font-family: "Roboto", sans-serif, arial;
  resize: vertical;
  border: 0;
  background: none;
  padding: 8px 10px;
  border-bottom: 1px solid #B4B7BA;
  font-size: 15px;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: rgba(0, 0, 0, 0.8);
}

::-moz-placeholder { /* Firefox 19+ */
  color: rgba(0, 0, 0, 0.8);
}

:-ms-input-placeholder { /* IE 10+ */
  color: rgba(0, 0, 0, 0.8);
}

:-moz-placeholder { /* Firefox 18- */
  color: rgba(0, 0, 0, 0.8);
}

a {
  color: #F78A0B;
}

a:hover {
  color: black;
}

.title-1-u, .title-2-u, .title-3-u, .title-4-u, .title-5-u, .title-6-u {
  text-transform: uppercase;
}

.title-1, .title-1-u {
  font-size: 4em;
  line-height: 1.1;
}

.title-2, .title-2-u {
  font-size: 3em;
  line-height: 1.1;
}

.title-3, .title-3-u {
  font-size: 2em;
  line-height: 1.2;
}

.title-4, .title-4-u {
  font-size: 1.5em;
}

.title-5, .title-5-u {
  font-size: 1.5em;
}

.title-6, .title-6-u {
  font-size: 1.2em;
}

.title-u {
  text-transform: uppercase;
}

.button, .tab, .menu-icon {
  cursor: pointer;
}

.button {
  padding: 5px 10px;
  color: #F78A0B;
  border-width: 2px;
  border-style: solid;
  border-color: #F78A0B;
  font-size: 1.2em;
  transition: all 0.1s;
  position: relative;
  font-family: "Titillium-Bold";
}
.button a {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.button:hover {
  border-color: rgba(0, 0, 0, 0.1);
  background-color: #F78A0B;
  color: white;
}

.button.active {
  border-color: rgba(0, 0, 0, 0.1);
  background-color: #F78A0B;
  color: white;
}

.button-dark {
  color: black;
  border-color: black;
}

.button-dark:hover {
  background-color: #1D1D1D;
  color: white;
}

.button-dark.active {
  background-color: #1D1D1D;
  color: white;
}

.button-light {
  color: white;
  border-color: white;
}

.button-light:hover {
  background-color: rgb(220, 220, 220);
  color: black;
}

.button-light.active {
  background-color: rgb(255, 255, 255);
  color: black;
}

.icon {
  width: 24px;
  height: 24px;
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center;
  margin: 0 15px 0 5px;
  float: left;
}

.icon-email {
  background-image: url("/img/email.svg");
}

.card {
  background-color: white;
}

.shadow-1-hoverable {
  position: relative;
  cursor: pointer;
}

.shadow-1-hoverable::before, .shadow-1-hoverable::after, .shadow-5-hoverable::before, .shadow-5-hoverable::after {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none !important;
  border-radius: inherit;
  transition: opacity 0.2s;
  will-change: opacity;
  display: block;
  content: "";
}

.shadow-1-hoverable::before {
  opacity: 1;
}

.shadow-1-hoverable::after {
  opacity: 0;
}

.shadow-1-hoverable:hover::before, .shadow-1-hoverable:focus::before {
  opacity: 0;
}

.shadow-1-hoverable:hover::after, .shadow-1-hoverable:focus::after {
  opacity: 1;
}

.fixed-width {
  width: 100%;
  max-width: 1000px;
}

@media (max-width: 800px) {
  .menu-container .menu-icon {
    position: relative;
    float: right;
    top: 10px;
    right: 10px;
    background-size: 48px;
  }
  .title-1, .title-1-u {
    font-size: 3em;
  }
  .title-2, .title-2-u {
    font-size: 2em;
  }
  .title-3, .title-3-u {
    font-size: 1.5em;
  }
  .title-4, .title-4-u {
    font-size: 1.2em;
  }
  .title-5, .title-5-u {
    font-size: 1.2em;
  }
  .title-6, .title-6-u {
    font-size: 1.1em;
  }
}
@media (max-width: 500px) {
  .title-1, .title-1-u {
    font-size: 2em;
  }
  .title-2, .title-2-u {
    font-size: 1.5em;
  }
  .title-3, .title-3-u {
    font-size: 1.3em;
  }
  .title-4, .title-4-u {
    font-size: 1.2em;
  }
  .title-5, .title-5-u {
    font-size: 1.1em;
  }
  .title-6, .title-6-u {
    font-size: 1em;
  }
}
/*# sourceMappingURL=../sourcemaps/main.css.map */
