.bea-fancy-box{
    width: 100%;
    padding: 35px 25px;
    text-align: center;
    border-radius: 5px;
    position: relative;
    box-shadow: 0px 5px 15px 0px rgba(81 ,36, 179 , 0.12);
    background-color: #fff;

      -webkit-transition: box-shadow 0.3s ease-out, transform 0.3s ease-out;
      -moz-transition: box-shadow 0.3s ease-out, transform 0.3s ease-out;
      -o-transition: box-shadow 0.3s ease-out, transform 0.3s ease-out;
      transition: box-shadow 0.3s ease-out, transform 0.3s ease-out;


    .bea-fancy-box-link{
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        bottom: 0;
        right: 0;
        z-index: 4;
    }
    .bea-fancy-box-content{
        .bea-fb-tag{
            position: absolute;
            right: 14px;
            top: 14px;
            background: #ccc;
            width: auto;
            line-height: 1.2;
            padding: 3px 7px 3px;
            background-color: $main-color;
            border-radius: 4px;
            box-shadow: 0 2px 3px 0 rgba(112, 0 ,44 , 0.3);
            color: #fff;
            font-size: 12px;
            font-weight: 600;
            p{
                margin-bottom: 0;
            }

        }
        .bea-icon{
            color: $primary-color; 
            font-size: 30px;
            margin-top: 20px;
            margin-bottom: 10px;
            svg{
                width: 1em;
                height: 1em;
                position: relative;
            }
        }
        h6{
            font-size: 16px;
            text-transform: capitalize;
            letter-spacing: 2px;
            line-height: 1.4;
            margin: 0;
        }
        .dots{

            span{
                width: 4px;
                height: 4px;
                border-radius: 50%;
                background: #333;
                position: absolute;
                right: 10px;
                bottom: 12px;
                opacity: .1;
        
                &:first-of-type{
                    bottom: 18px;
                }
        
                &:last-of-type{
                    right: 16px;
                }
            }
        } 
    }
    &:hover{
        transform: translate(0,-5px);
        box-shadow: 0 9px 33px 0 rgba(2, 8, 53 , 0.2);
    }
}
