.case-item-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    justify-content: space-between;
}
.case-item-box:not(:last-child) {
    margin-bottom: 30px;
}
@media only screen and (min-width: 768px) {
    .case-item-box:not(:last-child) {
        margin-bottom: 0;
    }
}
@media only screen and (min-width: 576px) {
    .case-item-box {
        gap: 35px;
    }
}
@media only screen and (min-width: 1400px) {
    .case-item-box {
        grid-template-columns: 615px 615px;
        gap: 30px 50px;
    }
}
@media only screen and (min-width: 768px) {
    .case-single-item:last-child {
        margin-top: 60px;
    }
}
@media only screen and (min-width: 992px) {
    .case-single-item:last-child {
        margin-top: 80px;
    }
}
@media only screen and (min-width: 1200px) {
    .case-single-item:last-child {
        margin-top: 100px;
    }
}
.case-single-item:hover img {
    transform: scale(1.06);
}
.case-single-item .case-thumb {
    margin-bottom: 25px;
    overflow: hidden;
    border-radius: 21px;
}
.case-single-item .case-thumb img {
    width: 100%;
    object-fit: cover;
}

.case-link-icon a {
    height: 35px;
    width: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-color: #ff6d39;
    border-radius: 11px;
}
@media only screen and (min-width: 768px) {
    .case-link-icon a {
        height: 50px;
        width: 50px;
    }
}
.case-link-icon a:hover i,
.case-link-icon a:hover svg{
    transform: rotate(-45deg);
}
.case-link-icon a i,
.case-link-icon a svg{
    transition: 0.3s;
}

.case-link-icon a svg{
    width: 1em;
    height: 1em;
    fill: #fff;
}

.case-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
@media (max-width: 575px) {
    .case-content {
        flex-direction: column;
        align-items: start;
        gap: 10px;
    }
}
.case-content h4 {
    font: 500 17px "DM Sans", sans-serif;
}
@media only screen and (min-width: 576px) {
    .case-content h4 {
        font-size: 18px;
    }
}
@media only screen and (min-width: 768px) {
    .case-content h4 {
        font-size: 22px;
    }
}
@media only screen and (min-width: 992px) {
    .case-content h4 {
        font-size: 26px;
    }
}
@media only screen and (min-width: 1200px) {
    .case-content h4 {
        font-size: 32px;
    }
}
.case-content h4 a:hover {
    color: #ff6d39;
    text-decoration: none;
}



