.main {
  background: url("../image/main_bg.png") no-repeat center;
  background-size: contain;

  &__content {
    height: 100%;
    padding-bottom: 20px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    
    @media (max-height: 750px) {
      padding-bottom: 5px;
    }

    img {
      display: block;
      object-fit: contain;
      width: 100%;
      
      @media (max-height: 750px) {
        max-height: 250px;
      }
    }
  }

  &__title {
    text-transform: uppercase;
    margin-top: 15px;
    color: $c-white;
    font-size: 25px;
    font-weight: 700;
    line-height: 48px;
    text-align: center;
    margin-bottom: 15px;
    text-shadow: 0px 0px 20px #000000;

    @media (max-width: 380px) {
      font-size: 18px;
      line-height: 26px;
    }

    @media (max-height: 650px) {
      margin-bottom: 5px;
    }
  }

  &__description {
    color: $c-white;
    font-size: 25px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    margin-bottom: 10px;
    span {
      color: $c-green;
    }

    @media (max-width: 360px) {
      font-size: 20px;
    }
  }

  &__normal {
    display: none;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  &__agree {
    display: flex;
    flex-direction: column;
    align-items: center;

    .main {
      &__button {
        text-align: center;
        background: $c-blue;
      }
    }
  }

  &__price {
    font-size: 16px;
    color: $c-white;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    font-weight: 300;
    span {
      position: relative;
      z-index: 2;
      text-shadow: 1px 1px 3px #9c9c9c;
      font-size: 14px;
    }
  }

  &__button {
    color: $c-white;
    background: $c-green;
    border: none;
    padding: 23px 23px;
    border-radius: 5px;
    box-shadow: 0 5px 25px $c-black;
    font-size: 24px;
    max-width: 300px;
    width: 100%;
    cursor: pointer;
    text-decoration: none;
    display: block;
    margin-bottom: 20px;

    @media (max-height: 750px) {
      padding: 15px;
      font-size: 18px;
    }
  }

  &__prev {
    display: block;
    color: $c-white;
    opacity: .7;
    text-decoration: none;
    width: 100%;
    font-size: 17px;
    text-align: center;
  }
}