/* Row 1 */
.row1 {
  height: 100%;
  min-height: 100%;
  display: flex;
  align-items: center;
  z-index: 2;
  position: relative;
  justify-content: space-between;
}
.row1 .txtBlock {
  /*width: 50%;*/
  /*margin-top: calc(var(--contentMaxWidthSide) - var(--unit_x56));*/
}
.row1 .txtBlock .codeLabelLine {
  color: var(--col_pr60);
  margin-bottom: var(--unit_x3);
}
.row1 .txtBlock .codeLine {
  display: inline-block;
  font-size: var(--unit_x20);
  flex-wrap: nowrap;
  flex-direction: row;
  align-content: center;
  align-items: center;
  justify-content: flex-start;
  margin-top: var(--unit_x5);
  margin-bottom: var(--unit_x5);
  cursor: pointer;
}
.row1 .txtBlock .codeLine > div {
  display: flex;
  font-size: var(--unit_x20);
  flex-wrap: nowrap;
  flex-direction: row;
  align-content: center;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
}
.row1 .txtBlock .codeLine svg {
  margin-left: 8px;
}
.row1 .imgBlock {
  text-align: right;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding-bottom: var(--unit_x50);
}
.row1 .imgBlock .mainImg {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.row1 .imgBlock .mainImg img {
  width: 90%;
  max-width: var(--unit_x500);
}
.row1 .txtBlock .head {
  margin-bottom: var(--unit_x7);
}
.row1 .txtBlock .subhead {
  margin-bottom: var(--unit_x7);
}
.row1 .txtBlock .body p {
  margin-bottom: var(--unit_x15);
}

.row1 .txtBlock .buttons {
  margin-top: var(--unit_x14);
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-content: center;
  align-items: flex-start;
}
.row1 .txtBlock .buttons > * {
  width: 100%;
  max-width: 320px;
}

@media only screen and (max-width: 768px) {
  .row1 .txtBlock {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .row1 .txtBlock .codeLine {
    justify-content: center;
  }
  .row1 .imgBlock {
    display: none;
  }
  .row1 .button {
    margin: 0px auto;
  }
  .nav_scrollElm .line {
    height: var(--unit_x25);
  }
  .row1 .txtBlock .buttons > * {
    width: 100%;
    max-width: 100%;
  }
}

/* Row 2 */
.row2 {
  height: 100%;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 2;
  position: relative;
}
.row2 .infocard {
  padding-top: var(--unit_x55);
  padding-bottom: var(--unit_x28);
}
.row2 .infocard .subhead {
  text-align: center;
}
.row2 .infocard .buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
}
.row2 .infocard .buttons > div {
  display: flex;
}
.row2 .steps {
  margin-top: var(--unit_x92);
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  align-items: stretch;
  justify-content: center;
  flex-direction: row;
}
.row2 .steps .step {
  width: 100%;
  padding: 0% 4%;
  max-width: 500px;
}
.row2 .steps .step .stepImg {
  width: auto;
  height: 33px;
  margin-bottom: var(--unit_x35);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  opacity: 0;
}
.row2 .steps .step .img {
  width: auto;
  height: 180px;
  margin-bottom: var(--unit_x25);
}
.row2 .steps .step .subhead {
  margin-bottom: var(--unit_x15);
}
.row2 .steps .step:last-child {
  margin-right: 0;
}
.row2 .buttons {
  margin-top: var(--unit_x58);
  text-transform: uppercase;
}
.row2 .buttons .link {
  text-decoration: none;
}
@media only screen and (min-width: 992px) {
  .row2 .steps {
    margin-top: 0px;
    max-width: auto;
    justify-content: space-between;
  }
  .row2 .steps .step {
    width: 50%;
    margin-left: 0;
  }
}
@media only screen and (min-width: 1500px) {
  .row2 .steps {
    margin-top: 0px;
    max-width: auto;
  }
  .row2 .steps .step {
    width: 25%;
    margin-left: 0;
    max-width: 500px;
  }
}




.nav_scrollElm {
  display: block;
  z-index: 3;
}
@media (max-height:720px) and (min-width:998px) {
  .nav_scrollElm {
    display: none;
  }
}


.spaceTop {
  margin-top: var(--unit_x14);
}
.spaceDown {
  margin-bottom: var(--unit_x14);
}
