/*---------------------------------------------
  VISUAL
---------------------------------------------*/
html, body {
  height: 100%;
}

.visual {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.visual:after {
  clear: both;
  content: "";
  display: table;
}

.visual-logo img {
  width: 100%;
  max-width: 260px;
  margin-bottom: 50px;
}
@media (max-width: 480px) {
  .visual-logo img {
    width: 200px;
    margin-bottom: 40px;
  }
}

.visual .lead {
  margin-bottom: 50px;
}
@media (max-width: 480px) {
  .visual .lead {
    margin-bottom: 40px;
  }
}

.copy {
  font-size: 12px;
}