/* Page Setup ---------- */
* {
  margin: 0px;
  padding: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body,
html,
.wrapper {
  height: 100vh;
}

/* Colour Setup ---------- */
/* Black #212121 */
/* Off-White #F2F2F2 */
/* Primary (Yellow) #FFC700, Updated Yellow 1 #FFDA0C, Updated Yellow 2 #FFC300*/
/* Primary (Orange) #F7682C */
/* Font Setup ---------- */
/* font-family: 'Roboto Slab',serif;*/
/* font-family: 'Titillium Web', sans-serif;*/
/* font-family: 'Raleway', sans-serif; */
/* Grid Setup ---------- */
.grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
}

.nav {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1 / 3;
  background-color: #ffc300;
}

.header,
.header-alt {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1 / 3;
  background-color: #212121;
}

.main {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1 / 3;
  background-color: #212121;
}

.aside {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1 / 3;
  background-color: #f2f2f2;
}

.footer {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1 / 3;
  background-color: #212121;
  -ms-grid-column-align: center;
      justify-self: center;
}

/* Navigation ---------- */
.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 8vh;
  font-family: "Raleway", sans-serif;
}

.logo-text {
  color: #212121;
  font-size: 26px;
  text-decoration: none;
  font-weight: 600;
}

.nav-ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.nav-ul li {
  list-style: none;
}

.nav-link {
  text-decoration: none;
  color: #212121;
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
}

.current-page {
  font-weight: 800;
}

.toggler {
  display: none;
  cursor: pointer;
}

.toggler div {
  width: 25px;
  height: 3px;
  background-color: #212121;
  margin: 5px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/* Header ---------- */
.header {
  height: 92vh;
  -webkit-animation: circle 10s infinite;
          animation: circle 10s infinite;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.header-alt {
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #212121;
}

.header-name,
.header-misc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  color: #f2f2f2;
}

.header-name {
  font-size: 32px;
  padding-top: 20px;
}

.header-misc {
  font-size: 24px;
}

.header-alt-name,
.header-alt-misc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  color: #f2f2f2;
}

.header-alt-name {
  font-size: 24px;
  padding-top: 20px;
}

.header-alt-misc {
  font-size: 18px;
}

.logo-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
}

.logo-list-item {
  list-style: none;
}

.logo-list-item .fa-circle {
  color: #ffc300;
}

.logo-list-item .fa-envelope,
.logo-list-item .fa-linkedin,
.logo-list-item .fa-github {
  color: #212121;
}

/* Main ---------- */
main {
  color: #f2f2f2;
  font-family: "Titillium Web", sans-serif;
  padding: 5vh 20vw 5vh 5vw;
  width: 75vw;
  margin: 0 auto;
}

/* Aside ---------- */
aside {
  color: #212121;
  font-family: "Titillium Web", sans-serif;
  padding: 5vh 20vw 5vh 5vw;
  width: 75vw;
  margin: 0 auto;
  border-left: 2px solid #212121;
  border-right: 2px solid #212121;
}

.heading {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  background-color: #f2f2f2;
  color: #212121;
  display: inline-block;
  padding: 10px 40px;
  text-align: center;
  margin-bottom: 20px;
  border-radius: 10px;
}

h2.subheading {
  font-family: "Roboto Slab", serif;
  font-weight: 800;
  -webkit-text-decoration-color: #ffc300;
          text-decoration-color: #ffc300;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
}

h3.subheading,
h4.subheading {
  font-family: "Roboto Slab", serif;
  font-weight: 600;
}

main .subheading {
  color: #f2f2f2;
}

aside .subheading {
  color: #212121;
}

main p,
aside p {
  line-height: 1.6;
}

aside p a {
  background-color: #ffc300;
  border: 2px solid #ffc300;
  border-radius: 10px;
  padding: 3px 10px;
  text-decoration: none;
  color: #212121;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
  margin-top: 10px;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
}

aside p a:hover {
  border-radius: 30px;
  background-color: #f2f2f2;
}

/* Footer ---------- */
footer {
  width: 100vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0px;
  color: #f2f2f2;
  font-family: "Titillium Web", sans-serif;
}

footer p {
  padding: 2vh;
}

footer a {
  color: #ffc300;
  text-decoration: none;
}

.button {
  background-color: #ffc300;
  border: 2px solid #ffc300;
  border-radius: 10px;
  padding: 10px 30px;
  margin-top: 20px;
  text-decoration: none;
  color: #212121;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 18px;
  display: inline-block;
  margin: 0 auto;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
}

.button:hover {
  border-radius: 30px;
  background-color: #f2f2f2;
}

.portrait {
  display: block;
  margin: 10px auto;
  border-radius: 50%;
  border: 2px solid #ffc300;
  max-width: 100%;
}

.skill-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.skill-list li {
  list-style: none;
  margin: 5px 5px 0px 0px;
  padding: 5px 20px;
  font-weight: 600;
  color: #212121;
  background-color: white;
  border: 1px dotted #212121;
  border-radius: 10px;
}

.success-message {
  color: #78d75d;
  font-weight: 600;
  font-size: 24px;
  display: block;
}

form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 75%;
}

form label {
  font-size: 18px;
}

form label:first-of-type {
  margin-top: 30px;
}

form .error-message {
  color: #ffc300;
  font-weight: 600;
}

form input {
  padding: 10px 20px;
  margin-bottom: 30px;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  color: #212121;
  border: none;
  border-radius: 10px;
}

form input:focus {
  border: 2px solid #ffc300;
}

form textarea {
  padding: 10px 20px;
  margin-bottom: 30px;
  min-height: 200px;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  color: #212121;
  border: none;
  border-radius: 10px;
}

form textarea:focus {
  border: 2px solid #ffc300;
}

form button {
  background-color: #ffc300;
  border: 2px solid #ffc300;
  cursor: pointer;
  border-radius: 10px;
  padding: 10px 30px;
  margin-bottom: 30px;
  text-decoration: none;
  color: #212121;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 18px;
  display: inline-block;
  width: 50%;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
}

form button:hover {
  border-radius: 30px;
  background-color: #f2f2f2;
}

.site-link {
  background-color: #ffc300;
  border: 2px solid #ffc300;
  border-radius: 10px;
  padding: 10px 30px;
  margin-top: 5px;
  margin-bottom: 5px;
  text-decoration: none;
  color: #212121;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 18px;
  display: inline-block;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
}

.site-link:hover {
  border-radius: 30px;
  background-color: #f2f2f2;
}

.site-img {
  max-width: 75%;
  margin-top: 10px;
  margin-bottom: 20px;
  border: 2px solid #212121;
}

.more-info {
  color: #ffc300;
  cursor: pointer;
}

hr {
  margin: 30px 0px;
}

#div-cl-1,
#div-cl-2,
#div-ed-1,
#div-ed-2,
#div-ed-3,
#div-ed-4 {
  display: none;
}

@-webkit-keyframes circle {
  0% {
    -webkit-clip-path: circle(50% at 50% 50%);
            clip-path: circle(50% at 50% 50%);
  }
  50% {
    -webkit-clip-path: circle(75% at 50% 50%);
            clip-path: circle(75% at 50% 50%);
  }
  100% {
    -webkit-clip-path: circle(50% at 50% 50%);
            clip-path: circle(50% at 50% 50%);
  }
}

@keyframes circle {
  0% {
    -webkit-clip-path: circle(50% at 50% 50%);
            clip-path: circle(50% at 50% 50%);
  }
  50% {
    -webkit-clip-path: circle(75% at 50% 50%);
            clip-path: circle(75% at 50% 50%);
  }
  100% {
    -webkit-clip-path: circle(50% at 50% 50%);
            clip-path: circle(50% at 50% 50%);
  }
}

@media only screen and (max-width: 1500px) {
  /* Main */
  main {
    width: 80vw;
    padding: 5vh 15vw 5vh 5vw;
  }
  /* Aside */
  aside {
    width: 80vw;
    padding: 5vh 15vw 5vh 5vw;
  }
}

@media only screen and (max-width: 1200px) {
  /* Main */
  main {
    width: 85vw;
    padding: 5vh 10vw 5vh 5vw;
  }
  /* Aside */
  aside {
    width: 85vw;
    padding: 5vh 10vw 5vh 5vw;
  }
}

/* Media Query > 1024px */
@media only screen and (max-width: 1024px) {
  .nav-ul {
    width: 60%;
  }
  /* Main */
  main {
    width: 100vw;
    padding: 5vh 5vw;
    border: 0px;
  }
  /* Aside */
  aside {
    width: 100vw;
    padding: 5vh 5vw;
    border: 0px;
  }
  /* Contact page*/
  /* Form */
  form {
    width: 100%;
  }
  form label {
    font-size: 18px;
  }
  form label:first-of-type {
    margin-top: 30px;
  }
  form input {
    padding: 10px 10px;
  }
  form textarea {
    padding: 10px 10px;
  }
  /* Projects page */
  /* Site images */
  .site-img {
    max-width: 100%;
  }
}

/* Media Query > 768px */
@media only screen and (max-width: 768px) {
  /* Grid Setup */
  .grid {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
  .main {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
  }
  .aside {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
  }
  /* Navigation */
  .wrapper {
    overflow-x: hidden;
    position: relative;
  }
  .nav {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-left: 5vw;
    padding-right: 5vw;
  }
  .nav-ul {
    position: absolute;
    right: 0px;
    height: 92vh;
    top: 8vh;
    padding-top: 15vh;
    padding-bottom: 30vh;
    background-color: #ffc300;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.5s ease-in;
    transition: -webkit-transform 0.5s ease-in;
    transition: transform 0.5s ease-in;
    transition: transform 0.5s ease-in, -webkit-transform 0.5s ease-in;
    z-index: 1;
  }
  .nav-ul li {
    opacity: 0;
    margin: 5vh;
  }
  .toggler {
    display: block;
  }
  /* Contact page*/
  /* Form */
  form button {
    width: 100%;
  }
}

.nav-active {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

@-webkit-keyframes navLinkFade {
  from {
    opacity: 0;
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}

@keyframes navLinkFade {
  from {
    opacity: 0;
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}

.toggle .toggler-1 {
  -webkit-transform: rotate(-45deg) translate(-5px, 6px);
          transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .toggler-2 {
  opacity: 0;
}

.toggle .toggler-3 {
  -webkit-transform: rotate(45deg) translate(-5px, -6px);
          transform: rotate(45deg) translate(-5px, -6px);
}
/*# sourceMappingURL=custom.css.map */