#our-services-services .row {

    justify-content: space-evenly;
    width: 100%;
}

#our-services-services .section-title {

    margin-bottom: 40px;

}


#our-services-services .row .col {
    display: flex; 
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 0px 40px;
    max-width: 35%;
    margin-bottom: 20px;

}

#our-services-services .row .col .title {

    font-size: 22px;
    font-weight: 700;
    color: var(--text-main);

    max-width: 83%;
    margin-bottom: 10px;
}

#our-services-services .row .col .paragraph {

    font-size: 16px;
    font-weight: 400;
    color: var(--text-main);

}


@media screen and (max-width: 768px) {

    #our-services-services .row .col {

        max-width: min(100%, 400px);
        margin-bottom: 40px;

    }

}