@charset "utf-8";

.first-view {
  height: calc(100vh - 130px);
  background-image: url(../images/bg-main.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: flex;
  color: #ffffff;
  font-weight: bold;
  text-shadow: 3px 4px 5px #000000;
}

.first-view-text {
  width: 100%;
  max-width: 1200px;
  text-align: center;
}

.first-view-text h1 {
  font-family: sans-serif;
  font-size: 48px;
  line-height: 80px;
}

.first-view-text p {
  font-size: 32px;
  margin-top: 5px;
}

.lead {
  max-width: 720px;
  margin: 30px auto;
}

.lead p {
  line-height: 2;
  text-align: center;
}

@media (max-width: 800px) {
  .first-view {
    height: calc(45vh - 80px);
  }
  .first-view-text h1 {
    font-family: sans-serif;
    font-size: 22px;
    margin-top: 10px;
  }
  .first-view-text p {
    font-size: 16px;
    margin-top: -20px;
  }
  .lead {
    padding-left: 20px;
    padding-right: 20px;
  }
}