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

html {
  font-size: 62.5%; }
  @media only screen and (max-width: 75em) {
    html {
      font-size: 56.25%; } }
  @media only screen and (max-width: 56.25em) {
    html {
      font-size: 50%; } }
  @media only screen and (min-width: 112.5em) {
    html {
      font-size: 75%; } }

body {
  box-sizing: border-box;
  padding: 3rem; }
  @media only screen and (max-width: 56.25em) {
    body {
      padding: 0; } }

@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-10rem); }
  80% {
    transform: translateX(1rem); }
  100% {
    opacity: 1;
    transform: translateX(0); } }

@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(10rem); }
  80% {
    transform: translateX(-1rem); }
  100% {
    opacity: 1;
    transform: translateX(0); } }

@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(3rem); }
  100% {
    opacity: 1;
    transform: translateY(0); } }

@-webkit-keyframes popup {
  0% {
    -webkit-transform: translateY(0) scale(1); }
  50% {
    -webkit-transform: translateY(-8rem) scale(1.2); }
  100% {
    -webkit-transform: translateY(0) scale(1); } }

@-moz-keyframes popup {
  0% {
    -moz-transform: translateY(0) scale(1); }
  50% {
    -moz-transform: translateY(-8rem) scale(1.2); }
  100% {
    -moz-transform: translateY(0) scale(1); } }

@keyframes popup {
  0% {
    transform: translateY(0) scale(1); }
  50% {
    transform: translateY(-8rem) scale(1.2); }
  100% {
    transform: translateY(0) scale(1); } }

body {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  /*font-size: 16px;*/
  line-height: 1.7;
  color: #777; }

.heading-primary {
  color: #fff;
  text-transform: uppercase;
  backface-visibility: hidden;
  margin-bottom: 6rem; }
  .heading-primary--main {
    display: block;
    font-size: 6rem;
    font-weight: 400;
    letter-spacing: 3.5rem;
    animation-name: moveInLeft;
    animation-duration: 1s;
    animation-timing-function: ease-out;
    /*
       animation-delay: 3s;
       animation-iteration-count: 3;
       */ }
    @media only screen and (max-width: 37.5em) {
      .heading-primary--main {
        letter-spacing: 1rem;
        font-size: 5rem; } }
  .heading-primary--sub {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1.75rem;
    animation: moveInRight 1s ease-out; }
    @media only screen and (max-width: 37.5em) {
      .heading-primary--sub {
        letter-spacing: .5rem; } }

.heading-secondary {
  font-size: 3.5rem;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-block;
  background-image: linear-gradient(to right, #7ed56f, #28b485);
  -webkit-background-clip: text;
  color: transparent;
  letter-spacing: .2rem;
  transition: all .2s; }
  .heading-secondary--animated {
    animation-name: popup;
    animation-duration: 3s;
    animation-timing-function: cubic-bezier(0, 0, 0.18, 1); }
  @media only screen and (max-width: 56.25em) {
    .heading-secondary {
      font-size: 3rem; } }
  @media only screen and (max-width: 37.5em) {
    .heading-secondary {
      font-size: 2.5rem; } }

.heading-tertiary {
  font-size: 2rem;
  color: #55c57a;
  font-weight: 700;
  text-transform: uppercase; }

.paragraph {
  font-size: 1.6rem;
  padding: 1rem 4rem; }
  .paragraph:not(:last-child) {
    margin-bottom: 3rem; }

.u-normal-text {
  font-size: 1.6rem; }

.overlay-module__content__text {
  font-size: 1.5rem;
  margin-top: 1rem; }

.u-center-text {
  text-align: center; }

.u-margin-bottom-8 {
  margin-bottom: 8rem; }

.u-bold-text {
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
  padding: .5rem 1rem; }

.u-float-right {
  float: right; }

.r-debug {
  background-color: red !important; }

.b-debug {
  background-color: blue !important; }

.p-debug {
  background-color: purple !important; }

.u-hidden {
  display: none; }

.btn:link, .btn:visited {
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.5rem 4rem;
  display: inline-block;
  border-radius: 10rem;
  transition: all 0.2s;
  position: relative;
  -webkit-filter: blur(0px);
  cursor: pointer; }

.btn:hover {
  transform: translateY(-0.3rem);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
  -webkit-filter: blur(0px); }
  .btn:hover::after {
    transform: scaleX(1.4) scaleY(1.6);
    opacity: 0; }

.btn--light {
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.5rem 4rem;
  display: inline-block;
  border-radius: 10rem;
  transition: all 0.2s;
  position: relative;
  -webkit-filter: blur(0px);
  cursor: pointer; }
  .btn--light:hover {
    transform: translateY(-0.3rem);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
    -webkit-filter: blur(0px); }
    .btn--light:hover::after {
      transform: scaleX(1.4) scaleY(1.6);
      opacity: 0; }
  .btn--light:active {
    transform: translateY(-0.1rem);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
    -webkit-filter: blur(0px); }
  .btn--light::after {
    display: inline-block;
    height: 100%;
    width: 100%;
    border-radius: 10rem;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all 0.4s; }

.btn:active {
  transform: translateY(-0.1rem);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
  -webkit-filter: blur(0px); }

.btn--white {
  background-color: #fff;
  color: #777;
  font-size: 1.6rem; }

.btn--green {
  background-color: #55c57a;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500; }
  @media only screen and (max-width: 37.5em) {
    .btn--green {
      font-size: 1.4rem; } }

.btn::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: 10rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.4s; }

.btn--white::after {
  background-color: #fff; }

.btn--animated {
  animation: moveInBottom 0.5s ease-out 0.65s;
  animation-fill-mode: backwards; }

.card {
  perspective: 150rem;
  -moz-perspective: 150rem;
  position: relative;
  margin: 0 auto;
  min-height: 55rem;
  min-width: 28rem;
  max-width: 60rem; }
  .card--project {
    min-height: 95rem; }
  .card__side {
    font-size: 2rem;
    min-height: 55rem;
    transition: all 0.8s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    backface-visibility: hidden;
    border-radius: 1%;
    overflow: hidden;
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15); }
    .card__side--front {
      background-color: #fff; }
  .card__picture {
    background-position: left 50% top 20%;
    background-size: cover;
    height: 33rem; }
    .card__picture--about-me {
      background-image: url(./images/Hursey_0540-min.jpg); }
    .card__picture--cotd {
      background-image: url(./images/cotd.png); }
    .card__picture--r5 {
      background-image: url(./images/rolling5.png); }
  .card__heading {
    font-size: 2vim;
    font-weight: 400;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 1rem;
    position: absolute;
    top: 25rem;
    right: 2rem;
    text-align: right;
    width: 60%; }
  .card__heading-span {
    padding: 1rem 1.5rem;
    background-color: rgba(0, 0, 0, 0.85); }
  .card__details {
    padding: 1rem 2rem; }
    .card__details ul {
      list-style: none;
      margin: 0 auto; }
      .card__details ul li {
        font-size: 1.7rem;
        padding: 1rem; }
        .card__details ul li:not(:last-child) {
          border-bottom: 1px solid #eee; }

.tech__logo--image {
  width: 100%; }

.project-image {
  width: 100%;
  overflow: hidden;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
  transition: all 0.2s;
  position: relative;
  -webkit-filter: blur(0px);
  opacity: 1;
  display: block;
  width: 100%;
  height: auto;
  transition: .5s ease;
  backface-visibility: hidden;
  cursor: pointer; }
  .project-image:hover {
    transform: translateY(-0.3rem);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
    -webkit-filter: blur(0px); }
    .project-image:hover::after {
      transform: scaleX(1.4) scaleY(1.6);
      opacity: 0; }
  .project-image:active {
    transform: translateY(-0.1rem);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
    -webkit-filter: blur(0px); }

.middle {
  transition: .5s ease;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%); }

.project:hover .image {
  opacity: 0.3; }

.project:hover .middle {
  opacity: 1; }

.text {
  background-color: #4CAF50;
  color: white;
  font-size: 16px;
  padding: 16px 32px; }

.overlay-module {
  background-color: #fff;
  width: 70vw;
  margin: 5rem auto;
  overflow: auto;
  z-index: 5000; }
  .overlay-module__header {
    width: 100%;
    text-align: center;
    margin-top: 2rem;
    display: block; }
  .overlay-module__content {
    position: relative;
    display: block;
    padding: 0 5rem 0rem 5rem;
    width: 100%; }
    .overlay-module__content--button {
      margin: 5rem 0 2rem 0; }

.close-overlay--button {
  position: relative;
  float: right;
  right: 1.5rem;
  width: 3rem;
  height: 3rem;
  opacity: 0.3; }

.close-overlay--button:hover {
  opacity: 1;
  cursor: pointer; }

.close-overlay--button:before, .close-overlay--button:after {
  position: absolute;
  left: 15px;
  content: ' ';
  height: 3.3rem;
  width: 2px;
  background-color: #333; }
  @media only screen and (max-width: 37.5em) {
    .close-overlay--button:before, .close-overlay--button:after {
      height: 1.5rem; } }

.close-overlay--button:before {
  transform: rotate(45deg); }

.close-overlay--button:after {
  transform: rotate(-45deg); }

.module-image {
  width: 80%;
  margin-left: 10%; }

.header {
  height: 100vh;
  background-image: linear-gradient(to right bottom, rgba(126, 213, 111, 0.8), rgba(40, 180, 133, 0.8)), url("./images/greens.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  -webkit-clip-path: polygon(50% 0%, 100% 0, 100% 65%, 50% 85%, 0 65%, 0 0);
  clip-path: polygon(50% 0%, 100% 0, 100% 65%, 50% 85%, 0 65%, 0 0); }
  .header__logo-box {
    position: absolute;
    top: 4rem;
    left: 4rem; }
  .header__logo {
    height: 3.5rem; }
  .header__logo:hover {
    animation-name: boom;
    animation-duration: .15s;
    animation-timing-function: ease-in;
    animation-fill-mode: forwards; }
  .header__text-box {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center; }

.row {
  max-width: 70vw;
  margin: 0 auto; }
  .row:not(:last-child) {
    margin-bottom: 8rem; }
    @media only screen and (max-width: 56.25em) {
      .row:not(:last-child) {
        margin-bottom: 6rem; } }
  .row::after {
    content: "";
    display: table;
    clear: both; }
  .row [class^="col-"] {
    float: left; }
    .row [class^="col-"]:not(:last-child) {
      margin-right: 6rem; }
      @media only screen and (max-width: 56.25em) {
        .row [class^="col-"]:not(:last-child) {
          margin-right: 0;
          margin-bottom: 6rem; } }
    @media only screen and (max-width: 56.25em) {
      .row [class^="col-"] {
        width: 100% !important; } }
  .row .col-1-of-1 {
    width: 70vw; }
  .row .col-1-of-2 {
    width: calc((100% - 6rem) / 2); }
  .row .col-1-of-3 {
    width: calc((100% - 2 * 6rem) / 3); }
  .row .col-2-of-3 {
    width: calc(((100% - 2 * 6rem) / 3) * 2 + 6rem); }
  .row .col-1-of-4 {
    width: calc((100% - 3 * 6rem) / 4); }
  .row .col-2-of-4 {
    width: calc((100% - 6rem) / 2); }
  .row .col-3-of-4 {
    width: calc(((100% - 3 * 6rem) / 4) * 3 + 6rem * 2); }
  .row .col-1-of-5 {
    width: calc((100% - 4 * 6rem) / 5); }

.navigation__checkbox {
  display: none; }

.navigation__button {
  font-size: 1.6rem;
  font-weight: 500;
  width: 15rem;
  position: fixed;
  display: inline-block;
  background-color: #fff;
  top: 6rem;
  right: 6rem;
  z-index: 99;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
  padding: 1.5rem 4rem;
  border-radius: 10rem;
  text-transform: uppercase;
  -webkit-filter: blur(0px);
  cursor: pointer; }
  .navigation__button:hover {
    transform: translateY(-0.3rem);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
    -webkit-filter: blur(0px); }
    .navigation__button:hover::after {
      transform: scaleX(1.4) scaleY(1.6);
      opacity: 0; }
  .navigation__button:active {
    transform: translateY(-0.1rem);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
    -webkit-filter: blur(0px); }
  @media only screen and (max-width: 56.25em) {
    .navigation__button {
      top: 3rem;
      right: 3rem; } }
  @media only screen and (max-width: 37.5em) {
    .navigation__button {
      top: 1rem;
      right: 1rem; } }

.navigation__background {
  height: 1rem;
  width: 1rem;
  border-radius: 50%;
  position: fixed;
  top: 7rem;
  right: 11rem;
  background-image: radial-gradient(#7ed56f, #28b485);
  z-index: 97;
  transition: transform .5s; }
  @media only screen and (max-width: 56.25em) {
    .navigation__background {
      top: 4rem;
      right: 4rem; } }
  @media only screen and (max-width: 37.5em) {
    .navigation__background {
      top: 2rem;
      right: 2rem; } }

.navigation__nav {
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 98;
  visibility: hidden;
  opacity: 0;
  width: 0%;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55); }

.navigation__list {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  list-style: none;
  text-align: center;
  width: 100%; }

.navigation__item {
  margin: 1rem; }

.navigation__link:link, .navigation__link:visited {
  display: inline-block;
  font-size: 3rem;
  font-weight: 300;
  padding: 1rem 2rem;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  background-image: linear-gradient(120deg, transparent 0%, transparent 50%, #fff 50%);
  background-size: 250%;
  transition: all .4s; }
  @media only screen and (max-width: 37.5em) {
    .navigation__link:link, .navigation__link:visited {
      font-size: 2rem; } }

.navigation__link:hover, .navigation__link:active {
  background-position: 100%;
  color: #55c57a;
  transform: translateX(0.5rem); }

.navigation__checkbox:checked ~ .navigation__background {
  transform: scale(480);
  -moz-transform: scale(480);
  -webkit-transform: scale(480); }

.navigation__checkbox:checked ~ .navigation__nav {
  opacity: 1;
  width: 100%;
  visibility: visible; }

.navigation__checkbox:checked ~ .navigation__button {
  background-color: transparent;
  box-shadow: 0 0 0;
  border-radius: 0; }

.navigation__checkbox:checked ~ .navigation__button:hover {
  transform: translateY(0); }

.close-nav--button {
  position: relative;
  float: right;
  right: 1.5rem;
  width: 3rem;
  height: 3rem;
  opacity: 0.3; }

.close-nav--button:hover {
  opacity: 1; }

.close-nav--button:before, .close-nav--button:after {
  position: absolute;
  left: 15px;
  content: ' ';
  height: 3.3rem;
  width: 2px;
  background-color: #333; }

.close-nav--button:before {
  transform: rotate(45deg); }

.close-nav--button:after {
  transform: rotate(-45deg); }

.noscroll {
  overflow: hidden; }

.overlay {
  position: fixed;
  overflow-y: scroll;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8); }
  .overlay--background {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    z-index: -1; }

[aria-hidden="true"] {
  transition: opacity .5s, z-index 0s .5s;
  width: 100vw;
  z-index: -1;
  opacity: 0; }

[aria-hidden="false"] {
  transition: opacity .5s;
  width: 100%;
  z-index: 100;
  opacity: 100; }

.section-about {
  background-color: #f7f7f7;
  padding-top: 45rem;
  padding-bottom: 15rem;
  margin-top: -45rem; }

.section-projects {
  background-color: #f7f7f7; }

.section-tech {
  background-color: #f7f7f7;
  padding: 15rem 0; }
