.service-heading {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 5%;
    width: auto;
}
.service-heading-info {
    width: 50%;
}

.services {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin-bottom: 1em;
}
.service {
    background-color: var(--color4);
    width: fit-content;
    height: fit-content;
    padding: 1em;
    color: black;
}
.service-image {
    object-fit: cover;
    width: 25vw;
    min-width: 200px;
    height: 25vh;
    min-height: 200px;
}

.service-info {
    text-align: center;
    max-width: 90%;
    margin: auto;
}

@media (max-width: 800px) {
    .services {
        flex-direction: column;
        align-content: center;
    }
    .service {
        margin-bottom: 1em;
    }
}

@media (max-width: 600px) {
    .service-heading {
        flex-direction: column;
    }
    .service-heading-info {
        width: fit-content;
    }
}