html, body {
  margin: 0;
  padding: 0;
}

body {
  background-color: #fff;
  font-family: 'Lato', sans-serif;
}

header {
  background-color: #19befe;
  height: 500px;
  margin-bottom: 60px; /* ( TOTAL HEIGHT IS 500PX ) */
  width: 100%;
}

header .header-top {
  color: #fff;
  height: 120px;
  line-height: 120px;
  position: relative;
  z-index: 1;
}

header .header-top .top-left,
header .header-top .top-right {
  display: inline-block;
  vertical-align: top;
  width: calc(50% - 3px);
}

header .header-top .top-right {
  text-align: right;
}

header .logo {
  background-image: url(/image/logo.svg);
  background-position: center left;
  background-repeat: no-repeat;
  background-size: auto 106px;
  height: 120px;
  width: 300px;
}

header .banner {
  background-image: url(/image/banner.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: auto 560px;
  height: 560px;
  position: absolute;
  top: 0;
  width: 100%;
}

main {
  padding: 32px 0;
}

footer {
  background-color: #3b4956;
  min-height: 200px;
  width: 100%;
}

.container {
  margin: 0 auto;
  max-width: 1264px;
  padding: 0 32px;
}

header .container {
  position: relative;
}

.step {
  border-bottom: 3px dashed #eee;
  padding: 12px 0 34px 0;
}

.step:nth-last-child(1) {
  border-bottom: 0;
}

.step-heading {
  margin-bottom: 8px;
  padding: 22px 0;
}

.step-content {
  font-size: 0;
}

.step-heading .left,
.step-heading .right {
  display: inline-block;
  width: calc(50% - 3px);
}

.step-heading .right {
  text-align: right;
}

.step-content input[type="radio"] {
  display: none;
}

.step-content .option {
  display: inline-block;
  margin-bottom: 5px;
  margin-right: 5px;
  vertical-align: top;
  width: calc((100% / 5) - 5px);
}

.step-content label.radio,
.step-content label.color {
  -webkit-transition: background-color .2s, border-color .2s, color .2s, fill .2s, -webkit-box-shadow .2s;
  transition: background-color .2s, border-color .2s, color .2s, fill .2s, box-shadow .2s;
  color: #3b4956;
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.step-content label.radio {
  -webkit-box-shadow: inset 0px 0px 0px 4px #eee;
  -moz-box-shadow: inset 0px 0px 0px 4px #eee;
  box-shadow: inset 0px 0px 0px 4px #eee;
  background-color: #eeeeee;
  fill: #3b4956;
  height: 200px;
  text-align: center;
}

.step-content label.radio:hover {
  background-color: #fff;
  color: #18b4ff;
  fill: #18b4ff;
}

.step-content label.radio .flex-align {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
}

.step-content label.radio img,
.step-content label.radio svg {
  height: 88px;
  margin-bottom: 8px;
  width: auto;
}

.step-content label.color {
  border: 4px solid transparent;
  border-radius: 22px;
  padding: 6px;
  width: calc(100% - 14px);
}

.step-content label.color:hover {
  border-color: #eee;
  color: #18b4ff;
}

.step-content label.color .color-block,
.step-content label.color .description {
  display: inline-block;
  vertical-align: middle;
}

.step-content label.color .color-block {
  border-radius: 17px;
  height: 64px;
  margin-right: 18px;
  width: 64px;
}

.step-content .description {
  font-size: 20px;
  font-weight: 700;
}

.step-content .option:nth-child(1) label,
.step-content .option:nth-child(6) label {
  border-bottom-left-radius: 22px;
  border-top-left-radius: 22px;
}

.step-content .option:nth-child(5) label,
.step-content .option:nth-last-child(1) label {
  border-bottom-right-radius: 22px;
  border-top-right-radius: 22px;
  margin-right: 0;
}

.step-content input[type="radio"]:checked + label.radio {
  -webkit-box-shadow: inset 0px 0px 0px 4px #18b4ff;
  -moz-box-shadow: inset 0px 0px 0px 4px #18b4ff;
  box-shadow: inset 0px 0px 0px 4px #18b4ff;
  background-color: #18b4ff;
  color: #fff;
  fill: #fff;
}

.step-content input[type="radio"]:checked + label.color {
  border-color: #18b4ff;
}

.step-content label .label {
  -webkit-transform: rotate(-45deg);
  background-color: #fff;
  color: #ff4c73;
  font-size: 14px;
  font-weight: 900;
  left: -26px;
  padding: 6px 0;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  top: 13px;
  width: 108px;
}


.complete {
  background-color: #eee;
  border-radius: 22px;
  color: #63717c;
  margin: 32px 0;
  padding: 32px;
  text-align: center;
}

header .title {
  color: #fff;
  font-size: 28px;
  font-weight: 900;
}

h1, h2, h3, h4, h5, h6 {
  padding: 0;
  margin: 0;
}

h3 {
  color: #3b4956;
  font-size: 26px;
  font-weight: 900;
}

h3 .number {
  -webkit-transition: border-color .3s, color .3s;
  transition: border-color .3s, color .3s;
  border: 3px solid #fff;
  border-color: #b8b8b8;
  border-radius: 100%;
  color: #b8b8b8;
  display: inline-block;
  font-size: 20px;
  height: calc(34px - 4px);
  margin-right: 16px;
  margin-top: -2px;
  padding-top: 4px;
  text-align: center;
  width: 34px;
}

.step.active h3 .number {
  border-color: #ff4c73;
  color: #ff4c73;
}

.small {
  color: #a3a3a3;
  font-size: 16px;
}

header {
  font-weight: 700;
}

header a:link,
header a:visited {
  color: #fff;
  text-decoration: none;
}

.call-us {
  font-size: 18px;
  font-weight: 900;
}


.icon {
  position: relative;
}

.icon img,
.icon svg {
  background-repeat: no-repeat;
  background-size: contain;
  fill: #fff;
  height: 26px;
  left: -32px;
  position: absolute;
  top: -3px;
  width: 26px;
}

.call-us.icon img,
.call-us.icon svg {
  left: -32px;
  top: -1px;
}


input[type="button"] {
  -webkit-appearance: none;
  background-color: #ff4c73;
  border-radius: 42px;
  border: 0;
  font-size: 24px;
  font-weight: 400;
  padding: 22px 64px 24px 64px;
  color: #fff;
}
