/*=========================================
Website Showcase
=========================================*/
.website-showcase{
    background:#fff;
    }
    .website-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:22px;
    overflow:hidden;
    transition:.35s;
    box-shadow:var(--shadow-sm);
    height:100%;
    }
    .website-card:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow);
    }
    .website-card.featured{
    border:2px solid var(--primary);
    }
    .website-image{
    position:relative;
    }
    .website-image img{
    width:100%;
    display:block;
    padding: 5px;
    box-shadow:var(--shadow);
   
    }
    .website-tag{
    position:absolute;
    right:20px;
    bottom:10px;
    background:rgba(0,0,0,.75);
    color:#fff;
    padding:4px 10px;
    border-radius:30px;
    font-size:10px;
    font-weight:700;
    }
    .popular-badge{
    position:absolute;
    top:18px;
    right:18px;
    z-index:2;
    background:var(--primary);
    color:#fff;
    padding:8px 16px;
    border-radius:30px;
    font-size:12px;
    font-weight:700;
    }
    .website-content{
    padding:30px;
    }
    .website-content h3{
    margin-bottom:15px;
    }
    .website-content p{
    color:var(--light-text);
    margin-bottom:20px;
    }
    .website-content ul{
    list-style:none;
    padding:0;
    margin:0 0 25px;
    }
    .website-content li{
    padding:8px 0;
    }
    .website-buttons .btn{
    width:100%;
    }
    .showcase-note{
    margin-top:50px;
    text-align:center;
    background:#F8FAFC;
    border:1px solid var(--border);
    border-radius:18px;
    padding:25px;
    }
    .showcase-note p{
    margin:0;
    color:var(--light-text);
    }
    @media(max-width:991px){
    .website-content{
    padding:25px;
    }
    }
    @media(max-width:767px){
    .showcase-note{
    padding:20px;
    }
    }