@import url("https://fonts.cdnfonts.com/css/mont");
@import url("https://fonts.googleapis.com/css?family=Montserrat:400,500,80");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: white;
}

/*###########################################################################################  */
/*#########################################mobile############################################  */
/*###########################################################################################  */

@media screen and (max-width: 480px) {

  .mobileMenu{
		width: 100vw;
		height: 100vh;
		position: fixed;
		z-index: 200;
		background-color: rgb(11, 11, 11);
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		left: 100%;
		opacity: 0;
		transition: 0.4s ease;
	}

	.x{
		width: 6vw;
		position: absolute;
		top: 4%;
		right: 8%;
	}

	.mobileMenu ul {
		display: flex;
		flex-direction: column;
	}
	
	.mobileMenu ul li {
		font-family: "montserrat", sans-serif;
		color: #dedede;
		margin:  30px 0;
		font-size: 18px;
		text-align: center;
	}

  #logoWhite, .hamburger {
    height: 5vh;
    z-index: 300;
  }

  #header {
    width: 100%;
    height: 10vh;
    position: fixed;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
  }
  
  #logo {
    height: 5vh;
  }
  
  #header ul {
    display: none;

  }

  
  .bgCover{
    width: 100%;
    height: 100vh;
    position: absolute;
    z-index: -1;
    background-image: url(../images/kuchyna3.jpg);
    background-size: cover;
  }
  
  #main{
    width: 100%;
    height: 100vh;
    background: rgb(0,0,0);
  background: linear-gradient(90deg, rgba(0,0,0,0.7679446778711485) 0%, rgba(0,212,255,0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 5%;
    z-index: 2;
  }
  
  #main h1{
    font-family: "montserrat";
    color: white;
    font-size: 50px;
  }
  
  #main h4{
    font-family: "montserrat";
    color: white;
    font-size: 30px;
    margin-bottom: 1vh;
    margin-top: 5vh;
  }
  
  #main p{
    font-family: "montserrat";
    color: white;
    font-size: 15px;
    margin: 5px 0 ;
  }
  
  #main div{
    margin-top: 5px;
    margin-bottom: 50px;
  }
  
  #main img{
    width: 10vw;
  }
}

/*###########################################################################################  */
/*#########################################tablet############################################  */
/*###########################################################################################  */

@media screen and (max-width: 1024px) and (min-width: 481px) {
  .mobileMenu{
		width: 100vw;
		height: 100vh;
		position: fixed;
		z-index: 200;
		background-color: rgb(11, 11, 11);
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		left: 100%;
		opacity: 0;
		transition: 0.4s ease;
	}

	.x{
		width: 6vw;
		position: absolute;
		top: 4%;
		right: 8%;
	}

	.mobileMenu ul {
		display: flex;
		flex-direction: column;
	}
	
	.mobileMenu ul li {
		font-family: "montserrat", sans-serif;
		color: #dedede;
		margin:  30px 0;
		font-size: 25px;
		text-align: center;
	}

  #logoWhite, .hamburger {
    height: 5vh;
    z-index: 300;
  }

  #header {
    width: 100%;
    height: 10vh;
    position: fixed;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
  }
  
  #logo {
    height: 5vh;
  }
  
  #header ul {
    display: none;

  }

  
  .bgCover{
    width: 100%;
    height: 100vh;
    position: absolute;
    z-index: -1;
    background-image: url(../images/kuchyna3.jpg);
    background-size: cover;
  }
  
  #main{
    width: 100%;
    height: 100vh;
    background: rgb(0,0,0);
  background: linear-gradient(90deg, rgba(0,0,0,0.7679446778711485) 0%, rgba(0,212,255,0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 5%;
    z-index: 2;
  }
  
  #main h1{
    font-family: "montserrat";
    color: white;
    font-size: 100px;
  }
  
  #main h4{
    font-family: "montserrat";
    color: white;
    font-size: 50px;
    margin-bottom: 1vh;
    margin-top: 5vh;
  }
  
  #main p{
    font-family: "montserrat";
    color: white;
    font-size: 25px;
    margin: 5px 0 ;
  }
  
  #main div{
    margin-top: 5px;
    margin-bottom: 50px;
  }
  
  #main img{
    width: 5vw;
  }
}

/*###########################################################################################  */
/*#########################################notebook##########################################  */
/*###########################################################################################  */

@media screen and (min-width: 1025px) and (max-width: 1400px) {

  .mobileMenu{
    display: none;
  }

  .hamburger{
    display: none;
  }

#header {
  width: 100%;
  height: 10vh;
  position: fixed;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
}

#logo {
  height: 5vh;
}

#header ul {
  display: flex;
  flex-direction: row;
}

#header ul li {
  font-family: "montserrat";
  margin: 0 30px;
  font-size: 18px;
}

.bgCover{
  width: 100%;
  height: 100vh;
  position: absolute;
  z-index: -1;
  background-image: url(../images/kuchyna3.jpg);
  background-size: cover;
}

#main{
  width: 100%;
  height: 100vh;
  background: rgb(0,0,0);
background: linear-gradient(90deg, rgba(0,0,0,0.7679446778711485) 0%, rgba(0,212,255,0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 5%;
  z-index: 2;
}

#main h1{
  font-family: "montserrat";
  color: white;
  font-size: 100px;
}

#main h4{
  font-family: "montserrat";
  color: white;
  font-size: 40px;
  margin-bottom: 2vh;
  margin-top: 2vh;
}

#main p{
  font-family: "montserrat";
  color: white;
  font-size: 20px;
  margin: 5px 0 ;
}

#main div{
  margin-top: 5px;
  margin-bottom: 20px;
}

#main img{
  width: 3vw;
}
}

/*###########################################################################################  */
/*#########################################pc##########################################  */
/*###########################################################################################  */

@media screen and (min-width: 1401px) {

  .mobileMenu{
    display: none;
  }

  .hamburger{
    display: none;
  }

  #header {
    width: 100%;
    height: 10vh;
    position: fixed;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
  }
  
  #logo {
    height: 5vh;
  }
  
  #header ul {
    display: flex;
    flex-direction: row;
  }
  
  #header ul li {
    font-family: "montserrat";
    margin: 0 30px;
    font-size: 18px;
  }
  
  .bgCover{
    width: 100%;
    height: 100vh;
    position: absolute;
    z-index: -1;
    background-image: url(../images/kuchyna3.jpg);
    background-size: cover;
  }
  
  #main{
    width: 100%;
    height: 100vh;
    background: rgb(0,0,0);
  background: linear-gradient(90deg, rgba(0,0,0,0.7679446778711485) 0%, rgba(0,212,255,0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 5%;
    z-index: 2;
  }
  
  #main h1{
    font-family: "montserrat";
    color: white;
    font-size: 100px;
  }
  
  #main h4{
    font-family: "montserrat";
    color: white;
    font-size: 40px;
    margin-bottom: 2vh;
    margin-top: 2vh;
  }
  
  #main p{
    font-family: "montserrat";
    color: white;
    font-size: 20px;
    margin: 5px 0 ;
  }
  
  #main div{
    margin-top: 5px;
    margin-bottom: 20px;
  }
  
  #main img{
    width: 2vw;
  }
}

