/* Variable Declarations */
/* Body Setup & Noscroll */
* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Montserrat", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #FFFFFF;
  background: #222629;
  counter-reset: h1;
}
body.noscroll {
  height: 100vh;
  overflow: hidden;
}

#content {
  margin: 0 200px;
}
@media only screen and (max-width: 960px) {
  #content {
    margin: 0 150px;
  }
}
@media only screen and (max-width: 800px) {
  #content {
    margin: 0 100px;
  }
}
@media only screen and (max-width: 700px) {
  #content {
    margin: 0 50px;
  }
}
@media only screen and (max-width: 480px) {
  #content {
    margin: 0 25px;
  }
}

/* Generalized Elements */
p {
  font-size: 100%;
  line-height: 1.75em;
  font-weight: 500;
  color: #C5C5C5;
}
@media only screen and (max-width: 640px) {
  p {
    font-size: 87.5%;
  }
}
@media only screen and (max-width: 480px) {
  p {
    font-size: 75%;
  }
}

h1 {
  width: 100%;
  margin-bottom: 60px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 640px) {
  h1 {
    font-size: 18px;
  }
}
h1::before {
  counter-increment: h1;
  content: counter(h1) ".";
  font-size: 18px;
  font-weight: 700;
  color: #56AEFF;
  letter-spacing: 0.1em;
  text-align: right;
  margin-right: 20px;
}
h1::after {
  content: "";
  display: inline-block;
  width: 90%;
  height: 2px;
  background: #474B4F;
  margin-left: 20px;
}

h2 {
  margin-bottom: 60px;
  font-size: 18px;
  font-weight: 700;
  color: #56AEFF;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
}
h2::before {
  counter-increment: h1;
  content: counter(h1) ".";
  text-align: right;
  margin-right: 20px;
}

.button {
  display: inline-block;
  padding: 12px 16px;
  border: #56AEFF 4px solid;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
  color: #56AEFF;
  letter-spacing: 0.15em;
  transition: border 0.2s, padding 0.2s, background 0.2s;
  cursor: pointer;
}
.button:hover {
  border: #56AEFF 2px solid;
  padding: 14px 18px;
  background: rgba(47, 94, 137, 0.2);
}
@media only screen and (max-width: 480px) {
  .button {
    font-size: 12px;
  }
}

a.link {
  display: inline-block;
  text-decoration: none;
  color: #56AEFF;
}
a.link::after {
  content: "";
  display: block;
  width: 0px;
  height: 1.5px;
  position: relative;
  bottom: 0.25em;
  background-color: #56AEFF;
  opacity: 0.5;
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
}
a.link:hover::after {
  width: 100%;
}

ul.list {
  display: inline-block;
  list-style: none;
  margin: 0;
  padding-left: 30px;
}
ul.list li {
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
  color: #C5C5C5;
  margin-bottom: 10px;
}
ul.list li:before {
  display: inline-block;
  margin-left: -6px;
  right: 24px;
  position: relative;
  margin-bottom: 2px;
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background-color: #56AEFF;
}
@media only screen and (max-width: 480px) {
  ul.list li {
    font-size: 12px;
  }
}

/* Reusable Components */
.fadein {
  position: relative;
  top: 30px;
  opacity: 0;
  transition: top 0.5s, bottom 0.5s, opacity 0.5s;
}
.fadein.top {
  top: unset;
  bottom: 30px;
}
.fadein.top.fade {
  top: unset;
  bottom: 0;
}
.fadein.fade {
  top: 0;
  opacity: 1;
}

/* Preloader */
#preloader {
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 200;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #222629;
}
#preloader .logo .box {
  position: absolute;
  box-sizing: border-box;
  height: 112px;
  width: 112px;
  border: #56AEFF 8px solid;
  border-radius: 24px;
  transform: rotate(-10deg);
  transition: border 0.2s, background 0.2s, transform 0.2s;
  opacity: 0;
}
#preloader .logo .initials {
  position: relative;
  left: 0.075em;
  height: 112px;
  width: 112px;
  text-align: center;
  line-height: 112px;
  vertical-align: middle;
  font-size: 36px;
  font-weight: 800;
  color: #56AEFF;
  letter-spacing: 0.15em;
  opacity: 0;
}
#preloader.finished {
  opacity: 0;
  pointer-events: none;
  animation: preload-finish ease 3s;
}
#preloader.finished .logo .box {
  opacity: 1;
  animation: preload-box ease 1s;
}
#preloader.finished .logo .initials {
  opacity: 1;
  animation: preload-initials ease 1s;
}

@keyframes preload-finish {
  0% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes preload-box {
  0% {
    transform: scaleX(0) scaleY(0) rotate(0deg);
    opacity: 0;
    border-radius: 12px;
    border-width: 4px;
  }
  50% {
    transform: scaleX(1) scaleY(1) rotate(370deg);
    opacity: 0.1;
    border-radius: 24px;
    border-width: 4px;
  }
  100% {
    transform: scaleX(1) scaleY(1) rotate(350deg);
    opacity: 1;
    border-radius: 24px;
    border-width: 8px;
  }
}
@keyframes preload-initials {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* Nav */
#nav {
  position: fixed;
  z-index: 100;
  width: 100vw;
  height: 60px;
  padding-top: 60px;
  padding-bottom: 30px;
  top: 0;
  transition: top 0.5s, padding-top 0.5s, background 0.1s, box-shadow 0.5s;
}
#nav .inner {
  margin: 0 200px;
}
@media only screen and (max-width: 1920px) {
  #nav .inner {
    margin: 0 100px;
  }
}
@media only screen and (max-width: 700px) {
  #nav .inner {
    margin: 0 50px;
  }
}
@media only screen and (max-width: 480px) {
  #nav .inner {
    margin: 0 25px;
  }
}
#nav .inner .left {
  height: 60px;
  float: left;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
#nav .inner .left .logo {
  display: inline-block;
  height: 56px;
  width: 56px;
  cursor: pointer;
}
#nav .inner .left .logo .box {
  position: absolute;
  box-sizing: border-box;
  height: 56px;
  width: 56px;
  border: #56AEFF 4px solid;
  border-radius: 12px;
  transform: rotate(-10deg);
  pointer-events: none;
  transition: border 0.2s, background 0.2s, transform 0.2s;
}
#nav .inner .left .logo .initials {
  position: relative;
  left: 0.075em;
  height: 56px;
  width: 56px;
  text-align: center;
  line-height: 56px;
  vertical-align: middle;
  font-size: 18px;
  font-weight: 800;
  color: #56AEFF;
  letter-spacing: 0.15em;
}
#nav .inner .left .logo:hover .box {
  border: #56AEFF 2px solid;
  background: rgba(47, 94, 137, 0.2);
  transform: rotate(10deg);
}
@media only screen and (max-width: 480px) {
  #nav .inner .left .logo {
    width: 48px;
    height: 48px;
  }
  #nav .inner .left .logo .box {
    width: 48px;
    height: 48px;
  }
  #nav .inner .left .logo .initials {
    width: 48px;
    height: 48px;
    line-height: 48px;
    font-size: 14px;
  }
}
#nav .inner .left .name {
  display: inline-block;
  font-size: 24px;
  font-weight: 700;
}
@media only screen and (max-width: 800px) {
  #nav .inner .left .name {
    display: none;
  }
}
#nav .inner .left > div {
  margin-right: 30px;
}
#nav .inner .right {
  height: 60px;
  float: right;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
#nav .inner .right .links ol {
  display: inline-block;
  counter-reset: nav;
}
#nav .inner .right .links ol li {
  cursor: pointer;
  display: inline-block;
  margin-left: 20px;
}
#nav .inner .right .links ol li a {
  font-size: 14px;
  font-weight: 700;
  color: white;
  text-decoration: none;
  transition: color 0.2s;
}
#nav .inner .right .links ol li a::before {
  counter-increment: nav;
  content: counter(nav) ".";
  font-size: 14px;
  font-weight: 700;
  color: #56AEFF;
  text-align: right;
  margin-right: 10px;
}
#nav .inner .right .links ol li:hover a {
  color: #56AEFF;
}
#nav .inner .right > div {
  margin-left: 30px;
}
#nav.scrolled {
  padding-top: 30px;
  background: #222629;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}
#nav.hidden {
  top: -130px;
}

@media only screen and (max-width: 1120px) {
  #nav .links {
    display: none;
  }

  #nav .resume {
    display: none;
  }
}
/* Background */
#background.start .bubbles li {
  animation: bubbles 25s linear infinite;
}
#background .bubbles {
  width: 100%;
  margin: 0;
}
#background .bubbles li {
  z-index: -10;
  position: fixed;
  display: block;
  list-style: none;
  width: 30px;
  height: 30px;
  background: rgba(86, 174, 255, 0.3);
  bottom: -200px;
}
#background .bubbles li:nth-child(1) {
  left: 25%;
  width: 100px;
  height: 100px;
  animation-delay: 0s;
}
#background .bubbles li:nth-child(2) {
  left: 10%;
  width: 30px;
  height: 30px;
  animation-delay: 2s;
  animation-duration: 12s;
}
#background .bubbles li:nth-child(3) {
  left: 70%;
  width: 30px;
  height: 30px;
  animation-delay: 4s;
}
#background .bubbles li:nth-child(4) {
  left: 40%;
  width: 80px;
  height: 80px;
  animation-delay: 0s;
  animation-duration: 18s;
}
#background .bubbles li:nth-child(5) {
  left: 65%;
  width: 30px;
  height: 30px;
  animation-delay: 0s;
}
#background .bubbles li:nth-child(6) {
  left: 75%;
  width: 140px;
  height: 140px;
  animation-delay: 3s;
}
#background .bubbles li:nth-child(7) {
  left: 35%;
  width: 180px;
  height: 180px;
  animation-delay: 7s;
}
#background .bubbles li:nth-child(8) {
  left: 50%;
  width: 40px;
  height: 40px;
  animation-delay: 15s;
  animation-duration: 45s;
}
#background .bubbles li:nth-child(9) {
  left: 20%;
  width: 20px;
  height: 20px;
  animation-delay: 2s;
  animation-duration: 35s;
}
#background .bubbles li:nth-child(10) {
  left: 85%;
  width: 180px;
  height: 180px;
  animation-delay: 0s;
  animation-duration: 11s;
}

@keyframes bubbles {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
    border-radius: 10%;
  }
  100% {
    transform: translateY(-100vh) rotate(720deg);
    opacity: 0;
    border-radius: 50%;
  }
}
/* Hero */
#hero {
  height: 100vh;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#hero .text .hi {
  font-size: 36px;
  font-weight: 700;
}
#hero .text .name {
  font-size: 48px;
  margin-top: 10px;
  font-weight: 700;
}
#hero .text .description {
  max-width: 400px;
  margin-top: 40px;
}
@media only screen and (max-width: 640px) {
  #hero .text .hi {
    font-size: 28px;
  }
  #hero .text .name {
    font-size: 36px;
  }
  #hero .text .description {
    max-width: 300px;
  }
}
@media only screen and (max-width: 480px) {
  #hero .text .hi {
    font-size: 6vw;
  }
  #hero .text .name {
    font-size: 8vw;
  }
  #hero .text .description {
    max-width: 250px;
  }
}
#hero .text .buttons {
  margin-top: 40px;
}

/* About */
#about {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20vh 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 1120px) {
  #about {
    flex-direction: column;
  }
}
#about .header {
  margin-bottom: 60px;
}
#about .left {
  max-width: 550px;
}
@media only screen and (max-width: 1120px) {
  #about .left {
    max-width: 100%;
  }
}
#about .left .text p {
  margin-bottom: 28px;
}
#about .left .lists ul {
  width: 130px;
}
@media only screen and (max-width: 640px) {
  #about .left .lists ul {
    width: 100px;
  }
}
#about .right .photo {
  width: 500px;
  height: 500px;
  margin-left: 50px;
}
@media only screen and (max-width: 1120px) {
  #about .right .photo {
    margin-left: 0;
    margin-top: 100px;
  }
}
#about .right .photo .bubble {
  margin: 50px;
  transform: rotate(28.24deg);
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 40px;
  background: rgba(86, 174, 255, 0.3);
}
@media only screen and (max-width: 1480px) {
  #about .right .photo .bubble {
    margin: 40px;
    width: 320px;
    height: 320px;
    border-radius: 32px;
  }
}
@media only screen and (max-width: 1320px) and (min-width: 1120px) {
  #about .right .photo .bubble {
    margin: 2.5vw;
    width: 20vw;
    height: 20vw;
    border-radius: 2vw;
  }
}
@media only screen and (max-width: 1120px) {
  #about .right .photo .bubble {
    margin: 4vw;
    width: 32vw;
    height: 32vw;
    border-radius: 3.2vw;
  }
}
@media only screen and (max-width: 640px) {
  #about .right .photo .bubble {
    margin: 6vw;
    width: 48vw;
    height: 48vw;
    border-radius: 4.8vw;
  }
}
#about .right .photo .bubble:hover ~ .image .color {
  opacity: 0.5;
}
#about .right .photo .mask {
  position: absolute;
}
#about .right .photo .image {
  pointer-events: none;
}
#about .right .photo .image img {
  margin: 70px 0px 0px 60px;
  position: absolute;
  width: 324px;
  height: 408px;
  transition: opacity 0.3s;
}
@media only screen and (max-width: 1480px) {
  #about .right .photo .image img {
    margin: 56px 0px 0px 48px;
    width: 259px;
    height: 326px;
  }
}
@media only screen and (max-width: 1320px) and (min-width: 1120px) {
  #about .right .photo .image img {
    margin: 3.5vw 0px 0px 3vw;
    width: 16.187vw;
    height: 20.375vw;
  }
}
@media only screen and (max-width: 1120px) {
  #about .right .photo .image img {
    margin: 5.6vw 0px 0px 4.8vw;
    width: 25.899vw;
    height: 32.6vw;
  }
}
@media only screen and (max-width: 640px) {
  #about .right .photo .image img {
    margin: 8.4vw 0px 0px 7.2vw;
    width: 38.848vw;
    height: 48.9vw;
  }
}
#about .right .photo .image .grey {
  opacity: 1;
}
#about .right .photo .image .color {
  opacity: 0;
}
@media only screen and (max-width: 1480px) {
  #about .right .photo {
    width: 400px;
    height: 400px;
  }
}
@media only screen and (max-width: 1320px) and (min-width: 1120px) {
  #about .right .photo {
    width: 25vw;
    height: 25vw;
  }
}
@media only screen and (max-width: 1120px) {
  #about .right .photo {
    width: 40vw;
    height: 40vw;
  }
}
@media only screen and (max-width: 640px) {
  #about .right .photo {
    width: 60vw;
    height: 60vw;
  }
}

/* Experience */
#experience {
  max-width: 690px;
  margin: 0 auto;
  padding: 20vh 0 10vh;
  display: flex;
  flex-direction: column;
  align-items: start;
}
#experience .header {
  margin-bottom: 80px;
}
#experience .type {
  display: flex;
  justify-items: center;
  align-items: start;
  margin-bottom: 80px;
}
#experience .type .selector {
  width: 200px;
  margin-right: 40px;
}
#experience .type .selector .title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #C5C5C5;
  margin-bottom: 30px;
}
#experience .type .selector ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#experience .type .selector ul li {
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  color: #C5C5C5;
  border-left: 2px solid #6B6E70;
  width: 160px;
  padding: 12px 20px;
  transition: background-color 0.5s;
}
#experience .type .selector ul li.active {
  color: #56AEFF;
  border-left: 2px solid #56AEFF;
}
#experience .type .selector ul li:hover, #experience .type .selector ul li::selection {
  background-color: rgba(47, 94, 137, 0.2);
}
#experience .type .items {
  width: 430px;
}
@media only screen and (max-width: 640px) {
  #experience .type .items {
    width: unset;
  }
}
#experience .type .items > div {
  display: none;
}
#experience .type .items .active {
  display: initial;
}
#experience .type .items .details {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #C5C5C5;
  margin-bottom: 30px;
}
#experience .type .items .title {
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 30px;
}
@media only screen and (max-width: 480px) {
  #experience .type .items .title {
    font-size: 14px;
  }
  #experience .type .items .details {
    font-size: 10px;
  }
}
@media only screen and (max-width: 960px) {
  #experience .type {
    flex-direction: column;
  }
  #experience .type .selector {
    width: calc(100vw - 320px);
    overflow-x: auto;
    white-space: nowrap;
    margin: 0 0 50px 0;
    padding-bottom: 10px;
    background-repeat: no-repeat;
    background-size: 25px calc(100% - 16px), 25px calc(100% - 16px);
    background-attachment: scroll, scroll;
    font-size: 0;
  }
  #experience .type .selector .inner {
    border-bottom: 2px solid #6B6E70;
    min-width: fit-content;
  }
  #experience .type .selector .inner .title {
    display: inline-block;
    font-size: initial;
    margin: 0;
    padding: 0 20px 12px 0;
  }
}
@media only screen and (max-width: 960px) and (max-width: 480px) {
  #experience .type .selector .inner .title {
    font-size: 14px;
  }
}
@media only screen and (max-width: 960px) {
  #experience .type .selector .inner ul {
    display: inline-block;
    white-space: nowrap;
  }
  #experience .type .selector .inner ul li {
    display: inline-block;
    position: relative;
    top: 2px;
    width: unset;
    padding: 12px 4px;
    margin: 0 16px;
    border-left: 0;
  }
  #experience .type .selector .inner ul li.active {
    border-left: 0;
    border-bottom: 2px solid #56AEFF;
  }
}
@media only screen and (max-width: 960px) {
  #experience .type .selector::-webkit-scrollbar {
    width: 4px;
    height: 4px;
  }
}
@media only screen and (max-width: 960px) {
  #experience .type .selector::-webkit-scrollbar-thumb {
    background-color: rgba(71, 75, 79, 0.3);
    border-radius: 4px;
  }
}
@media only screen and (max-width: 800px) {
  #experience .type .selector {
    width: calc(100vw - 220px);
  }
}
@media only screen and (max-width: 700px) {
  #experience .type .selector {
    width: calc(100vw - 120px);
  }
}
@media only screen and (max-width: 480px) {
  #experience .type .selector {
    width: calc(100vw - 70px);
  }
}

#contact {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
#contact .header {
  margin-bottom: 20px;
}
#contact .big {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 40px;
}
@media only screen and (max-width: 480px) {
  #contact .big {
    font-size: 36px;
  }
}
@media only screen and (max-width: 360px) {
  #contact .big {
    font-size: 24px;
  }
}
#contact .small {
  max-width: 450px;
  text-align: center;
  margin-bottom: 30px;
}
#contact .buttons {
  margin: 10px 0;
}
#contact .buttons .button {
  margin: 15px;
}

#footer {
  position: relative;
}
#footer .internal {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 50px;
}
#footer .internal .text {
  font-size: 14px;
  font-weight: 500;
  color: #6B6E70;
}
@media only screen and (max-width: 480px) {
  #footer .internal .text {
    font-size: 10px;
  }
}

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