@charset "UTF-8";
/*
#loader-bg {
  display: none;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0px;
  left: 0px;
  background: #fff;
  z-index: 50000;
}
#loader {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
		#loader img { width: 100%; height: auto;  }
		#loader p { position: absolute; top:0; left:0; width: 100%;
  height: 100%; display: flex; align-items: center; }
  
#loader p:nth-child(2) {
	animation-name: fadein;
	animation-duration: 0.8s;
	animation-iteration-count: 1;
	animation-delay: 0.5s;
	transition-timing-function: ease-in;
	animation-fill-mode: backwards;
}
@keyframes fadein {
from {
opacity: 1;
transform: translateY(100%);
}
to {
opacity: 1;
transform: translateY(0);
}
}
		
		@media screen and (max-width:800px) {
#loader p:nth-child(2) img { width: auto; height: 100%; }
		}



#fade-image div {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: center center no-repeat;
  background-size: cover;
  display: none;
  z-index: 9999;
}
#fade-image div:nth-child(2) {
  animation-name: fadein;
  animation-duration: 1.6s;
  animation-iteration-count: 1;
}
@keyframes fadein {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
*/

#home-mamo {
  text-align: center;
  padding: 2vw 0 2vw 0;
}
#home-mamo p {
  width: 90%;
  margin: 0 auto;
}
#home-mamo p img {
  width: 100%;
  height: auto;
}
#home-mamo .lead {
  font-weight: bold;
  font-size: 4vw;
  margin: 4vw auto;
}
#home-mamo .logo {
  width: 70%;
}
@media screen and (min-width:800px) {
  #home-mamo p {
    width: 800px;
  }
  #home-mamo .lead {
    font-size: 200%;
    margin: 2vw auto;
  }
  #home-mamo .logo {
    width: 500px;
  }
}

.topyt {
  position: relative;
  width: 80%;
    margin:10px auto 40px; 
}
div#topyt:before {
  content:"";
  display: block;
  padding-top: 56.25%;
}
div#topyt iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
