.main {
  position: relative;

  &:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: url("../image/main_bg.png") no-repeat center;
    background-size: contain;
    filter: blur(4px);
    z-index: 1;
  }

  &__content {
    height: 100%;
    padding-bottom: 20px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;

    img {
      display: block;
      object-fit: contain;
      width: 100%;
    }
  }

  &__title {
    padding: 50px 0;
    text-align: center;
    color: $c-white;
    font-size: 24px;
    font-weight: 400;
    max-width: 360px;
    margin: 0 auto;

    &--normal {
      display: block;
    }

    &--agree {
      display: none;
    }
  }

  &__normal {
    z-index: 2;
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: auto 0;
  }

  &__agree {
    display: none;
    height: 100%;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    justify-content: space-between;

    &--btn {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
      margin-bottom: 50px;

      .main__button {
        padding: 10px;
        border-radius: 15px;
      }
    }
  }

  &__price {
    font-size: 14px;
    color: $c-white;
    text-align: center;
    margin-bottom: 20px;
    position: relative;

    &::before {
      content: '';
      left: -15px;
      right: -15px;
      top: 0;
      bottom: 0;
      z-index: 1;
      position: absolute;
      background: rgba(185, 183, 183, 0.3);
      height: 100%;
    }

    span {
      position: relative;
      z-index: 2;
      opacity: .6;
    }
  }

  &__button {
    color: $c-white;
    background: $c-green;
    border: none;
    padding: 20px 10px;
    border-radius: 15px;
    box-shadow: 0 5px 25px $c-black;
    font-size: 24px;
    max-width: 200px;
    width: 100%;
    cursor: pointer;
    text-decoration: none;
    display: block;
    text-align: center;
  }
}