.text-description {
    padding: 64px 0;
    position: relative;
}

.text-description .content-title-wrapper {
    flex-direction: row;
}

.text-description .content-title-wrapper>* {
    width: 50%;
    text-align: left;
}

.text-description .content-title-wrapper p {
    border-left: 1px solid var(--Color-3);
    padding-left: 40px;
    font-size: 18px;
}

.text-description .boxes-wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

@media (max-width:1199px) {
    .text-description {
        padding: 48px 0
    }

}

@media (max-width:991px) {
    .text-description .content-title-wrapper {
        flex-direction: column;
    }

    .text-description .content-title-wrapper>* {
        width: 100%;
    }

    .text-description .content-title-wrapper p {
        padding-left: 16px;
    }
}

@media (max-width:768px) {
    .text-description {
        padding: 32px 0;
    }
}