.hex-grid__list {
  --amount: 6;
  --counter: 1;
  display: grid;
  list-style-type: none;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(var(--amount), 1fr 2fr) 1fr;
  grid-gap: 1rem 2rem;
}

.hex-grid__item {
  position: relative;
  grid-column: 1/span 3;
  grid-row: calc(var(--counter) + var(--counter))/span 2;
  height: 0;
  padding-bottom: 90%;
  font-size: 100%;
}
@media (min-width: 900px) {
  .hex-grid__item {
    font-size: 70px;
  }
}
.hex-grid__item:nth-of-type(6n + 1) {
  grid-column: 1/span 3;
}
.hex-grid__item:nth-of-type(6n + 2) {
  grid-column: 3/span 3;
  grid-row: calc(var(--counter) + var(--counter) - 1)/span 2;
}
.hex-grid__item:nth-of-type(6n + 3) {
  grid-column: 5/span 3;
}
.hex-grid__item:nth-of-type(6n + 4) {
  grid-column: 7/span 3;
  grid-row: calc(var(--counter) + var(--counter) - 1)/span 2;
}
.hex-grid__item:nth-of-type(6n + 5) {
  grid-column: 9/span 3;
}
.hex-grid__item:nth-of-type(6n + 6) {
  grid-column: 11/span 3;
  grid-row: calc(var(--counter) + var(--counter) - 1)/span 2;
}
.hex-grid__item:nth-of-type(n + 7) {
  --counter: 2;
}
.hex-grid__item:nth-of-type(n + 13) {
  --counter: 3;
}
.hex-grid__item:nth-of-type(n + 19) {
  --counter: 4;
}
.hex-grid__item:nth-of-type(n + 25) {
  --counter: 5;
}
.hex-grid__item:nth-of-type(n + 31) {
  --counter: 6;
}
.hex-grid__item:nth-of-type(n + 37) {
  --counter: 7;
}
.hex-grid__item:nth-of-type(n + 43) {
  --counter: 8;
}
.hex-grid__item:nth-of-type(n + 49) {
  --counter: 9;
}
.hex-grid__item:nth-of-type(n + 55) {
  --counter: 10;
}
.hex-grid__item:nth-of-type(n + 61) {
  --counter: 11;
}
.hex-grid__item:nth-of-type(n + 67) {
  --counter: 12;
}
.hex-grid__item:nth-of-type(n + 73) {
  --counter: 13;
}
.hex-grid__item:nth-of-type(n + 79) {
  --counter: 14;
}
.hex-grid__item:nth-of-type(n + 85) {
  --counter: 15;
}
.hex-grid__item:nth-of-type(n + 91) {
  --counter: 16;
}
.hex-grid__item:nth-of-type(n + 97) {
  --counter: 17;
}
.hex-grid__item:nth-of-type(n + 103) {
  --counter: 18;
}
.hex-grid__item:nth-of-type(n + 109) {
  --counter: 19;
}
.hex-grid__item:nth-of-type(n + 115) {
  --counter: 20;
}
.hex-grid__item:nth-of-type(n + 121) {
  --counter: 21;
}

.hex-grid__content {
  position: absolute;
  left: 0;
  top: 0;
  color: white;
  height: 100%;
  width: 100%;
  background-color: #1f1f1f;
  justify-content: center;
  align-items: center;
  display: flex;
  clip-path: polygon(75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%, 25% 0);
}

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

body {
  background: #1f1f1f;
  font-family: "Oswald", sans-serif;
}
body.body__no-scroll {
  overflow: hidden;
}

.cont {
  position: relative;
  overflow: hidden;
  height: 85vh;
  padding: 40px 35px 80px 35px;
}
@media (min-width: 700px) {
  .cont {
    padding: 40px 70px 80px 70px;
  }
}
.cont__inner {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.cont__inner:hover .section__bg:after {
  opacity: 1;
}

.section {
  flex: 0 1 32.6666666667%;
  background: #252525;
  transition: transform 0.6s 0.7s, width 0.7s, opacity 0.6s 0.7s, z-index 0s 1.3s;
  will-change: transform, width, opacity;
}
@media (min-width: 700px) {
  .section {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 32.6666666667%;
  }
}
.section:not(.s--active) {
  cursor: pointer;
}
.section__heading {
  letter-spacing: 2.5px;
}
.section__overflow {
  overflow: hidden;
  position: relative;
  height: 100%;
}
.section__inner {
  overflow: hidden;
  position: relative;
  height: 100%;
  transition: transform 1s;
}
.cont.s--inactive .section__inner {
  transform: translate3d(0, 100%, 0);
}
.section__bg {
  position: relative;
  height: 100%;
  transition: transform 0.6s 0.7s;
  will-change: transform;
}
@media (min-width: 700px) {
  .section__bg {
    width: calc(100vw - 140px);
  }
}
.section__bg:before {
  content: "";
  position: absolute;
  left: 0;
  top: -5%;
  width: 100%;
  height: 110%;
  background-size: cover;
  background-position: center center;
  transition: transform 1s;
  transform: translate3d(0, 0, 0) scale(1);
}
.cont.s--inactive .section__bg:before {
  transform: translate3d(0, -100%, 0) scale(1.2);
}
.section.s--active .section__bg:before {
  transition: transform 0.8s;
}
.section__bg:after {
  content: "";
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.5s;
}
.cont.s--section-active .section__bg:after {
  transition: opacity 0.5s 1.4s;
  opacity: 1 !important;
}
.section__preview-cont {
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s 1s;
}
.cont.s--inactive .section__preview-cont {
  opacity: 0;
  transform: translateY(10px);
}
.cont.s--section-active .section__preview-cont {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s;
}
.section__heading {
  color: #fff;
  text-transform: uppercase;
  font-size: 18px;
}
.section__content {
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 30px;
  overflow-y: scroll;
  opacity: 0;
  pointer-events: none;
  transition: all 0.1s;
}
.section__content::-webkit-scrollbar {
  -webkit-appearance: none;
}
.section__content::-webkit-scrollbar:vertical {
  width: 11px;
}
.section__content::-webkit-scrollbar:horizontal {
  height: 11px;
}
.section__content::-webkit-scrollbar-thumb {
  border-radius: 8px;
  border: 2px solid #383276;
  /* should match background, can't be transparent */
  background-color: #fff;
}
@media (min-width: 700px) {
  .section__content {
    padding: 40px 60px 40px 70px;
  }
}
.section.s--active .section__content {
  z-index: 8;
  opacity: 1;
  pointer-events: auto;
  transition: all 0.5s 1.4s;
}
.section__text {
  text-transform: none;
  font-size: 40px;
  color: #fff;
}
.section__close-btn {
  z-index: -1;
  position: fixed;
  height: 50px;
  width: 50px;
  top: 5px;
  right: 5px;
  opacity: 0;
  pointer-events: none;
  transition: all 0s 0.45s;
  cursor: pointer;
}
@media (min-width: 700px) {
  .section__close-btn {
    height: 60px;
    width: 60px;
    top: 10px;
    right: 10px;
  }
}
.section.s--active .section__close-btn {
  z-index: 5;
  opacity: 1;
  pointer-events: auto;
  transition: all 0s 1.4s;
}
.section__close-btn:before, .section__close-btn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 8px;
  margin-top: -4px;
  background: #fff;
  opacity: 0;
  transition: opacity 0s;
}
.section.s--active .section__close-btn:before, .section.s--active .section__close-btn:after {
  opacity: 1;
}
.section__close-btn:before {
  transform: rotate(45deg) translateX(100%);
}
.section.s--active .section__close-btn:before {
  transition: all 0.3s 1.4s cubic-bezier(0.72, 0.09, 0.32, 1.57);
  transform: rotate(45deg) translateX(0);
}
.section__close-btn:after {
  transform: rotate(-45deg) translateX(100%);
}
.section.s--active .section__close-btn:after {
  transition: all 0.3s 1.55s cubic-bezier(0.72, 0.09, 0.32, 1.57);
  transform: rotate(-45deg) translateX(0);
}
.section__index {
  overflow: hidden;
  visibility: hidden;
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  z-index: 4;
  text-align: center;
  font-size: 33.3333333333vw;
  line-height: 0.85;
  font-weight: bold;
  transition: transform 0.5s, opacity 0.3s 1.4s;
  transform: translate3d(0, 1vw, 0);
}
@media (min-width: 700px) {
  .section__index {
    height: 50%;
    min-height: 250px;
  }
}
.section:hover .section__index {
  transform: translate3d(0, 20px, 0);
  visibility: visible;
}
@media (min-width: 700px) {
  .section:hover .section__index {
    transform: translate3d(0, 40px, 0);
  }
}
.cont.s--section-active .section__index {
  transition: transform 0.5s, opacity 0.3s;
  opacity: 0;
}
.section__index-back, .section__index-front {
  position: absolute;
  left: 0;
  width: 100%;
}
.section__index-back {
  color: #2f3840;
  opacity: 0;
  transition: opacity 0.25s 0.25s;
}
.section:hover .section__index-back {
  transition: opacity 0.25s;
  opacity: 1;
}
.section__index-overlay {
  overflow: hidden;
  position: relative;
  transform: translate3d(0, 100%, 0);
  transition: transform 0.5s 0.1s;
  color: transparent;
}
.section__index-overlay img {
  height: calc(50% - 100px);
  width: calc(50% - 20px);
  display: block;
  margin: auto;
}
.section__index-overlay:before {
  content: attr(data-index);
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  transform: translate3d(0, -100%, 0);
  transition: transform 0.5s 0.1s;
}
.section:hover .section__index-overlay {
  transform: translate3d(0, 0, 0);
}
.section:hover .section__index-overlay:before {
  transform: translate3d(0, 0, 0);
}
@media (min-width: 700px) {
  .section:nth-child(1) {
    transform: translate3d(0%, 0, 0);
    transform-origin: 50% 50%;
  }
}
.cont.s--section-active .section:nth-child(1):not(.s--active) {
  transform: scale(0.5) translate3d(0%, 0, 0);
  opacity: 0;
  transition: transform 0.95s, opacity 0.95s;
}
.section:nth-child(1) .section__inner {
  transition-delay: 0s;
}
@media (min-width: 700px) {
  .section:nth-child(1) .section__bg {
    transform: translate3d(0%, 0, 0);
  }
}
.section:nth-child(1) .section__bg:before {
  transition-delay: 0s;
}
.section:nth-child(1) .section__bg:before {
  background-color: #4F2C73;
}
@media (min-width: 700px) {
  .section:nth-child(2) {
    transform: translate3d(103.0612244898%, 0, 0);
    transform-origin: 153.0612244898% 50%;
  }
}
.cont.s--section-active .section:nth-child(2):not(.s--active) {
  transform: scale(0.5) translate3d(103.0612244898%, 0, 0);
  opacity: 0;
  transition: transform 0.95s, opacity 0.95s;
}
.section:nth-child(2) .section__inner {
  transition-delay: 0.1s;
}
@media (min-width: 700px) {
  .section:nth-child(2) .section__bg {
    transform: translate3d(-32.6666666667%, 0, 0);
  }
}
.section:nth-child(2) .section__bg:before {
  transition-delay: 0.1s;
}
.section:nth-child(2) .section__bg:before {
  background-color: #383276;
}
@media (min-width: 700px) {
  .section:nth-child(3) {
    transform: translate3d(206.1224489796%, 0, 0);
    transform-origin: 256.1224489796% 50%;
  }
}
.cont.s--section-active .section:nth-child(3):not(.s--active) {
  transform: scale(0.5) translate3d(206.1224489796%, 0, 0);
  opacity: 0;
  transition: transform 0.95s, opacity 0.95s;
}
.section:nth-child(3) .section__inner {
  transition-delay: 0.2s;
}
@media (min-width: 700px) {
  .section:nth-child(3) .section__bg {
    transform: translate3d(-65.3333333333%, 0, 0);
  }
}
.section:nth-child(3) .section__bg:before {
  transition-delay: 0.2s;
}
.section:nth-child(3) .section__bg:before {
  background-color: #2B4B6F;
}
.section:hover .section__bg:after {
  opacity: 0;
}
.section.s--active {
  z-index: 1;
  width: 100%;
  transform: translate3d(0, 0, 0);
  transition: transform 0.6s, width 0.7s 0.7s, z-index 0s;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}
.section.s--active .section__bg {
  transform: translate3d(0, 0, 0);
  transition: transform 0.6s;
}
.section.s--active .section__bg:before {
  transition-delay: 0.6s;
  transform: scale(1.1);
}

.icon-link {
  position: absolute;
  left: 5px;
  bottom: 5px;
  width: 32px;
}
.icon-link img {
  width: 100%;
  vertical-align: top;
}
.icon-link--twitter {
  left: auto;
  right: 5px;
}

.portfolio-name {
  text-align: center;
  text-transform: uppercase;
  color: white;
  font-size: 6vw;
  padding-top: 20px;
}
@media (max-width: 800px) {
  .portfolio-name {
    font-size: 10vw;
  }
}
.portfolio-name .portfolio-name__job {
  font-size: 22px;
  text-transform: none;
  letter-spacing: 1.8px;
}

.footer-links {
  display: flex;
  padding: 5px;
  width: 100px;
  justify-content: space-around;
  margin: 0 auto;
}
.footer-links .svg-inline--fa {
  font-size: 30px;
  color: white;
}

.l-constrain {
  max-width: 1200px;
  margin: 0 auto;
}

.section--contact .section__content {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
}
.section--contact .section__content .section__text {
  font-size: 18px;
}
.section--contact .section__content .section__text .contact__email a {
  color: white;
}
.section--contact .section__content .contact__header {
  font-family: "Source Sans Pro", sans-serif;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 40px;
  text-align: center;
  padding-bottom: 2rem;
}
.section--contact .section__content .contact__header::after {
  content: " ";
  display: block;
  width: 160px;
  height: 1px;
  margin: 0 auto;
  border-bottom: 2px solid #5e5a90;
}
.section--contact .section__content .contact__form {
  z-index: 999;
}
.section--contact .section__content .contact__form form {
  display: flex;
  flex-direction: column;
  margin: 30px auto;
}
.section--contact .section__content .contact__form form input, .section--contact .section__content .contact__form form textarea {
  border: none;
  background-color: #1f1f1f;
  color: white;
  border-radius: 5px;
  padding: 10px;
  margin: 0 0 10px 0;
}
.section--contact .section__content .contact__form form input::placeholder, .section--contact .section__content .contact__form form textarea::placeholder {
  color: #2B4B6F;
}
.section--contact .section__content .contact__form form textarea {
  height: 100px;
}
.section--contact .section__content .contact__form form .form__submit {
  background-color: rgba(0, 0, 0, 0);
  border: 2px solid white;
  color: white;
  font-size: 18px;
  text-transform: uppercase;
}
.section--contact .section__content .contact__form form .form__submit:hover {
  color: #2B4B6F;
  background-color: white;
}

.project__header {
  font-family: "Source Sans Pro", sans-serif;
  text-transform: uppercase;
  font-weight: 300;
  text-align: center;
  padding-bottom: 2rem;
}
.project__header::after {
  content: " ";
  display: block;
  width: 160px;
  height: 1px;
  margin: 0 auto;
  border-bottom: 2px solid #5e5a90;
}

.project__grid {
  font-family: "Source Sans Pro", sans-serif;
  display: flex;
  flex-direction: column;
}
@media (min-width: 700px) {
  .project__grid {
    flex-wrap: wrap;
    flex-direction: row;
  }
}
.project__grid .project {
  flex: 0 1 100%;
  background-color: #fff;
  text-decoration: none;
  margin: 10px 0;
  display: inline-block;
  width: 100%;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6);
}
@media (min-width: 700px) {
  .project__grid .project {
    margin: 10px;
    flex: 0 1 calc(50% - 20px);
  }
}
.project__grid .project.project--poopsmart .project__image {
  background-size: 50%;
}
.project__grid .project.project--idwa .project__image {
  background-size: 50%;
}
.project__grid .project.project--krue .project__image {
  background-size: 50%;
}
.project__grid .project__image {
  width: 100%;
  background-color: rgba(94, 90, 144, 0.8);
  height: 0;
  padding-bottom: 56.7%;
  background-size: 80%;
  background-repeat: no-repeat;
  background-position: center;
}
.project__grid .project__image-overlay {
  padding-bottom: 56.7%;
  width: 100%;
}
.project__grid .project__title {
  text-align: center;
  font-size: 18px;
  color: #000;
  padding: 1rem 0 0 0;
}
.project__grid .project__tech {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  max-width: 90%;
  flex-wrap: wrap;
  margin: 0 auto;
  padding: 0 0 1rem 0;
}
.project__grid .project__tech .tech {
  display: inline-block;
  margin-top: 1rem;
  font-size: 12px;
  color: #fff;
  background-color: #5e5a90;
  letter-spacing: 1.3px;
  border-radius: 20px;
  padding: 0.25rem 0.75rem;
}

.about {
  font-family: "Source Sans Pro", sans-serif;
}
.about .about__title {
  padding: 2rem 0;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 300;
}
.about .about__title::before {
  content: " ";
  display: block;
  width: 80%;
  height: 1px;
  margin: 0 auto;
  margin-bottom: 2rem;
  border-bottom: 2px solid #73612c;
}
.about .about__me .about__title {
  padding-top: 0;
}
.about .about__me .about__title::before {
  border: none;
  margin: 0;
}
.about .about__me .me__blurb {
  font-size: 20px;
  letter-spacing: 1px;
}
.about .about__me .me__blurb .blurb__title {
  text-align: center;
  font-size: 18px;
}
.about .about__me .me__blurb .blurb__section-container {
  font-size: 16px;
  font-weight: 300;
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about .about__me .me__blurb .blurb__section {
  flex: 0 1 calc(100% - 220px);
  text-align: center;
  padding-bottom: 1rem;
  margin: auto;
}
.about .about__me .me__blurb .blurb__section-image {
  flex: 0 1 200px;
  display: flex;
}
.about .about__me .me__blurb .blurb__section-image img {
  height: 200px;
}
.about .about__skills .bullet {
  color: #73612c;
}
.about .about__skills .skills-label {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 300;
  text-align: center;
  letter-spacing: 2px;
  padding: 1rem 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
.about .about__skills .skills-label div {
  padding: 0 1rem;
}
.about .about__skills .skills-label .skill__spacer {
  padding: 0 8px;
  color: #73612c;
}
.about .about__skills .skills-list {
  padding: 1rem 0 2rem 0;
  font-size: 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.about .about__skills .skills-list .skill__single {
  padding: 2px 8px;
  letter-spacing: 1.2px;
  font-weight: 300;
}
.about .about__skills .skills-list .skill__spacer {
  padding: 0 8px;
  color: #73612c;
}
.about .about__experience .job__company {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 1rem 0 0 0;
  text-align: center;
  font-size: 28px;
}
.about .about__experience .job__company a {
  text-decoration: none;
  color: white;
}
.about .about__experience .job__company a:hover {
  border-bottom: 2px solid #73612c;
}
.about .about__experience .job__description {
  font-size: 16px;
  text-align: center;
  font-weight: 300;
  letter-spacing: 1px;
}
.about .about__experience .job__highlights {
  padding: 1rem 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 300;
  font-size: 18px;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
}
@media (min-width: 700px) {
  .about .about__experience .job__highlights {
    flex-direction: row;
  }
}
.about .about__experience .job__highlights .highlight {
  padding: 2px 1rem;
}
.about .about__experience .job__highlights .bullet {
  display: none;
  color: #73612c;
}
@media (min-width: 700px) {
  .about .about__experience .job__highlights .bullet {
    display: block;
  }
}
.about .about__experience .job__timeframe {
  letter-spacing: 0.6px;
  font-weight: 300;
  font-size: 16px;
  text-align: center;
  padding: 1rem 0 2rem 0;
  font-style: italic;
}

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