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

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

    img {
      display: block;
      object-fit: contain;
      width: 90%;
      @media (max-height: $h-media-x) {
        max-height: 260px;
      }
    }
  }

  &__title {
    color: $c-white;
    text-transform: uppercase;
    margin-bottom: 10px;
  }

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

  &__agree {
    display: none;

    .main {
      &__button {
        background: $c-purple;
      }
    }
  }

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

    &::before{
      content: '';
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
      z-index: 1;
      position: absolute;
      width: 100%;
      height: 100%;
      background: rgba(185, 185, 185, 0.69);
      filter: blur(.5rem);
    }
    span {
      position: relative;
      z-index: 2;
      text-shadow: 1px 1px 3px #9c9c9c;
      font-size: 14px;
    }
  }

  &__button {
    color: $c-white;
    background: $c-purple;
    border: none;
    text-align: center;
    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;
  }
}