.packs__area {
  margin-bottom: 60px;

  @media (max-width:991px) {
    margin-bottom: 32px;
  }

  .packs--swiper  {
  }

 
  &--item {
    background-color: $c-background2;
    border: 1px solid $c-black;
    border-radius: 16px;
    padding: clamp(16px, 3vw, 24px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    min-height: 500px;
    height: 614px;
    width: 100%;
    position: relative;
    transition: border ease-in .5s;
    &--head {
      text-align: center;
      img {
        height: 110px;
        width: 110px;
        transition: transform ease-in .5s;
      }

      h3 {
        font-size: clamp(24px,3vw, 32px);
        color: $c-second;
        margin: 16px 0 8px 0;
        font-weight: 700;
      }

      &--feat {
        margin-top: 24px;
        ul {
          list-style: none;
          padding: 0;
          margin: 0;
          width: 100%;
  
          li {
            color: $c-gray;
            flex-grow: 1;
            text-align: center;
            padding: 8px 0;
            border-bottom: 1px solid rgba($c-dark,1);
          }
        }
      }
    }

   

    &--price {
      text-align: center;
      color: $c-gray;
      margin: 24px 0 0 0;

      .promo {
        margin-bottom: 8px;
        span {
          font-size: clamp(18px, 3vw, 24px);
          font-weight: 800;
          color: $c-second;
        }
        p {
          font-size: clamp(16px, 3vw, 18px);
          font-weight: 600;
          color: $c-main;
          margin-bottom: 8px;
        }
      }

      .price {
        font-size: clamp(14px, 3vw, 18px);
        font-weight: 600px;
        color: $c-gray;
      }
    }

    &--action {
      // display: none;
      position: absolute;
      bottom: 1%;
      left: 1%;
      right: 1%;
      visibility: hidden;
      opacity: 0;
      transition: all ease-in .5s;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: $c-background2;
      border: 1px solid $c-black;
      border-radius: 16px;
      padding: 8px;
      z-index: 0;
      button {
        flex-grow: 1;
      }
    }

    &:hover {
      border: 1px solid $c-main;
    }
    &:hover  &--head {

      img {
        transform: rotate(350deg) scale(1.08);
        transition: transform ease-in .5s;

      }
    }
    &:hover &--price {
      margin: 24px 0 32px 0;
      transition: margin ease-in .5s;

    }
  

    &:hover  &--action { 
      visibility: visible;
      opacity: 1;
      transition: opacity ease-in .5s;
      z-index: 1;
     
    }

    
  }



}