/* case-card */
.case-card {
    margin: 100px;
}
.case-card .case-item {
    margin: 80px 50px;
    display: grid;
    grid-template-columns: 50% 50%;
    column-gap: 30px;
}
.case-card .case-item-left-section {
    margin-left: 10px;
}
.case-card .case-item-title {
    font-size: 48px;
    line-height: 72px;
    color: #7B50F8;
    padding-top: 20px;
    padding-bottom: 5%;
    width: 85%;
}
.case-card .case-item-desc {
    font-size: 24px;
    line-height: 40px;
    padding-bottom: 10%;
}
.case-item-right-section {
    display: flex;
    justify-content: center;
    align-items: center;    
}
.case-card .case-img {
    border-radius: 24px;
    width: 40vw;
    height: 30vw;
    object-fit: cover;
}
.case-card .case-img.full-img{
    height: auto;

}