* {
    --light: rgb(237, 245, 225);
    --dark:#05386b;
    --shade1:#8ee4af;
    --shade2:#5cdb95;
    --shade3:#379683;
}

body {
    margin:0;
    background-color:var(--shade2);
    color:var(--dark);
    font-family: 'Work Sans', sans-serif;
    font-weight: 300;
    font-size:16px;
    height: calc(100vh + 300px);
}

h1, h2, h3, h4, h5, h6, nav a {
 font-family: 'Montserrat', sans-serif;
 font-weight: 900;
 text-transform: uppercase;
 color:var(--light);
}

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

.top {
    width:100%;
    z-index: 100;
    transition:margin .3s;
}




#leftpane {
    left:0;
    /* padding-left:150px;
    padding-top:150px; */
    overflow: hidden;
    min-height: 300px;
    padding-top:20px;
    bottom:20px;

}

#leftpane {
    position:fixed;
    top:0;
}


#leftpane {
    height:100vh;
    width:calc(100vw - 325px);
    position:fixed;
    top:0;
    border-left:4px solid var(--dark);
}


#leftpane {
    left:0;
    width: 0;
    overflow-y:hidden;
}
#leftpane > * {
  width: 277px;
}

body.menu-open {
  overflow: hidden;
}

.menu-open #leftpane {
  width:277px;
  padding: 20px;
}

#leftpane, #rightpane, .screen-container {
  transition: all .5s ease;
}
/*
@media only screen and (max-height: 640px) {
  #leftpane {
      padding-top:120px;
  }
} */


#rightpane {
    right:0;
    top:0;
    position:absolute;
    width:100%;
    border-left: 4px solid var(--dark);
    overflow: hidden;
}


.menu-open #rightpane {
    /* width:calc(100% - 326px); */
    /* width:100vw; */
    /* right:-326px; */
    transform: translate(326px);
    pointer-events: none;
}

.menu-open #rightpane .screen-container {
  filter: blur(30px);
}

#menu-button {
  position: fixed;
  top:0;
  left:0;
z-index: 100;
transition: left .5s ease;
height:70px;
width:70px;
background: var(--shade2);
border: 4px solid var(--dark);
color: var(--dark);
font-family: 'Work Sans', sans-serif;
font-weight: bold;
text-transform: uppercase;
font-size: 50px;
padding:0;
}

.menu-open #menu-button {
  left:322px;

}

#menu-button span {
  display: block;
  transition: transform .5s ease;

}

.menu-open #menu-button span {
  transform: rotate(45deg);
}

#rightpanecontent {
  height:100%;
  width:100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items:center;
  align-content:center;
  position: relative;

}

.bottomtab {
  width:100%;
  height:65px;
  position:absolute;
  bottom:0;
  left:0;
  display: flex;
  justify-content: center;
  align-content: flex-end;
}


.bottomtab div {
  border-radius:29% 29% 0% 0% / 100% 100% 10% 0%;
  color:var(--light);
  width:200px;
  height:65px;
  font-size: 80px;
  line-height: 75px;
  text-align: center;
  padding-bottom:20px;
  transition: all .2s ease-in;
}

.bottomtab div:hover{
 background-color: var(--dark);
}

.bottomtab span {
  cursor:pointer;
}

.bottomtab .active {
  color:var(--dark);
  -webkit-text-stroke: 3px var(--light);
}

.slideshow {
  height: 80vh;
  max-width: 100vw;
  position: relative;
  width:100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  overflow:hidden;
  background-color:var(--shade3);
}

.slideshow img, .slideshow video {
  max-width: 98%;
  max-height: calc(100% - 70px);
  margin-bottom: 50px;
  margin-top: 20px;
  display: none;
}

.slideshow > .active {
  display:block;
}

#worklist {
  list-style: none;
  padding-left:0;
  position: relative;
}
#worklist .mask {
  position: absolute;
  width: 100%;
  height: 0;
  background-color: var(--shade3);
}

#worklist li {
  border: 2px solid var(--dark);
  text-align: center;
  padding:15px;
  margin-bottom:50px;
  position:relative;
  cursor:pointer;
  /* margin-right:10px; */
  transition: all .2s ease-in;
}

#worklist li:hover, #worklist li.active {
  background-color:var(--shade3);
  transition: all .2s ease-in;
}

#worklist li:not(:last-child)::after {
  content: '';
  position:absolute;
  bottom: -52px;
  left:0;
  height: 52px;
  border-right: 2px solid var(--dark);
  width:50%;
  text-align: center;
  cursor:default;
}

#infobox {
  padding: 15px;
  background-color: var(--shade1);
}



/* .top {
  margin-left:50vw;
  margin-top: 18vh;
  position:fixed;
} */

.slideshow {
height:100vh;
}


@media only screen and (max-width: 600px) {
#name {
font-size: 30px;
}
#webdev {
font-size: 18px;
}

#infobox {
margin-right:4px;
}
}

#infobox-container {
  display:none;
}



.swiper-container {
  height:78vh;
  width:calc(100% - 4px);
  position: absolute;
  bottom: 0;
  right:0;
  padding-bottom: 20px;
  overflow:hidden;
}

.swiper-slide {
  width: auto;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  max-width:100%;
}

.swiper-slide img, .swiper-slide video {
  /* object-fit: contain; */
  /* max-width: 100%; */
  max-height: 100%;
  width:auto;
  max-width: calc(100vw - 100px);
}

@media (max-width:800px) {
  .swiper-slide img, .swiper-slide video {
    max-width: 100%;
  }

}

.swiper-pagination {
  bottom:0;
  top:unset !important;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: var(--dark);
}


.swiper-button-next, .swiper-button-prev {
    color: var(--dark);
}


/* .swiper-slide video {
  height:100%;
  width:auto;
} */


.screen-container {
  /* position: absolute;
  top: 0;
  left:0;
  height: 100%;
  width: 100%; */
  /* height:97vh; */
  width: 100%;
  position: relative;
  overflow: hidden;
border-top: 4px solid var(--dark);

}

.screen-container-1 {
  /* position: absolute;
  top: 0;
  left:0;
  height: 100%;
  width: 100%; */
  height:100vh;

}



@keyframes screenIntro{
  from {opacity: 0;}
  to {opacity: 1;}

}

.screen-container > .content{
  /*  */
  transition:opacity .3s ease;
  z-index:1;
  position: relative;
  height: 100%;
  width:100%;
  /* pointer-events: none; */

}

.screen-container-1 >.content {
  opacity: 0;
  pointer-events: none;
}

/* The element to apply the animation to */
.screen-container.active  > .content {
  opacity: 1;
  /* border-left:4px solid var(--dark);
  border-right:4px solid var(--dark); */
  animation-name: screenIntro;
  animation-duration: .5s;


}
/*

.screen-container::before{
  content:'';
  z-index: 0;
  position: absolute;
      transform: rotate(
    32deg
    );
  bottom:90%;
  left:40%;
  height:100%;
  width:100%;
  transition: top .5s ease;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'%3E%3Cg fill='%2305386b' fill-opacity='1'%3E%3Cpath d='M12 0h18v6h6v6h6v18h-6v6h-6v6H12v-6H6v-6H0V12h6V6h6V0zm12 6h-6v6h-6v6H6v6h6v6h6v6h6v-6h6v-6h6v-6h-6v-6h-6V6zm-6 12h6v6h-6v-6zm24 24h6v6h-6v-6z'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
}

.screen-container:nth-child(2)::before{
  transform: rotate(-32deg);
  bottom:90%;
  right:40%;
  left:unset;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='96' viewBox='0 0 60 96'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%2305386b' fill-opacity='1'%3E%3Cpath d='M36 10a6 6 0 0 1 12 0v12a6 6 0 0 1-6 6 6 6 0 0 0-6 6 6 6 0 0 1-12 0 6 6 0 0 0-6-6 6 6 0 0 1-6-6V10a6 6 0 1 1 12 0 6 6 0 0 0 12 0zm24 78a6 6 0 0 1-6-6 6 6 0 0 0-6-6 6 6 0 0 1-6-6V58a6 6 0 1 1 12 0 6 6 0 0 0 6 6v24zM0 88V64a6 6 0 0 0 6-6 6 6 0 0 1 12 0v12a6 6 0 0 1-6 6 6 6 0 0 0-6 6 6 6 0 0 1-6 6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}



.screen-container.active::after {
} */

.bg-svg {
  /* transition: all .1s ease; */
  width:100%;
  position: absolute;
  bottom:0;
  z-index:0;
  filter: invert(15%) sepia(40%) saturate(3715%) hue-rotate(196deg) brightness(89%) contrast(96%);
}
/*
#bg-svg-1 {
  top:110vh
}

#bg-svg-2 {
  top:210vh
} */

@keyframes move-across {
  from {left: -400px;}
  to {left: calc(100vw + 400px);}

}


.big-cloud {
  position: absolute !important;
  top:80px;
  left: -400px;
  z-index: 3 !important;
   width:350px;
   height:120px;
   background:var(--dark);
   box-shadow: 10px 10px var(--shade3);
   border-radius:100px;
   animation-name: move-across !important;
   animation-timing-function: linear;
   animation-duration: 60s !important;
   animation-delay: 3s;
   animation-iteration-count:infinite !important;
}
.big-cloud::after, .big-cloud::before{
   content:"";
   position:relative;
   display:inline-block;
   background:inherit;
   border-radius:inherit;
}
.big-cloud::after{
  width: 100px;
   height: 100px;
   top: -128px;
   left: -124px;
}
.big-cloud::before{
   width:180px;
   height:180px;
   top: -70px;
   left:130px;
}



.med-cloud {
  position: absolute !important;
  top:225px;
   width:160px;
   z-index:2 !important;
   height:60px;
   background:var(--dark);
   box-shadow: 8px 8px var(--shade3);
   border-radius:50px;
  left:-300px;
   animation-name: move-across !important;
   animation-timing-function: linear;
   animation-duration: 100s !important;
   animation-delay:10s !important;
   animation-iteration-count:infinite !important;
}
.med-cloud::after, .med-cloud::before{
   content:"";
   position:relative;
   display:inline-block;
   background:inherit;
   border-radius:inherit;
}
.med-cloud::after{
  width: 50px;
    height: 50px;
    top: -58px;
    left: -4px;
}
.med-cloud::before{
   width:90px;
   height:90px;
   top: -34px;
    left: 16px;
}


@keyframes zoomFade {
  0% {
    opacity: 0;
    transform: scale(1);
    bottom:-50px;
  }
  100% {
    opacity: 1;
    bottom:0;
  }
}

#bg-svg-1 {
  /* opacity: 0;
  animation-name: zoomFade;
  animation-delay: 3s;
  animation-duration: 5s;
  animation-fill-mode: forwards; */
}

.screen-1 {
  opacity: 0;
  animation-name: zoomFade;
  animation-delay: 2.5s;
  animation-duration: 2s;
  animation-fill-mode: forwards;

}



.content {
  animation-name: screenIntro;
  animation-duration: 1s;
}

.small-cloud {
  position: absolute !important;
  top:300px;
   width:100px;
   height:40px;
   background:var(--dark);
   box-shadow: 5px 5px var(--shade3);
   border-radius:400px;
  left:-300px;
   animation-name: move-across !important;
   animation-timing-function: linear;
   animation-duration: 150s !important;
   animation-iteration-count:infinite !important;
}
.small-cloud::after, .small-cloud::before{
   content:"";
   position:relative;
   display:inline-block;
   background:inherit;
   border-radius:inherit;
}
.small-cloud::after{
  width: 30px;
    height: 30px;
    top: -40px;
    left: -45px;
}
.small-cloud::before{
   width:60px;
   height:60px;
   top: -20px;
    left: 32px;
}




@keyframes move-across-long {
  from {left: -400px;}
  to {left: 800vw;}

}


.airplane {
  position: absolute !important;
  top:100px;
  width:40px;
  left:-300px;
  animation-name: move-across-long !important;
  animation-timing-function: linear;
  animation-duration: 45s !important;
  animation-delay: 15s;
  animation-iteration-count:infinite !important;
  z-index:100;
}


@keyframes up-and-down {
  0% {
    top:0;
  }
  25%{
    transform:rotate(20deg);
  }
  50% {
    top: 100px;
  }
  75% {
    transform:rotate(-20deg);
  }
  100% {
    top:0;
  }

}

.airplane img {
  filter: invert(15%) sepia(40%) saturate(3715%) hue-rotate(196deg) brightness(89%) contrast(96%);
  width:40px;
}

.airplane .airplane-inside {
  animation-name:up-and-down;
  animation-timing-function: ease-in-out;
  animation-duration: 5s !important;
  position: relative;
  animation-iteration-count:infinite !important;
  padding:50px;
}

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


#page-header {
  max-width:60vw;
  text-align: center;
}


.typeing::after {
  content: '|';
  padding-left: 4px;
  animation-name:blink;
  animation-timing-function: ease-in-out;
  animation-duration: .5s !important;
  animation-direction: alternate;
  animation-iteration-count:infinite !important;
  position: relative;
  top:-2px;
}

body.no-scroll {
  height:100vh;
}

body.no-scroll .screen-container:not(:nth-child(1)){
  display: none;
}

.screen-container .content {
  text-align:center;
  padding-bottom: 82vh;
  padding-left:4px;
}

.planeloop {
  animation-play-state: paused;
}

@keyframes planeloop {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}


.airplane.planeloop img {
  animation-name:planeloop;
  transform-origin:center 100px;
  animation-timing-function: linear;
  animation-duration: 1s !important;
}

.raindrop {
  position: absolute;
  pointer-events: none;
}

@keyframes fall {
  0% {
    top:0;
  }

  100% {
    top:150vh;
  }
}

.raindrop::after {
  content: '';
  position: absolute;
  animation-name: fall;
  animation-fill-mode: forwards;
  animation-duration: 3s;
  height: 5px;
  width: 1px;
  background-color: var(--dark);
}


nav .logo-wrapper {
  width: 100%;
  text-align: center;
  padding:26px 0;
  height:80px;
}

nav .logo {
  width: 100%;
  text-align: center;
  text-decoration: none;
  padding:20px;
  border-radius: 100%;
  background-color: var(--dark);
  font-size: 46px;
}

nav .logo h1 {

}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

nav ul li {
  padding:  14px 0;
  margin:  0;
  width: 100%;
  text-align: center;
}

nav ul li a {
  text-decoration: none;
  font-size: 20px;
}




.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: .15;
}


@media (max-width:800px) {
  .swiper-container {
    height:300px;
  }
  .screen-container .content {
    padding-bottom:320px;
  }
  h1 {
    font-size: 22px;
  }
  h2 {
    font-size: 20px;
  }
  h3 {
    font-size: 18px;
  }
  p {
    font-size: 16px;
  }

}

.highlight span, span.highlight {
  background-color: #05386b;
opacity: .7;
}

.content > p, .content > h1, .content > h2, .content > h3, .content > h4  {
  padding-left: 5vw;
  padding-right:5vw;
}



.form-container {
  display: flex;
  justify-content: center;
}

.form-container form {
  width:250px;
  text-align: center;
}

.form-container form input, .form-container form textarea{
  width: 100%;
  background: transparent;
  outline: none !important;
  border: 4px solid var(--dark);
  border-radius: 8px;
  padding:8px;
  font-size: 16px;
  color:var(--light);
  box-sizing: border-box;
  margin-bottom: 8px;
  font-family: 'Ubuntu', sans-serif;
  font-size: 16px;
}

.form-container input[type='submit'] {
  font-weight: 800;
}

.form-container form textarea{
  margin-bottom: 4px;
}

.form-container ::placeholder {
 color:var(--light);
}


#contact .content {
  padding: 100px 0;
}
