
.card {
    position: relative;
    width: 70%!important;
    height: 300px;
    border-radius: 12px;
    margin: 50px 50px;
    box-shadow: 3px 3px 10px -1px rgba(0, 0, 0, 0.35);
    transition: 0.5s ease;
    background: #fff;
    justify-content: space-between;
    align-items: center;
}

.card:hover {
    transform: scale(1.05);
}

.overlay:hover {
    opacity: 1;
}

.first-sec {
    width: 40%;
    float: left;
}
.first-sec img {
    width: 100%; /* or any custom size */
    height:300px;
    /* object-fit: contain; */
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}
.last-sec {
    width: 60%;
    float: right;
}
.last-sec img {
    width: 100%; /* or any custom size */
    height: 210px;
    object-fit: contain;
}
.flex {
    display: flex;
    flex-direction: row;
    margin: 0px 10%;
    flex-wrap: nowrap;
    justify-content: space-between;
}
.flex img {
    justify-content: flex-start;
    width: 80px;
    height: 100%;
    object-fit: contain;
}
.flex a {
    display:flex;
    justify-content: flex-end;
}
.flex a button {
    border-radius: 50%;
    border: none;
    background-color: #fff;
}
.flex i {
    color: red;
}
