@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;200;300;400;500;700&display=swap');

html, body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  background: #E6E6E6;
  min-height: 100vh;
  text-align: center;
  position: relative;
}

a {
  color: inherit;
}

.page-content-container {
  width: 100%;
  position: relative;
}

.page-step-bar-container {
  width: 100%;
  height: 136px;
  text-align: center;
  background: #F0F0F0;
  z-index: 1;
}

.page-step-bar {
  width: 869px;
  display: grid;
  grid-template-columns: 64px 315px 64px 315px 64px;
  grid-column-gap: 12px;
  margin: auto;
  padding-top: 30px;
  place-items: center;
  z-index: 2;
}

.page-step-bar-spacer {
  background: #E0E0E0;
  border-radius: 70px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.08);
  height: 6px;
  width: 100%;
  place-self: start;
  margin: 29px 0;
}

.page-step-item {
  display: grid;
  grid-template-rows: 64px 16px;
  grid-row-gap: 14px;
}

.page-step-text {
  text-transform: uppercase;
  color: gray;
  font-size: 14px;
}

.shield {
  place-self: center;
}

.dialog {
  width: 869px;
  background: #fff;
  border: 1px solid #A5A5A5;
  overflow: hidden;
  box-shadow: 0 -.25vh 3vh .2vh rgba(0, 0, 0, 0.22);
  margin: 0 auto 27px;
  z-index: 0;
}

.dialog-header {
  height: 48px;
  background: #F0F0F0;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  color: #CBCBCB;
  line-height: 48px;
  position: relative;
}

.dialog-body {
  display: grid;
  color: #4D4D4D;
  grid-template-columns: 158px 1fr;
  grid-gap: 42px;
  padding: 34px 45px 25px;
  box-sizing: border-box;
  text-align: left;
}

.brand-img {
  width: 158px;
  height: 158px;
  display: grid;
  place-items: center;
  margin-top: 6px;
}

.brand-img img {
  width: 104px;
}

.brand-text {
  display: block;
  overflow: hidden;
}

.title-text {
  font-size: 30px;
  font-weight: 700;
}

.dialog-text {
  font-size: 21px;
  margin: 10px auto 24px;
}

.small-text {
  font-size: 14px;
  line-height: 1.5;
}

.download-btn {
  text-transform: uppercase;
  margin-top: 20px;
  float: right;
  background-color: #f33045;
  background-repeat: no-repeat;
  background-position: 25px center;
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAVBAMAAACqMuMoAAAAElBMVEUAAAD///////////////////8+Uq06AAAABXRSTlMA0BDAgN5bSDYAAABFSURBVBjTY4AAYwZkEEpXnhOQpwLjsAQqhDKJOkB5TKJCoYqBCjBJxcBQUSEgDZMMBUnBJUOBUghJQaAUacA0FAGCUXkAsj4QrNs8HNQAAAAASUVORK5CYII=');
  border-radius: 4px;
  border: 1px solid #d20015;
  height: 60px;
  cursor: pointer;
  display: inline-block;
  color: #fff;
  font-weight: 500;
  font-size: 22px;
  line-height: 60px;
  text-align: right;
  padding-right: 35px;
  padding-left: 70px;
  transition: .3s all ease-in-out;
}

.download-btn:hover {
  background-color: #c4071a;
}

.hint-text {
  width: 869px;
  margin: 50px auto;
  font-size: 14px;
  color: #4d4d4d;
  text-align: center;
}

.footer-links {
  width: 100%;
  margin: 20px auto 40px;
  font-size: 14px;
  color: #4D4D4D;
  text-align: center;
}

.footer-links a {
  font-size: 14px;
  color: #4D4D4D;
  text-decoration: underline;
}

@media (max-width: 920px) {
  .page-step-bar {
    width: 92%;
    grid-template-columns: 48px 1fr 48px 1fr 48px;
    padding-top: 20px;
  }
  .dialog {
    width: 92%;
  }
  .dialog-body {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 24px 20px;
  }
  .download-btn {
    float: none;
    display: inline-block;
    margin: 20px auto 0;
  }
  .hint-text {
    width: 92%;
  }
}