/* Base */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style-type: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input, textarea {
  box-sizing: border-box;
}

/* Colors */
/* Responsive Breakpoints */
/* Typography */
/* Page Specific */
/* Carousel */
/* Header */
/* Mobile Nav */
/* Components */
/* Only for the home page */
.home-nav {
  margin-top: 60px;
  text-align: center;
}
@media (max-width: 768px) {
  .home-nav {
    display: none;
  }
}

.home-nav-menu {
  display: flex;
  justify-content: center;
}

.home-nav-item {
  margin: 0 30px;
  z-index: 10;
}

.home-nav-link {
  display: block;
  padding: 7px 15px;
  color: #ffffff;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
  font-size: 30px;
  text-decoration: none;
  transition: opacity 0.35s ease-in-out;
}
.home-nav-link.active {
  font-weight: 400;
  color: #3dc9b8;
  text-shadow: 0px 0px 3px #383838;
}

/* For all other pages */
#main-header {
  padding: 0 5%;
  height: 80px;
  background-size: cover;
}

.header-name {
  float: left;
  color: #3dc9b8;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 80px;
}

.main-nav {
  float: right;
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
}

.main-nav-menu {
  margin: 0 auto;
  list-style: none;
}

.main-nav-item {
  display: inline-block;
  position: relative;
  margin: 0 25px;
  line-height: 80px;
  z-index: 10;
}
@media (max-width: 991px) {
  .main-nav-item {
    margin: 0 15px;
  }
}

.main-nav-link {
  display: block;
  height: 60px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
  font-size: 21px;
  color: black;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.35s ease-in-out;
}
.main-nav-link.active {
  font-weight: 400;
  color: #3dc9b8;
  opacity: 1;
}

.underbar {
  position: absolute;
  border-bottom: 2px solid #3dc9b8;
  transition: all 0.3s ease-in-out;
  transform: translateX(-60px);
  cursor: pointer;
}
@media (max-width: 768px) {
  .underbar {
    display: none;
  }
}

/* Mobile navigation */
.mobile-nav {
  display: none;
}
@media (max-width: 768px) {
  .mobile-nav {
    display: block;
  }
}

.hamburger {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 2;
}

.mobile-toggle-checkbox {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 28px;
  height: 18px;
  opacity: 0;
  z-index: 3;
  cursor: pointer;
  /* Transform hamburger into close icon */
  /* Hide middle hamburger line */
  /* Rotate last one to go in the other direction */
  /* Slide in from the left */
}
.mobile-toggle-checkbox:checked ~ .hamburger .mobile-toggle-hamburger {
  background: #6d6e71;
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -9px);
}
.mobile-toggle-checkbox:checked ~ .hamburger .mobile-toggle-hamburger:nth-last-child(3) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}
.mobile-toggle-checkbox:checked ~ .hamburger .mobile-toggle-hamburger:nth-last-child(2) {
  transform: rotate(-45deg) translate(0, 16px);
}
.mobile-toggle-checkbox:checked ~ .mobile-menu {
  transform: none;
}

.mobile-toggle-hamburger {
  display: block;
  margin-bottom: 5px;
  width: 33px;
  height: 4px;
  border-radius: 3px;
  background: #6d6e71;
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
}
.mobile-toggle-hamburger:first-child {
  transform-origin: 0% 0%;
}
.mobile-toggle-hamburger:nth-last-child(2) {
  transform-origin: 0% 100%;
}

.mobile-toggle-hamburger.home {
  background: rgba(255, 255, 255, 0.6);
}

.mobile-menu {
  position: fixed;
  right: 0;
  padding: 60px 40px 40px;
  width: 250px;
  height: 100vh;
  background: #ffffff;
  list-style-type: none;
  transform: translate(100%);
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  z-index: 1;
}

.mobile-nav-item {
  padding: 10px 0;
  font-size: 21px;
}

.mobile-nav-link {
  color: #383838;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
  text-decoration: none;
  transition: color 0.3s ease;
}
.mobile-nav-link:hover, .mobile-nav-link.active {
  color: #3dc9b8;
}
.mobile-nav-link.active {
  font-weight: 400;
}

.main-footer {
  margin: 40px 0 20px;
  color: #808285;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 15px;
  text-align: center;
  line-height: 20px;
}

body {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}
body.no-scroll {
  overflow: hidden;
}

p {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
  color: #383838;
  margin-bottom: 30px;
  font-size: 22px;
  line-height: 28px;
}
p a {
  color: #3dc9b8;
  text-decoration: none;
}
p a:hover {
  text-decoration: underline;
}
p em {
  font-style: italic;
}
p strong {
  font-weight: 400;
}
p ul {
  list-style-type: disc;
}

h1 {
  margin-bottom: 30px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
  font-size: 36px;
}

h2 {
  margin-bottom: 80px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
  font-size: 36px;
}

h3 {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 600;
  color: #3dc9b8;
  letter-spacing: 1px;
  line-height: 20px;
}

h4 {
  font-weight: 300;
  color: #808285;
  letter-spacing: 0.5px;
  line-height: 21px;
}

.center {
  text-align: center;
}

.page-container {
  flex: 1;
  padding: 20px 5%;
  font-family: "Source Sans Pro", sans-serif;
}

.flex-container {
  display: flex;
}
@media (max-width: 768px) {
  .flex-container {
    flex-direction: column;
  }
}

.flex-padding {
  padding: 20px;
}

.full-width {
  width: 100%;
}

.half-width {
  width: calc(50% - 10px);
  margin: 5px;
}

.third-width {
  width: calc(33.33% - 10px);
  margin: 5px;
}

.full-width img,
.half-width img,
.third-width img {
  width: 100%;
}
@media (max-width: 768px) {
  .full-width,
.half-width,
.third-width {
    width: 100%;
  }
}

.center-vertical {
  display: flex;
  align-items: center;
}

.img-link {
  text-decoration: none;
}

.separator {
  margin: 0 8px;
  color: #3dc9b8;
}

#home {
  height: calc(100vh - 240px);
  background: url("../images/bg.jpg") no-repeat;
  background-size: cover;
  min-height: 100vh;
}

.home-intro {
  margin: 100px auto 0;
  color: #ffffff;
  font-family: "Source Sans Pro", sans-serif;
  text-align: center;
}
@media (max-width: 768px) {
  .home-intro {
    margin-top: 0;
  }
}

.home-title {
  margin-bottom: 60px;
  font-weight: bold;
  font-size: 100px;
  letter-spacing: -2px;
}
@media (max-width: 768px) {
  .home-title {
    margin-top: 120px;
    margin-bottom: 40px;
    font-size: 80px;
  }
}

.home-subtitle {
  margin-bottom: 30px;
  max-width: 620px;
  font-weight: 300;
  font-size: 30px;
  line-height: 36px;
  text-shadow: 0px 0px 3px #383838;
}
@media (max-width: 768px) {
  .home-subtitle {
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    font-size: 24px;
  }
}

.title-em {
  font-weight: 600;
  color: #3dc9b8;
}

.home-caption {
  font-weight: 300;
  font-size: 20px;
  line-height: 24px;
  color: #ffffff;
  letter-spacing: normal;
  text-shadow: 0px 0px 3px #383838;
}

.page-text {
  margin: 0 auto;
  width: 60%;
}
@media (max-width: 768px) {
  .page-text {
    padding: 0 40px;
    width: 100%;
  }
}

#img-connie {
  margin: 15px 0;
  width: 200px;
}

.portfolio-header {
  padding: 15px calc(5% + 10px);
}
.portfolio-header h2 {
  margin-bottom: 0;
}

.filter {
  font-weight: 300;
  color: #808285;
  cursor: pointer;
}
.filter.active {
  color: #3dc9b8;
  font-weight: 400;
}

.portfolio-container {
  display: flex;
  flex-wrap: wrap;
  padding: 15px 5%;
  transition: margin-top 0.5s ease;
}

.thumbnail-container {
  position: relative;
  margin: 5px;
  width: calc(50% - 10px);
}
.thumbnail-container:before {
  display: block;
  padding-top: 100%;
  content: "";
}
@media (min-width: 768px) {
  .thumbnail-container {
    margin: 5px;
    width: calc(25% - 10px);
  }
}
@media (min-width: 1200px) {
  .thumbnail-container {
    margin: 10px;
    width: calc(25% - 20px);
  }
}

.thumbnail {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}
.thumbnail:hover .thumbnail-img {
  transform: scale(1.05);
}
.thumbnail:hover .thumbnail-overlay {
  opacity: 1;
}

.featured-img {
  height: 250px;
}

.thumbnail-img {
  min-width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.thumbnail-img:focus {
  border: 3px solid #3dc9b8;
}

.thumbnail-overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  opacity: 0;
  transition: opacity 0.5s ease;
  cursor: pointer;
}

.thumbnail-text {
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 10px;
  width: 100%;
  transform: translate(-50%, -50%);
  font-weight: 300;
  color: #ffffff;
  text-align: center;
}

.thumbnail-title {
  margin-bottom: 5px;
  font-size: 21px;
  line-height: 1.2;
}

.thumbnail-more {
  margin: 20px 0 0;
  color: #ffffff;
  font-size: 15px;
}

.contributions-list {
  display: block;
  list-style: disc;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
  color: #383838;
  margin: -20px 0 50px 40px;
  font-size: 20px;
  line-height: 28px;
}

.summary-container {
  position: relative;
  margin: 5px;
  width: calc(50% - 10px);
}
@media (min-width: 768px) {
  .summary-container {
    margin: 5px;
    width: calc(33.33% - 10px);
  }
}
@media (min-width: 1200px) {
  .summary-container {
    margin: 10px;
    width: calc(33.33% - 20px);
  }
}

.img-feature {
  width: 100%;
}

.banner {
  background: #ececec;
  padding-top: 60px;
  padding-bottom: 60px;
}

.banner-accent {
  padding: 80px 20% 80px 5%;
  background: #3B3B3B;
  color: #ffffff;
}
.banner-accent h2 {
  margin-bottom: 30px;
  font-weight: 400;
}
.banner-accent p {
  font-size: 24px;
  line-height: 30px;
  color: white;
}
.banner-accent a {
  color: white;
  font-weight: 400;
}
@media (max-width: 768px) {
  .banner-accent {
    padding: 80px 5%;
  }
}

.portfolio-caption {
  margin-bottom: 10px;
  padding: 10px;
  font-weight: 400;
  font-size: 17px;
  line-height: 21px;
  color: #808285;
}
.portfolio-caption strong {
  font-weight: 600;
}

.pull-quote {
  width: 75%;
  font-weight: 400;
  font-size: 44px;
  line-height: 48px;
  opacity: 0.8;
  color: #a9abad;
}
.pull-quote em {
  font-style: normal;
  color: #383838;
}

.img-border {
  border: 1px solid black;
}

h3.img-feature-text {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
  font-size: 36px;
  line-height: 40px;
  letter-spacing: normal;
  color: black;
}

.portfolio-btn {
  display: block;
  margin: 0 20px 20px;
  padding: 20px 10px;
  width: calc(100% - 40px);
  border-radius: 5px;
  background: #3dc9b8;
  color: #ffffff;
  font-size: 21px;
  text-decoration: none;
  text-align: center;
  transition: filter 0.5s ease;
}
.portfolio-btn:hover {
  filter: brightness(1.15);
}

.code-text {
  margin-bottom: 30px;
  font-size: 26px;
  text-align: center;
}

.video-demo {
  margin: 30px;
  width: calc(100% - 60px);
}

code {
  font-family: Consolas, "courier new";
  font-size: 20px;
  color: crimson;
  background-color: #f1f1f1;
  padding: 2px;
}

#code-container {
  padding-top: 0;
  flex-wrap: wrap;
}
#code-container .third-width {
  margin: 5px 15px;
  width: calc(33.33% - 30px);
}
@media (max-width: 768px) {
  #code-container .third-width {
    width: calc(100% - 30px);
  }
}

.deep-dive-container {
  flex-wrap: wrap;
}
.deep-dive-container h2 {
  margin-bottom: 20px;
}
.deep-dive-container img {
  width: 90%;
}
@media (max-width: 768px) {
  .deep-dive-container img {
    width: 100%;
  }
}

.overlay-container {
  position: relative;
}
.overlay-container::before {
  display: block;
  padding-top: 100%;
  content: "";
}
.overlay-container:hover .thumbnail-img {
  transform: scale(1.05);
}
.overlay-container:hover .thumbnail-overlay {
  opacity: 1;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
body:not(.accessibility) .thumbnail-img:focus,
body:not(.accessibility) .prev:focus,
body:not(.accessibility) .next:focus,
body:not(.accessibility) .close:focus {
  outline: none;
  border: none;
}

.noscroll {
  overflow: hidden;
}

.carousel-overlay {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 20;
  animation: 1s fade-in forwards;
}

.dots {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.dot {
  margin: 5px;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background: gray;
  transition: background 0.5s ease;
}
.dot.active {
  background: #ffffff;
}

.close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 16px;
  opacity: 0.7;
  z-index: 10;
  cursor: pointer;
  transition: opacity 0.5s ease;
  transition: transform 0.3s ease-out;
}
.close:hover {
  opacity: 1;
  transform: rotateZ(90deg);
}

.carousel-container {
  flex: none;
  position: relative;
  margin: 0 auto;
  width: 98%;
}
@media (min-width: 769px) {
  .carousel-container {
    width: 60%;
  }
}

.carousel-header {
  position: relative;
}

.caption {
  color: #ffffff;
  font-weight: 300;
  text-align: center;
  text-shadow: 0px 0px 3px black;
  font-size: 24px;
  margin-bottom: 10px;
}

.description {
  color: #ffffff;
  font-weight: 300;
  text-align: center;
  text-shadow: 0px 0px 3px black;
  margin: 0 auto;
  width: 85%;
  font-size: 16px;
  line-height: 20px;
}

.next, .prev {
  display: none;
  z-index: 10;
  position: absolute;
  opacity: 0.5;
  cursor: pointer;
  transition: opacity 0.5s ease;
}
.next:hover, .prev:hover {
  opacity: 1;
}
@media (min-width: 480px) {
  .next, .prev {
    display: block;
    top: 50%;
    transform: translateY(-50%);
  }
}

.prev {
  left: 0;
}

.next {
  right: 0;
}

.chevron-icon {
  width: 24px;
}
@media (min-width: 768px) {
  .chevron-icon {
    width: 36px;
  }
}

.carousel {
  position: relative;
  margin: 20px auto;
  width: 100%;
  text-align: center;
  overflow: hidden;
}
@media (min-width: 480px) {
  .carousel {
    width: calc(100% - 2*24px);
  }
}
@media (min-width: 768px) {
  .carousel {
    width: calc(100% - 2*36px);
  }
}

.carousel-img {
  max-width: 100%;
  max-height: 65vh;
  box-shadow: 0 1px 15px rgba(0, 0, 0, 0.3);
}

.carousel-img-fade {
  animation: fade-in 1s forwards;
}

#contact {
  margin: 20px auto 0;
  width: 50%;
}

@media (max-width: 768px) {
  .contact-info-container {
    margin-bottom: 40px;
  }
  .contact-info-container h1 {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .contact-form-container {
    order: 2;
  }
}

.contact-input,
.contact-textarea {
  display: block;
  margin-bottom: 15px;
  padding: 12px;
  width: 100%;
  border: 0;
  border-radius: 3px;
  background: #f1f2f2;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 16px;
  font-weight: 300;
  transition: box-shadow 0.2s ease;
}
.contact-input:focus,
.contact-textarea:focus {
  outline: 0;
  box-shadow: 0px 0px 5px #3dc9b8;
}

.contact-textarea {
  height: 200px;
}

#contact-btn {
  padding: 12px 0;
  width: 100%;
  border: 0;
  border-radius: 3px;
  background: #3dc9b8;
  color: #ffffff;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.5s ease;
  -webkit-appearance: none;
}
#contact-btn:hover {
  background: #30ad9e;
}

.contact-container {
  margin-bottom: 20px;
}

.contact-icon-link {
  text-decoration: none;
}

.contact-icon {
  margin-right: 5px;
  width: 40px;
  vertical-align: middle;
}

.contact-text,
.contact-text a {
  color: #383838;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 18px;
  line-height: 40px;
  text-decoration: none;
}

.recaptcha-container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.honeypot {
  display: none;
}

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