@font-face {
  font-family: Apfel;
  src: url(media/ApfelGrotezk-Regular.OTF);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0px;
  background-color: rgb(230, 230, 230);
  font-family: Apfel, Arial, sans-serif;
  max-width: 100%;


  overflow-x: hidden;
  overflow-y: scroll;

}

::-webkit-scrollbar {
  display: none;
}


.gradient1 {
  position: fixed;
  z-index: 0;
  width: 100%;
  height: 100vh;

  background: linear-gradient(180deg, black, white, black, white, black, white, black, white, black, white, black);
  background-size: 100% 400%;
  animation: gradient1 linear 30s infinite;
}

.construction{
  position:relative;
  z-index: 10;
  width:calc(100vw - 30px);
  height:auto;
  border-left: calc(25vw - 15px) solid rgba(240,240,40,1);
  border-right: calc(25vw - 15px) solid rgba(240,240,40,1);
  padding-left: 100px;
  padding-right: 100px;
  padding-top: 50px;
  padding-bottom: 50px;
  margin: auto;
}

.gradient2 {
  position: relative;
  z-index: 2;
  width:calc(100vw - 30px);
  margin: auto;
  height: 80px;
  background-color: rgba(240,240,40,1);

}

.gradient-empty{
  position: relative;
  width: 100%;
  height: 100vh;
}

.w3-container{
  z-index: 7;

  position:fixed;
}

@keyframes gradient1 {
  0% {
    background-position: 50% 0%;
  }

  50% {
    background-position: 50% 100%;
  }

  100% {
    background-position: 50% 0%;
  }

}

@keyframes gradient2 {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }

}

.sides1 {
  position: fixed;
  width: 15px;
  height: 100vh;
  z-index: 5;

  background: rgb(230, 230, 230);
  background: linear-gradient(0deg,
      rgba(255,255,255,1) 10%,
      rgba(0, 0, 0, 0) 10%,
      rgba(0, 0, 0, 0) 20%,
      rgba(255,255,255,1) 20%,
      rgba(255,255,255,1) 30%,
      rgba(0, 0, 0, 0) 30%,
      rgba(0, 0, 0, 0) 40%,
      rgba(255,255,255,1) 40%,
      rgba(255,255,255,1) 50%,
      rgba(0, 0, 0, 0) 50%,
      rgba(0, 0, 0, 0) 60%,
      rgba(255,255,255,1) 60%,
      rgba(255,255,255,1) 70%,
      rgba(0, 0, 0, 0) 70%,
      rgba(0, 0, 0, 0) 80%,
      rgba(240,240,40,1) 80%,
      rgba(240,240,40,1) 90%,
      rgba(0, 0, 0, 0) 90%);
}

.sides2 {
  position: fixed;
  right: 0px;
  width: 15px;
  height: 100vh;
  z-index: 5;

  background: rgb(230, 230, 230);
  background: linear-gradient(180deg,
      rgba(255,255,255,1) 10%,
      rgba(0, 0, 0, 0) 10%,
      rgba(0, 0, 0, 0) 20%,
      rgba(255,255,255,1) 20%,
      rgba(255,255,255,1) 30%,
      rgba(0, 0, 0, 0) 30%,
      rgba(0, 0, 0, 0) 40%,
      rgba(255,255,255,1) 40%,
      rgba(255,255,255,1) 50%,
      rgba(0, 0, 0, 0) 50%,
      rgba(0, 0, 0, 0) 60%,
      rgba(255,255,255,1) 60%,
      rgba(255,255,255,1) 70%,
      rgba(0, 0, 0, 0) 70%,
      rgba(0, 0, 0, 0) 80%,
      rgba(240,240,40,1) 80%,
      rgba(240,240,40,1) 90%,
      rgba(0, 0, 0, 0) 90%);
}

.sides3{
  position:absolute;
  height: 100vh;
  width: 15px;
  background: linear-gradient(-90deg, black, white);
  z-index: 3;
}

.sides4{
  position:absolute;
  height: 100vh;
  width: 15px;
  right:0px;
  background: linear-gradient(-90deg, black, white);
  z-index: 3;
}



.banner_image {
  content: url("media/studio_banner3.svg");
  position: relative;
  display: block;
  height: 104vh;
  width: auto;
  z-index: 6;
  pointer-events: none;
  left:50%;


  transform: translate(-50%, 0);
}


.portfolio_content{
  position: relative;

  width:calc(100vw - 30px);
  margin-left: auto;
  margin-right: auto;

  z-index: 3;
}

.page_content{
  position:relative;
  min-height: 100vh;
  height: auto;
  width:calc(100vw - 30px);
  margin-left: auto;
  margin-right: auto;

  z-index: 3;
  padding-left: 5%;
  padding-right: 10%;
  padding-top: 100px;
  padding-bottom: 30px;
  background: rgb(210,210,210);
background: linear-gradient(180deg, rgba(210,210,210,1) 15%, rgba(255,153,219,1) 100%);
}

.text{
  position: fixed;
  z-index: 5;
  width: 50%;
  right:0px;
  padding-right: 10%;
  padding-bottom: 50px;
}

.text>p:first-of-type{
  text-transform:uppercase;
}

.text>p:nth-of-type(2){
  padding-left: 15px;
}

.text>p>i{
  margin-left: 15px;
}

.image-box{
  position: relative;
  width: 50%;
  height:auto;


  padding:0px;
}

.image-box>img{

  position: relative;
  width: 100%;
  padding-bottom:10px;
  margin: 0px;
}



.list {
  width: 75%;
  margin: auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0pt;
  padding-top: 50px;
  padding-bottom: 100px;
}

.item {
  margin: 0.4%;
  padding: 0px;

  background-color:  rgba(240,240,40,1);
  color: black;
  width: 49.2%;
  margin-bottom: 25px;
}

.photo {
  position: relative;
  width: 100%;
  padding:10px;
}

.item:hover {
 background-color: rgb(230, 230, 230);
    /*filter: drop-shadow(5px 5px 10px rgba(0,0,0,0.3));*/

}

/*.item:nth-of-type(1){
    margin-left: 12%;
}

.item:nth-of-type(3){
  margin-left: 13%;
}

.item:nth-of-type(5){
  margin-left: 12%;
}

.item:nth-of-type(7){
  margin-left: 13%;
}

.item:nth-of-type(9){
  margin-left: 12%;
}*/


.title {
  margin-top: 30px;
  margin-bottom: 10px;
  margin-left: 10px;
  margin-right: 10px;

}

.list>a {
   text-decoration: none;
}

.menu {
  position: fixed;
  list-style-type: none;
  width: 45vw;
  min-height: 70px;
  max-height: 80px;
  height: 10%;
  margin: 0px;
  padding-top: 40px;
  margin-left: 15px   ;
  padding-left: 0px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  text-align: center;
  background-color: rgba(240,240,40,1);
  z-index: 4;
}

.menu2 {
  position: fixed;
  list-style-type: none;
  width: 50vw;
  min-height: 70px;
  max-height: 80px;
  height: 10%;
  margin: 0px;
  padding-top: 40px;
  margin-left: 15px   ;
  padding-left: 0px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  text-align: center;
  background-color: rgba(240,240,40,1);
  z-index: 4;
}

.button>a {

  position: static;
  text-decoration: none;
  color: black;

  text-transform: capitalize;
  font-family: Apfel, Arial, sans-serif;
  font-size: 15pt;
  text-align: center;
}

.button {
  width: 15vw;
}

#button1>a:after{
  content: 'MIKA SCHALKS';
}

.button:nth-of-type(4){
  width: 5vw;
  font-family: Apfel, Arial, sans-serif;
  font-size: 15pt;
}


.button>button{
  position: static;
  width: 5vw;
  padding: none;
  border:none;
  background-color: none;
  font-family: Apfel, Arial, sans-serif;
  font-size: 15pt;
  background-color: rgba(240,240,40,1);
}

.button>button:hover{
  background-color: rgb(230, 230, 230);
}



#button1>a:hover {
  background-color: rgb(237, 62, 62);
}

#button2>a:hover {
  background-color: rgb(78, 211, 105);
}

#button3>a:hover {
  background-color: rgb(79, 79, 211);
}

.about_content {
  position: relative;
  width:calc(100vw - 30px);
  min-height: 50vh;
  height: auto;
  margin: auto;
  background-color: rgb(79, 79, 211);
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: 100px;
  padding-bottom: 15px;
  padding-right: 12%;
  padding-left: 12%;
}

.about_text {
  position: relative;
  width: 60%;
  padding-right: 10%;
  font-size: 13pt;
  line-height: 120%;
}

.about_image {
  position: relative;
  width: 40%;
  height:auto;
  min-height: 500px;
}

.about_image>img {
  position: absolute;
  width: 100%;
  height:auto;
  max-width: 500px;
  top: 0px;
  right:0px;

}

.about_image_2{
  position: absolute;
  bottom: 0px;
  left: 0px;
  padding-right: 15%;
}

.red{
  position: relative;
  width: calc(32vw - 15px);
  min-height: 400px;
  margin-left: 15px;
  background-color: rgb(237, 62, 62);
}



.contact_content{
  position: relative;
  background-color: rgb(0,0,0);
  margin: auto;
  padding-right: 12%;
  padding-left: 25%;
  color:white;
  padding-top: 30px;
  padding-bottom: 30px;
  height: auto;
  width:calc(100vw - 30px);

  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.contact_content2{
  position: relative;
  background-color: rgb(0,0,0);
  margin:auto;
  padding-right: 12%;
  padding-left: 12%;
  color:white;
  padding-top: 30px;
  padding-bottom: 30px;
  height: auto;
  width:calc(100vw - 30px);

  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.text_folder{
  position: relative;
  width: 50%;
  margin-top: auto;
  margin-bottom:auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.text_folder2{
  position: absolute;
  width: 50%;
  right: 0px;

}

.text_left1{
  width: auto;
  position: relative;

  line-height: 180%;
  text-align: right;
  left:0px;
  text-decoration: none;
  list-style-type: none;
  padding-top: 0px;
  padding-left: 15px;
  margin: 0px;
}

.text_right1{
  width: auto;
  position: relative;

  line-height: 180%;
  text-align: left;
  left:0px;
  text-decoration: none;
  list-style-type: none;
  padding: 0px;
  padding-left: 15px;
  margin: 0px;
  color:white;
  text-decoration: none;
}

.text_left2{
  width: auto;
  position: relative;
  font-size: 10pt;
  line-height: 180%;
  text-align: right;
  left:0px;
  text-decoration: none;
  list-style-type: none;
  padding-top: 0px;
  padding-left: 15px;
  margin: 0px;
}

.text_right2{
  width: auto;
  position: relative;
  font-size: 10pt;
  line-height: 180%;
  text-align: left;
  left:0px;
  text-decoration: none;
  list-style-type: none;
  padding: 0px;
  padding-left: 15px;
  margin: 0px;
  color:white;
  text-decoration: none;
}

.text_right1>a{
  text-decoration: none;
  color: white;
}

.text_right1>a:hover{
  text-decoration: underline;
}

.text_right2>a{
  text-decoration: none;
  color: white;
}

.text_right2>a:hover{
  text-decoration: underline;
}

.text_small{
  position: absolute;

  margin-right: 24%;
  font-size: 8pt;
  padding: 10px;
  right: 0px;
  width: AUTO;
  border: 1pt solid white;
  background-color: black;
  color:white;
  line-height: 140%;
}

.footer{
  content: url("media/footer2.svg");
  position: relative;
  width:calc(100vw - 30px);
  height: auto;
  margin: auto;
  margin-bottom:-5px;
}



.text_folder>a{
  position:absolute;
  height:70px;
  width: auto;
}

.object{
  position:absolute;
  height:70px;
  width: auto;
}

.object:nth-of-type(1){
  content: url("media/object1.svg");
  margin-left:55%;
}

.object:nth-of-type(2){
  content: url("media/object2.svg");
  margin-left:99%;
}

.object:nth-of-type(3){
  content: url("media/object3.svg");
  margin-left:120%;
}

@media only screen and (min-width:1900px) {
  .text{

    padding-left: 10%;
    margin:0;
  }
}


@media only screen and (max-width:900px) {
  #button1>a:after{
    content: 'MIKA';
  }
}

@media only screen and (max-width:700px) {
  .construction{
    position:relative;
    z-index: 10;
    width:calc(100vw - 30px);
    height:auto;
    border-left: calc(5vw - 15px) solid rgba(240,240,40,1);
    border-right: calc(5vw - 15px) solid rgba(240,240,40,1);
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 100px;
    padding-bottom: 100px;
    margin: auto;
  }

  .banner_image{
    content: url("media/studio_banner6.svg");
    height: auto;
    width: 100%;
    position: relative;
    top:15px;
  }

  .object:nth-of-type(1){
    content:none;
  }

  .object:nth-of-type(2){
    content: none;
  }

  .object:nth-of-type(3){
    position: absolute;
    margin-left: 10%;
    margin-right: 10%;
  }

  .menu {
    width:calc(100vw - 30px);
    position: fixed;
    top:0px;
  }

  .menu2 {
    width:calc(100vw - 30px);
    position: fixed;
    top:0px;
  }

  #button4{
    display: none;
  }

  .button{
    width: calc((100vw - 30px) / 3);;
  }

  .image-box{
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }

  .page_content{
    padding-left: 0%;
    padding-right: 0%;
    padding-bottom: 70px;
    font-size: 13pt;
  }

  .text{
    width: 100%;
    right:0px;
    position: relative;
    left: 0%;
    padding-left:10%;
    padding-right: 10%;
    padding-bottom: 50px;
  }

  .text>p:first-of-type{
    text-transform:uppercase;
  }

  .text>p:nth-of-type(2){
    padding-left: 15px;
  }

  .text>p>i{
    margin-left: 15px;
  }

  .button>a {
    font-size: 13.5pt;
  }

  .list{
    width: 100%;
  }

  .item{
    width: 100%;
    margin:0px;
  }

  .about_content{
    padding-left: 10%;
    padding-right: 10%;
    min-height: 200px;
    height:auto;
    padding-top: 75px;
  }

  .about_text{
    width: 100%;
    padding-right: 0%;
   font-size: 11pt;
  }

  .about_image {
    display: none;
  }


  .about_image_2{
    position: relative;
    bottom: 0px;
    left: 0px;
    padding-right: 0;
    margin-top: 45px;
  }

  .contact_content{
    padding-right: 10%;
    padding-left: 10%;
    padding-top: 0px;
    padding-bottom: 30px;
  }

  .text_folder{
    text-align: center;
    padding-top: 30px;
    width: 100%;
    font-size: 11pt;
  }

  .text_right2{
    display: none;
  }

  .text_left2{
    display: none;
  }

  .text_small{
    position: relative;
    margin-right: 0%;
    width: 100%;
  }

  .text_folder2{
    position: relative;
    padding-bottom: 30px;
  }

  .footer{
    content: url("media/footer3.svg");
    margin-bottom:0px;
  }



}
