/* Typography */
@font-face {
  font-family: "HelveticaLTCond";
  src: url("../fonts/HelveticaLTStd-LightCond.eot");
  src: url("../fonts/HelveticaLTStd-LightCond.eot?#iefix") format("embedded-opentype"), url("../fonts/HelveticaLTStd-LightCond.woff") format("woff"), url("../fonts/HelveticaLTStd-LightCond.ttf") format("truetype"), url("../fonts/HelveticaLTStd-LightCond.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "HelveticaLTCond";
  src: url("../fonts/HelveticaLTStd-Cond.eot");
  src: url("../fonts/HelveticaLTStd-Cond.eot?#iefix") format("embedded-opentype"), url("../fonts/HelveticaLTStd-Cond.woff") format("woff"), url("../fonts/HelveticaLTStd-Cond.ttf") format("truetype"), url("../fonts/HelveticaLTStd-Cond.svg") format("svg");
  font-weight: bold;
  font-style: bold;
}
/* Core Stuff */
* {
  box-sizing: border-box;
}

html {
  font-size: 100%;
  font-size: clamp(0.75rem, 1vw, 1.25rem);
}

body {
  font-family: "HelveticaLTCond", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #444;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #444;
}

h1 {
  font-size: 1.25rem;
  font-weight: normal;
  margin: 0;
}

a {
  color: #09C;
  text-decoration: none;
}

a:hover {
  color: #09C;
}

pre {
  background: #F0F0F0;
  margin: 1rem 0;
  border-radius: 2px;
}

blockquote {
  border-left: 10px solid #eee;
  margin: 0;
  padding: 0 2rem;
}

/* Utility Classes */
.wrapper {
  max-width: calc((100vh - 2.75rem - 3.5rem) / 2 * 3 + 2rem);
  margin: 0 auto;
}

.padding {
  padding: 0 1rem;
}

.left {
  float: left;
}

.right {
  float: right;
}

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

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

/* Content Styling */
.header {
  position: fixed;
  width: 100%;
  border-bottom: 0.5rem solid rgba(235, 235, 235, 0.5);
  color: #666;
  z-index: 1;
}
.header a {
  color: #666;
}
.header a:hover {
  color: #09C;
}
.header .padding {
  padding: 1rem 1rem 0;
}
.header .logo {
  font-size: 1.75rem;
  line-height: 2rem;
}
.header .wrapper {
  display: flex;
  justify-content: space-between;
  background: white;
}

.footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  border-top: 0.5rem solid rgba(235, 235, 235, 0.5);
  text-align: center;
}
.footer .wrapper {
  padding: 0.5rem 1rem;
  background-color: white;
}
.footer p {
  margin: 0;
  line-height: 1.25;
}

/* Menu Settings */
.main-nav {
  font-size: 1.25rem;
}
.main-nav ul {
  display: flex;
  justify-content: space-between;
  text-align: center;
  margin: 0;
  padding: 0;
}
.main-nav ul li {
  display: inline-block;
  letter-spacing: normal;
}
.main-nav ul li a {
  position: relative;
  display: block;
  line-height: 2rem;
  color: #666;
  padding: 0 1.25rem;
  white-space: nowrap;
}
.main-nav ul li:last-of-type a {
  padding: 0 0 0 5rem;
}

/*Active dropdown nav item */
.main-nav ul li:hover > a {
  color: #09C;
}

/* Selected Dropdown nav item */
.main-nav ul li.selected > a {
  background-color: #fff;
  color: #09C;
}

/* Dropdown CSS */
.main-nav ul li {
  position: relative;
}

.main-nav ul li ul {
  position: absolute;
  background-color: #1F8DD6;
  min-width: 100%;
  text-align: left;
  z-index: 999;
  display: none;
}

.main-nav ul li ul li {
  display: block;
}

/* Dropdown CSS */
.main-nav ul li ul ul {
  left: 100%;
  top: 0;
}

/* Active on Hover */
.main-nav li:hover > ul {
  display: block;
}

/* Child Indicator */
.main-nav .has-children > a {
  padding-right: 30px;
}

.main-nav .has-children > a:after {
  font-family: FontAwesome;
  content: "\f107";
  position: absolute;
  display: inline-block;
  right: 8px;
  top: 0;
}

.main-nav .has-children .has-children > a:after {
  content: "\f105";
}

section#body {
  padding: 3.5rem 0 2.75rem;
}

body.home img {
  display: block;
  width: 100%;
}
body.section .project {
  display: flex;
  justify-content: flex-start;
  height: 14vh;
  margin: 1rem 0;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
body.section .project::-webkit-scrollbar {
  display: none;
}
body.section .project .project-image {
  height: 100%;
  margin-right: 0.75rem;
  flex: 0 1 auto;
}
body.section .project .project-image img {
  height: 100%;
  max-height: 100%;
  width: auto;
}
body.section .project h1 {
  font-size: 1.25rem;
  font-weight: normal;
  margin: 0;
}
body.section .project p {
  margin: 0;
  color: #666;
}
body.about .about-content {
  margin-top: 2rem;
  display: flex;
}
body.about .about-content .about-image {
  max-width: 50%;
  margin-right: 2rem;
}
body.about .about-content .about-image img {
  width: 100%;
}
body.about .about-content .about-text p {
  margin-top: 0;
}

.mobile-menu {
  display: none;
}

.mobile-menu .button_container {
  position: absolute;
  top: 1.5rem;
  right: 1rem;
  height: 2rem;
  width: 2.5rem;
  cursor: pointer;
  z-index: 100;
  transition: opacity 0.25s ease, top 0.5s ease;
}

.mobile-menu .button_container:hover {
  opacity: 0.7;
}

.mobile-menu .button_container.active {
  position: fixed;
}

.mobile-menu .button_container.active .top {
  transform: translateY(1rem) translateX(0) rotate(45deg);
  background: black;
}

.mobile-menu .button_container.active .middle {
  opacity: 0;
  background: black;
}

.mobile-menu .button_container.active .bottom {
  transform: translateY(-1rem) translateX(0) rotate(-45deg);
  background: black;
}

.mobile-menu .button_container span {
  background: black;
  border: none;
  height: 2px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.35s ease;
  cursor: pointer;
}

.mobile-menu .button_container span:nth-of-type(2) {
  top: 1rem;
}

.mobile-menu .button_container span:nth-of-type(3) {
  top: 2rem;
}

.featherlight {
  background: rgba(235, 235, 235, 0.85) !important;
}
.featherlight .featherlight-close-icon {
  position: fixed;
  top: 2rem;
  right: 2rem;
  color: #666;
  font-size: 2rem;
  background: transparent;
}

.featherlight-next:hover,
.featherlight-previous:hover {
  background: transparent;
}
.featherlight-next:hover span,
.featherlight-previous:hover span {
  display: none;
}

.featherlight-next {
  cursor: e-resize;
  left: 60%;
}

.featherlight-previous {
  cursor: w-resize;
  right: 60%;
}

@media only screen and (max-device-width: 1024px) {
  .featherlight-next span, .featherlight-previous span {
    display: none;
  }
}
@media screen and (max-width: 48em), (orientation: portrait) {
  html {
    font-size: 87.5%;
    font-size: clamp(0.75rem, 3.5vw, 1.5rem);
  }
  .header .wrapper {
    display: block;
  }
  .header .logo {
    display: flex;
    flex-direction: column;
  }
  .mobile-menu {
    display: block;
  }
  .main-nav {
    display: none;
  }
  .mobile-nav-open .main-nav {
    display: block;
  }
  .main-nav {
    font-size: 1.75rem;
  }
  .main-nav ul {
    display: flex;
    flex-direction: column;
    text-align: right;
    padding: 1.5rem 0;
  }
  .main-nav ul li a {
    padding: 0.25rem 0.5rem;
  }
  .main-nav ul li:last-of-type a {
    padding: 1.5rem 0.5rem 0.25rem;
  }
  body.home section#body {
    height: 100vh;
  }
  body.home section#body .wrapper {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
  }
  body.section .project {
    height: 16vh;
  }
  body.about .about-content {
    flex-direction: column;
  }
  body.about .about-content .about-image {
    max-width: none;
    margin: 0;
  }
  body section#body {
    padding: 5.5rem 0 3.75rem;
  }
  .footer {
    display: none;
  }
}/*# sourceMappingURL=custom.css.map */