/* ------------------------------ Primary style ------------------------------ */
*, *::after, *::before {
  box-sizing: border-box;
}
::selection {
  background: #00e5ea;
	color: #fff;/* WebKit/Blink Browsers */
}
::-moz-selection {
  background: #00e5ea;
	color: #fff;/* Gecko Browsers */
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  background:#273040;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.group:after {
  content: "";
  display: table;
  clear: both;
}

/* ------------------------------ Fonts ------------------------------ */
@font-face {
font-family: "Montserrat-Semibold";
src: url("../fonts/montserrat-semibold-webfont.eot");
src: url("../fonts/montserrat-semibold-webfont") format("woff"),
url("../fonts/montserrat-semibold-webfont.otf") format("opentype"),
url("../fonts/montserrat-semibold-webfont.svg") format("svg");
}
@font-face {
font-family: "Montserrat-Regular";
src: url("../fonts/montserrat-regular-webfont.eot");
src: url("../fonts/montserrat-regular-webfont") format("woff"),
url("../fonts/montserrat-regular-webfont.otf") format("opentype"),
url("../fonts/montserrat-regular-webfont.svg") format("svg");
}
.travels p,
.wiresleft p,
.abouttext2 p,
.writeup p,
.workintrotext p, .workintrobox p, .worktext2 p,
.skillz p, .skillz ul {
  color: #ffffff;
}

.abouttext h2, .abouttext2 h2, .workstart h2 {
  color: #ffffff;
  font-family: 'Montserrat-SemiBold';
}


/* ------------------------------ Animation ------------------------------ */

/* --------------- Blob --------------- */
@keyframes rotate {
  0% {transform: rotate(0deg);}
  100% {transform: rotate(359deg);}
}
@keyframes rotate2 {
  0% {transform: rotate(0deg);}
  100% {transform: rotate(359deg);}
}
/* --------------- Float --------------- */
@-webkit-keyframes float {
  0% {
    -webkit-transform: translatey(0px);
            transform: translatey(0px);
  }
  50% {
    -webkit-transform: translatey(-20px);
            transform: translatey(-20px);
  }
  100% {
    -webkit-transform: translatey(0px);
            transform: translatey(0px);
  }
}

@keyframes float {
  0% {
    -webkit-transform: translatey(0px);
            transform: translatey(0px);
  }
  50% {
    -webkit-transform: translatey(-20px);
            transform: translatey(-20px);
  }
  100% {
    -webkit-transform: translatey(0px);
            transform: translatey(0px);
  }
}

/* --------------- Bouncing Arrow --------------- */
@-moz-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -moz-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

/* --------------- Fade In --------------- */
.hideme {
  opacity:0;
}
@keyframes fadeIn{
    0% {opacity:0; transform:  translate(0px,40px)  ;}
    100% {opacity:1;transform:  translate(0px,0px)  ;}
}
@-moz-keyframes fadeIn{
    0% {opacity:0;-moz-transform:  translate(0px,40px)  ;}
    100% {opacity:1;-moz-transform:  translate(0px,0px)  ;}
}
@-webkit-keyframes fadeIn {
    0% {opacity:0;-webkit-transform:  translate(0px,40px)  ;}
    100% {opacity:1;-webkit-transform:  translate(0px,0px)  ;}
}
@-o-keyframes fadeIn {
    0% {opacity:0;-o-transform:  translate(0px,40px)  ;}
    100% {opacity:1;-o-transform:  translate(0px,0px)  ;}
}

.fade-in {
	opacity:0;  /* make things invisible upon start */
	-webkit-animation:fadeIn ease-in 1;  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
	-moz-animation:fadeIn ease-in 1;
	animation:fadeIn ease-in 1;

	-webkit-animation-fill-mode:forwards;  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
	-moz-animation-fill-mode:forwards;
	animation-fill-mode:forwards;

	-webkit-animation-duration:0.5s;
	-moz-animation-duration:0.5s;
	animation-duration:0.5s;
}

/* ------------------------------ Home Page ------------------------------ */
/* --------------- Background Ocean --------------- */
.background {
  background-color: #273040;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
}
.background .water{
  background-image: url("../images/ocean.jpg");
  position: relative;
  top: -10vh;
  left: -10vw;
  height: 120vh;
  width: 120vw;
  background-size: cover;
  filter: url("#turbulence");
  opacity: 1;
}
svg.effect {
  display: none;
}

/* --------------- Top/Bottom Banner --------------- */
.banner{
	height: 100vh;
	position: relative;
}
.bannertxt{
	width: 100%;
	padding-top: 46vh;
	text-align: center;
	margin: 0 auto;
}
.bannersplat{
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -185px;
    margin-top: -250px;
    width: 370px;
    height: 300px;
    z-index: 0;
}
.contacttxt{
	width: 100%;
	padding-top: 8vh;
	text-align: center;
	margin: 0 auto;
	position: relative;
  z-index: 2;
}
/* --------------- Services --------------- */
.skillz{
    background: url("../images/wavy.png") top left no-repeat;
    background-size: 200%;
    background-color: #273040ed;
    padding: 11% 7% 20% 7%;
    width: 100%;
    position: relative;
    z-index: 500;
}
.design, .direction, .strategy, .customer{
	  width: 100%;
    float: none;
    padding: 0;
    text-align: left;
}
.design{
	margin-top: -5%;
}

/* --------------- Referenzen --------------- */
.workstart {
  padding: 8vh 0vh 2vh;
  position: relative;
}
.work {
  width: 100%;
	position: relative;
	background-color: #273040ed;
	z-index: 120;
  padding: 0 0 20% 0;
	box-shadow: 0 0 150px #000000a6;
}
/* Bubble */
.homeworksplat, .homeworksplat2 {
  position: absolute;
  top: 7%;
  width: 100%;
  height: 500px;
  z-index: 0;
}
.homeworksplat {
  left: 0;
}
.homeworksplat2{
  right: 0;
}
.workpic{
	width: 100%;
	float: none;
	height:400px;
}
.workpic img, .workpic2 img{
	width: 90%;
}
.workpic2{
	width: 100%;
	float: none;
	height: 400px;
}
.workintro, .workintro2{
width: 100%;
padding: 0 7%;
float: none;
text-align: left;
position: relative;
z-index: 10;
}
.work1, .work2, .work3{
	padding: 0;
	position: relative;
}
/* ------------------------------ Footer ------------------------------ */
.bannersplatfoot{
	position: absolute;
    top: 60%;
    left: 50%;
    margin-left: -185px;
    margin-top: -325px;
    width: 370px;
    height: 650px;
    z-index: 0;
}
.icon::before {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-size: 22px;
    color: #D3D3D3;
    margin: 20px auto 0px auto;
}
.dribbble::before {font-family: "Font Awesome 5 Brands"; font-weight: 400; content: "\f17d";}
.facebook::before {font-family: "Font Awesome 5 Brands"; font-weight: 400; content: "\f09a";}
.instagram::before {font-family: "Font Awesome 5 Brands"; font-weight: 400; content: "\f16d";}
.linkedin::before {font-family: "Font Awesome 5 Brands"; font-weight: 400; content: "\f0e1";}

/* ------------------------------ Ship ------------------------------ */
.shipwrap{
    position: fixed;
    pointer-events: none;
    top: 50%;
    left: 50%;
    margin-left: -126px;
    margin-top: -115px;
    -webkit-transform: translatey(0px);
    transform: translatey(0px);
    -webkit-animation: float 6s ease-in-out infinite;
    animation: float 6s ease-in-out infinite;
    width: 248px;
    height: 350px;
    z-index: 2;
    text-align: center;
}
.ship{
display: none;
	}
.shipmob{
	display: inline;
}
.shipwrap2{
	position: fixed;
	pointer-events: none;
	top: 50%;
	right:0;
	margin-right: -120px;
	margin-top: -115px;
	width: 240px;
	z-index: 1;
	text-align: center;
	-webkit-transform: translatey(0px);
  transform: translatey(0px);
  -webkit-animation: float 6s ease-in-out infinite;
  animation: float 6s ease-in-out infinite;
}
/* ------------------------------ Banner Footer ------------------------------ */
.contactbanner{
	height: 100vh;
	position: relative;
  padding: 10% 5% 0%;
}
.contactbanner .bottom,
.contactbanner .bottom2 {
  position: absolute;
  width: 100%;
  left: 0;
  z-index: 100;
}
.contactbanner .bottom {
  bottom: 20%;
}
.contactbanner .bottom2 {
  bottom: 3%;
}
.contactbanner .bottom2 button,
.contactbanner .bottom2 p {
    color: #BABCBF;
    display: inline;
    font-family: Montserrat-Regular;
    text-decoration: none;
    font-size: 14px;
}
.contactbanner .bottom2 button {
  background-color: transparent;
  border: none;
}
.worktext {
  text-align: center;
}
.contactbanner .workintro1 p{
  display: block;
  text-align: center;
}
.contactbanner .workintro2 {
  display: none;
}
.contactbanner .workintro2 p{
  text-align: right;
}

/* ------------------------------ Fixed Frame ------------------------------ */
.footleft{
	  bottom: 80px;
    width: 165px;
    left: -76px;
    height: 40px;
    position: fixed;
    z-index: 100;
    transform: rotate(90deg);
    color: #BABCBF;
}
.leftylink{
    transform: rotate(90deg);
    position: fixed;
	display: none;
    top: 50%;
    left: -13px;
    z-index: 15;
    color: #fff;
    font-family: Montserrat-Semibold;
    font-weight: normal;
}
.leftylink.act{
	text-decoration: line-through;
}
.rightylink{
    transform: rotate(-90deg);
    position: fixed;
    top: 50%;
    right: -21px;
    z-index: 15;
    color: #fff;
    font-family: Montserrat-Semibold;
    font-weight: normal;
	display: none;
}
.rightylink.act{
	text-decoration: line-through;
}
.leftbar{
    top: 0;
    left: 0;
    position: fixed;
    z-index: 11;
	width: 40px;
	background-color: none;
	height: 100%;
}
.rightbar{
    top: 0;
    right: 0;
    position: fixed;
    z-index: 11;
	width: 40px;
	background-color: none;
	height: 100%;
}
.footleft p{
	color: #fff;
	font-family:Montserrat-Regular;
	font-weight: normal;
	text-align: right;
	font-size: 14px;
}
.footright{
    text-align: right;
    width: 30px;
    bottom: 15px;
    right: 11px;
    position: fixed;
    z-index: 100;
}
/* ------------------------------ Headlines ------------------------------ */
h1{
  color:#fff;
  font-family:Montserrat-Semibold;
  text-align: center;
  font-weight: normal;
  z-index: 2;
  position: relative;
}

.bannertxt h1{
	font-size: 17vw;
	letter-spacing: -4px;
}
.contacttxt h1{
	z-index: 2000;
	font-size: 10vw;
	letter-spacing: 0px;
  margin-bottom: 10px;
}
.abouttext h2, .workstart h2{
  font-size: 10vw;
  letter-spacing: -1px;
}
.abouttext h2 {
  margin-bottom: 20px;
}
.abouttext2 h2{
  font-size: 10vw;
  margin-bottom: 30px;
  letter-spacing: -1px;
}
.subheadline {
  text-align: center;
  color: #00e7ea;
  display: block;
  font-family: Montserrat-SemiBold;
  font-size: 20px;
  margin-top: 20px;
}
/* ------------------------------ Text ------------------------------ */
p {
    color: #fff;
    text-align: left;
    font-family: Montserrat-Regular;
    font-weight: normal;
}
.abouttext p{
    text-align: center;
    font-size: 20px;
    line-height: 35px;
}
.abouttext span{
	color: #00E5EA;
}
.work span, .workintro1 p, .contactbanner a{
    color: #00e7ea;
    font-family: Montserrat-SemiBold;
    font-size: 20px;
}
.contactbanner .contacttxt a{
  color: #fff;
  text-decoration: underline;
  font-size: 10vw;
}
/* ------------------------------ Waves ------------------------------ */
.workclose{
  width: 100%;
	padding: 4vh 0 0 0;
  position: relative;
  opacity: 0.5;
  display: none;
}
.workclose img{
	width:200%;
}
.whale {
  -webkit-animation: float 3s ease-in-out infinite;
  animation: float 3s ease-in-out infinite;
}

/* ------------------------------ Über Uns Abschnitt ------------------------------ */
.abouttext{
    padding: 14% 7%;
    width: 100%;
    margin: 16% auto 0%;
    z-index: 500;
    position: relative;
    background-color: #273040ed;
    box-shadow: 0 0 150px #000000a6;
}
/* ------------------------------ Referenzen ------------------------------ */
.worktext h3,
.worktext2 h3 {
	color:#fff;
	font-family:Montserrat-SemiBold;
	font-weight: normal;
	font-size: 10vw;
	letter-spacing: -1px;
}
.worktext p{
	font-family:Montserrat-Regular;
	font-weight: normal;
	font-size: 18px;
	line-height: 28px;
	margin-top: 20px;
}
.worktext .worktags {
  margin-top: 10px;
}
/* ------------------------------ Leistungen ------------------------------ */
.skillzpic1 img,
.skillzpic2 img,
.skillzpic3 img,
.skillzpic4 img {
	width: 100%;
  position: relative;
  z-index: 120;
}
.skillzpic1,
.skillzpic2,
.skillzpic3,
.skillzpic4 {
  position: relative;
}
.skillzpic1{
	top:140px;
	left:0;
	width: 150px;
	z-index: 100;
}
.skillzpic2{
	top:90px;
	right:0%;
	width: 150px;
	z-index: 100;
	text-align: left;
	margin: 0;
}
.skillzpic3{
	top:140px;
	left:0;
	width: 150px;
	z-index: 100;
}
.skillzpic4{
	top:90px;
	right: 0%;
	width: 150px;
	z-index: 100;
	text-align: left;
	margin: 0;
}
.skillz p, .skillz ul{
	font-family:Montserrat-Regular;
	font-weight: normal;
	font-size: 18px;
	line-height: 30px;
	margin-top: 18px;
}
.skillz ul{
  color: #00E5EA;
  line-height: 35px;
}
.skillz h3{
	color: #fff;
	font-family:Montserrat-SemiBold;
	font-weight: normal;
	font-size: 10vw;
	margin-top: 50px;
	letter-spacing: -1px;
}
/* ------------------------------ Bubbles ------------------------------ */
.fluid.skilly{
	margin:-46px auto 0 0;
	background: #00e5ea;
	width: 150px;
	height: 150px;
}
.fluid.skillyright{
	margin:-90px auto 0 0;
	background: #00e5ea;
	width: 150px;
	height: 150px;
}

/* ------------------------------ Referenzen ------------------------------ */
.worktext{
	padding-left: 0px;
	text-align: left;
}
.worktext2{
	text-align: left;
	padding-right: 20px;
}
.worktext h3 a,
.worktext2 h3 a{
	color:#fff;
	font-family:Montserrat-SemiBold;
	font-weight: normal;
	letter-spacing: -1px;
}
.worktext2 p{
	font-family:Montserrat-Regular;
	font-weight: normal;
	font-size: 18px;
	line-height: 28px;
	margin-top: 20px;
}
/* ------------------------------ Arrow Down ------------------------------ */
.scroll {
	position: absolute;
 	bottom: 17px;
    left: 50%;
    margin-left: -3px;
    width: 8px;
    height: 36px;
 	background-image: url("../images/scroll.svg");
  	background-size: contain;
	z-index: 1;
}
.bounce {
  -moz-animation: bounce 2s infinite;
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
}

/* ------------------------------ Navigation ------------------------------ */
.navitems{
	text-align: left;
		position: absolute;
	opacity: 0;
	left: 15%;
	width: 100%;
	margin-top: 20%;
	z-index: 100;
	  -webkit-transition: all 0s ease-out;
	  -webkit-transition-delay: 0s;
}
.navcolumn h2{
	  font-family: Montserrat-Semibold;
    text-align: left;
    display: block;
    margin-bottom: 0;
    font-size: 12px;
    letter-spacing: 4px;
    color: #01b9c2;
    text-transform: uppercase;
}
.navcolumn a{
	font-family: Montserrat-regular;
    text-align: left;
    margin-top: 20px;
    display: block;
    font-size: 24px;
    color: #fff;
    text-decoration: underline;
}
.navcolumn p{
    	font-family: Montserrat-regular;
    text-align: left;
    margin-top: 20px;
    display: block;
	line-height: inherit;
    font-size: 24px;
    color: #585f6d;
    text-decoration:line-through;
}
.navcolumn{
	widows: 33%;
	float: left;
	margin: 27px 140px 20px 0;
}
.navitems.active{
	opacity: 1;
		  -webkit-transition: all 0.9s ease-out;
	  -webkit-transition-delay: 0.5s;
}
.heady {
z-index: 600;
  width: 100%;
  height: 20vh;
  overflow: hidden;
  position: fixed;
	 -webkit-transform: scale(1);
  -webkit-transition: all 0.3s ease-out;
	  -webkit-transition-delay: .4s;
}
.heady.active {
  height: 100vh;
	 -webkit-transition: all 0.3s ease-out;
}
.logo {
    height: 68px;
    width: 68px;
    background-color: #00e5ea;
    top: 10px;
    left: 10px;
    position: absolute;
    z-index: 100;
    padding: 10px;
    border-radius: 34px;
}
.logo img{
  width: auto;
  height: 100%;
}
.bubble-wrap {
  height: 50px;
  width: 50px;
  background-color: transparent;
  top: 10px;
  right: 10px;
  position: absolute;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transform: scale(1);
  -webkit-transition: all 0.3s ease-out;
  display: block;
}

.bubble-wrap.active {
  display: none;
}

.bubble {
  height: 50px;
  width: 50px;
  background-color: #1a202b;
  top: 10px;
  right: 10px;
  position: absolute;
  border-radius: 50%;
  -webkit-transform: scale(1);
  -webkit-transition: all 0.3s ease-out;
}

.bubble.active {
  -webkit-transform: scale(100);
  -webkit-transition: all 0.6s ease-out;
  -webkit-transition-delay: .4s;
	background-color: #1a202b;
}

.bubbleback {
  height: 50px;
  width: 50px;
  background-color: #000;
  top: 10px;
  right: 10px;
  position: absolute;
  border-radius: 50%;
  -webkit-transform: scale(1);
  opacity: 1;
}

.bubbleback.active {
  -webkit-transform: scale(1.5);
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
}

.bar {
    background-color: #fff;
    height: 2px;
    border-radius: 5px;
    right: 13px;
    top: 18px;
}

.first {
  position: absolute;
	width: 25px;
  -webkit-transition: all 0.2s ease-out;
}

.first.active {
  margin-top: 7px;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.2s ease-out;
  -webkit-transition-delay: .4s;
}

.second {
  margin-top: 6px;
	  width: 25px;
  position: absolute;
  -webkit-transition: all 0.2s ease-out;
}

.second.active {
  opacity: 0;
  margin-top: 7px;
  -webkit-transition: all 0.2s ease-out;
  -webkit-transition-delay: .4s;
}

.third {
  margin-top: 12px;
	width: 25px;
  position: absolute;
  -webkit-transition: all 0.2s ease-out;
}

.third.active {
  margin-top: 7px;
	width: 25px;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.2s ease-out;
  -webkit-transition-delay: .4s;
}

/* ====  Preloader styles ==== */
#hola{
    width: 100vw;
    height: 100vh;
    background-color: #1a202b;
    position: fixed;
    z-index: 999;
}
#preloader {
	position:relative;
    width: 100px;
    height: 100px;
    top: 50%;
    margin: -40px auto 0;
	-webkit-animation: spin-1 2s infinite linear;
	        animation: spin-1 2s infinite linear;
}
#preloader img {
  max-width: 100px;
   max-height: 100px;
}
@-webkit-keyframes spin-1 {
	0% {opacity: 1;}
	50% {opacity: 0.5;}
	100% {opacity: 1;}
}
@keyframes spin-1 {
	0% {opacity: 1;}
	50% {opacity: 0.5;}
	100% {opacity: 1;}
}

/* ------------------------------ Animierte Wörter ------------------------------ */
.word {
 position: absolute;
 width: 100%;
 left: 0;
 opacity: 0;
}

.letter {
  display: inline-block;
  position: relative;
  float:none;
  -webkit-transform: translateZ(25px);
          transform: translateZ(25px);
  -webkit-transform-origin: 50% 50% 25px;
          transform-origin: 50% 50% 25px;
}

.letter.out {
  -webkit-transform: rotateX(90deg);
          transform: rotateX(90deg);
  -webkit-transition: -webkit-transform 0.32s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: -webkit-transform 0.32s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: transform 0.32s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: transform 0.32s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.32s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.letter.behind {
  -webkit-transform: rotateX(-90deg);
          transform: rotateX(-90deg);
}

.letter.in {
  -webkit-transform: rotateX(0deg);
          transform: rotateX(0deg);
  -webkit-transition: -webkit-transform 0.38s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: -webkit-transform 0.38s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: transform 0.38s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: transform 0.38s cubic-bezier(0.175, 0.885, 0.32, 1.275), -webkit-transform 0.38s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ------------------------------ Blob ------------------------------ */
.fluid {
  width: 230px;
  height: 230px;
  background: #00e5ea;
  margin: 145px auto;
  border-radius: 50%;
  animation: rotate 30s infinite;
}
.fluidbig {
  width: 300px;
  height: 300px;
  background: #00e6ea;
  margin: 0 auto 0 auto;
  border-radius: 50%;
  animation: rotate 30s infinite;
}

.fluidbig.righty {
  margin: 0 auto;
}
.scotty{
	position:absolute;
	width: 370px;
	top:150px;
	left: 0;
	z-index: 100;
}
.scotty img{
width: 85%;
}
.homework1,
.homework3 {
    position: absolute;
    width: 100%;
    top: 11%;
    left: 0%;
    z-index: 100;
}
.homework2 {
    position: absolute;
    width: 100%;
    top: 11%;
    right: 0%;
    z-index: 100;
}
main {
  height: 100vh;
  text-align: center;
}
main .cd-main-content {
  position: relative;
  height: calc(100vh - 20px);
}
main .cd-main-content > div {
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
}
main .cd-main-content::after, main .cd-main-content::before {
  /* these are the 2 gradient overlay at the top and bottom of the .cd-main-content - to indicate that you can scroll */
  content: '';
  position: absolute;
  left: 0;
  height: 50px;
  width: 100%;
}
main .cd-main-content::before {
  top: 0;
}
main .cd-main-content::after {
  bottom: 0;
}
main .cd-main-content.cd-index {
  /* .cd-main-content basic style - index page */
  /* vertically center its content */
  display: table;
  width: 100%;
}
main .cd-main-content.cd-index > div {
  /* vertically center the content inside the .cd-index */
  display: table-cell;
  vertical-align: middle;
}
.cd-cover-layer {
  /* layer that covers the content when the animation is triggered */
  position: fixed;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  height: 100%;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  background-color: #040608;
  -webkit-transition: opacity 0.4s 0.4s, visibility 0s 0.8s;
  -moz-transition: opacity 0.4s 0.4s, visibility 0s 0.8s;
  transition: opacity 0.4s 0.4s, visibility 0s 0.8s;
}
.page-is-changing .cd-cover-layer {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0s;
  transition: opacity 0.3s 0s, visibility 0s 0s;
}

/* ------------------------------ Modal Impressum ------------------------------ */
/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1000; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
  background-color: #1a202b;
  margin: 10% auto; /* 15% from the top and centered */
  padding: 20px;
  width: 80%; /* Could be more or less, depending on screen size */
  height: 80%;
  overflow: scroll;
  text-align: left;
}
.modal-content p, .modal-content a {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 10px;
}
.modal-content li {
  font-size: 16px;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 0px;
  font-family: Montserrat-Regular;
}
.modal-content a {
  color: #00e7ea;
  font-family: Montserrat-Regular;
}
.modal-content h2, .modal-content h3 {
  color: #fff;
  font-family: Montserrat-SemiBold;
  text-align: left;
  font-weight: normal;
}
.modal-content h2 {
  font-size: 3vw;
  margin: 30px 0px 10px 0px;
  }
.modal-content h3 {
  font-size: 2vw;
  margin: 20px 0px 5px 0px;
}
/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #00e7ea;
  text-decoration: none;
  cursor: pointer;
}


/* --------------------------------

QUERY START

-------------------------------- */

/* --------------------------------

QUERY 650px

-------------------------------- */
@media only screen and (min-width: 650px) {
.logo{
  height: 50px;
  width: 50px;
  background-color: transparent;
  top: 10px;
  left: 10px;
  position: absolute;
  z-index: 100;
  padding: 0px;
  border-radius: 0px;
}
.contactbanner .workintro1 p {
    text-align: left;
}
.skillz p, .skillz ul{
	font-family:Montserrat-Regular;
	font-weight: normal;
	font-size: 22px;
	line-height: 35px;
	margin-top: 30px;
}
.skillz ul{
  color: #00E5EA;
  line-height: 35px;
}
.abouttext h2, .workstart h2{
	font-family:Montserrat-Semibold;
	text-align: center;
	font-weight: normal;
	font-size: 8vw;
	margin-bottom: 30px;
	letter-spacing: -1px;
}
.workstart {
  padding: 0vh 0vh 8vh;
}
.contacttxt{
	width: 100%;
	padding-top: 41vh;
	text-align: center;
	margin: 0 auto;
	    position: relative;
    z-index: 2;
}
.contacttxt h1{
	color:#fff;
	font-family:Montserrat-Semibold;
	text-align:center;
	font-weight: normal;
		z-index: 2000;
	font-size: 6vw;
	letter-spacing: -2px;
}
.contactbanner .contacttxt a{
	color: #00e7ea;
	text-decoration: underline;
  font-size: 5vw;
}
.bannersplatfoot{
	position: absolute;
	top: 47%;
	left: 50%;
	margin-left: -325px;
	margin-top: -325px;
	width: 650px;
	height: 650px;
	z-index: 0;
}
.worktext p{
	font-family:Montserrat-Regular;
	font-weight: normal;
	font-size: 22px;
	line-height: 35px;
	margin-top: 30px;
}
.worktext2 p{
	font-family:Montserrat-Regular;
	font-weight: normal;
	font-size: 22px;
	line-height: 35px;
	margin-top: 30px;
}
.work span, .contactbanner a{
	  color: #00e7ea;
    display: block;
    font-family: Montserrat-SemiBold;
    font-size: 20px;
}
.workclose{
display: block;
}
.skillz {
    padding: 11% 7% 0% 7%
}
.workpic img, .workpic2 img{
	width: 100%;
}
#preloader {
	position:relative;
  width: 200px;
  height: 200px;
  top: 50%;
  margin: -100px auto 0;
	-webkit-animation: spin-1 2s infinite linear;
	animation: spin-1 2s infinite linear;
}
#preloader img {
  max-width: 200px;
  max-height: 200px;
}
.shipwrap{
	margin-left: -155px;
	margin-top: -166px;
	width: 310px;
}
.ship{
display: inline;
	}
.shipmob{
	display: none;
}

.logo{
  height: 50px;
  width: 50px;
  top: 10px;
  left: 10px;
}

.bannersplat{
	margin-left: -325px;
	margin-top: -325px;
	width: 650px;
	height: 650px;
}
.bannertxt{
	padding-top: 39vh;
}
.bannertxtc{
	padding-top: 39vh;
}
/*.banner{
	background: url("../images/bubble1.png") top left no-repeat;
	background-size: 22%;
}*/
.fluid {
  width: 250px;
  height: 250px;
  margin: 190px auto;
}
.scotty{
	width: 500px;
	top:190px;
	left: 75px;
}
	.scotty img{
width: 70%;
}
.scroll {
  bottom: 30px;
  left: 50%;
  margin-left: -4px;
  width: 10px;
  height: 48px;
}
.scroll2 {
  bottom: 30px;
  left: 50%;
  margin-left: -4px;
  width: 10px;
  height: 48px;
}
.bubble-wrap {
  height: 60px;
  width: 60px;
  top: 5px;
  right: 5px;
}
.bubble {
  height: 60px;
  width: 60px;
  top: 5px;
  right: 5px;
}
.bubbleback {
  height: 60px;
  width: 60px;
  top: 5px;
  right: 5px;
}
.bar {
  background-color: #fff;
  height: 3px;
  border-radius: 5px;
  right: 15px;
  top: 21px;
}
.first {
  position: absolute;
	  width: 30px;
}

.first.active {
  margin-top: 10px;
}

.second {
  margin-top: 8px;
	  width: 30px;
}

.second.active {
  opacity: 0;
  margin-top: 10px;
}

.third {
  margin-top: 16px;
	width: 30px;
}

.third.active {
  margin-top: 10px;
	width: 30px;
}
.homeworksplat{
position: absolute;
    top: 7%;
    left: -7%;
    width: 500px;
    height: 500px;
    z-index: 0;
}
.navcolumn{
	widows: 33%;
	float: none;
    margin: 0 50px 70px 0;
}
.navcolumn a{
	font-family: Montserrat-regular;
    text-align: left;
    margin-top: 30px;
    display: block;
    font-size: 30px;
    color: #fff;
    text-decoration: underline;
}
.navcolumn p{
	font-family: Montserrat-regular;
    text-align: left;
    margin-top: 30px;
    display: block;
	line-height: inherit;
    font-size: 30px;
    color: #585f6d;
    text-decoration:line-through;
}
.navcolumn h2{
	    font-family: Montserrat-Semibold;
    text-align: left;
    display: block;
    margin-bottom: 30px;
    font-size: 14px;
    letter-spacing: 4px;
    color: #01b9c2;
    text-transform: uppercase;
}
.homeworksplat2{
    position: absolute;
    top: 7%;
    right: 40%;
    width: 500px;
    height: 500px;
    z-index: 0;
}
.homework1{
    position: absolute;
    width: 45%;
    top: 15%;
    left: 6%;
    z-index: 100;
}
.homework2{
	  position: absolute;
    width: 45%;
    top: 20%;
    right: 50%;
    z-index: 100;
}
.homework3{
    position: absolute;
    width: 53%;
    top: 23%;
    left: 0;
    z-index: 100;
}
}

/* --------------------------------

QUERY 770px

-------------------------------- */
@media only screen and (min-width: 770px) {
main .cd-main-content {
    height: 100%;
  }
.contexttxt {
    padding-top: 0vh;
  }
.contacttxt h1 {
  font-size: 5vw;
}
.contactbanner .workintro1 {
  width: 50%;
  padding: 0 11% 0 1%;
  float: right;
}
.contactbanner .workintro2 {
  width: 50%;
  padding: 0 1% 0 11%;
  float: left;
  display: block;
}
.contactbanner .workintro2 p{
  text-align: right;
}
.subheadline {
    margin-top: -20px;
  }
.footleft p {
  color: #D3D3D3;
}
.shipwrap2{
	margin-right: -120px;
	margin-top: -166px;
	right: 50%;
	width: 240px;
}
.abouttext2{
	padding: 6% 6% 6% 6%;
    width: 70%;
	z-index: 4;
	position: relative;
    margin: 0 auto 10%;
    background-color: #273040;
    box-shadow: 0px 0px 115px #000000a6;
}
.abouttext2 h2, .workstart h2{
	color:#fff;
	text-align: center;
	font-weight: normal;
	font-size: 4vw;
	margin-bottom: 30px;
	letter-spacing: -1px;
}
.abouttext2 p{
	text-align: center;
	font-family:Montserrat-Regular;
	font-weight: normal;
	font-size: 20px;
	line-height: 40px;
}
.navcolumn{
	widows: 33%;
	float: left;
	margin: 0 100px 0 0;
}
.navcolumn a{
	font-family: Montserrat-regular;
    text-align: left;
    margin-top: 30px;
    display: block;
    font-size: 30px;
    color: #fff;
    text-decoration: underline;
}
	.navcolumn p{
	font-family: Montserrat-regular;
    text-align: left;
    margin-top: 30px;
		line-height: inherit;
    display: block;
    font-size: 30px;
    color: #585f6d;
    text-decoration:line-through;
}
.navcolumn h2{
	    font-family: Montserrat-Semibold;
    text-align: left;
    display: block;
    margin-bottom: 30px;
    font-size: 14px;
    letter-spacing: 4px;
    color: #01b9c2;
    text-transform: uppercase;
}
.contacttxt{
	width: 100%;
	padding-top: 0vh;
	text-align: center;
	margin: 0 auto;
	position: relative;
  z-index: 2;
}
.contacttxt h1{
	color:#fff;
	font-family:Montserrat-Semibold;
	text-align:center;
	font-weight: normal;
	z-index: 2000;
	font-size: 5vw;
	letter-spacing: 0px;
  margin-bottom: 10px;
}
.contactbanner .workintro2 .worktext2 p{
  text-align: right;
}
.contactbanner .contacttxt a{
	color: #fff;
	text-decoration: underline;
  font-size: 5vw;
}
.workclose img{
	width:100%;
}
.workclose{
width: 100%;
padding: 0 0 10vh 0;
display: block;
}
.work span,
.contactbanner a{
	  color: #00e7ea;
    display: inline;
    font-family: Montserrat-SemiBold;
    font-size: 20px;
}
.worktext h3{
	color:#fff;
	font-family:Montserrat-SemiBold;
	font-weight: normal;
	font-size: 70px;
	letter-spacing: -1px;
}
.worktext2 h3{
	color:#fff;
	font-family:Montserrat-SemiBold;
	font-weight: normal;
	font-size: 70px;
	letter-spacing: -1px;
}
.worktext p,
.worktext2 p{
	font-family:Montserrat-Regular;
	font-weight: normal;
	font-size: 20px;
	line-height: 30px;
	margin-top: 20px;
}
.worktext{
	padding-left: 20px;
	text-align: left;
}
.work {
  width: 100%;
	z-index: 0;
	position: relative;
	padding: 0;
	margin-bottom: 0;
	background-color: transparent;
	box-shadow: none;
}
.work1{
	padding: 10% 5% 0%;
	position: relative;
}
.work2{
	padding: 10% 5% 0%;
	position: relative;
}
.work3{
	padding: 10% 5% 0;
	position: relative;
}
.workpic{
	width: 50%;
	float: left;
	height: 600px;
}
.workpic2{
	width: 50%;
	float: right;
	height: 600px;
}
.workintro{
width: 44%;
    float: right;
    padding: 0 11% 0 0;
	text-align: right;
}
.workintro2{
  width: 44%;
  float: left;
	padding: 0 0 0 11%;
	text-align: left;
}
.workintro3{
width: 44%;
    float: right;
    padding: 0 9.5% 0 0;
    margin-top: 10%;
	text-align: right;
}
.homeworksplat{
position: absolute;
    top: 7%;
    left: 7%;
    width: 500px;
    height: 500px;
    z-index: 0;
}
.homeworksplat2{
position: absolute;
    top: 7%;
    right: 7%;
    width: 500px;
    height: 500px;
    z-index: 0;
}
.fluidbig {
  width: 500px;
  height: 500px;
  background: #00e6ea;
  margin: 0 auto 0 0;
  border-radius: 50%;
  animation: rotate 30s infinite;
}
.fluidbig.righty {
  margin: 0 0 0 auto;
}
.homework1{
    position: absolute;
    width: 33%;
    top: 15%;
    left: 14%;
    z-index: 100;
}
.homework2{
	  position: absolute;
    width: 34%;
    top: 20%;
    right: 12.5%;
    z-index: 100;
}
.homework3{
    position: absolute;
    width: 39%;
    top: 23%;
    left: 9.5%;
    z-index: 100;
}
.skillzpic2{
	position: absolute;
	top: 70px;
	right: 25%;
	z-index: 100;
	width: 260px;
	margin: 0;
}
.skillzpic4{
	position: absolute;
	top: 80px;
	right: 20%;
	z-index: 100;
	width: 240px;
	margin: 0;
}
.skillz p, .skillz ul{
	font-family:Montserrat-Regular;
	font-weight: normal;
	font-size: 20px;
	line-height: 30px;
	margin-top: 20px;
}
.skillz ul{
  color: #00E5EA;
  line-height: 35px;
}
.skillz h3{
	color: #fff;
	font-family:Montserrat-SemiBold;
	font-weight: normal;
	font-size: 50px;
	margin-top: 50px;
	letter-spacing: -1px;
}
.customer{
  width: 45%;
  float: right;
  padding: 0 9.5% 0 0;
  text-align: left;
  margin: 15% 0 0 0;
  position: relative;
}
.design{
	width: 44%;
  float: left;
  padding: 0 0 0 9.5%;
  text-align: left;
	margin-top: -5%;
}
.direction{
  width: 44%;
  float: left;
  padding: 0 0 0 9.5%;
  text-align: left;
}
.strategy{
  width: 44%;
  float: right;
  padding: 0 9.5% 0 0;
  text-align: left;
	margin: 60% 0 0 0;
	position: relative;
}
.skillzpic1{
	position: relative;
	top:345px;
	left:0;
	width: 240px;
	z-index: 100;
}
.skillzpic3{
	position: relative;
	top:345px;
	left:0;
	width: 240px;
	z-index: 100;
}
.fluid.skilly{
	margin:64px auto 0 0;
	background: #00e5ea;
	width: 230px;
	height: 230px;
}
.fluid.skillyright{
	margin:64px 0 0 auto;
	background: #00e5ea;
	width: 230px;
	height: 230px;
}
.skillz{
padding: 0 7% 0%;
background: url("../images/wavy.png") top center no-repeat;
background-color: transparent;
background-size: 100%, 44%;
z-index: 0;
}
.leftylink{
  left: -18px;
  font-size: 18px;
	display: block;
}
.rightylink{
    right: -50px;
    font-size: 18px;
	display: block;
}
.leftbar{
    top: 0;
    left: 0;
    position: fixed;
    z-index: 11;
	width: 70px;
	background-color: #1a202b;
	height: 100%;
}
.abouttext h2, .workstart h2{
	color:#fff;
	font-family: Montserrat-SemiBold;
	text-align: center;
	font-weight: normal;
	font-size: 5vw;
	letter-spacing: -1px;
}
.rightbar{
    top: 0;
    right: 0;
    position: fixed;
    z-index: 11;
	width: 70px;
	background-color: #1a202b;
	height: 100%;
}
.footright{
text-align: right;
    width: 30px;
    bottom: 30px;
    right: 20px;
}
.footleft{
    bottom: 93px;
    width: 170px;
    left: -53px;
    height: 40px;
}
.abouttext{
padding: 8% 5%;
    width: 60%;
    margin: 16% auto 4%;
    z-index: 500;
    position: relative;
    background-color: #273040bd;
    box-shadow: 0 0 150px #000000a6;
}
.footleft p{
	font-size: 16px;
}
  main.cd-index > div {
    padding-top: 200px;
  }
  main.cd-index > div {
    padding-top: 50px;
  }
  main p {
    font-size: 1.8rem;
    line-height: 2;
  }
  .cd-cover-layer {
    height: 100%;
    width: 100%;
  }
.bannertxt h1{
	font-size: 9vw;
}
	.bannertxtc h1{
	font-size: 9vw;
}
main .cd-main-content.cd-about {
  display: table;
}
}
