@import "https://fonts.googleapis.com/css?family=Arimo:400,400italic,700,700italic";
:root {
  --main-bg-color: black;
  --secondary-bg: rgba(30, 30, 30);
  --landing-bg: rgb(20, 20, 20);
  --about-bg: rgba(25, 25, 25);
  --btm-bg: rgba(210, 210, 210);
}

/* Mobile only */
.nav-bottom,
.contact-container,
.about-container .about-image img,
.about-container,
.grid-container,
.header-container,
.nav-right.visible-xs .active .bar,
.nav-right .bar,
.nav-right,
.button,
.sidebar .media-icons .media-section .media-icon:hover,
.sidebar .media-icons .media-section .media-icon,
.sidebar {
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

:root {
  --sidebar-size: 30vw;
  --sidebar-translation: -30vw;
}

* ::selection {
  background: #16ffa6; /* WebKit/Blink Browsers */
}

* ::-moz-selection {
  background: #16ffa6; /* WebKit/Blink Browsers */
}

#loading-screen{
  position: relative;
  /* inset: 0; */
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: large;
  flex-direction: column;
  overflow-y: hidden !important;
  background: var(--secondary-bg); 
  z-index: 100;
  color: rgba(255, 255, 255, 0.5);
}


.lds-circle {
  display: inline-block;
  transform: translateZ(1px);
}
.lds-circle > div {
  display: inline-block;
  width: 64px;
  height: 64px;
  margin: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  animation: lds-circle 2.4s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
@keyframes lds-circle {
  0%, 100% {
    animation-timing-function: cubic-bezier(0.5, 0, 1, 0.5);
  }
  0% {
    transform: rotateY(0deg);
  }
  50% {
    transform: rotateY(1800deg);
    animation-timing-function: cubic-bezier(0, 0.5, 0.5, 1);
  }
  100% {
    transform: rotateY(3600deg);
  }
}


body {
  height: 100%;
  margin: 0;
  height: 100%;
  padding: 0;
  margin: 0;
  font-family: "Arimo", sans-serif;
  background-color: black;
  background-color: var(--main-bg-color) !important;
  overflow: hidden; /* on page load*/
}

html {
  height: 100%;
  margin: 0;
  height: 100%;
  padding: 0;
  margin: 0;
  font-family: "Arimo", sans-serif;
  overflow-x: hidden;
  background-color: var(--main-bg-color) !important;
}


.center {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

main {
  position: absolute;
  top: 0px;
  right: 0;
}

.page-container {
  display: none;
  width: 100vw;
}

.sidebar-border {
  box-shadow: black 0px 1px 2px 0px, black 0px 1px 3px 1px;
}

.sidebar {
  height: 100%;
  width: var(--sidebar-size);
  position: fixed;
  top: 0;
  display: block;
  z-index: 1;
  right: var(--sidebar-translation);
  background-color: #1f1f1f;
}
.sidebar .sidebar-list {
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
  margin-top: 150px;
  text-align: center;
}
.sidebar .sidebar-list .sidebar-item {
  margin: 30px 0;
}
.sidebar .sidebar-list .sidebar-item a {
  color: white;
}
.sidebar .media-icons {
  position: absolute;
  width: 100%;
  bottom: 0;
  top: 90vh;
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto;
}
.sidebar .media-icons .media-section {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sidebar .media-icons .media-section .media-icon {
  width: 50px;
  height: 50px;
  background-size: contain;
  background-color: var(--main-bg-color);
  background-repeat: no-repeat;
  border-radius: 50%;
}
.sidebar .media-icons .media-section .media-icon a {
  width: 100%;
  height: 100%;
}
.sidebar .media-icons .media-section .media-icon:hover {
  cursor: pointer;
  transform: scale(1.1);
}

.button {
  width: 10vw;
  height: 10vw;
  max-width: 10vh;
  max-height: 10vh;
  right: 50px;
  cursor: pointer;
  display: inline-block;
  margin: 0 auto;
}

.nav-right {
  position: fixed;
  z-index: 2;
  right: 40px;
  top: 20px;
}
.nav-right .bar {
  display: block;
  height: 5px;
  width: 50px;
  background-color: whitesmoke;
  margin: 10px auto;
}
.nav-right .white-nav {
  background: whitesmoke;
}
.nav-right .nav-active {
  background: whitesmoke;
}

.nav-right.visible-xs {
  z-index: 3;
}
.nav-right.visible-xs .active .bar {
  background-color: whitesmoke;
}

.hidden-xs {
  display: none;
}

.hidden-lg {
  display: block
}

.middle {
  margin: 0 auto;
}

.button.active .top {
  -webkit-transform: translateY(15px) rotateZ(45deg);
  -moz-transform: translateY(15px) rotateZ(45deg);
  -ms-transform: translateY(15px) rotateZ(45deg);
  -o-transform: translateY(15px) rotateZ(45deg);
  transform: translateY(15px) rotateZ(45deg);
}
.button.active .bottom {
  -webkit-transform: translateY(-15px) rotateZ(-45deg);
  -moz-transform: translateY(-15px) rotateZ(-45deg);
  -ms-transform: translateY(-15px) rotateZ(-45deg);
  -o-transform: translateY(-15px) rotateZ(-45deg);
  transform: translateY(-15px) rotateZ(-45deg);
}
.button.active .middle {
  width: 0;
}

.move-to-left {
  -webkit-transform: translateX(var(--sidebar-translation));
  -moz-transform: translateX(var(--sidebar-sitranslationze));
  -ms-transform: translateX(var(--sidebar-translation));
  -o-transform: translateX(var(--sidebar-translation));
  transform: translateX(var(--sidebar-translation));
}

nav {
  padding-top: 30px;
}

.sidebar-item.active {
  opacity: 1;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
}

.sidebar-anchor {
  color: white;
  text-decoration: none;
  font-size: 1.8em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 7px;
}
.sidebar-anchor:before {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--main-bg-color);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.sidebar-anchor:hover:before {
  width: 100%;
}

.header-container {
  position: relative;
  height: 100vh;
  width: 100vw;
  background: var(--landing-bg);
}
.header-container .header-title {
  position: absolute;
  width: auto;
  height: auto;
  color: whitesmoke;
  margin: 0;
  top: 10vh;
  left: 10vw;
  font-size: 20vh;
}
.header-container #sketch {
  width: 100%;
  height: 100%;
  z-index: -1;
}
.header-container .arrow-container {
  width: 100vw;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header-container .arrow-container .arrow-down {
  position: relative;
  border: solid white;
  border-width: 0 3px 3px 0;
  bottom: 10vh;
  display: inline-block;
  padding: 1rem;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -webkit-transition: all 0.25s 0s ease;
  -moz-transition: all 0.25s 0s ease;
  -o-transition: all 0.25s 0s ease;
  transition: all 0.25s 0s ease;
}

.move-down {
  opacity: 0;
}

.seperator-top {
  position: relative;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 10vh 100vw;
  border-color: transparent transparent var(--secondary-bg) transparent;
  background: var(--landing-bg);
}

.selection-bar{
  width: 80%;
  display: grid;
  grid-template-columns: 50% 50%;
  grid-template-rows: auto auto;
  justify-content: center;
  align-items: center;
  grid-gap: 20px;
}

.hidden{
  display: none !important;
}

.topic{
  position: relative;
  width: 100%;
  cursor: pointer;
  transition-duration: 0.15s;
}

.active-topic::before, .topic::before{
  content: "";
  position: absolute;
  bottom: 0px;
  left: 20%;
  right: 80%;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  transition-duration: 0.15s;
}

.active-topic::before, .topic:hover::before{
  right: 20%;
  transition-duration: 0.15s;
}

.active-topic::before{
  border-color: white;
}

.topic h2{
  color: whitesmoke;
}

.seperator-bottom {
  position: relative;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10vh 0 0 100vw;
  border-color: var(--secondary-bg) transparent transparent transparent;
  background: var(--about-bg);
  padding: 0;
  margin: 0;
}

#after {
  background: var(--about-bg) !important;
}

.indicator {
  position: absolute;
  color: rgba(255, 255, 255, 1);
  bottom: 20vh;
  left: 100px;
  transform: rotateZ(25deg);
  opacity: 0.5;
}

.grid-container {
  width: 100vw !important;
  height: auto;
  background: var(--secondary-bg);
  text-align: center;
  margin: 0 auto;
  padding-bottom: 0;
}
.grid-container h1 {
  color: whitesmoke;
  width: 100vw;
  text-align: center;
}

.project-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: whitesmoke;
  padding: 30px 0;
}

.project-grid {
  width: 80%;
  display: grid;
  grid-template-columns: 50% 50%;
  grid-template-rows: auto auto;
  justify-content: center;
  align-items: center;
  grid-gap: 20px;
}

.project-item {
  width: 100%;
  height: 90%;
  display: flex;
  align-items: center;
  flex-direction: column;
  border-radius: 10px;
  padding: 20px 0px;
  text-decoration: none;
  color: whitesmoke;
  box-shadow: rgba(27, 31, 35, 0.04) 0px 1px 0px, rgba(255, 255, 255, 0.25) 0px 1px 0px;
  background: rgba(100, 100, 100, 0.15);
  transition-duration: 0.25s;
}

.project-item:hover {
  cursor: pointer;
  transform: scale(1.025);
  transition-duration: 0.25s;
}

.project-title {
  padding-bottom: 20px;
  width: auto;
  max-width: calc(100% - 120px);
}

.project-title h1 {
  width: auto;
  font-size: 3rem;
  border-bottom: 2px solid whitesmoke;
  padding: 0 0 2px 0;
}

.link{
  color: whitesmoke; 
  text-decoration-color: cyan
}

.project-image {
  width: 170px;
  height: 170px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 50%;
  opacity: 0.9;
}

.project-description {
  width: 100%;
  max-width: 700px;
}

.project-description p {
  font-size: 1.25rem;
}

.project-description h2 {
  font-size: 1.45rem;
  font-weight: normal;
}

.about-container {
  height: auto;
  background: var(--about-bg);
  padding: 0;
  display: grid;
  grid-template-columns: 50% 50%;
  grid-template-rows: auto;
}
.about-container .about-image {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: rgba(250, 250, 250, 0.05) 1.95px 1.95px 2.6px;
}
.about-container .about-image img {
  width: 60%;
  border-radius: 50%;
  object-fit: contain;
  transform: scale(0.9);
  opacity: 0.9;
  color: white;
  box-shadow: 20px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
}

/* .about-container .about-image img:hover {
  border-radius: 0% 0% 50% 50% / 0% 0% 5% 5%;
  box-shadow: 10px 10px rgba(0, 0, 0, 0.25);
} */

.about-container .about-text-container {
  display: flex;
  justify-content: center;
}
.about-container .about-text-container .about-text {
  width: 90%;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: whitesmoke;
}
.about-container .about-text-container .about-text h1 {
  padding: 0;
  border-bottom: 3px solid whitesmoke;
}
.about-container .about-text-container .about-text p {
  font-size: 1.4rem;
}

h1 {
  text-align: center;
  font-weight: normal;
  padding: 20px 0;
  margin: 0;
  font-size: 5rem;
}

.contact-container {
  height: auto;
  background: var(--secondary-bg);
}
.contact-container .contact-text {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  color: whitesmoke;
  text-align: center;
}
.contact-container .contact-text p {
  width: 80%;
  font-size: 1.4rem;
}
.contact-container .contact-text p a {
  color: whitesmoke;
}
.contact-container .contact-seperator {
  border-width: 0 0 7vh 100vw !important;
  border-color: transparent transparent var(--secondary-bg) transparent !important;
  background: var(--main-bg-color) !important;
}

.nav-bottom {
  height: auto;
  text-align: center;
  padding: 0 0 10px 0;
  background: var(--btm-bg);
  font-size: 1.05rem;
  color: black;
}
.nav-bottom .row {
  background: var(--secondary-bg);
  margin: 0;
}
.nav-bottom .mountains {
  fill: var(--btm-bg);
  padding: 0;
  margin: 0;
}
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #555;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
}

/* Tooltip arrow */
.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

#mobile-indicator {
  display: none;
}

.typewriter {
  display: none;
  background: rgb(90,232,255);
  background: -moz-linear-gradient(90deg, rgba(90,232,255,1) 0%, rgba(96,162,250,1) 19%, rgba(85,100,255,1) 36%, rgba(115,15,255,1) 55%, rgba(170,78,255,1) 69%, rgba(204,108,255,1) 81%, rgba(230,183,255,1) 98%);
  background: -webkit-linear-gradient(90deg, rgba(90,232,255,1) 0%, rgba(96,162,250,1) 19%, rgba(85,100,255,1) 36%, rgba(115,15,255,1) 55%, rgba(170,78,255,1) 69%, rgba(204,108,255,1) 81%, rgba(230,183,255,1) 98%);
  background: linear-gradient(90deg, rgba(90,232,255,1) 0%, rgba(96,162,250,1) 19%, rgba(85,100,255,1) 36%, rgba(115,15,255,1) 55%, rgba(170,78,255,1) 69%, rgba(204,108,255,1) 81%, rgba(230,183,255,1) 98%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#5ae8ff",endColorstr="#e6b7ff",GradientType=1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  
}

.gradient{
  /* background: rgb(90,163,255);
  background: linear-gradient(90deg, rgba(90,163,255,1) 0%, rgba(85,100,255,1) 14%, rgba(115,15,255,1) 35%, rgba(170,78,255,1) 66%, rgba(204,108,255,1) 99%);
  background-clip: text;
  -webkit-background-clip: text;
  color: rgba(0,0,0,.02); 
  text-decoration-color: whitesmoke; */
}

.gradient-long{
  /* background: -moz-radial-gradient(circle, rgba(90,163,255,1) 0%, rgba(85,100,255,1) 14%, rgba(115,15,255,1) 35%, rgba(170,78,255,1) 66%, rgba(204,108,255,1) 99%);
  background: -webkit-radial-gradient(circle, rgba(90,163,255,1) 0%, rgba(85,100,255,1) 14%, rgba(115,15,255,1) 35%, rgba(170,78,255,1) 66%, rgba(204,108,255,1) 99%);
  background: radial-gradient(circle, rgba(90,163,255,1) 0%, rgba(85,100,255,1) 14%, rgba(115,15,255,1) 35%, rgba(170,78,255,1) 66%, rgba(204,108,255,1) 99%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#5aa3ff",endColorstr="#cc6cff",GradientType=1);
   background-clip: text;
  -webkit-background-clip: text;
  color: rgba(0,0,0,.02); 
  word-wrap: break-word !important;
  white-space: initial !important; */
  
}
@media (min-width: 480px) {
  .nav-list {
    display: block;
  }
  #sketch {
    display: block;
  }
  .typewriter {
    display: none;
  }
  .responsive-typing {
    padding: 0 !important;
  }
  .project-description {
    width: 60% !important;
  }
}
@media screen and (max-width: 767px) {
  .indicator {
    display: none;
  }
  .project-grid {
    display: grid;
    grid-template-columns: auto;
  }
  .project-item {
  }
  .header-container {
    position: relative !important;
    width: 100vw !important;
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: 30% 35% 30%;
    margin: 0 !important;
  }
  .header-title {
    position: relative !important;
    margin: 0 !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
  }
  .arrow-container {
    position: relative !important;
    height: auto !important;
    width: 100vw;
  }
  #sketch {
    display: none;
  }
  .typewriter {
    display: block;
    position: relative;
    margin: 0 !important;
    max-width: 100vw;
  }
  #mobile-indicator {
    display: block !important;
  }

  :root {
    --sidebar-size: 100vw !important;
    --sidebar-translation: -100vw !important;
  }

  .sidebar {
    width: 100vw !important;
    right: -100vw !important;
  }

  .header-title {
    font-size: 4.5rem !important;
    margin-top: 20vh !important;
  }

  .responsive-typing {
    width: 98vw !important;
    font-size: 4rem !important;
    padding-top: 8vh;
  }

  .cols {
    grid-template-columns: auto;
    grid-template-rows: auto;
    grid-gap: 0;
    top: 0;
  }

  .grid-item {
    width: 80vw;
    height: 30vh;
  }

  .about-container {
    grid-template-columns: auto;
  }

  h1 {
    font-size: 4rem;
  }

  .back .inner p {
    font-size: 1.25rem !important;
  }

  .hidden-xs {
    display: block;
  }

  .hidden-lg {
    display: none
  }

  .visible-xs {
    display: none;
  }

  .arrow-down {
    position: relative !important;
    display: block !important;
    bottom: 0vh !important;
  }

  .project-item {
    box-shadow: rgba(27, 31, 35, 0.04) 0px 1px 0px, rgba(255, 255, 255, 0.25) 0px 1px 0px;
    background: none;
    height: auto !important;
  }

  #gallery {
    box-shadow: none !important;
  }
}

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