*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", serif;
}

.main .b-image{
    width: 100%; 
    height: 50%;
    margin-top: 64px;
}
.b-image img{
    /* size : 768*217 */
    width: 100%;
    display: inline-block;
    background-color: rgb(24, 32, 29);
    object-fit: cover;
    opacity: 0.5s;
}
.main .b-title{
    width: 100%;
    background: rgb(215,215,250);
    background: linear-gradient(90deg, rgba(215,215,250,1) 0%, rgba(0,44,255,1) 52%, rgba(215,215,250,1) 100%);
    text-align: center;
    padding-top: 8px;
    padding-bottom: 8px;
}
.main .b-title span.b{
    font-size: 26px;
    font-weight: 400;
    color: white;
    font-family: 'Times New Roman', Times, serif;
}
.main .b-content{
    text-align: center;
    /* background-color: lightcoral; */
}
.main .contain{
    width: 55%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: none;
    row-gap: none;
    margin-left: 20%;
    align-items: center;
    /* background-color: lightblue; */
}
.main .contain .b-image{
    width: 85%;
    height: 70%;
    margin-left: 15px;
    /* margin-top: 5px; */
    padding: 15px 4px 70px 4px;
    background-color: white;
    border-radius: 12px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.contain .b-image img{
    width: 80%;
    height: 90%;
    object-fit: cover;
    overflow: hidden;
    border-radius: 12px;
}

.b-text{
    width: 90%;
    margin-left: 10px;
    margin-bottom: 10px;
}
.contain .b-image p{
    width: 100%;
    /* margin-left: 20px; */
    font-size: 16px;
    font-weight: 500;
}
.main .contain .b-image:hover{
    transition: 0.3s ease;
    box-shadow: 0px 15px 20px rgb(0, 0, 0, 0.3);
}  
