
.cardy {
    /* display: flex; */
    /* width: 250px; */
    margin-top: 1rem;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    border: 8px solid #fff;
    position: relative;
    cursor: pointer;
}

.card-i{
    width: 100%;
    height: 100%;
    background-size: cover;
    /* border-radius: 15px; */
    border-bottom: none;
}

.card-b {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: -100%;
    background: rgba(123, 198, 211, 0.481);
    backdrop-filter: blur(5px);
    border-radius: 13px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: 1s;

}

.cardy:hover .card-b {
    right: 0;
}



.card-title {
    text-transform: Uppercase;
    font-size: 35px;
    font-weight: 500;
    /* text-align: center; */
}

.sub-t {
    /* text-transform: Uppercase; */
    font-weight: 400;
    font-size: 14px;
    /* text-align: justify; */
}


.card-info {
    font-size: 16px;
    line-height: 25px;
    margin: 40px 0;
    font-weight: 400;
}

.botton {
    color: rgb(250, 246, 246) !important;
    background-color: rgb(98, 225, 225);
    padding: 10px 20px;
    border-radius: 5px;
    text-transform: capitalize;
    border: none;
    outline: none;
    font-weight: 500;
    cursor: pointer;
}

.botton:hover {
    transform: scale(1.01);
    box-shadow: 1px 1px rgb(201, 206, 205);
    border-color: none;

}
/*  */