.service-container {
    min-height: 100vh;
    height: auto;
    display: flex;
    flex-direction: column;
    background-color: #fffee7;
    padding-top: 8%;
}

.title {
    color: #685b3c;
    font-weight: 600;
}

.service {
    height: fit-content;
    width: 50%;
    padding: 3%;
    margin-top: 3%;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    align-items: center;
    color: #685b3c;
}

.service-title {
    font-weight: 700;
}

.service-content {
    margin-top: 3%;
    line-height: 200%;
    font-weight: 600;
}


/* Mobile */
@media (max-width: 600px) {

    h1 {
        font-size: x-large;
    }

    h2 {
        font-size: 1rem;
    }

    h3 {
        font-size: large;
    }
}
    
/* Bigger Tablets */
@media (max-width: 1280px) {

    h3 {
        font-size: 1.2rem;
    }

    h4 {
        font-size: 1rem;
    }
}
    
/* Tablets */
@media (max-width: 768px) {

    h3 {
        font-size: 1.2rem;
    }

    h4 {
        font-size: 1rem;
    }
}


@media (max-width: 480px) {

    .service {
        width: 75%;
        /* background-color: aqua; */
    }

    h3 {
        font-size: 1.2rem;
    }

    h4 {
        font-size: 1rem;
    }
}