@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;
}

body {
  overflow-x: hidden;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: black;
}

/*###########################################################################################  */
/*#########################################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%;
    top: 0;
		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;
	}

  #logo, #logoWhite, .hamburger {
    height: 5vh;
    z-index: 300;
  }
  #header {
    width: 100%;
    height: 10vh;
    display: flex;
    position: absolute;
    top: 0;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    z-index: 10;
  }
  
  #logo {
    height: 5vh;
  }
  
  #header ul {
    display: none;
  }
  
  #header ul li {
    font-family: "montserrat";
    margin: 0 30px;
    font-size: 18px;
  }

  #galery{
    margin-top: 10vh;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  
  .row{
    width: 50%;
    min-height: 70vh;
  }

  .row:last-child{
    display: none;
  }
  
  .row img{
    width: 50vw;
  }
  
  #footer{
    width: 100%;
    padding: 0 5%;
    margin-top: 10vh;
  
  }
  
  .footer-box{
    width: 100%;
    min-height: 30vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .footer-box div{
    width: 80vw;
    min-height: 10vh;
    display: flex;
    flex-direction: column;
    padding-left: 2vw;
  }

  .footer-box div:last-child{
    display: none;
  }
  
  .footer-box div p{
    font-family: "montserrat";
    font-weight: 400;
    font-size: 15px;
    line-height:25px;
    margin-top: 2vh;
  }
  
  .footer-box div a{
    font-family: "montserrat";
    font-weight: 400;
    font-size: 15px;
    line-height:25px;
  }
  
  .footer-box div h4{
    font-family: "montserrat";
    font-weight: 400;
    font-size: 25px;
    line-height:25px;
    margin: 2vh 0 2vh 0;
  }
  
  .footer-box img{
    height: 20vh;
    margin-right: 5vw;
  }
  
  .rights{
    font-family: "montserrat";
    font-weight: 400;
    font-size: 12px;
    text-align: center;
    margin: 20px 0 20px 0;
  }
}

/*###########################################################################################  */
/*#########################################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%;
    top: 0;
		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;
	}

  #logo, #logoWhite, .hamburger {
    height: 5vh;
    z-index: 300;
  }
  #header {
    width: 100%;
    height: 10vh;
    display: flex;
    position: absolute;
    top: 0;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    z-index: 10;
  }
  
  #logo {
    height: 5vh;
  }
  
  #header ul {
    display: none;
  }
  
  #header ul li {
    font-family: "montserrat";
    margin: 0 30px;
    font-size: 18px;
  }

  #galery{
    margin-top: 10vh;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  
  .row{
    width: 50%;
    min-height: 70vh;
  }

  .row:last-child{
    display: none;
  }
  
  .row img{
    width: 50vw;
  }
  
  #footer{
    width: 100%;
    padding: 0 5%;
    margin-top: 5vh;
  
  }
  
  .footer-box{
    width: 100%;
    min-height: 30vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .footer-box div{
    width: 80vw;
    min-height: 10vh;
    display: flex;
    flex-direction: column;
    padding-left: 2vw;
  }

  .footer-box div:last-child{
    display: none;
  }
  
  .footer-box div p{
    font-family: "montserrat";
    font-weight: 400;
    font-size: 18px;
    line-height:25px;
    margin-top: 2vh;
  }
  
  .footer-box div a{
    font-family: "montserrat";
    font-weight: 400;
    font-size: 18px;
    line-height:25px;
  }
  
  .footer-box div h4{
    font-family: "montserrat";
    font-weight: 400;
    font-size: 30px;
    line-height:25px;
    margin: 2vh 0 2vh 0;
  }
  
  .footer-box img{
    height: 20vh;
    margin-right: 5vw;
  }
  
  .rights{
    font-family: "montserrat";
    font-weight: 400;
    font-size: 15px;
    text-align: center;
    margin: 20px 0 20px 0;
  }
}

/*###########################################################################################  */
/*#########################################notebook##########################################  */
/*###########################################################################################  */

@media screen and (min-width: 1025px) and (max-width: 1400px) {
  .mobileMenu{
    display: none;
  }

  .hamburger{
    display: none;
  }
  
  #header {
    width: 100%;
    height: 10vh;
    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;
  }
  
  .row{
    min-width: 80%;
    height: 25vh;
    margin: 1vh 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
  
  .row img{
    max-height: 100%;
    margin: 0 0.2vw;
    top: 0;
    left: 0;   
  }
  
  #footer{
    width: 100%;
    padding: 0 5%;
    margin-top: 10vh;
  }
    
  .footer-box{
    width: 100%;
    min-height: 30vh;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  
  .footer-box div{
    width: 20vw;
    min-height: 30vh;
    display: flex;
    flex-direction: column;
    padding-left: 2vw;
  }
  
  .footer-box div p{
    font-family: "montserrat";
    font-weight: 400;
    font-size: 18px;
    line-height:25px;
    margin-top: 2vh;
  }
  
  .footer-box div a{
    font-family: "montserrat";
    font-weight: 400;
    font-size: 18px;
    line-height:25px;
  }
  
  .footer-box div h4{
    font-family: "montserrat";
    font-weight: 400;
    font-size: 30px;
    line-height:25px;
    margin: 2vh 0 2vh 0;
  }
  
  .footer-box img{
    height: 25vh;
    margin-right: 5vw;
  }
  
  .rights{
    font-family: "montserrat";
    font-weight: 400;
    font-size: 18px;
    text-align: center;
    margin: 20px 0 20px 0;
  }
}

/*###########################################################################################  */
/*#########################################pc##########################################  */
/*###########################################################################################  */

@media screen and (min-width: 1401px) {

  .mobileMenu{
    display: none;
  }

  .hamburger{
    display: none;
  }
  
  #header {
    width: 100%;
    height: 10vh;
    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;
  }
  
  .row{
    min-width: 80%;
    height: 30vh;
    margin: 1vh 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
  
  .row img{
    max-height: 100%;
    margin: 0 0.2vw;
    top: 0;
    left: 0;   
  }
  
  #footer{
    width: 100%;
    padding: 0 5%;
    margin-top: 10vh;
  }
    
  .footer-box{
    width: 100%;
    min-height: 30vh;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  
  .footer-box div{
    width: 20vw;
    min-height: 30vh;
    display: flex;
    flex-direction: column;
    padding-left: 2vw;
  }
  
  .footer-box div p{
    font-family: "montserrat";
    font-weight: 400;
    font-size: 18px;
    line-height:25px;
    margin-top: 2vh;
  }
  
  .footer-box div a{
    font-family: "montserrat";
    font-weight: 400;
    font-size: 18px;
    line-height:25px;
  }
  
  .footer-box div h4{
    font-family: "montserrat";
    font-weight: 400;
    font-size: 30px;
    line-height:25px;
    margin: 2vh 0 2vh 0;
  }
  
  .footer-box img{
    height: 25vh;
    margin-right: 5vw;
  }
  
  .rights{
    font-family: "montserrat";
    font-weight: 400;
    font-size: 18px;
    text-align: center;
    margin: 20px 0 20px 0;
  }
}



.hidden {
  opacity: 0;
  transition: all 1s;
  filter: blur(5px);
  transform: translateX(-100%);
}

.hidden-left {
  opacity: 0;
  transition: all 1s;
  filter: blur(5px);
  transform: translateX(100%);
}

.opacityVisibility{
  opacity: 0;
  transition: all 0.5s;
}

.show {
  opacity: 1;
  filter: blur(0px);
  transform: translateX(0%);
}

.delay1 {
  transition-delay: 200ms;
}

.delay2 {
  transition-delay: 400ms;
}