.case-project-description {
    padding: 16px 0 60px;
}

.case-project-description .container {
    display: flex;
    justify-content: space-between;
}

.case-project-description .title {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
    padding-left: 22px;
    position: relative;
}

.case-project-description .title:before {
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
    width: 14px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='16' viewBox='0 0 14 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 8.17778C7.98347 8.17778 7.05785 3.31852 7.05785 0C7.05785 6.51852 2.89256 8.17778 0 8.17778C6.5719 8.17778 7.05785 12.9185 7.05785 16C7.05785 9.45778 11.1074 8.62001 14 8.17778Z' fill='black'/%3E%3C/svg%3E%0A");
}

.case-project-description .text {
    font-size: 20px;
    line-height: 1.5;
    width: 65%;
}

@media (max-width:968px) {
    .case-project-description {
        padding: 8px 0 20px;
    }

    .case-project-description .container {
        flex-direction: column;
        gap: 24px;
    }

    .case-project-description .text {
        width: 100%;
        font-size: 18px;
    }
}