/*===============================================
 SASS elements/variables
 */
*, *:before, *:after {
  box-sizing: border-box; }

html,
body,
ul,
ol {
  margin: 0;
  padding: 0; }

img {
  border: 0; }

/* Main content colors */
/* Interface colors */
/*===============================================
 Global Styling
 */
body {
  font-family: "Roboto Slab", Georgia, serif;
  font-size: 18px;
  min-width: 300px; }

h1, h2, h3, h4, h5, h6 {
  margin: 0.5em 0;
  line-height: 1.1em; }

h1 {
  font-size: 48px; }

h2 {
  font-size: 36px; }

h3 {
  font-size: 24px; }

hr {
  border: 0;
  border-top: 3px solid black;
  width: 100%;
  max-width: 300px;
  margin: 20px auto; }

/* "lazy loading" CSS that works in tandem with the little JS snippet from David Walsh */
img {
  opacity: 1;
  transition: opacity 0.3s; }

img[data-src] {
  opacity: 0; }

p {
  text-align: left;
  overflow-wrap: break-word; }

span.prevent-line-break {
  display: inline-block; }

/*===============================================
 Header
 */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: #283132;
  z-index: 3;
  min-width: 300px; }
  header #header-content {
    width: 100%;
    margin: 0 auto;
    max-width: 1170px;
    position: relative;
    height: 100%; }
  header #logo {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 5%;
    max-height: 80px;
    max-width: 80px;
    display: block; }
  header #logo-text {
    font-size: 22px;
    color: white;
    font-weight: bold;
    cursor: pointer; }
  header #nav-toggle {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 0 3px 0 black;
    -moz-box-shadow: 0 3px 0 black;
    box-shadow: 0 3px 0 black;
    padding: 10px 30px;
    color: black;
    font-family: "Roboto Slab", Georgia, serif;
    font-size: 18px;
    font-weight: bold;
    border: 0;
    background-color: white;
    text-decoration: none;
    display: none;
    position: absolute;
    right: 5%; }
    @media (max-width: 768px) {
      header #nav-toggle {
        display: inline-block; } }
  header nav {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 5%; }
    @media (max-width: 768px) {
      header nav {
        display: none; } }
    header nav li {
      list-style: none;
      display: inline-block; }
      @media (max-width: 768px) {
        header nav li {
          display: block; } }
    header nav a {
      -webkit-transition: 200ms ease-out;
      -moz-transition: 200ms ease-out;
      -ms-transition: 200ms ease-out;
      -o-transition: 200ms ease-out;
      transition: 200ms ease-out;
      color: white;
      text-decoration: none;
      padding: 15px; }
      @media (max-width: 768px) {
        header nav a {
          display: block;
          padding: 15px 5%; } }
  header #main-nav-mobile {
    top: 80px;
    background-color: #3f4d4e;
    transform: none;
    left: 0;
    right: 0; }
    @media (min-width: 769px) {
      header #main-nav-mobile {
        display: none; } }
    header #main-nav-mobile li {
      display: block; }
    header #main-nav-mobile a {
      display: block;
      padding: 15px 5%; }
  header a:hover {
    background-color: rgba(255, 255, 255, 0.2); }

/*===============================================
 Main Content
 */
.content-box {
  width: 100%;
  margin: 0 auto;
  max-width: 1170px;
  width: 100%;
  padding: 70px 5%;
  text-align: center; }

#contact-content {
  background-color: #3cce74; }
  #contact-content p {
    text-align: center; }

/*===============================================
 Welcome Intro
 */
#welcome-content {
  background-color: #36B1BF;
  padding-top: 80px; }
  #welcome-content .splash-image {
    width: 100%;
    max-width: 277px;
    height: auto; }
  #welcome-content p {
    text-align: center; }

/*===============================================
 Portfolio
 */
#portfolio-content {
  background-color: #E9F1DF; }
  #portfolio-content .content-box {
    text-align: center; }
  #portfolio-content .application-link {
    cursor: pointer; }
  #portfolio-content .application-box {
    -webkit-transition: 150ms ease-out;
    -moz-transition: 150ms ease-out;
    -ms-transition: 150ms ease-out;
    -o-transition: 150ms ease-out;
    transition: 150ms ease-out;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
    display: inline-block;
    width: 45%;
    height: 350px;
    margin: 2%;
    padding: 15px;
    vertical-align: top;
    background-color: black;
    position: relative;
    overflow: hidden; }
    @media (max-width: 768px) {
      #portfolio-content .application-box {
        width: 96%;
        max-width: 530px;
        height: 300px; } }
    #portfolio-content .application-box h3 {
      position: absolute;
      top: 50%;
      -webkit-transform: translateY(-50%);
      -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      -o-transform: translateY(-50%);
      transform: translateY(-50%);
      margin: 0.25em 0;
      opacity: 1;
      color: white;
      z-index: 1;
      width: 90%;
      text-shadow: 0 1px 20px rgba(0, 0, 0, 0.75);
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden; }
    #portfolio-content .application-box .modal-links {
      display: none; }
    #portfolio-content .application-box img {
      -webkit-transition: 150ms ease-out;
      -moz-transition: 150ms ease-out;
      -ms-transition: 150ms ease-out;
      -o-transition: 150ms ease-out;
      transition: 150ms ease-out;
      position: absolute;
      left: 50%;
      -webkit-transform: translateX(-50%);
      -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      -o-transform: translateX(-50%);
      transform: translateX(-50%);
      top: 0;
      height: 100%;
      width: auto;
      opacity: 0.35;
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden; }
  #portfolio-content .application-box:hover img {
    opacity: 0.75; }

/*===============================================
 About / Icons
 */
#about-content {
  background-color: #F5A503; }
  #about-content .icons {
    margin: 40px 0;
    font-size: 0; }
  #about-content img {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
    width: 125px;
    height: auto;
    vertical-align: middle;
    margin: 15px;
    padding: 15px;
    background-color: white; }
    @media (max-width: 420px) {
      #about-content img {
        width: 110px;
        margin: 10px;
        padding: 12px; } }
  #about-content .about-action {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 0 3px 0 #20676f;
    -moz-box-shadow: 0 3px 0 #20676f;
    box-shadow: 0 3px 0 #20676f;
    padding: 10px 30px;
    color: white;
    font-family: "Roboto Slab", Georgia, serif;
    font-size: 18px;
    font-weight: bold;
    border: 0;
    background-color: #36B1BF;
    text-decoration: none;
    display: inline-block;
    margin: 20px 0; }
  #about-content .about-action:hover {
    color: #80d2db; }
  #about-content .about-action:active {
    -webkit-box-shadow: 0 0 0 #20676f;
    -moz-box-shadow: 0 0 0 #20676f;
    box-shadow: 0 0 0 #20676f;
    position: relative;
    top: 3px; }

/*===============================================
 Contact Form
 */
form {
  width: 100%;
  margin: 0 auto;
  max-width: 720px; }
  form input,
  form textarea {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
    width: 100%;
    padding: 10px;
    margin: 15px 0;
    border: 0;
    font-family: "Roboto Slab", Georgia, serif;
    font-size: 18px; }
  form .form-error {
    line-height: 1em;
    text-align: left;
    margin: -8px 0 5px 0;
    color: white; }
  form button {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 0 3px 0 #218347;
    -moz-box-shadow: 0 3px 0 #218347;
    box-shadow: 0 3px 0 #218347;
    padding: 10px 30px;
    color: #218347;
    font-family: "Roboto Slab", Georgia, serif;
    font-size: 18px;
    font-weight: bold;
    border: 0;
    background-color: white;
    text-decoration: none; }
  form button:hover {
    color: #3cce74; }
  form button:active {
    -webkit-box-shadow: 0 0 0 #218347;
    -moz-box-shadow: 0 0 0 #218347;
    box-shadow: 0 0 0 #218347;
    position: relative;
    top: 3px; }
  form #form-submit-message {
    text-align: center;
    color: white;
    padding: 15px;
    border-radius: 5px;
    font-weight: bold; }
  form .success {
    border: 2px solid white;
    background-color: #3cce74; }
  form .error {
    border: 2px solid white;
    background-color: #ce3832; }

#form-value {
  display: none; }

/*===============================================
 Footer
 */
footer {
  background-color: #283132;
  text-align: center;
  color: #b4b4b4; }
  footer p {
    text-align: center; }
    footer p a {
      padding: 0 10px;
      color: #b4b4b4; }
      @media (max-width: 420px) {
        footer p a {
          font-size: 14px; } }
  footer a {
    text-decoration: none; }
  footer a:hover {
    text-decoration: underline; }
  footer .icons-social {
    font-size: 0; }
    footer .icons-social img {
      -webkit-transition: 150ms ease-out;
      -moz-transition: 150ms ease-out;
      -ms-transition: 150ms ease-out;
      -o-transition: 150ms ease-out;
      transition: 150ms ease-out;
      width: 50px;
      height: 50px;
      margin: 15px;
      opacity: 0.6; }
    footer .icons-social img:hover {
      opacity: 1; }
  footer .copyright {
    font-size: 14px; }

/*===============================================
 Modal windows
 */
.disable-scroll {
  overflow: hidden; }

.modal {
  background-color: white;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow-y: auto;
  z-index: 5;
  display: none; }
  .modal .content-box {
    width: 100%;
    margin: 0 auto;
    max-width: 720px;
    padding-top: 20px; }
  .modal div.button-close {
    width: 100%;
    height: 100px;
    border: 0;
    background: #f8f8f8;
    font-size: 72px;
    color: #aaa;
    text-align: center;
    cursor: pointer; }
  .modal h2 {
    margin: 0.5em 0 1em 0; }
  .modal img {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
    width: 100%;
    max-width: 600px;
    height: auto;
    border: 10px solid #e8e8e8; }
  .modal .modal-links {
    text-align: center; }
    .modal .modal-links a {
      padding: 5px 10px; }
  .modal ul {
    text-align: left;
    padding-left: 2em;
    margin: 1em 0; }
  .modal button.button-close {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 0 3px 0 #e28884;
    -moz-box-shadow: 0 3px 0 #e28884;
    box-shadow: 0 3px 0 #e28884;
    padding: 10px 30px;
    color: white;
    font-family: "Roboto Slab", Georgia, serif;
    font-size: 18px;
    font-weight: bold;
    border: 0;
    background-color: #ce3832;
    text-decoration: none;
    cursor: pointer; }
  .modal button.button-close:hover {
    color: #e28884; }
  .modal button.button-close:active {
    -webkit-box-shadow: 0 0 0 #e28884;
    -moz-box-shadow: 0 0 0 #e28884;
    box-shadow: 0 0 0 #e28884;
    position: relative;
    top: 3px; }

.modal-open {
  display: block; }

/*===============================================
 Loading Spinner Animation
 */
.loading-spinner {
  border: 3px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  border-top: 3px solid white;
  border-right: 3px solid white;
  width: 18px;
  height: 18px;
  -webkit-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
  display: inline-block;
  vertical-align: middle;
  margin: -3px 0 0 10px; }

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg); } }
@keyframes spin {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

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