/*CSS Reset*/
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,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* 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: none;
}

blockquote,
q {
  quotes: none;
}

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

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

* {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font: inherit;
}

/******************************
		Base Properties
*******************************/
html {
  /* Fluid typography scaling over responsive*/
  /* Max root size = 16px, min root size = 14px*/
  /* Max viewport width = 1600px, min width = 320px*/
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1600 - 320)));
}

body {
  /*Overscroll-behavior eliminates scroll bounce*/
  /*overscroll-behavior: none;*/
  background: #091529;
  margin: 0;
  overflow: hidden;
  transition: 1s ease;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.5s ease;
  font: inherit;
  text-align: center;
  line-height: 1.4em;
}

a:hover {
  color: #cfdaf7 !important;
}

a:visited {
  color: inherit;
}

.page {
  width: 100%;
  min-height: 100vh;
  background: #091529;
  font-family: "Roboto", sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: #cfdaf7;
  position: relative;
}

.container {
  /*Max-width so that container doesn't stretch too much*/
  /*And to set set margin auto for centering horizontally*/
  max-width: 850px;
  width: 86%;
  margin: auto;
  min-height: 100vh;
  /*Flex box to vertically center text div*/
  /*And left align the content*/
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  /*Parent font size = 2.5 * 16 (root) = 40px*/
  font-size: 2.5rem;
}
.container > h2 {
  width: 100%;
  margin-top: 0.25em;
  margin-bottom: 1.5em;
  font-size: 0.75em;
  font-weight: 500;
}

.contentContainer {
  position: relative;
  width: 100%;
  min-height: 400px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid #112c4c;
}
.contentContainer p {
  margin-bottom: 20px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
  line-height: 150%;
  font-size: 0.46em;
  color: #929ec4;
  text-align: justify;
}

.leftColumn {
  width: 60%;
  max-width: 480px;
}

.highlight {
  color: #64ffda;
}

.image {
  width: 200px;
  margin-top: 0px;
  margin-left: 50px;
  height: 250px;
  border: 1px solid #64ffda;
}
.image img {
  width: 100%;
}

li,
p {
  letter-spacing: 0.2px;
}

.activeLink {
  color: #ffffff;
}

/******************************
		Load Screen
*******************************/
.loader {
  position: fixed;
  height: 100vh;
  width: 100%;
  z-index: 100;
  top: 0;
  left: 0;
  background: #051020;
  display: flex;
  justify-content: center;
  align-items: center;
}

#loader-percent {
  font-family: "Roboto Mono", monospace;
  font-size: 2em;
  color: #64ffda;
}

/******************************
			Header
*******************************/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  padding: 0 60px;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 300;
  background: #091529;
  transition: 0.5s ease;
}

header > nav {
  display: flex;
  /*Main axis*/
  justify-content: space-between;
  /*Align items acts on the cross axis*/
  align-items: center;
  width: 100%;
}

#logo {
  /*height: 35px;*/
  /*Left Margin = a padding + right margin*/
  margin-left: 25px;
}
#logo svg {
  stroke: #00dccf;
  transition: 1s ease;
}
#logo svg :hover {
  stroke: #ffffff;
}

.navLinks a {
  padding: 10px;
  margin: 10px;
  color: #47cff9;
}

#navIcon {
  width: 25px;
  padding: 3px;
  background: #ffffff;
  border-radius: 4px;
  display: none;
}

#closeNav {
  position: absolute;
  left: 20px;
  top: 20px;
  display: none;
  font-size: 1.4em;
  color: #ffffff;
}

.hideHeader {
  top: -100px;
}

.shadowHeader {
  box-shadow: 0px -4px 14px -1px rgba(0, 0, 0, 0.6);
}

/******************************
			Banner
*******************************/
#Home .container {
  max-width: 950px;
}

.bannerContent {
  position: relative;
  z-index: 6;
  align-self: flex-start;
}
.bannerContent h1,
.bannerContent h2,
.bannerContent h3,
.bannerContent h6 {
  text-align: left;
  margin: 0;
}
.bannerContent h6,
.bannerContent h3 {
  color: #64ffda;
  font-family: "Roboto Mono", monospace;
  font-size: 0.46em;
  font-weight: 200;
}
.bannerContent h6 {
  margin: 0;
}
.bannerContent h1 {
  font-family: "Roboto", sans-serif;
  font-size: 1.75em;
  font-weight: 500;
  margin-top: 0.48em;
  color: #ccd6f6;
  margin-left: -2px;
}
.bannerContent h2 {
  font-size: 1.3em;
  line-height: 130%;
  margin-top: 0.4em;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: #929ec4;
}
.bannerContent p {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
  line-height: 165%;
  font-size: 0.46em;
  max-width: 480px;
  text-align: left;
  color: #929ec4;
  margin-top: 2.4em;
}
.bannerContent .button {
  margin-top: 2.8em;
}

.links {
  margin-top: 0.9em;
  display: flex;
  align-items: center;
}
.links a {
  line-height: 0;
  margin-right: 0.2em;
  width: 0.73em;
  height: 0.73em;
  background: #929ec4;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.links a:hover {
  background: #64ffda;
}
.links i {
  font-size: 0.47em;
  color: #091529;
  position: relative;
  top: 1px;
}
.links .githubLink {
  background: none;
}
.links .githubLink:hover {
  background: none;
}
.links .fa-github {
  font-size: 0.79em;
  color: #929ec4;
  transition: 0.5s ease;
}
.links .fa-github:hover {
  color: #64ffda;
}

.fa-chevron-down {
  position: absolute;
  bottom: 14vh;
  font-size: 0.8em;
  color: #64ffda;
}

/******************************
			About
*******************************/
#About ul {
  width: 80%;
  margin-top: 10px;
  font-size: 0.35em;
  color: #929ec4;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-family: "Roboto Mono", monospace;
}
#About ul li {
  position: relative;
  margin: 5px;
  padding-left: 1.1em;
  line-height: 1.5em;
}
#About ul li:before {
  content: "> ";
  color: #64ffda;
  position: absolute;
  left: 0;
  top: 0;
}
#About h4 {
  font-size: 0.48em;
  font-weight: 300;
}
#About .contentContainer {
  padding-bottom: 0.5em;
}

/******************************
		Experiences
*******************************/
#Experience .container {
  max-width: 770px;
}

.fix-collapse:after {
  position: relative;
  content: "";
  padding-right: 1px;
}

.disable-scrollbars {
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
.disable-scrollbars::-webkit-scrollbar {
  width: 0px;
  height: 0;
  background: transparent;
  /* Chrome/Safari/Webkit */
}

.expMenu {
  width: 100%;
  display: flex;
  align-items: center;
  justify-items: center;
  position: relative;
  border-bottom: 1px solid #112c4c;
}

.expNavButton {
  height: 100%;
  padding: 0 0.2em;
  color: #163a66;
  font-weight: 300;
  font-size: 0.85em;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.experiences {
  background: rgba(0, 0, 0, 0.15);
  flex-direction: column;
  justify-content: flex-start;
  border: 1px solid #112c4c;
  box-shadow: 0px 0px 7px 1px rgba(0, 0, 0, 0.25);
}
.experiences nav {
  flex: 1;
  color: #47cff9;
  display: flex;
  align-items: center;
  overflow-x: scroll;
  overflow-y: hidden;
  position: relative;
  border-left: 1px solid #112c4c;
  border-right: 1px solid #112c4c;
}
.experiences nav a {
  font-size: 0.47em;
  position: relative;
  padding: 15px 10px;
  font-weight: 400;
  margin-left: 1.3em;
  margin-right: 1.3em;
  white-space: nowrap;
}
.experiences .experience {
  width: 100%;
  height: 100%;
  flex-grow: 1;
  display: flex;
  align-items: center;
  overflow-y: hidden;
  overflow-x: hidden;
}
.experiences .description {
  min-width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 40px 50px;
}
.experiences h3 {
  font-size: 0.48em;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 140%;
  color: #cfdaf7;
}
.experiences h5 {
  margin-top: 0.7em;
  font-family: "Roboto Mono", monospace;
  font-size: 0.37em;
  font-weight: 200;
  color: #a8b2d1;
}
.experiences ul {
  font-size: 0.42em;
  color: #929ec4;
  line-height: 150%;
  margin-top: 15px;
  font-family: "Source Sans Pro", sans-serif;
}
.experiences ul li {
  position: relative;
  margin-bottom: 7px;
  padding-left: 0.8em;
  line-height: 1.75em;
}
.experiences ul li:before {
  content: "> ";
  color: #64ffda;
  position: absolute;
  left: 0;
  top: 0;
}
.experiences .image {
  border: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 200px;
}

.activeExperience {
  color: #64ffda;
}

.activeExperience:after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #64ffda;
}

/******************************
			Projects
*******************************/
#Projects .container {
  min-height: 100vh;
  padding: 40px 0;
}
#Projects .container > p {
  margin-top: 2.2em;
  font-size: 0.5em;
  color: #929ec4;
  font-family: "Source Sans Pro", sans-serif;
  text-align: center;
  line-height: 1.4em;
}
#Projects .container > p > a {
  color: #64ffda;
  text-decoration: underline;
}
#Projects .container > p > a:hover {
  color: #cfdaf7;
}
#Projects .contentContainer {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  position: relative;
  grid-gap: 30px 30px;
  border: 0;
}
#Projects a {
  line-height: 0;
}

.project {
  position: relative;
  border: 1px solid #112c4c;
  transition: 1s;
  width: 100%;
  height: 325px;
  min-height: 200px;
  max-width: 370px;
  margin: auto;
  padding: 37px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 7px 1px rgba(0, 0, 0, 0.25);
}
.project h3 {
  font-size: 0.52em;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: #64ffda;
}
.project ul {
  max-width: 80%;
  margin-top: 0.4em;
  display: flex;
  font-size: 0.35em;
  color: #64ffda;
}
.project ul li {
  margin-right: 1em;
  white-space: nowrap;
}
.project p {
  font-size: 0.44em;
  line-height: 1.65em;
  margin-top: 1.7em;
  text-align: left;
}
.project > div {
  width: 100%;
}
.project .hidden-link {
  visibility: hidden;
}

.projectTech {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.projectTech ul {
  font-size: 0.35em;
  font-family: "Roboto Mono", monospace;
}
.projectTech .fa-github {
  font-size: 0.75em;
  color: #a8b2d1;
  transition: 0.5s ease;
}
.projectTech .fa-github:hover {
  color: #64ffda;
}

/******************************
			Contact
*******************************/
#Contact .bannerContent {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: center;
  top: -30px;
}
#Contact .bannerContent .button {
  margin-top: 3em;
}
#Contact h2 {
  text-align: center;
  font-size: 0.73em;
  color: #cfdaf7;
}
#Contact p {
  text-align: center;
  margin-top: 1.6em;
  line-height: 165%;
  font-size: 0.45em;
}
#Contact .links {
  margin-top: 1em;
}
#Contact .links a {
  margin: 0 0.2em;
  width: 0.8em;
  height: 0.8em;
  background: #47cff9;
}
#Contact .links a:hover {
  background: #64ffda;
}
#Contact .links i {
  font-size: 0.55em;
  position: relative;
  top: 1px;
}
#Contact .links .fa-github {
  font-size: 0.88em;
  color: #47cff9;
}
#Contact .links .fa-github:hover {
  color: #64ffda;
}
#Contact .links .githubLink {
  background: none;
}
#Contact .links .githubLink:hover {
  background: none;
}

.button {
  display: inline-block;
  padding: 0.7em 1.3em !important;
  font-family: "Roboto Mono", monospace;
  font-size: 0.4em;
  font-weight: 300;
  border: 1px solid #64ffda;
  border-radius: 4px;
  color: #64ffda !important;
  margin-top: 3em;
}

.resume {
  font: inherit;
  font-size: 0.9em;
}

/******************************
			Footer
*******************************/
footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  min-height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #111111;
  padding: 15px;
}
footer .personal {
  font-family: "Roboto Mono", monospace;
  font-weight: 300;
  color: #757e98;
}
footer a {
  font-family: "Roboto Mono", monospace;
  margin-top: 6px;
  color: #757e98 !important;
  font-weight: 300;
  text-decoration: underline;
}

@media screen and (max-width: 840px) {
  .navLinks {
    position: fixed;
    width: 200px;
    height: 100vh;
    right: -200px;
    top: 0px;
    background: #091529;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    transition: 0.5s ease;
    padding-top: 50px;
    z-index: 15;
    border-left: 1px solid #112c4c;
    box-shadow: 0px 0px 7px 1px rgba(0, 0, 0, 0.25);
  }

  #navIcon {
    display: block;
  }

  #closeNav {
    display: inline-block;
  }

  .image,
.experiences .image {
    display: none;
  }

  .leftColumn {
    width: 100%;
    max-width: none;
  }

  .description {
    padding: 17px;
  }
}
@media screen and (max-width: 620px) {
  header {
    padding: 0 25px;
    height: 60px;
  }

  #logo {
    margin: 0;
  }

  .page {
    font-weight: 300;
    min-height: calc(100vh - 30px);
  }

  .container {
    min-height: calc(100vh - 30px);
  }

  .bannerContent h1 {
    font-size: 1.25em;
  }
  .bannerContent h2 {
    font-size: 1.1em;
  }

  .experiences .description {
    padding: 10% 8%;
  }

  .project {
    height: 250px;
  }
  .project p {
    padding-right: 30px;
  }
  .project .projectTech ul {
    font-size: 0.39em;
  }

  .mobile-remove-project {
    display: none;
  }
}
@media screen and (max-width: 360px) {
  .container {
    margin: 50px auto;
  }

  .bannerContent h1 {
    font-size: 1.1em;
  }
}

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