body{
    overflow-x: hidden;
    background-color: white;
    color: black;
}

.backgrounds{
    background-repeat: no-repeat!important;
    background-size: cover!important;
}

.vertical-align {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.text-center{
    text-align: center;
}

.btn{
    border-radius: 1px;
    border: 2px solid white;
    color: white;
    background-color: transparent;
    font-size: 20px;
    padding: 10px 20px 10px 20px;
}

.btn:hover {
    background-color: white;
    color: black;
}
#services{
    margin-top: 30px;
}
.vertical-card{
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 30px;
    margin-bottom: 50px;
    background-color: white;
    border-top: 3px solid;
    border-top-color: rgb(21, 184, 224);
    box-shadow: 5px 20px 30px rgba(0, 0, 0, 0.2);        
    padding: 0px;
}

.content{
    padding-top: 50px;
}

.service-card{
    padding: 20px 20px 20px 20px;
}

@media only screen and (max-width: 767px) {
    /* PHONES */

    #servicesLandingPage {
        background: url('../img/services.jpg');
        /* background-attachment: fixed; */
        background-position: center;
        color: white;
    }
    #services img{
        height: 200px;
    }
    #services .img-container{
        text-align: center;
    }
}

@media only screen and (min-width: 768px) {
    /* LAPTOPS */
    #servicesLandingPage {
        background: url('../img/services.jpg');
        background-attachment: fixed;
        background-position: center;
        color: white;
    }
    #services {
        padding-left: 80px;
        padding-right: 80px;
        padding-top: 50px;
        padding-bottom: 50px;
    }
    #services img{
        height: 300px;
    }
    .content{
        padding-left: 80px;
    }
    
}
