.body-main{
    color: black;
    padding: 2%;
    text-align: center;
    background-color: white;
    font-family: "Roboto", sans-serif;
}

.body-main h2 {
    text-align: center;
}

.main-services{
    background-color: white;
    display: flex;
    justify-content: space-between;
    margin: 2%;
    padding: 2%;

}

.main-services h3 {
    color: #5f90c9;
}

#ms-div{
    border: 2px solid #5f90c9;
    border-radius: 5px;
    transition: all 0.5s ease-in-out;
    background-color: white;
    padding: 3%;
    margin: 2%;
    color: #5f90c9 ;
}

.main-services #ms-div:hover{
    transform: scale(1.05);
    background-color: white;
}

.section3 {
    background-color: black;
    display: flex;
    justify-content: space-between;
    flex-direction: initial;
    text-align: left;
    color: white;
    padding: 10%;
    font-family: "Roboto", sans-serif;

}

.section3 img {
    float: right;
    width: 45%;
}


.section3 h2, h3{
    text-align: left;
    font-size: 2rem;
    color: #5f90c9;
}

.section3 a {
    text-decoration: none;
    color: black;
}

@media screen and (max-width: 480px)
{ 
    .main-services{
       flex-direction: column;
       font-size: 1;
    
    }

    .body-main h1 {
        font-size: 2.5vh;
    }

    .body-main p {
        font-size: 1.5vh;
    }

    #ms-div h3{
        text-align: center;
    }

    .section3{
        flex-direction: column;
    } 

    .section3 h2, h3, h4{
        font-size: 2vh;
    }
    
    .section3 p{
        font-size: 1.5vh;
    }
    
    .section3 ul{
        font-size: 1.5vh;
    }
}