* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    background-color: #d9dcd6;
}

.header {
    padding: 20px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    background-color: #2a607c;
    color: #ffffff;
}
/* changed this to h1, having the header title was not needed */
h1{
    display: inline-block;
    font-size: 38px;
}
/* changed this to .seo, have the header title was not needed */
 .seo {
    color: #d9dcd6;
}
/* Made an ID for the the div inside the header class */
#links{
    padding-top: 15px;
    margin-right: 20px;
    float: right;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 20px;
    list-style-type: none;
}

.header div ul li {
    display: inline-block;
    margin-left: 10px;
}

a {
    color: #ffffff;
    text-decoration: none;
}

.hero {
    height: 800px;
    width: 100%;
    margin-bottom: 25px;
    background-image: url("../images/digital-marketing-meeting.jpg");
    background-size: cover;
    background-position: center;
   
}

.float-left {
    float: left;
    margin-right: 25px;
}

.float-right {
    float: right;
    margin-left: 25px;
}

.content {
    width: 75%;
    display: inline-block;
    margin-left: 20px;

}
/* I have also changed the padding property to format to the page correctly */
.benefits {
    margin-right: 20px;
    padding: 35px;
    clear: both;
    float: right;
    width: 20%;
    height: 100%;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    background-color: #2589bd;
}

.benefit-assets {
/*this class was grouped together because they do all the same function */
    color: #ffffff;
    margin-bottom: 25px;
    text-align: center;
}

.benefit-assets img {
/* this class was grouped together because they do all the same function */
    display: block;
    margin: 10px auto;
    max-width: 150px;
}


.benefit-box{
    /* this is for the paragraph on the benefits box */
        font-size: 16px;
        color:#ffffff;
}

/* I grouped these together for easier access, also changed Height, Margin Bottom, and Padding*/
.service {
    margin-bottom: 10px;
    padding: 35px;
    height: 320px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    background-color: #0072bb;
    color: #ffffff;
    font-size: 25px;

}
.box{
/* I created this property to distinguish the paragraphs in the main boxes */
   /* I added a margin property to give space to the box headers */
font-size: 18px;
    color:#ffffff;
    margin-top: 15px;

}

.service img {
    max-height: 200px;
}
/* I added a visibility property, this can be removed if desired. */
.footer {

    clear: both;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    text-align: center;
    font-size: 20px;
    visibility: hidden;
}
/* this is for the logo, all paragraphs have been put in a class */
.logo{
    
font-size: 16px;
}

