/* COLORS */
@import url("https://fonts.googleapis.com/css2?family=Mukta&family=Ubuntu&display=swap");
/* SCROLLBAR */
/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #424bc4;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background-color: #adb2f7;
  -webkit-transition: background-color .25s;
  transition: background-color .25s;
  border-radius: 2.5px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #DFE0F7;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: 'Mukta', sans-serif;
}

html, body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Ubuntu', sans-serif;
}

a {
  color: snow;
}

button {
  padding: 1% 5%;
  font-size: 1.5em;
  border-radius: 50px;
  border: 2px #5863F8 solid;
  background: #5863F8;
  color: white;
  -webkit-box-shadow: rgba(0, 0, 0, 0.25) 0px 0px 19px;
          box-shadow: rgba(0, 0, 0, 0.25) 0px 0px 19px;
  letter-spacing: 2px;
  line-height: 200%;
  -webkit-transition: all .25s;
  transition: all .25s;
}

button i {
  padding-left: 5px;
  line-height: 200%;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}

button:hover {
  cursor: pointer;
  background: transparent;
  color: #5863F8;
  -webkit-box-shadow: rgba(88, 99, 248, 0.75) 0px 0px 25px;
          box-shadow: rgba(88, 99, 248, 0.75) 0px 0px 25px;
  letter-spacing: 3px;
}

footer {
  background: #424bc4;
  color: snow;
  margin: 0;
  padding: .5%;
  -webkit-box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 15px inset;
          box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 15px inset;
}

footer div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: .5%;
}

footer div a {
  width: 35px;
  height: 35px;
  line-height: 35px;
  border: snow 2px solid;
  margin-right: 1%;
  text-align: center;
  border-radius: 50%;
  opacity: .5;
  text-shadow: rgba(41, 41, 41, 0.15) 2px 2px 1px;
  -webkit-transition: opacity .25s, text-shadow .25s;
  transition: opacity .25s, text-shadow .25s;
}

footer div a:hover {
  cursor: pointer;
  opacity: 1;
  text-shadow: rgba(41, 41, 41, 0.15) 5px 5px 2.5px;
}

footer small {
  opacity: .5;
}

/* Custom Classes */
.background-night {
  background: #292929;
  -webkit-transition: background .15s;
  transition: background .15s;
}

.background-day {
  background: snow;
  -webkit-transition: background .15s;
  transition: background .15s;
}

.text-night {
  color: snow;
  -webkit-transition: color .15s;
  transition: color .15s;
}

.text-day {
  color: #292929;
  -webkit-transition: color .15s;
  transition: color .15s;
}

.background-base {
  background: #5863F8;
}

.vh-100 {
  min-height: 100vh;
  width: 100%;
}

.vh-50 {
  min-height: 50vh;
  min-width: 50vw;
}

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

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

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

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}

.flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
}

.flex-justify-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex-justify-evenly {
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.flex-align-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex-w100 {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  width: 100%;
}

.flex-1 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.flex-2 {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
}

.flex-3 {
  -webkit-box-flex: 3;
      -ms-flex: 3;
          flex: 3;
}

.flex-4 {
  -webkit-box-flex: 4;
      -ms-flex: 4;
          flex: 4;
}

.final-card {
  position: relative;
}

.final-card::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  z-index: 10;
  height: 125px;
  width: 100%;
  color: orange;
  background: -webkit-gradient(linear, left bottom, right top, color-stop(45%, #5863F8), color-stop(45%, transparent), color-stop(55%, transparent)), -webkit-gradient(linear, left bottom, right top, color-stop(56%, #424bc4), color-stop(56.1%, transparent), color-stop(55%, transparent));
  background: linear-gradient(to top right, #5863F8 45%, transparent 45%, transparent 55%), linear-gradient(to top right, #424bc4 56%, transparent 56.1%, transparent 55%);
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.collapsible-menu {
  -webkit-box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 10px;
          box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 10px;
}

.collapsible-menu .collapsible-menu-trigger {
  width: 100%;
  background: #5863F8;
  font-size: 3em;
  padding: 0% 10%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 5px 5px 0px 0px;
  color: snow;
}

.collapsible-menu .collapsible-menu-trigger h6, .collapsible-menu .collapsible-menu-trigger p {
  margin: 0;
}

.collapsible-menu .collapsible-menu-trigger h6 {
  -webkit-box-flex: 3;
      -ms-flex: 3;
          flex: 3;
}

.collapsible-menu .collapsible-menu-trigger p {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: .9em;
  text-align: right;
  line-height: 1.5;
}

.collapsible-menu .collapsible-menu-trigger p i {
  -webkit-transition: -webkit-transform .1s;
  transition: -webkit-transform .1s;
  transition: transform .1s;
  transition: transform .1s, -webkit-transform .1s;
}

.collapsible-menu .collapsible-menu-trigger:hover {
  cursor: pointer;
}

.collapsible-menu .collapsible-menu-trigger .uncollapse-icon {
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}

.collapsible-menu .collapsed {
  -webkit-transform-origin: top;
          transform-origin: top;
  display: none;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  max-height: 400px;
  overflow-y: scroll;
}

.collapsible-menu .collapsed .menu-row {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2% 3%;
  border-bottom: rgba(0, 0, 0, 0.35) 2px solid;
}

.collapsible-menu .collapsed .skill-box {
  border: rgba(41, 41, 41, 0.35) 2px solid;
  border-collapse: collapse;
  margin: 2%;
  padding: 2%;
  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;
  white-space: nowrap;
}

.collapsible-menu .uncollapse {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* Navigation */
#nav-trigger {
  display: block;
  position: fixed;
  top: 1%;
  right: 0%;
  z-index: 1001;
  background: rgba(88, 99, 248, 0.85);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  font-size: 2em;
  border-radius: 15px 0 0 15px;
  padding: 2% 3%;
}

#nav-trigger:hover {
  background: rgba(88, 99, 248, 0.85);
  color: snow;
}

#mobile-nav {
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100vw;
  height: 100vh;
  overflow-y: auto;
  background: rgba(88, 99, 248, 0.9);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  position: fixed;
  top: 0;
  left: 100vw;
  -webkit-transition: left .1s;
  transition: left .1s;
  font-size: 2em;
}

#mobile-nav ul {
  list-style: none;
  color: white;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
}

#mobile-nav ul li {
  margin-top: 2%;
  color: rgba(255, 250, 250, 0.65);
}

#mobile-nav ul li a {
  color: snow;
  text-decoration: none;
  letter-spacing: 1px;
  -webkit-transition: letter-spacing .15s;
  transition: letter-spacing .15s;
}

#mobile-nav ul li a:hover {
  letter-spacing: 3px;
}

#mobile-nav ul li ul {
  padding-left: 15%;
}

#mobile-nav ul .selected {
  text-decoration: underline;
}

#mobile-nav ul #seperate-controls {
  margin-top: 10%;
  border-top: snow 5px solid;
}

#mobile-nav ul #seperate-controls div {
  margin-top: 10%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#mobile-nav ul #seperate-controls div button {
  padding: 0;
  font-size: 1em;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: transparent;
  border: none;
}

.active-mobile-nav {
  left: 0 !important;
}

#desktop-nav {
  display: none;
}

/* Home */
#home {
  background: radial-gradient(75em at top left, #adb2f7 50%, transparent 50%, transparent 50%), radial-gradient(77em at top left, #DFE0F7 50%, transparent 50%, transparent 50%), radial-gradient(25em at right center, #adb2f7 50%, transparent 50%, transparent 50%), transparent;
  background-attachment: fixed;
  background-size: 200%;
  background-position: center;
  -webkit-animation: BubblesAppear 2s forwards, 15s BreathingBubbles 2s ease-in-out infinite;
          animation: BubblesAppear 2s forwards, 15s BreathingBubbles 2s ease-in-out infinite;
}

@-webkit-keyframes BubblesAppear {
  0% {
    background-size: 200%;
  }
  100% {
    background-size: 110%;
  }
}

@keyframes BubblesAppear {
  0% {
    background-size: 200%;
  }
  100% {
    background-size: 110%;
  }
}

@-webkit-keyframes BreathingBubbles {
  0% {
    background-size: 110%;
  }
  50% {
    background-size: 100%;
  }
  100% {
    background-size: 110%;
  }
}

@keyframes BreathingBubbles {
  0% {
    background-size: 110%;
  }
  50% {
    background-size: 100%;
  }
  100% {
    background-size: 110%;
  }
}

#home #header-text {
  opacity: 0;
  -webkit-animation: 1s LandingTextAppear .1s ease-out forwards;
          animation: 1s LandingTextAppear .1s ease-out forwards;
}

@-webkit-keyframes LandingTextAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes LandingTextAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

#home #header-text h2, #home #header-text h3 {
  color: #424bc4;
}

#home #header-text h2 {
  font-size: 2.5em;
}

#home #header-text h3 {
  font-size: 1.5em;
  font-weight: lighter;
}

#home #header-text button {
  margin-top: 5%;
}

#body-flare {
  position: relative;
  background: #5863F8;
}

#body-flare::after {
  position: absolute;
  top: -125px;
  left: 0;
  content: '';
  height: 125px;
  width: 100%;
  color: orange;
  background: -webkit-gradient(linear, left bottom, right top, color-stop(45%, #5863F8), color-stop(45%, transparent), color-stop(55%, transparent)), -webkit-gradient(linear, right bottom, left top, color-stop(56%, #424bc4), color-stop(56.1%, transparent), color-stop(55%, transparent)), -webkit-gradient(linear, left bottom, left top, color-stop(70%, #373e8dbb), color-stop(70.5%, transparent), to(transparent));
  background: linear-gradient(to top right, #5863F8 45%, transparent 45%, transparent 55%), linear-gradient(to top left, #424bc4 56%, transparent 56.1%, transparent 55%), linear-gradient(to top, #373e8dbb 70%, transparent 70.5%, transparent);
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
  -webkit-animation: 15s SubtleCollapse 1s ease-in-out infinite;
          animation: 15s SubtleCollapse 1s ease-in-out infinite;
}

@-webkit-keyframes SubtleCollapse {
  0% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  50% {
    -webkit-transform: scaleY(0.85);
            transform: scaleY(0.85);
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}

@keyframes SubtleCollapse {
  0% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  50% {
    -webkit-transform: scaleY(0.85);
            transform: scaleY(0.85);
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}

#about .about-box {
  height: 350px;
  width: 275px;
  position: relative;
  border-radius: 5%;
  -webkit-transition: -webkit-transform .15s, -webkit-box-shadow .15s;
  transition: -webkit-transform .15s, -webkit-box-shadow .15s;
  transition: transform .15s, box-shadow .15s;
  transition: transform .15s, box-shadow .15s, -webkit-transform .15s, -webkit-box-shadow .15s;
  text-align: center;
  padding: 2%;
  -webkit-transform: rotateY(0);
          transform: rotateY(0);
  margin-bottom: 15%;
}

#about .about-box .about-box-icon {
  position: absolute;
  top: -10%;
  left: -10%;
  font-size: 2.25em;
  width: 75px;
  height: 75px;
  text-align: center;
  border-radius: 50%;
  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;
  color: #5863F8;
  -webkit-box-shadow: rgba(0, 0, 0, 0.25) 0px 0px 5px;
          box-shadow: rgba(0, 0, 0, 0.25) 0px 0px 5px;
  -webkit-transition: top .2s ease-in-out, left .2s ease-in-out, -webkit-box-shadow .2s ease-in-out, -webkit-transform .2s ease-in-out;
  transition: top .2s ease-in-out, left .2s ease-in-out, -webkit-box-shadow .2s ease-in-out, -webkit-transform .2s ease-in-out;
  transition: box-shadow .2s ease-in-out, top .2s ease-in-out, left .2s ease-in-out, transform .2s ease-in-out;
  transition: box-shadow .2s ease-in-out, top .2s ease-in-out, left .2s ease-in-out, transform .2s ease-in-out, -webkit-box-shadow .2s ease-in-out, -webkit-transform .2s ease-in-out;
}

#about .about-box .about-box-header {
  display: block;
  font-size: 2.5em;
  color: #5863F8;
  line-height: 125%;
}

#about .about-box .about-box-desc {
  display: none;
  -webkit-transform: rotatey(180deg);
          transform: rotatey(180deg);
}

#about .about-box:hover {
  -webkit-box-shadow: rgba(0, 0, 0, 0.25) 10px 6px 15px;
          box-shadow: rgba(0, 0, 0, 0.25) 10px 6px 15px;
  cursor: pointer;
}

#about .about-box:hover .about-box-icon {
  -webkit-transform: skew(5deg, 5deg);
          transform: skew(5deg, 5deg);
  -webkit-box-shadow: rgba(0, 0, 0, 0.25) -6px -3px 25px;
          box-shadow: rgba(0, 0, 0, 0.25) -6px -3px 25px;
  top: -11%;
  left: -11%;
}

#about .about-box:hover .about-box-header {
  display: block;
}

#about .about-box:hover .about-box-desc {
  display: none;
}

#about .about-box-active {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
  -webkit-box-shadow: rgba(0, 0, 0, 0.35) 0px 0px 0px;
          box-shadow: rgba(0, 0, 0, 0.35) 0px 0px 0px;
}

#about .about-box-active .about-box-icon {
  -webkit-transform: skew(0);
          transform: skew(0);
  -webkit-box-shadow: rgba(0, 0, 0, 0.25) 0px 0px 5px;
          box-shadow: rgba(0, 0, 0, 0.25) 0px 0px 5px;
}

#about .about-box-active .about-box-header {
  display: none;
}

#about .about-box-active .about-box-desc {
  display: block;
}

#about .about-box-active:hover {
  -webkit-box-shadow: rgba(0, 0, 0, 0.35) 0px 0px 0px;
          box-shadow: rgba(0, 0, 0, 0.35) 0px 0px 0px;
}

#about .about-box-active:hover .about-box-icon {
  -webkit-transform: skew(0);
          transform: skew(0);
  -webkit-box-shadow: rgba(0, 0, 0, 0.25) 0px 0px 5px;
          box-shadow: rgba(0, 0, 0, 0.25) 0px 0px 5px;
}

#about .about-box-active:hover .about-box-header {
  display: none;
}

#about .about-box-active:hover .about-box-desc {
  display: block;
}

#about .project-showcase {
  padding: 10% 0%;
}

#about .project-showcase .project-showcase-content {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity .2s, -webkit-transform .2s;
  transition: opacity .2s, -webkit-transform .2s;
  transition: opacity .2s, transform .2s;
  transition: opacity .2s, transform .2s, -webkit-transform .2s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
}

#about .project-showcase .project-showcase-content .ps-desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

#about .project-showcase .project-showcase-content .ps-desc h4 {
  -webkit-box-flex: .5;
      -ms-flex: .5;
          flex: .5;
  font-size: 1.75em;
  letter-spacing: 2px;
  color: snow;
  margin: 0;
}

#about .project-showcase .project-showcase-content .ps-desc p {
  -webkit-box-flex: 3;
      -ms-flex: 3;
          flex: 3;
  color: snow;
  width: 80%;
  font-size: 1.25em;
}

#about .project-showcase .project-showcase-content .ps-desc button {
  margin-bottom: 2%;
  background: snow;
  color: #5863F8;
  -webkit-transition: all .25s;
  transition: all .25s;
}

#about .project-showcase .project-showcase-content .ps-desc button:hover {
  color: #5863F8;
  background: snow;
  -webkit-box-shadow: rgba(255, 250, 250, 0.75) 0px 0px 25px;
          box-shadow: rgba(255, 250, 250, 0.75) 0px 0px 25px;
}

#about .project-showcase .project-showcase-content .ps-projects {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  overflow-x: auto;
  -ms-scroll-snap-type: none;
      scroll-snap-type: none;
  -webkit-mask-image: none;
          mask-image: none;
  width: 100%;
}

#about .project-showcase .project-showcase-content .ps-projects .project {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 300px;
          flex: 0 0 300px;
  scroll-snap-align: none;
  margin-right: 2.5%;
  margin-top: 10px;
  margin-bottom: 10px;
  -webkit-box-shadow: none;
          box-shadow: none;
  z-index: 100;
}

#about .project-showcase .project-showcase-content .ps-projects .project:last-child {
  margin-right: 1.5%;
}

#about .project-showcase .project-showcase-content .ps-projects .project:first-child {
  margin-left: 1.5%;
}

#about .project-showcase .project-showcase-content .ps-projects .project:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  outline: none;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

#about .project-showcase .project-showcase-content .ps-right {
  -webkit-mask-image: none;
          mask-image: none;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

#about .project-showcase .project-showcase-content .psd-right {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

#about .project-showcase .project-showcase-content .ps-padding {
  -webkit-box-flex: .25;
      -ms-flex: .25;
          flex: .25;
}

#about .presentation-showcase .project-showcase-content {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity .2s, -webkit-transform .2s;
  transition: opacity .2s, -webkit-transform .2s;
  transition: opacity .2s, transform .2s;
  transition: opacity .2s, transform .2s, -webkit-transform .2s;
}

#about .presentation-showcase h4 {
  text-align: center;
  font-size: 1.75em;
  letter-spacing: 2px;
  color: snow;
  margin-top: 0;
  padding-top: 2.5%;
}

#about .presentation-showcase .presentation-container {
  width: 100%;
  max-width: 100vw;
  overflow-y: auto;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

#about .presentation-showcase .presentation-container .presentation {
  width: 350px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: snow;
  font-size: 1.2em;
}

#about .presentation-showcase .presentation-container .presentation iframe {
  aspect-ratio: 16/9;
  width: 100%;
}

#about .project-showcase-show .project-showcase-content {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* Projects */
#projects {
  width: 85%;
  margin-left: auto;
  margin-right: auto;
}

#projects #projects-header {
  margin: 0;
  margin-top: 5%;
  padding-top: 5.5%;
  padding-bottom: 4%;
  width: 100%;
  text-align: center;
  font-size: 2em;
  font-weight: lighter;
}

#projects #projects-header h4 {
  color: #5863F8;
  margin-top: 2%;
  margin-bottom: 4%;
}

#projects #projects-header h3 {
  margin: 0;
  font-size: .6em;
  opacity: .75;
  line-height: 130%;
  font-weight: 300;
}

#projects #projects-header .project-form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}

#projects #projects-header .project-form-group label {
  font-size: .65em;
}

#projects #projects-header .project-form-group input[type="checkbox"] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  margin: 0;
  font: inherit;
  color: #424bc4;
  width: .7em;
  height: .7em;
  border: 3.5px solid currentColor;
  border-radius: 0.15em;
  -webkit-transform: translateY(15%);
          transform: translateY(15%);
  -webkit-transition: all .15s;
  transition: all .15s;
}

#projects #projects-header .project-form-group input[type="checkbox"]:hover {
  background-color: #adb2f7;
}

#projects #projects-header .project-form-group input[type="checkbox"]:checked {
  background-color: #424bc4;
}

#projects .project-container {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
}

#projects .project-container .project {
  margin-top: 10%;
  background: #5863F8;
  color: snow;
}

#projects .project-container .project:last-of-type {
  margin-bottom: 10%;
}

#projects .project-container .research a {
  color: snow;
}

#project {
  margin-top: 8%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
}

#project div {
  padding: 5%;
}

#project #project-media {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  justify-self: flex-start;
}

#project #project-media > iframe, #project #project-media > img {
  width: 100%;
  max-width: 600px;
  min-height: auto;
  border-radius: 10px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.35) 0px 0px 25px;
          box-shadow: rgba(0, 0, 0, 0.35) 0px 0px 25px;
  position: normal;
}

#project #project-description {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}

#project #project-description h3 {
  color: #5863F8;
  font-size: 3em;
  margin-top: 0;
  margin-bottom: 1%;
}

#project #project-description h4 {
  color: #adb2f7;
  font-size: 1.7em;
  letter-spacing: 9px;
  font-style: italic;
  margin-top: 3%;
  opacity: .5;
}

#project #project-description p {
  width: 100%;
  font-size: 1.5em;
}

#project #project-description p img {
  max-width: 400px;
  border-radius: 10px;
}

#project #project-description a {
  color: #5863F8;
  -webkit-transition: color .1s;
  transition: color .1s;
}

#project #project-description a:hover {
  color: #424bc4;
}

#project #project-description #project-skills {
  padding: 0;
}

#project #project-description #project-skills h5 {
  font-size: 1.3em;
  color: #adb2f7;
}

#project #project-description #project-skills img {
  max-width: 100px;
  padding: 2%;
}

#project-modal {
  min-width: 100vw;
  min-height: 100vh;
  background: rgba(0, 0, 0, 0.35);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000000000;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#project-modal #project-modal-inner {
  min-width: 350px;
  max-width: 450px;
  min-height: 500px;
  max-height: 600px;
  width: 80vw;
  height: 70vh;
  border-radius: 10px;
  -webkit-box-shadow: rgba(41, 41, 41, 0.25) 0px 0px 25px;
          box-shadow: rgba(41, 41, 41, 0.25) 0px 0px 25px;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 50px 1fr 2fr;
      grid-template-rows: 50px 1fr 2fr;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
}

#project-modal #project-modal-inner #pm-top-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #424bc4;
  border-radius: 10px 10px 0px 0px;
}

#project-modal #project-modal-inner #pm-top-bar button {
  background: transparent;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  margin-right: 2%;
  font-size: 1.75em;
  opacity: .75;
}

#project-modal #project-modal-inner #pm-top-bar button i {
  font-weight: lighter;
}

#project-modal #project-modal-inner #pm-top-bar button:hover {
  color: snow;
  opacity: 1;
  letter-spacing: 2px;
}

#project-modal #project-modal-inner #pm-visual-section {
  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;
  max-height: 200px;
  overflow: hidden;
  background: #292929;
}

#project-modal #project-modal-inner #pm-visual-section img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#project-modal #project-modal-inner #pm-visual-section iframe {
  height: 300px;
  display: none;
}

#project-modal #project-modal-inner #pm-links-section {
  overflow-y: auto;
  padding: 2%;
}

#project-modal #project-modal-inner #pm-links-section #pm-heading {
  text-align: center;
}

#project-modal #project-modal-inner #pm-links-section #pm-heading h6 {
  color: #5863F8;
  font-size: 2em;
  margin: 1%;
}

#project-modal #project-modal-inner #pm-links-section #pm-heading p {
  color: #5863F8;
  font-size: 1.2em;
  opacity: .7;
}

#project-modal #project-modal-inner #pm-links-section #pm-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-top: 1.2%;
}

#project-modal #project-modal-inner #pm-links-section #pm-links a {
  background-color: transparent;
  padding: 2.5% 4%;
  margin-top: 2%;
  font-size: 1em;
  letter-spacing: 1.5px;
  text-decoration: none;
  border: 2px solid #5863F8;
  border-radius: 50px;
  -webkit-transition: color .1s, background-color .1s;
  transition: color .1s, background-color .1s;
}

#project-modal #project-modal-inner #pm-links-section #pm-links a:hover {
  color: snow;
  background-color: #5863F8;
}

.project-container .project {
  width: 300px;
  height: 500px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.25) 0px 0px 25px;
          box-shadow: rgba(0, 0, 0, 0.25) 0px 0px 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  border-radius: 10px;
  outline: 0;
  -webkit-transition: outline .1s, -webkit-box-shadow .2s, -webkit-transform .2s;
  transition: outline .1s, -webkit-box-shadow .2s, -webkit-transform .2s;
  transition: outline .1s, box-shadow .2s, transform .2s;
  transition: outline .1s, box-shadow .2s, transform .2s, -webkit-box-shadow .2s, -webkit-transform .2s;
}

.project-container .project .project-img {
  -webkit-box-flex: 4;
      -ms-flex: 4;
          flex: 4;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  background-position: top;
  background-repeat: no-repeat;
  background-size: 100%;
  border-radius: 10px 10px 0px 0px;
  max-height: 300px;
  overflow: hidden;
}

.project-container .project .project-img img {
  width: 100%;
}

.project-container .project .project-contents {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 4%;
}

.project-container .project .project-contents h6 {
  font-size: 1.5em;
  margin: 0;
  font-weight: 400;
}

.project-container .project:hover {
  cursor: pointer;
  outline: rgba(0, 0, 0, 0.25) 1px solid;
  -webkit-box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 35px;
          box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 35px;
}

.project-container .research .project-contents h6 {
  font-size: 1.75em;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.project-container .research .project-contents a {
  color: #5863F8;
  font-size: 1.2em;
}

.project-container .research .project-contents a i {
  font-size: 1em;
}

/* Resume */
#resume {
  width: 85%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#resume #top-resume, #resume #bottom-resume {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
}

#resume #top-resume {
  text-align: center;
}

#resume #top-resume img {
  width: 65%;
  border-radius: 50%;
  -webkit-box-shadow: rgba(88, 99, 248, 0.5) 0px 0px 30px;
          box-shadow: rgba(88, 99, 248, 0.5) 0px 0px 30px;
}

#resume #top-resume h4 {
  font-size: 3.5em;
  color: #5863F8;
  margin-top: 3%;
  margin-bottom: 3%;
}

#resume #top-resume p {
  margin-top: 0;
}

#resume #top-resume div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

#resume #bottom-resume {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-top: 5%;
  margin-bottom: 10%;
}

#resume #bottom-resume .collapsible-menu {
  margin-top: 5%;
}

#resume #bottom-resume .collapsible-menu h6 {
  font-size: .5em;
}

#resume #skills-list {
  -webkit-column-count: 2;
          column-count: 2;
  width: 100%;
  text-align: left;
}

#resume #skills-list li {
  padding-top: 3%;
}

/* Media Queries */
@media screen and (min-width: 768px) {
  #projects {
    width: 95%;
  }
  #projects #project-header h3 {
    width: 30%;
  }
  #projects .project-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
  #projects .project-container .project {
    min-width: 200px;
    min-height: 400px;
    max-width: 300px;
    max-height: 500px;
    margin: 2.5%;
  }
  #projects .project-container .project .project-img {
    max-width: 300px;
  }
  #about .project-showcase {
    padding: 5% 0%;
  }
  #about .project-showcase .project-showcase-content .ps-right {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  #about .project-showcase .project-showcase-content .psd-right {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  #resume {
    padding-top: 10%;
  }
  #resume #top-resume img {
    width: 35%;
  }
  #resume #skills-list {
    -webkit-column-count: 3;
            column-count: 3;
  }
}

@media screen and (min-width: 992px) {
  #nav-trigger, #mobile-nav {
    display: none;
  }
  #desktop-nav {
    display: block;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
    background: snow;
    -webkit-box-shadow: none;
            box-shadow: none;
    width: 100%;
    height: auto;
    font-size: .8em;
    z-index: 1000;
    padding: 1%;
    position: fixed;
    left: 0;
    top: 0;
    -webkit-transition: background .15s, -webkit-box-shadow .15s;
    transition: background .15s, -webkit-box-shadow .15s;
    transition: background .15s, box-shadow .15s;
    transition: background .15s, box-shadow .15s, -webkit-box-shadow .15s;
  }
  #desktop-nav ul {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    width: 100%;
    padding: 0;
    margin: 0;
  }
  #desktop-nav ul #seperate-controls {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    font-size: 1em;
  }
  #desktop-nav ul #seperate-controls div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #desktop-nav ul #seperate-controls div button {
    color: #424bc4;
    border: none;
    background: none;
    padding: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  #desktop-nav ul #seperate-controls div button:hover {
    color: #5863F8;
  }
  #desktop-nav ul #nav-gap {
    -webkit-box-flex: 4;
        -ms-flex: 4;
            flex: 4;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  #desktop-nav .nav-links {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    font-size: 1.5em;
    color: #424bc4;
    position: relative;
  }
  #desktop-nav .nav-links a {
    color: #424bc4;
    text-decoration: none;
    letter-spacing: 1px;
    -webkit-transition: color .15s, letter-spacing .15s;
    transition: color .15s, letter-spacing .15s;
  }
  #desktop-nav .nav-links a:hover {
    color: #5863F8;
    letter-spacing: 3px;
  }
  #desktop-nav .nav-links .selected {
    text-decoration: underline;
  }
  #desktop-nav .nav-links ul {
    position: absolute;
    min-width: 15vw;
    visibility: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column wrap;
            flex-flow: column wrap;
    row-gap: 5px;
    border-top: #5863F8 5px solid;
    -webkit-box-shadow: rgba(0, 0, 0, 0.25) 0px 5px 15px;
            box-shadow: rgba(0, 0, 0, 0.25) 0px 5px 15px;
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: top;
            transform-origin: top;
    -webkit-transition: -webkit-transform .15s ease-in-out;
    transition: -webkit-transform .15s ease-in-out;
    transition: transform .15s ease-in-out;
    transition: transform .15s ease-in-out, -webkit-transform .15s ease-in-out;
  }
  #desktop-nav .nav-links ul li {
    padding-left: 2%;
  }
  #desktop-nav .nav-links ul li a:hover {
    letter-spacing: 1px;
    font-weight: bold;
  }
  #desktop-nav .nav-links:hover ul {
    visibility: visible;
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  #home #header-text h2 {
    font-size: 4em;
  }
  #home #header-text h3 {
    font-size: 3em;
  }
  #home #header-text button {
    margin-top: 0;
  }
  #about .about-box {
    margin-bottom: 0%;
  }
  #about .about-box:hover {
    -webkit-transform: rotateY(25deg) skew(-2.5deg, -2.5deg);
            transform: rotateY(25deg) skew(-2.5deg, -2.5deg);
    -webkit-box-shadow: rgba(0, 0, 0, 0.25) 10px 6px 15px;
            box-shadow: rgba(0, 0, 0, 0.25) 10px 6px 15px;
    cursor: pointer;
  }
  #about .about-box:hover .about-box-icon {
    -webkit-transform: skew(5deg, 5deg);
            transform: skew(5deg, 5deg);
    -webkit-box-shadow: rgba(0, 0, 0, 0.25) -6px -3px 25px;
            box-shadow: rgba(0, 0, 0, 0.25) -6px -3px 25px;
    top: -11%;
    left: -11%;
  }
  #about .about-box:hover .about-box-header {
    display: block;
  }
  #about .about-box:hover .about-box-desc {
    display: none;
  }
  #about .about-box-active {
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
    -webkit-box-shadow: rgba(0, 0, 0, 0.35) 0px 0px 0px;
            box-shadow: rgba(0, 0, 0, 0.35) 0px 0px 0px;
  }
  #about .about-box-active .about-box-icon {
    -webkit-transform: skew(0);
            transform: skew(0);
    -webkit-box-shadow: rgba(0, 0, 0, 0.25) 0px 0px 5px;
            box-shadow: rgba(0, 0, 0, 0.25) 0px 0px 5px;
  }
  #about .about-box-active .about-box-header {
    display: none;
  }
  #about .about-box-active .about-box-desc {
    display: block;
  }
  #about .about-box-active:hover {
    -webkit-transform: rotateY(165deg) skew(2.5deg, 2.5deg);
            transform: rotateY(165deg) skew(2.5deg, 2.5deg);
    -webkit-box-shadow: rgba(0, 0, 0, 0.35) 0px 0px 0px;
            box-shadow: rgba(0, 0, 0, 0.35) 0px 0px 0px;
  }
  #about .about-box-active:hover .about-box-icon {
    -webkit-transform: skew(0);
            transform: skew(0);
    -webkit-box-shadow: rgba(0, 0, 0, 0.25) 0px 0px 5px;
            box-shadow: rgba(0, 0, 0, 0.25) 0px 0px 5px;
  }
  #about .about-box-active:hover .about-box-header {
    display: none;
  }
  #about .about-box-active:hover .about-box-desc {
    display: block;
  }
  #about .project-showcase {
    padding: 5% 0%;
  }
  #about .project-showcase .project-showcase-content {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transition: opacity .2s, -webkit-transform .2s;
    transition: opacity .2s, -webkit-transform .2s;
    transition: opacity .2s, transform .2s;
    transition: opacity .2s, transform .2s, -webkit-transform .2s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    position: relative;
  }
  #about .project-showcase .project-showcase-content .ps-desc {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column wrap;
            flex-flow: column wrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-left: 5%;
  }
  #about .project-showcase .project-showcase-content .ps-desc h4 {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    font-size: 1.75em;
    letter-spacing: 2px;
    color: snow;
    margin: 0;
    -ms-grid-column-align: center;
        justify-self: center;
  }
  #about .project-showcase .project-showcase-content .ps-desc p {
    -webkit-box-flex: 3;
        -ms-flex: 3;
            flex: 3;
    color: snow;
    overflow-y: auto;
    width: 90%;
    font-size: 1.25em;
  }
  #about .project-showcase .project-showcase-content .ps-desc button {
    width: 60%;
    background: snow;
    color: #5863F8;
    -webkit-transition: all .25s;
    transition: all .25s;
  }
  #about .project-showcase .project-showcase-content .ps-desc button:hover {
    color: #5863F8;
    background: snow;
    -webkit-box-shadow: rgba(255, 250, 250, 0.75) 0px 0px 25px;
            box-shadow: rgba(255, 250, 250, 0.75) 0px 0px 25px;
  }
  #about .project-showcase .project-showcase-content .ps-projects {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50vw;
            flex: 0 0 50vw;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    overflow-x: auto;
    -ms-scroll-snap-type: x mandatory;
        scroll-snap-type: x mandatory;
    -webkit-mask-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), color-stop(3%, black), color-stop(97%, black), to(rgba(0, 0, 0, 0)));
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), black 3%, black 97%, rgba(0, 0, 0, 0));
            mask-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), color-stop(3%, black), color-stop(97%, black), to(rgba(0, 0, 0, 0)));
            mask-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), black 3%, black 97%, rgba(0, 0, 0, 0));
  }
  #about .project-showcase .project-showcase-content .ps-projects .project {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 300px;
            flex: 0 0 300px;
    scroll-snap-align: center;
    margin-right: 5%;
    margin-top: 10px;
    margin-bottom: 10px;
    -webkit-box-shadow: none;
            box-shadow: none;
    z-index: 100;
  }
  #about .project-showcase .project-showcase-content .ps-projects .project:last-child {
    margin-right: 2.5%;
  }
  #about .project-showcase .project-showcase-content .ps-projects .project:first-child {
    margin-left: 2.5%;
  }
  #about .project-showcase .project-showcase-content .ps-projects .project:hover {
    -webkit-box-shadow: none;
            box-shadow: none;
    border: none;
    outline: none;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  #about .project-showcase .project-showcase-content .ps-right {
    -webkit-mask-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0)), color-stop(3%, black), color-stop(97%, black), to(rgba(0, 0, 0, 0.5)));
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0), black 3%, black 97%, rgba(0, 0, 0, 0.5));
            mask-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0)), color-stop(3%, black), color-stop(97%, black), to(rgba(0, 0, 0, 0.5)));
            mask-image: linear-gradient(to right, rgba(0, 0, 0, 0), black 3%, black 97%, rgba(0, 0, 0, 0.5));
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  #about .project-showcase .project-showcase-content .psd-right {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  #about .project-showcase .project-showcase-content .ps-padding {
    -webkit-box-flex: .25;
        -ms-flex: .25;
            flex: .25;
  }
  #about .presentation-showcase .project-showcase-content {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  #about .presentation-showcase .project-showcase-content h4 {
    text-align: center;
    font-size: 1.75em;
    letter-spacing: 2px;
    color: snow;
    margin-top: 0;
    padding-top: 2.5%;
  }
  #about .presentation-showcase .project-showcase-content .presentation-container {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  #about .presentation-showcase .project-showcase-content .presentation-container .presentation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: snow;
    font-size: 1.2em;
  }
  #projects #projects-header {
    margin-top: 2.5%;
    padding-top: 2.5%;
    padding-bottom: 2%;
  }
  #projects #projects-header h4 {
    color: #5863F8;
    margin-top: 1%;
    margin-bottom: 2%;
  }
  #projects .project-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
  #projects .project-container .project {
    width: 250px;
    height: 450px;
    width: 350px;
    height: 550px;
  }
  #projects .project-container .project .project-img {
    max-width: 350px;
  }
  #projects .project-container .project:last-of-type {
    margin-bottom: auto;
  }
  .body-contents {
    width: 85%;
  }
  #project {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
  #project #project-media > iframe, #project #project-media > img {
    position: -webkit-sticky;
    position: sticky;
    top: 10%;
    min-height: 400px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
  #project #project-description {
    text-align: left;
  }
  #project #project-description p {
    width: 100%;
  }
  #resume {
    width: 75%;
  }
  #resume #top-resume {
    padding: 0% 3%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column wrap;
            flex-flow: column wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #resume #top-resume img {
    width: 35%;
  }
  #resume #bottom-resume {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column wrap;
            flex-flow: column wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (min-width: 1200px) {
  #projects .project-container .project {
    min-width: 300px;
    min-height: 500px;
    max-width: 400px;
    max-height: 600px;
  }
  #projects .project-container .project .project-img {
    max-width: 400px;
  }
  #resume {
    width: 65%;
  }
  #resume #top-resume h4 {
    margin-bottom: 1%;
    margin-top: 1%;
  }
  #resume #top-resume p {
    font-size: 1.2em;
  }
  #resume #top-resume button {
    font-size: 1.25em;
  }
  #resume #top-resume img {
    width: 20%;
  }
  #resume #bottom-resume {
    margin-top: 0;
  }
  #resume #bottom-resume .collapsible-menu h6 {
    font-size: .75em;
  }
}
/*# sourceMappingURL=main.css.map */