.custom-area {
    display: flex;
    flex-direction: row;

}
.custom-area-item {
    flex: 1;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    display: block;
}
.custom-area-item img.custom-area-bg {
    width: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    height: 300px;
}
.custom-area-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.30);
    transition: background 0.3s;
    z-index: 1;
}
.custom-area-item:hover::before {
    background: rgba(0,0,0,0.15);
}
.custom-area-logo {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.custom-area-logo img {
    max-width: 150px;
}
@media (max-width: 768px) {
    .custom-area {
        flex-direction: column;
    }
    .custom-area-logo img {
        max-width: 100px;
    }
    .custom-area-item:hover img.custom-area-bg{
        transform: scale(1.03);
    }
}
@media(min-width: 769px){
    .custom-area-item{
        transition: flex 0.4s ease;;
    }
    .custom-area-item:hover{
        flex: 1.5;
    }
}