.about-body {
    /* background-image: url('./images/img-background.jpg'); */
    background-repeat: repeat-y;
    background-size: cover;
}

.about-services-body {
    /* background-image: url('./images/img-background.jpg'); */
    background-repeat: repeat-y;
    background-size: cover;

    display: grid;
    grid-template-columns: auto auto;
}

.about-section {
    margin: 0 auto;
    padding: 4% 10% 1% 10%;
    background-color: rgb(245, 245, 245);
    width: 60%;
    min-width: 300px;
    box-sizing: border-box;
    margin-top: 40px;
    margin-bottom: 40px;
    background-color: rgb(245, 245, 245);
    border: 1px solid #e1e1e1;
    box-shadow: 3px 4px rgb(0 0 0 / 32%);
}

.about-service-section {
    margin: 0 auto;
    padding: 4% 10% 1% 10%;
    background-color: rgb(245, 245, 245);
    width: 60%;
    min-width: 350px;
    box-sizing: border-box;
    margin-top: 40px;
    margin-bottom: 40px;
}

.about-strong, .about-p, .about-p-col {
    color: rgb(23,14,93);
    font-size: 26px;
    font-family: 'Roboto', sans-serif;
    text-align: center;
}

.about-strong {
    color: rgb(255, 136, 0);
}

.about-p, .about-p-col {
    font-size: 14px;
    text-align: left;
    margin-bottom: 25px;
}

.about-img {
    width: 90%;
}

.about-header, .about-header-col {
    color: rgb(255, 136, 0);
    font-size: 25px;
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
    text-align: left;
    margin-top: 20px;
    margin-bottom: 20px;
}

@media (max-width: 858px) {
    .about-services-body {
        display: unset !important;
        grid-template-columns: unset !important;
    }

    .about-service-section {
        min-width: 300px !important;
    }
}