.main {
    background-color: #f7f7f7;
}

.content {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start   
}

.services {
    width: 50%;
    margin-bottom: 5%;
    background-color: #F0F0F0;
    padding: 2%;
}

.content-img {
  display: flex;
  height: auto;
  width: 50%;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 5%;
  background-color: #E8E8E8;
}

.services h2 {
    color: /*#003d66*/ #007bff;
}

.services p {
    font-size: 19px;
}

.content-img p {
    font-size: 18px;
    color:  #007bff;
    padding-left: 3%;
    padding-right: 3%;
}

@media only screen and (max-width: 800px) {
    .content {
        flex-direction: column;
    }

    .services {
        width: 100%;
         }

    .services p {
        font-size: 16px;
    }

    .content-img {
        width: 100%;
        margin-top: -5%;
        padding: 5%;
    }

    .content-img p {
        font-size: 16px;
        color:  #007bff;
        
    }  
}
