* {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  min-width: 320px;
  height: 100%;
  margin: 0;
  font: 16px/21px 'Open Sans', Helvetica, Arial, sans-serif;
  font-weight: 400;
  color: #000000;
  background: #FFFFFF;
}

.welcome {
  position: relative;
  width: 100%;
  font-size: 18px;
  line-height: 22px;
  overflow: hidden;
 }

.content-center {
  max-width: 430px;
  padding: 0 25px;
  margin: 0 auto;
}

.image {
  position: absolute;
  z-index: 0;
  left: 50%;
  height: 100%;
  transform: translate(-50%, 0);
}

.image img {
  height: 100%;
}

.white-bg {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  top: 15vh;
  bottom: 0;
  background: linear-gradient(180deg, rgba(246, 248, 251, 0) 0%, #FFFFFF 45%);
}

.content {
  position: relative;
  z-index: 2;
  padding-top: 30vh;
  padding-bottom: 55px;
  font-size: 18px;
  line-height: 26px;
  text-align: center;
}

.logo {
  display: inline-block;
  width: 80%;
  margin-bottom: 15px;
}

.title {
  font-size: 20px;
  line-height: 25px;
  font-weight: 400;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 25px;
}

p {
  margin: 22px 0;
}

@media (min-width: 720px) {
  .welcome {
    height: 100%;
    min-height: calc(10vh + 445px);
    font-size: 22px;
    line-height: 29px;
  }

  .content-center {
    max-width: 680px;
    padding: 0;
    height: 100%;
  }

  .image {
    left: 0;
    min-height: 76vw;
    transform: translate(-54vh, 0);
  }

  .white-bg {
    top: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(246, 248, 251, 0.8) 50%, #FFFFFF 100%);
  }

  .content {
    float: right;
    width: 365px;
    padding-top: 10vh;
  }

  .logo {
    width: 355px;
  }

  .title {
    font-size: 25px;
    line-height: 37px;
  }
}

@media (min-width: 1024px) {
  .image {
    min-height: 54vw;
  }

  .content-center {
    max-width: 980px;
  }

  .content {
    width: 400px;
  }
}

@media (min-width: 1024px) and (min-aspect-ratio: 1/1) {
  .white-bg {
    background: linear-gradient(90deg, transparent 0%, rgba(246, 248, 251, 0.3) 50%, #FFFFFF 100%);
  }
}
