@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap");
body {
  background: #f5f5f5;
  margin: 0;
  font-family: "Roboto", sans-serif;
}

header {
  background: #fff;
  height: 72px;
}
header div {
  max-width: 570px;
  margin: 0 auto;
}
header div img {
  margin-top: 15px;
}
.wrapper {
  max-width: 570px;
  padding: 90px 0;
  margin: 0 auto;
}
.wrapper .title {
  color: #47B8E0;
  font-size: 56px;
  line-height: 60px;
  font-weight: 700;
}
.wrapper .content {
  margin-top: 80px;
}
.wrapper .content .content-left,
.wrapper .content .content-right {
  width: 49%;
  display: inline-block;
  color: #777777;
  vertical-align: middle;
}
.wrapper .content .content-left p {
  font-size: 18px;
  margin: 10px 0 40px;;
}
.wrapper .content .sub-title {
  font-size: 18px;
  font-weight: 700;
  color: #777777;
  padding-bottom: 2px;
  width: 90px;
  border-bottom: 7px solid #47b8e0;
}
.wrapper .content .btn {
  margin-top: 30px;
}
.wrapper .content .content-right {
  text-align: center;
}

.btn {
  text-transform: uppercase;
  background: #FF4308;
  border: 1px solid #EA3800;
  color: #fff;
  border-radius: 4px;
  padding: 12px 40px;
  cursor: pointer;
  font-size: 16px;
  letter-spacing: 1.6px;
  text-decoration: none;
  transition: all .5s ease-in-out;
}
.btn:hover, .btn:focus {
  background-color: #EE2560;
  border-color: #FF4308;
  box-shadow: none;
  transition: all .5s ease-in-out;
}

svg {
  width: 145px;
  color: #777;
}

.support {
  margin-top: 60px;
}
.support a {
  display: block;
  margin: 20px 0;
  text-decoration: none;
  color: #0080FF;
  transition: all .5s ease-in-out;
}
.support a:hover, .support a:focus {
  text-decoration: underline;
  color: #F18836;
  transition: all .5s ease-in-out;
}

footer {
  position: fixed;
  bottom: 0;
  background: #444;
  font-size: 11px;
  color: #99a0a4;
  width: 100%;
  padding: 8px 20px;
  text-align: center;
}

@media (min-width: 320px) and (max-width: 650px) {
  header {
    height: 56px;
  }
  header div {
    text-align: center;
  }
  header div img {
    height: 25px;
  }
  .wrapper {
    max-width: 260px;
    padding: 40px 0 50px;
    position: relative;
  }
  .wrapper .title {
    width: 164px;
    font-size: 28px;
    line-height: 36px;
    text-align: center;
    margin: 0 auto;
  }
  .wrapper .content {
    position: relative;
  }
  .wrapper .content .content-right {
    width: 100%;
    position: absolute;
    top: -70px;
  }
  .wrapper .content .content-right svg {
    width: 80px;
  }
  .wrapper .content .content-left {
    width: 100%;
    position: absolute;
    top: 65px;
    text-align: center;
  }
  .wrapper .content .content-left .sub-title {
    text-align: center;
    margin: 0 87px;
    width: auto;
    font-size: 16px;
  }
  .wrapper .content .content-left p {
    font-size: 13px;
    margin: 15px 0 70px;
  }
  .btn {
    padding: 12px 38px;
  }
  .support {
    position: absolute;
    top: 410px;
    margin-bottom: 40px;
    width: 260px;
  }
  .support a {
    display: inline;
    font-size: 11px;
  }
  .support a:first-child {
    float: right;
  }
  .support a:last-child {
    float: left;
  }
  footer {
    padding: 8px 0px;
  }
  footer p {
    font-size: 7px;
  }
}