@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Manrope:200,300,400,500,600,700,800,900");
html {
  overflow-x: hidden;
}

body{
  padding: 0;
  margin: 0;
  font-family:Manrope;
}
#home{
  min-height: 100vh;
  background-image: url(home.jpg);
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
#home #podl{
  position: absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background-color: #333;
  opacity: 0.8;
}
#home .inner{
  position: relative;
  text-align: center;
  padding:0 25px;
}
#home .inner h1{
  color:#fff;
  font-size: 50px;
    font-weight: 600;
    margin-top:0;
    margin-bottom: 25px;
    line-height: 1.2;
}
#home .inner p{
  color:#fff;
  margin-bottom:0;
  font-size: 18px;
    font-weight: 400;
}

@media (max-width: 700px) {
  #home .inner h1 {
    font-size: 30px;
    margin-bottom: 15px;
    line-height: 1.25;
  }
  #home .inner p {
    font-size: 15px;
  }
}