/* Services Styles */


/* Base Styles */

h2 {
    text-align: center;
    margin: 5px 0 5px 0;
}

.body-title {
    font-size: 1.6em;
    color: rgb(33, 128, 33);
    background-color: white;
    margin-left: auto;
    margin-right: auto;
    border-radius: 25px;
    padding: 0 10px;
    box-shadow: 2px 2px 2px rgb(113, 119, 119);
}


/* Flex the service-wrap divs and set their flex directon to column on small screens to stack them on top of one another */

.service-wrap {
    display: flex;
    flex: 1 0 auto;
    flex-direction: column;
}


/* Content Styles */

.lawn-care,
.landscaping {
    background: white;
    border-radius: 25px;
    width: 97.5%;
    margin: 10px auto 10px auto;
    box-shadow: 5px 5px 5px rgb(113, 119, 119);
    padding-bottom: 10px;
}


/* In the img selctor the height and width of the images are limited to 30% of the .lawn-care and .landscaping
containers so that the images do not display the list that are floated right*/

img {
    display: block;
    box-shadow: 5px 5px 5px rgb(113, 119, 119);
    max-height: 30%;
    max-width: 30%;
    border-radius: 5px;
    margin-left: 20px;
    float: left;
}

.service-lists {
    font-weight: bold;
    font-size: 1.2em;
    line-height: 2.2;
    float: right;
    margin-right: 20px;
}


/* Media Queries */


/* Tablet */

@media(min-width: 640px) {
    /* Base Styles */
    h2 {
        margin: 92.5px auto 0;
    }
    /* Change the .service-wrap flex direction to row so that there are 2 columns side by side */
    .service-wrap {
        flex-direction: row;
        align-items: center;
    }
    /* Content Styles */
    .lawn-care h2,
    .landscaping h2 {
        margin-top: 5px;
    }
    .lawn-care,
    .landscaping {
        width: 46.25%;
        margin-bottom: 10%;
    }
    /* The floats for img and .service-lists is cleared here since the images can be displayed on larger screens stacked on top of the list */
    img {
        max-width: 90%;
        max-height: 90%;
        float: none;
        margin: 0 auto 0 auto;
        margin-top: 5px;
    }
    .service-lists {
        text-align: center;
        float: none;
        margin: 0;
    }
}

@media(min-width: 1025px) {
    /* Base Styles */
    h2 {
        margin: 72px auto 0;
    }
    .service-wrap {
        margin-top: -5px;
    }
    /* Content Styles */
    .lawn-care,
    .landscaping {
        width: 45%;
        margin: 10px auto 10px auto;
    }
    img {
        max-width: 40%;
        max-height: 40%;
    }
}