.header {
  width: 100vw;
  min-height: 100vh;
  background-image: url("../assets/header-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  transition: opacity 1s; }
  @media (max-width: 40.63em) {
    .header {
      background-position: bottom;
      align-items: normal;
      padding-bottom: 2rem; } }
  .header__content {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    transition: margin-top 1s; }
  .header__title {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: -2px;
    color: #171717; }
    @media (max-width: 40.63em) {
      .header__title {
        margin-top: 5rem;
        font-size: 5rem;
        font-weight: 400; } }
  .header__options {
    width: 100%;
    margin-top: 5rem;
    display: flex;
    justify-content: space-between;
    text-align: center; }
    @media (max-width: 40.63em) {
      .header__options {
        flex-direction: column; } }

.option {
  width: 25rem;
  height: 25rem;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer; }
  @media (max-width: 40.63em) {
    .option {
      border-radius: 0;
      width: 100%;
      height: auto;
      padding: 2rem 3rem;
      flex-direction: row;
      justify-content: flex-start; }
      .option:not(:last-child) {
        margin-bottom: 2rem; } }
  .option__icon {
    margin-top: -3rem;
    height: 6rem;
    width: 6rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center; }
    @media (max-width: 40.63em) {
      .option__icon {
        margin-top: 0;
        height: 5rem;
        width: 5rem;
        margin-right: 2rem; } }
  .option__name {
    margin-top: 2rem;
    font-size: 1.7rem;
    color: #242424; }
    @media (max-width: 40.63em) {
      .option__name {
        margin-top: 0;
        font-size: 2rem; } }
  .option__arrow {
    margin-left: auto;
    display: none; }
    @media (max-width: 40.63em) {
      .option__arrow {
        display: block; } }
  .option__hover-block {
    border-radius: 50%;
    height: 95%;
    width: 95%;
    border: 1px solid #14b3a8;
    position: absolute;
    visibility: hidden;
    opacity: 0; }
    @media (max-width: 40.63em) {
      .option__hover-block {
        display: none; } }
  .option:hover > .option__hover-block {
    opacity: 1;
    visibility: visible;
    transition: all .7s; }

.info {
  width: 100vw;
  height: 100vh;
  background-image: url("../assets/info-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  transition: opacity .3s;
  transform: translateY(-100vh);
  position: absolute;
  z-index: 1; }
  .info__content {
    opacity: 0; }
    @media (max-width: 40.63em) {
      .info__content {
        opacity: 1;
        display: none;
        margin-top: -4rem;
        text-align: left;
        margin-bottom: 2rem; } }
  .info__tabs {
    font-size: 1.7rem;
    position: relative; }
    .info__tabs > .u-container {
      display: flex;
      justify-content: space-between;
      text-align: center;
      align-items: center; }
    @media (max-width: 40.63em) {
      .info__tabs {
        display: none; } }
  .info__tabs-border {
    position: absolute;
    display: block;
    bottom: 1px;
    height: 1px;
    width: 100vw;
    background-color: #c5c5c2;
    z-index: 1; }
  .info__tab {
    width: 25rem;
    text-align: center;
    padding: 3rem 0; }
    .info__tab--active {
      color: #009e82;
      border-bottom: 3px solid #78c2b2;
      z-index: 2; }
  .info__instruction {
    margin-top: 5rem;
    font-size: 1.2rem;
    display: flex;
    flex-direction: column;
    margin-right: auto; }
    @media (max-width: 40.63em) {
      .info__instruction {
        font-size: 2rem; } }
    .info__instruction > div {
      max-width: 70%; }
      @media (max-width: 40.63em) {
        .info__instruction > div {
          max-width: 100%; } }
      .info__instruction > div:nth-child(2) {
        margin-top: 2rem;
        font-size: 2rem; }
        @media (max-width: 40.63em) {
          .info__instruction > div:nth-child(2) {
            font-size: 3rem; } }
    .info__instruction > ol {
      max-width: 70%;
      margin-top: 2rem;
      list-style: none;
      counter-reset: counter; }
      @media (max-width: 40.63em) {
        .info__instruction > ol {
          max-width: 100%; } }
      .info__instruction > ol li {
        counter-increment: counter;
        display: flex;
        align-items: center;
        margin-bottom: 1rem; }
        @media (max-width: 40.63em) {
          .info__instruction > ol li {
            font-size: 1.7rem; } }
      .info__instruction > ol li::before {
        content: counter(counter);
        color: #00b596;
        font-size: 2.2rem;
        width: 1.2rem;
        margin-right: 1rem;
        display: inline-block; }
        @media (max-width: 40.63em) {
          .info__instruction > ol li::before {
            font-size: 4.5rem;
            margin-right: 3rem; } }
  .info__button {
    margin-top: 3rem;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    background-color: #009e82;
    color: white;
    border: none; }
    @media (max-width: 40.63em) {
      .info__button {
        margin-top: 1rem;
        padding: 1.5rem 2rem;
        border-radius: 3px;
        font-size: 1.5rem; } }
  .info__mobile-img {
    display: none; }
    @media (max-width: 40.63em) {
      .info__mobile-img {
        display: block;
        margin-left: -2rem;
        width: calc(100% + 4rem); } }

html {
  box-sizing: border-box;
  font-size: 62.5%; }
  @media (max-width: 75em) {
    html {
      font-size: 56.25%; } }
  @media (max-width: 56.25em) {
    html {
      font-size: 50%; } }
  @media (max-width: 40.63em) {
    html {
      font-size: 45%; } }
  @media (min-width: 112.5em) {
    html {
      font-size: 75%; } }

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit; }

body {
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif; }

.u-container {
  max-width: 856px;
  margin-left: auto;
  margin-right: auto; }
  @media (max-width: 40.63em) {
    .u-container {
      padding: 0 2rem; } }
  @media (max-width: 75em) {
    .u-container {
      max-width: 800px; } }
  @media (max-width: 56.25em) {
    .u-container {
      max-width: 650px; } }
