*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", serif;
}

.main .about-image{
    width: 100%; 
    height: 20%;
    margin-top: 64px;
}
.about-image{
    /* size : 768*217 */
    width: 100%;
    height: 40%;
    display: inline-block;
    object-fit: cover;
}
.about-image .loc-image{
    width: 100%;
    height: 40%;
}
.about-image .loc-image img{
    width: 100%;
    height: 40%;
    object-fit: contain;
}
.main .contain{
    width: 80%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 2px;
    row-gap: 28px;
    margin-left: 10%;
    align-items: center;
    margin-top: 15px;
}
.main .contain .l-image{
    width: 90%;
    height: 100%;
    margin-left: 15px;
    /* margin-top: 5px; */
    /* padding: 15px 4px 70px 4px; */
    padding-top: 6px;
    padding-left: 8px;
    padding-right: 8px;
    padding-bottom: 15px;
    background-color: white;
    border-radius: 12px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.contain .l-image img{
    width: 100%;
    /* height: 90%; */
    object-fit: cover;
    overflow: hidden;
    border-top-right-radius: 12px;
    border-top-left-radius: 12px;
    border-bottom-right-radius: none;
    border-bottom-left-radius: none;
}
.contain .l-image .l-text{
    width: 100%;
    /* background-color: aqua; */
    margin-left: 3px;
    margin-top: 5px;
    /* margin-bottom: 15px; */
}
.contain .l-image .l-text h4{
    font-family: 'Times New Roman', Times, serif;
    font-weight: 500;
    font-size: 18px;
}
.l-text p{
    font-size: 14px;
    line-height: 2;
}
