/* @import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.6.3/css/font-awesome.css); */
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root { 
  --brand-color: #813dff;

  --box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  --box-shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.25);
  --transition-duration: 0.3s;
  --transition: 0.3s;

  --master-border-radius: 24px;
  scroll-behavior: smooth;
}

html {
  cursor: url('../images/icons/cursor.svg'), auto;
  overflow-x: hidden;
}

body {
  background: #070614;
  background-size: 100% 100vh;
  background-attachment: fixed;
  color: #fff;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body.noscroll {
  overflow: hidden;
}

a {
  color: var(--brand-color);
}

.uppercase {
  text-transform: uppercase;
}

a:hover {
  cursor: url('../images/icons/cursor-active.svg'), auto;
}

span {
  color: var(--brand-color);
  transition-duration: 1s;
}

.brand-logo:hover {
  opacity: 0.7;
  transition-duration: 0.5s;
  cursor: url('../images/icons/cursor-active.svg'), auto;
}

#bioterm-1 {
  color: #880000;
  font-weight: 200;
}

#bioterm-2 {
  font-weight: 200;
}

#fourohfour {
  background: #000 url('../images/404bg.jpg') no-repeat;
  background-size: 100% 100vh;
  background-attachment: fixed;
}

.clear-20 {
  width: 100%;
  height: 20px;
  clear: both;
}

.clear-40 {
  width: 100%;
  height: 40px;
  clear: both;
}

.clear-60 {
  width: 100%;
  height: 60px;
  clear: both;
}

p {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.8)
}

.accomplishments li {
  padding-left: 2rem;
  font-size: 1.2rem;
  font-weight: 300;
  color: #b7b7b7;
  margin-bottom: 20px;
  background-image: url('../images/icons/check.svg');
  background-position: 0% 0%;
  background-repeat: no-repeat;
}

.hireMe {
  position: fixed;
  top: 30px;
  right: 40px;
  z-index: 2;
}

.img-container {
  max-width: 600px;
}

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

.rounded {
  border-radius: 12px;
}

.roundedBig {
  border-radius: 30px;
}

.showcase {
  transition-duration: 0.1s;
  height: 20vw; 
}

.button-collapse img{
  width: 50px;
  height: 50px;
  margin-top: 20px;
}

.section {
  padding: 150px 0px;
  min-height: 100vh;
}

.section.specialized {
  padding: 25vh 0px;
}


.half {
  min-height: 750px;
}

#contact {
  padding: 160px 20px 160px 20px;
  background: radial-gradient(circle at 50% 50%, rgba(0, 0, 255, 0.1) 0%, rgba(0, 0, 255, 0) 55%);
}

#contact .row .col {
  padding: 0 60px;
}

#bio {
  background-image: url('../images/bio.png');
  background-size: cover;
  background-attachment: fixed;
  background-position: top;
}

#bio2 {
  background-image: url('../images/bg2.jpg');
  background-size: cover;
  background-attachment: fixed;
}

/* #design img {
  width: 100%;
  margin: 0 0 4px 0;
  transition-duration: 0.5s;
}

#design img:hover {
  transform: rotateX(10deg);
  transition-duration: 0.5s;
} */

#design .row .col {
  padding: 0 2px;
}

#design a {
  color: #ffffff;
}

#design p {
  margin: -5px 0;
}

#design ul li.collab {
  display: inline-block;
  background-color: #813dff30;
  /* border: 1px solid #777; */
  padding: 0 16px;
  font-size: 14px;
  width: fit-content;
  margin: 0px 4px 8px 0px;
  line-height: 32px;
  border-radius: 16px;
}

.circular {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolioSkills li{
  display: block;
  background-color: #813dff30;
  /* border: 1px solid #777; */
  padding: 0 16px;
  font-size: 16px;
  width: fit-content;
  margin: 0px 4px 8px 0px;
  line-height: 32px;
  border-radius: 16px;
}

#clients {
  backdrop-filter: blur(20px);
  margin: 20px 0;
  padding: 80px 20px;
  background: radial-gradient(circle at 50% 50%, rgba(0, 0, 255, 0.1) 0%, rgba(0, 0, 255, 0) 55%);
}

.pricing {
  background-color: #813dff10;
  backdrop-filter: blur(20px);
  padding: 20px;
  margin-bottom: 20px;
}

.portfolioGridImg {
  width: 100%;
  aspect-ratio: 10/6;
  transition-duration: 0.5s;
}

.portfolioTeaser {
  width: 95%;
  transition-duration: 0.5s;
}

.portfolioTeaser:hover {
  transform: perspective(400px) rotateY(10deg);
  transition-duration: 0.5s;
}

.portfolioTeaserCenter {
  width: 100%;
  transform: perspective(400px) rotateY(0deg);
  transition-duration: 0.5s;
}

.portfolioTeaserCenter:hover {
  transform: perspective(400px) rotateY(10deg);
  transition-duration: 0.5s;
}

.portfolioTeaserRight {
  width: 100%;
  transform: perspective(400px) rotateY(-10deg);
  transition-duration: 0.5s;
}

.portfolioTeaserRight:hover {
  transform: perspective(400px) rotateY(-20deg);
  transition-duration: 0.5s;
}

#portfolioFilter li {
  display: inline-block;
  width: fit-content;
  margin: 0px 40px 20px 0px;
  line-height: 32px;
  border-radius: 16px;
  text-transform: uppercase;
  font-size: 24px;
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
}

#portfolioFilter li:hover, #portfolioFilter li.active {
  color: rgba(255,255,255,1);
  transition-duration: 0.5s;
  cursor: url('../images/icons/cursor-active.svg'), auto;
}

.cta {
  width: fit-content;
  padding: 0 50px 0 20px;
  line-height: 48px;
  background: var(--brand-color) url('../images/icons/arrow-right.svg') no-repeat 90% 50%;
  color: #ffffff;
}

.cta:hover {
  transform: scale(1.05);
  transition-duration: 0.5s;
}

.secondary {
  width: fit-content;
  padding: 0 50px 0 20px;
  line-height: 46px;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  background: #ffffff10 url('../images/icons/arrow-right.svg') no-repeat 90% 50%;
}

.secondary:hover {
  cursor: url('../images/icons/cursor-active.svg'), auto;
  transform: scale(1.05);
  background: var(--brand-color) url('../images/icons/arrow-right.svg') no-repeat 90% 50%;
  transition-duration: 0.5s;
}

.tertiary {
  cursor: url('../images/icons/cursor-active.svg'), auto;
  width: fit-content;
  display: inline-block;
  padding: 0 16px 0 36px;
  margin-right: 4px;
  line-height: 46px;
  background: #ffffff10;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: rgba(255,255,255,0.8);
}

.sketch {
  background: #ffffff10 url('../images/icons/sketch.svg') no-repeat 12px 50%;
}

.sketch:hover {
  background: var(--brand-color) url('../images/icons/sketch.svg') no-repeat 12px 50%;
  transform: scale(1.05);
  transition-duration: 0.5s;
}

.music {
  background: #ffffff10 url('../images/icons/music.svg') no-repeat 12px 50%;
}

.music:hover {
  background: var(--brand-color) url('../images/icons/music.svg') no-repeat 12px 50%;
  transform: scale(1.05);
  transition-duration: 0.5s;
}

.travel {
  background: #ffffff10 url('../images/icons/travel.svg') no-repeat 12px 50%;
}

.travel:hover {
  background: var(--brand-color) url('../images/icons/travel.svg') no-repeat 12px 50%;
  transform: scale(1.05);
  transition-duration: 0.5s;
}

.secondary.pdf {
  background: #ffffff10 url('../images/icons/pdf.svg') no-repeat 10% 50%;
  padding: 0 20px 0 40px;
}

.secondary.pdf:hover {
  background: var(--brand-color) url('../images/icons/pdf.svg') no-repeat 10% 50%;
  padding: 0 20px 0 40px;
}

.portfolioLogo {
  width: 200px;

}

#cv {
  background: linear-gradient(135deg, rgba(0, 0, 255, 0.1), rgba(0, 0, 255, 0) 25%), linear-gradient(225deg, rgba(0, 0, 255, .2), rgba(0, 0, 255, 0) 15%);
}

#cv h4{
  color: var(--brand-color);
}

#art img {
  width: 100%;
  margin: 0 0 4px 0;
}

#art .row .col {
  padding: 0 2px;
}

#pricing .row .col {
  padding: 0 4px;
}

#research img {
  width: 100%;
  margin: 0 0 4px 0;
}

#research .row .col {
  padding: 0 2px;
}

#summary {
  min-height: 50vh;
}

#summary ul li {
  line-height: 30px;
  color: rgba(255,255,255,0.8);
  border-radius: 15px;
  margin-bottom: 16px;
  font-size: 1.2em;
  line-height: 1.4em;
  font-weight: 300;
}

#summary ul li.collab {
  background-color: rgba(0,0,0,0.1);
  border: 1px solid #777;
}

#summary ul li.okr {
  background-color: rgba(0,0,0,0.0);
  max-width: 1000px;
  padding-left: 25px;
  background-image: url('../images/icons/skill.png');
  background-position: 0px 6px;
  background-repeat: no-repeat;
  color: rgba(255,255,255,0.8);
}

.okr {
  background-color: rgba(0,0,0,0.0);
  max-width: 1000px;
  padding-left: 25px;
  background-image: url('../images/icons/skill.png');
  background-position: 0px 6px;
  background-repeat: no-repeat;
  color: rgba(255,255,255,0.6);
}

#process img{
  width: 100%;
  padding-bottom: 8px;
}

#process .row .col {
  padding: 0 8px;
}

#final img{
  width: 100%;
  margin-bottom: 8px;
}

#final .row .col {
  padding: 0px 4px;
}

#final a {
  color: #fff;
}

.home-wrap canvas {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: 100% 100%;
}

.home-wrap {
  background: linear-gradient(135deg, rgba(0, 0, 255, 0.1), rgba(0, 0, 255, 0) 65%), linear-gradient(225deg, rgba(0, 0, 255, .2), rgba(0, 0, 255, 0) 35%);
  position: relative;
}

#testimonials {
  background: radial-gradient(circle at 50% 50%, rgba(0, 0, 255, 0.1) 0%, rgba(0, 0, 255, 0) 55%);
}

.btn {
  border-radius: 20px;
}

.navbar-fixed {
  position: absolute;
  z-index: 2;
}

nav {
    height: 100px;
    line-height: 100px;
}

nav ul a {
    font-family: 'Barlow', sans-serif;
    font-size: 1.4rem;
    font-weight: 300;
    padding: 0 25px;
    opacity: 0.8;
    line-height: 110px;
}

nav i, nav [class^="mdi-"], nav [class*="mdi-"], nav i.material-icons {
    height: 100px;
    line-height: 100px;
}

nav .button-collapse {
    height: 48px;
    line-height: 48px;
    width: 48px;
    transition-duration: 0.5s;
    background: url('../images/icons/menu.svg') no-repeat;
    background-size: cover;
    background-position: center right;
}

nav .button-collapse:hover {
    width: 70px;
    transition-duration: 0.5s;
}

 .nav-wrapper .brand-logo {
    height: 100px;
    line-height: 100px;
    padding: 18px 0 0 24px;
    cursor: url('../images/icons/cursor.svg'), auto;
}

.love {
  display: none;
}

.down {
  width: 100px;
  height: 100px;
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -50px;
  background-image: url('../images/icons/down.svg');
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.8;
  transition-duration: 0.5s;
  z-index: 2;
}

.down:hover {
  opacity: 1;
  background-color: var(--brand-color);
  transition-duration: 0.5s;
}

@media only screen and (max-width: 601px){

  nav .button-collapse {
    margin-top: 29px;
  }

}

@media only screen and (min-width: 601px){


  .love {
    display: inline-block;
    margin-left: 40px;
  }

    nav a.button-collapse {
      margin: 29px 24px 0 4px;
        height: 48px;
        line-height: 48px;

    }

    nav ul a:hover {
        background-color: var(--brand-color);
        color: #eee;
        opacity: 1;
    }

    nav ul a.active {
        border-bottom: 0px solid #ddd;
        opacity: 1;
    }

    #main-progressbar-container {
      position: fixed;
      left: 28px;
      top: calc(50vh - 200px);
      width: 2px;
      height: 400px;
      background-color: rgba(255,255,255,0.4);
      display: block;
      overflow: hidden;
      display: none;
    }

    #main-progressbar {
      width: 2px;
      height: 0%;
      background-color: var(--brand-color);
      -webkit-transition: height .5s ease;
      -o-transition: height .5s ease;
      transition: height .5s ease;
    }

    #project-progressbar-container {
      position: fixed;
      right: 28;
      top: 175;
      width: 40px;
      height: 400px;
      display: none;
    }

    #project-progressbar-container a {
      min-width: 60px;
      min-height: 60px;
    }

    #project-progressbar-container ul{
      margin: 0;
      padding: 0;
    }

    #project-progressbar-container li{
      height: 60px;
      width: 60px;
      background: url('../images/icons/projectnav.png') no-repeat;
      background-position: center;
    }

    #project-progressbar-container li.firstnav{
      background: url('../images/icons/projectnav-start.png') no-repeat;
    }

    #project-progressbar-container li.lastnav{
      background: url('../images/icons/projectnav-end.png') no-repeat;
    }

    #project-progressbar-container li:hover {
      opacity: 0.4;
      transition-duration: 0.5s;
    }

    #project-progressbar-container li.active {
      background: url('../images/icons/projectnav-active.png') no-repeat;
      background-position: center;
    }
}

.hero-title {
  margin-top: 15vh;
}

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

h1 {
  font-family: 'Barlow', sans-serif;
  font-weight: 100;
  font-size: 3rem;
  text-align: center;
}

h2 {
  font-family: 'Barlow', sans-serif;
  font-weight: 100;
  font-size: 2.25rem;
  text-align: center;
}

h3 {
  font-family: 'Barlow', sans-serif;
  font-weight: 100;
  font-size: 2rem;
  text-align: center;
}

h4 {
  font-family: 'Barlow', sans-serif;
  font-weight: 100;
}

h5 {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
}

h6 {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-size: 18px;
}

/* The only rule that matters */
#video-background {
/*  making the video fullscreen  */
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;

}

.fullWidth {
  width: 100%;
}

.video-container {
  background-color: rgba(0,0,0,0.4);

}


.social-icon {
    color: #fff;
}
ul.social-icons {
    width: 245px;
    margin: 10px auto 10px auto;
}
.social-icons li {
    vertical-align: top;
    display: inline;
    height: 100px;
    margin-right: 5px;
}
.social-icons a {
    color: #fff;
    text-decoration: none;

}
.fa-facebook {
    padding:12px 16px;
    -o-transition:.5s;
    -ms-transition:.5s;
    -moz-transition:.5s;
    -webkit-transition:.5s;
    transition: .5s;
    background-color: #3d5b99;
    border-radius: 20px;
    height: 40px;
    width: 40px;
}
.fa-facebook:hover {
    opacity: 0.6;
}
.fa-twitter {
    padding:12px 13px;
    -o-transition:.5s;
    -ms-transition:.5s;
    -moz-transition:.5s;
    -webkit-transition:.5s;
    transition: .5s;
    background-color: #00aced;
    border-radius: 20px;
    height: 40px;
    width: 40px;
}
.fa-twitter:hover {
    opacity: 0.6;
}
.fa-youtube {
    padding:12px 14px;
    -o-transition:.5s;
    -ms-transition:.5s;
    -moz-transition:.5s;
    -webkit-transition:.5s;
    transition: .5s;
    background-color: #e64a41;
    border-radius: 20px;
    height: 40px;
    width: 40px;
}
.fa-youtube:hover {
    opacity: 0.6;
}
.fa-linkedin {
    padding:12px 14px;
    -o-transition:.5s;
    -ms-transition:.5s;
    -moz-transition:.5s;
    -webkit-transition:.5s;
    transition: .5s;
    background-color: #0073a4;
    border-radius: 20px;
    height: 40px;
    width: 40px;
}
.fa-linkedin:hover {
    opacity: 0.6;
}
.fa-google-plus {
    padding:12px 10px;
    -o-transition:.5s;
    -ms-transition:.5s;
    -moz-transition:.5s;
    -webkit-transition:.5s;
    transition: .5s;
    background-color: #e25714;
    border-radius: 20px;
    height: 40px;
    width: 40px;
}
.fa-google-plus:hover {
    opacity: 0.6;
}

nav .button-collapse {
  float: right;
}

.closeMenu {
  height: 48px;
  width: 48px;
  position: fixed;
  top: 29px;
  right: 20px;
  background-image: url('../images/icons/x.svg');
  background-size: cover;
}

.side-nav {
  background-color: #813dff99;
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  width: 100vw;
  padding-top: 20vh;
}

.side-nav li>a {
  font-family: 'Barlow', sans-serif;
  color: #eee;
  font-size: 24px;
  font-weight: 300;
  height: 10vh;
  line-height: 10vh;
  margin: 0;
  padding-right: 40px;
  text-align: right;
  transition-duration: 0.3s;
}

@media only screen and (max-width: 992px) {
  nav .brand-logo {
    left: 0;
    transform: translateX(0%);
  }

  #main-progressbar-container {
    display: none;
  }

}

.footer {
   background-color: rgba(0,0,0,0);
   padding: 0 40px;
   bottom: 0;
   width: 100%;
   line-height: 60px;
   color: rgba(255,255,255,0.8);
}

.publication {
  border-left: 1px solid #aaa;
  padding-left: 20px;
  margin-bottom: 30px;
  opacity: 0.8;
  transition-duration: 0.5s;
}

.publication:hover {
  opacity: 1;
  transition-duration: 0.5s;
  border-left: 1px solid var(--brand-color);
}

.education {
  /* background-image: url('../images/icons/education-complete.svg'); */
  margin-bottom: 40px;
  background-repeat: no-repeat;
}

.education.incomplete {
  background-image: url('../images/icons/education-incomplete.svg');
}

.experience {
  margin-bottom: 40px;
}

.experience p {
  margin-bottom: 10px;
  margin-top: 10px;
  padding-left: 25px;
  background-image: url('../images/icons/skill.png');
  background-position: 0 5px;
  background-repeat: no-repeat;
}

.skillset {
  margin-bottom: 30px;
}

.skillset ul li {
  font-size: 1.2rem;
  font-weight: 300;
  height: 30px;
  line-height: 30px;
  padding-left: 25px;
  background-image: url('../images/icons/skill.png');
  background-position: left center;
  background-repeat: no-repeat;
}

.email {
  background-image: url('../images/icons/email.svg');
  background-repeat: no-repeat;
  background-color: rgba(0,0,0,0.3);
  height: 60px;
  line-height: 60px;
  padding: 0 65px;
  transition-duration: 0.5s;
  width: 280px;
  font-size: 1.4rem;
}

.email:hover {
  background-color: var(--brand-color);
  transition-duration: 0.5s;
  height: 60px;
  width: 310px;
}

.insta {
  background: #d6249f;
  background-image: url('../images/icons/insta.svg');
  background: url('../images/icons/insta.svg'), radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
  background-color: rgba(0,0,0,0.3);
  height: 48px;
  width: 48px;
  display: inline-block;
  transition-duration: 0.5s;
}

.insta:hover {
  transform: scale(1.1);
  transition-duration: 0.5s;
}

.linkedin {
  background-image: url('../images/icons/linkedin.svg');
  background-color: #0274b3;
  height: 48px;
  width: 48px;
  display: inline-block;
  transition-duration: 0.5s;
}

.linkedin:hover {
  transition-duration: 0.5s;
  transform: scale(1.1);
}

#materialbox-overlay {
  background-color: rgba(0,0,0,0.8);
}

.materialboxed {
  cursor: url('../images/icons/cursor-active.svg'), auto;
}

.masonry-grid {
  display: grid;
  gap: 4px;
  grid-auto-rows: 200px; 
  grid-template-columns: repeat(auto-fill, minmax(30%, 1fr));   /* 4 */
  grid-template-rows: masonry; /* Activates masonry layout along the row axis */
  align-items: flex-start;
}

.masonry-item {
  width: 100%;
}


.first {
  background-color: #927e50;
  color: #fff;
  border-radius: 20px;
  height: 40px;
  line-height: 40px;
  width: 120px;
  text-align: center;
  margin-bottom: 20px;
}

.first:hover {
  opacity: 0.8;
  transition-duration: 0.5s;
}

.second {
  background-color: #777;
  border-radius: 20px;
  color: #fff;
  height: 40px;
  line-height: 40px;
  width: 120px;
  text-align: center;
}

.second:hover {
  opacity: 0.8;
  transition-duration: 0.5s;
}

#project-nav {
  margin: 0;
  padding: 0;
  padding: 100px 0 150px 0;
  min-height: unset;
}

.project-nav-container {
  width: 202px;
  margin: 0 auto;
}

.prev-project {
  width: 100px;
  height: 100px;
  float: left;
  background-image: url('../images/icons/down.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50%;
  transform: rotate(90deg);
  background-color: rgba(0,0,0,0.1);
  transition-duration: 0.5s;
  
  opacity: 0.8;
}

.prev-project:hover {
  opacity: 1;
  background-color: var(--brand-color);
  transition-duration: 0.5s;
}

.next-project {
  width: 100px;
  height: 100px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50%;
  transform: rotate(-90deg);
  float: right;
  background-image: url('../images/icons/down.svg');
  background-color: rgba(0,0,0,0.1);
  transition-duration: 0.5s;
  opacity: 0.8;
}

.next-project:hover {
  opacity: 1;
  background-color: var(--brand-color);
  transition-duration: 0.5s;
}

.project-title {
  perspective: 600px;
  transition-duration: 0.5s;
}

.project-title img {
  transition-duration: 0.5s;
}

.project-title img:hover {

  transform: rotateX(10deg);
  transition-duration: 0.5s;
}

.project-image-container {
  max-width: 600px;
  margin: 0 auto;
}

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

/* ::-webkit-scrollbar {
    display: none;
} */

.map-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 35px;
  height: 0;
  overflow: hidden;
}

.map-container iframe {
  position: absolute;
  top:0;
  left: 0;
  width: 100%;
  height: 100%;
}

::-webkit-scrollbar {
  background-color: rgba(0,0,0,0.2);
  height: 0px;
  width: 2px;
}

::-webkit-scrollbar-thumb {
  background-color: var(--brand-color);
  height: 0px;
  width: px;
}

.persona {
  border-radius: 50%;
  height: 200px !important;
  width: 200px !important;
  margin: 0 auto;
  display: block;
}

#loaderAnimation {
  width: 200px;
  margin: 0 calc(50% - 100px);
  margin-top: 100px;
  display: block;
}

.loaderPart {
  fill: #02E0C0;
  opacity: 1;
  animation-name: fader;
  animation-duration: 500ms;
  animation-iteration-count: infinite;
  animation-direction: alternate-reverse;
  animation-fill-mode: both;
}

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

#loaderPart1 {
  -webkit-animation-delay: 25ms;
}
#loaderPart2 {
  -webkit-animation-delay: 50ms;
}
#loaderPart3 {
  -webkit-animation-delay: 75ms;
}
#loaderPart4 {
  -webkit-animation-delay: 100ms;
}
#loaderPart5 {
  -webkit-animation-delay: 125ms;
}
#loaderPart6 {
  -webkit-animation-delay: 150ms;
}
#loaderPart7 {
  -webkit-animation-delay: 175ms;
}
#loaderPart8 {
  -webkit-animation-delay: 200ms;
}
#loaderPart9 {
  -webkit-animation-delay: 225ms;
}
#loaderPart10 {
  -webkit-animation-delay: 250ms;
}
#loaderPart11 {
  -webkit-animation-delay: 275ms;
}
#loaderPart12 {
  -webkit-animation-delay: 300ms;
}
#loaderPart13 {
  -webkit-animation-delay: 325ms;
}
#loaderPart14 {
  -webkit-animation-delay: 350ms;
}
#loaderPart15{
  -webkit-animation-delay: 375ms;
}
#loaderPart16 {
  -webkit-animation-delay: 400ms;
}
#loaderPart17 {
  -webkit-animation-delay: 425ms;
}
#loaderPart18 {
  -webkit-animation-delay: 450ms;
}
#loaderPart19 {
  -webkit-animation-delay: 475ms;
}


.section {
  position: relative;
}

.leftArrow {
  width: 80px;
  height: 80px;
  position: absolute;
  top: calc(50vh - 100px);
  left: 0;
  background-image: url('../images/icons/down.svg');
  background-size: 50% 50%;
  background-position: center;
  background-repeat: no-repeat;
  transform: rotate(90deg);
  transition-duration: 0.5s;
  z-index: 2;
}

.rightArrow {
  width: 80px;
  height: 80px;
  position: absolute;
  top: calc(50vh - 100px);
  background-size: 50% 50%;
  right: 0;
  background-image: url('../images/icons/down.svg');
  background-position: center;
  background-repeat: no-repeat;
  transform: rotate(-90deg);
  transition-duration: 0.5s;
  z-index: 2;
}

@media only screen and (min-width: 1600px) {
  .leftArrow,
  .rightArrow {
    top: calc(50vh - 200px);
  }
}



.leftArrow:hover, .rightArrow:hover {
  opacity: 1;
  background-color: var(--brand-color);
  transition-duration: 0.5s;
}

.slide {
  height: 100vh;
  width: 100vw;
  position: absolute;
  overflow-x: hidden;
  cursor: grab;
  padding: 60px;
}

.activeSlide {
  transition: ease-in-out 0.5s;
  right: 0vw;
  opacity: 1;
}

.rightSlide {
  transition: ease-in-out 0.5s;
  right: 100vw;
  opacity: 0;
}

.leftSlide {
  transition: ease-in-out 0.5s;
  right: -100vw;
  opacity: 0;
}

#loaderOverlay {
  opacity: 1;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #070614;
  z-index: 9999999;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

#loaderOverlay.inactive {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.circle {
  border: 2px solid rgba(129,61,255,0.10);
  border-top: 2px solid var(--brand-color); /* visible loader segment */
  position: fixed;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  left: calc(50vw - 50px);
  top: calc(50vh - 50px);
  animation: spin 1s linear infinite;
}
  
@keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

  #sidenav-overlay {
    display: none;
  }


/* Logo */
#logo {
  background-image: url('../images/logo.svg');
  background-repeat: no-repeat;
  background-size: cover;
  position: fixed;
  top: 12px;
  left: 40px;
  height: 60px;
  width: 264px;
  transition-duration: var(--transition-duration);
  z-index: 3;
}

#logo:hover {
  transform: scale(1.05);
  transition-duration: var(--transition-duration);
}

#nav {
  position: fixed;
  top: 0px;
  right: 0px;
  margin: 0;
  padding: 0;
  transition-duration: var(--transition-duration);
}

#nav a {
  color: white;
  width: 100%;
  height: 100%;
  display: block;
}

#nav {
  margin-right: 30px;
}

#nav li {
  display: inline-block;
  font-size: 20px;
  font-weight: 300;
  font-family: 'Barlow', sans-serif;
  text-transform: uppercase;
  line-height: 120px;
  /* border-bottom: 2px rgba(255,255,255,0.2) solid; */
  margin: -2px;
}

#nav li a {
  padding: 0 24px 0 24px;
  transition-duration: 0.5s;
}

#nav li a:hover, #nav li a.active {
  background-color: var(--brand-color);
  transition-duration: 0.5s;
}

#navWrapper {
  position: fixed;
  right: -100vw;
  width: 100vw;
  height: 100vh;
  transition-duration: var(--transition-duration);
  z-index: 2;
}

#navTrigger {
  width: 40px;
  height: 40px;
  position: fixed;
  top: 30px;
  right: 28px;
  background-image: url('../images/icons/menu.svg');
  z-index: 3;
  display: none;
}


/* Change look / feel for smaller screen sizes */
@media only screen and (max-width: 800px) {

  .hero-title {
    margin-top: 10vh;
  }

  .section.specialized {
    padding: 15vh 0px;
  }
  

  #nav {
    top: 20vh;
    right: 0;
    width: 100vw;
    margin-right: 0px;
  }

  #nav li {
    font-size: 24px;
    display: block;
    text-align: right;
    margin-right: 4px;
  }

  #nav li a:hover, #nav li a.active {
    color: #fff;
    border-bottom: 0px var(--brand-color) solid;
  }

  #nav button {
    display: none;
  }

  .roboticsMobile {
    display: block;
  }

  .robotics {
    display: none;
  }

  #navWrapper {
    background-color: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    z-index: -1;
    transition-duration: var(--transition);
  }

  #navWrapper.active {
    z-index: 3;
    right: 0rem;
    transition-duration: var(--transition);
  }

  #navTrigger {
    display: block;
    right: 20px;
    z-index: 4;
  }

  #navTrigger.active {
    background-image: url('../images/icons/x.svg');
  }

  #logo {
    left: 20px;
    top: 4px;
  }

  #contact .row .col {
    padding: 0 20px;
  }
  
  .footer {
    padding: 0 24px;
  }

  /* Nav */
  .header {
    width: 100vw;
    height: 100px;
    position: fixed;
    top: 0px;
    left: 0px;
    /* background: linear-gradient(#050e1dff, #050e1d00); */
    background: rgba(5, 14, 29, 0.1);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    z-index: 2;
  }
}

#hobbyOverlay {
  width: 100vw;
  min-height: 100vh;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: -1;
  transition-duration: var(--transition);
  overflow-y: scroll;
  overscroll-behavior: contain;
  inset: 0;
  visibility: hidden;
}

#hobbyOverlay.active {
  visibility: visible;
  z-index: 5;
  transition-duration: var(--transition);
}

#hobbyOverlay img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

#hobbyOverlay img.photo {
  height: auto;
}

#hobbyOverlay .col {
  padding: 2px;
}

.exitHobbyOverlay {
  height: 40px;
  width: 40px;
  background-image: url('../images/icons/x.svg');
  position: fixed;
  top: 30px;
  right: 16px;
  opacity: 0;
  visibility: hidden;
  cursor: url('../images/icons/cursor-active.svg'), auto;
  transition-duration: var(--transition);
}

.exitHobbyOverlay.active {
  opacity: 1;
  z-index: 4;
  visibility: visible;
  transition-duration: var(--transition);
}

#hobbyTitle {
  font-size: 32px;
  margin-top: 32px;
}