/*pink color: #FEF1F5  -  fff7f9 (this one is better) 
Blue: #4188c6*/

html, 
body{
    height: 100%;
    font-family: sans-serif;
}
/*NAVBAR ********************/
.navbar{
    background-color: rgba(255,255,255,0.95);
    border-bottom: 1px solid #dedede;
}

.navbar a{
    color: black !important;
}
.navbar a:hover{
    background-color: #fff7f9 !important;
}
.navbar .navbar-brand img{
    /*this will manupulate the logo*/
    margin-top: -40px;
    width: 210px;
    height: 100px;
    opacity: 0.9;
}

/*HOME Section ***************/
#home{
    background: url(../../images/1202.jpg) center center no-repeat;
    background-size: cover;
    height: 100%;
    align-items: center;
}

#home img{
    width: 100%;
    align-content: center;
    margin-top: 30%;  
    margin-bottom:20%;
}

.intro{
    width: 100%;
    text-align: center;
    font-size: 30px;
}

/*SERVICES Section *****************/
#services{
    padding: 5rem 0;
    text-align: center;
}
#services h2{
    text-align: center;
}

#services .container{
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.service-background{ /*pink div*/
    background-color: #fff7f9;
    width: 100%;
    min-height: 400px;
    height: auto !important;
}

.service-feature{
    border: 2px solid black;
    height: 100px;
    width: 100px;
    display: table;
    margin: 4em auto 2em auto;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;

}

.service-feature i{
    display: table-cell;
    vertical-align: middle;
}
.service-background h4{
    margin-bottom: 3em;
}

/*CLIENTS Section **************/

#clients{
    padding: 5rem 0;
    text-align: center;
    background-color: white;
}

#clients .container{
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}
.client-background{
    background-color: #fff7f9;
    width: 100%;
    min-height: 100px;
    height: auto !important;
}
.client-img{ /*Style not being used*/
    border: 1px solid black;
    height: 150px;
    width: 150px;
    margin: 4rem auto 4rem auto;
 
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    
}

.client-bottom-pic{
    margin-right: 10% !important;
}

.client-img-div{
    width: 100%;
    align-content: center;
}

.bottom-left{
    margin-left: 9%;
}

.bottom-right{
    margin-right: 9%;
}

#clients ul{
    margin-top: 5%;
    margin-bottom: 5%;
}
#clients ul li{
    list-style: none !important;
    text-transform: capitalize;
    font-variant: small-caps;
    font-size: 1.3em;
}


/*ABOUT Section*************/
#about{
    padding: 5rem 0;
    text-align: center;
}

#about h2{
    text-align: center;
}

/*HERE********/
.about-background{ 
    background: url(../../images/marble.jpg) center center no-repeat;
    width: 100%;
    min-height: 100px;
    height: auto !important;
    padding: 5rem 0;
}

.about-pic{
    border: 1px solid black;
    width: 300px;
    height: 300px;
    margin: 2rem auto;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}

/*Contact Us Section********/
#contact{
    padding: 5rem 0;
    text-align: center;
    background-color: white;
}

#contact h2{
    text-align: center;
}

 
.contact-background{ /*pink div*/
    background-color: #fff7f9;
    width: 100%;
    min-height: 100px;
    height: auto !important;
    padding: 5rem 0;
}

 .contact-info{
     margin-bottom: 5rem;
 }
 
.contact-info .btn.btn-default.btn-block {
    width: 25%;
    margin: 0 auto;
}

#contact form{
    margin-left: 15%;
}

#contact form .btn:hover{
    background-color: #4188c6;
    color: white;
}
#contact i{
    color: black;
}
#contact i:hover{
    color: #4188c6;
}

/*FOOTER (Not used)*****/
footer{
    border-top: 1px solid black;
    background-color: #f9f7f7;
}
footer .container{
    margin-top: 5px;
}

/*Success*******/

#success{
    background: url(../../images/0952.jpg);
    background-size: cover;
    height: 100%;
}

#success .container{
    width: 90%;
    background-color: rgba(255,255,255,0.95);
    min-height: 100%;
}
#success h2, h3{
    margin-top: 20%;
    text-align: center;
}

#success p{
    text-align: center;
}

#success ul{
    width: 100%;
    text-align: center;
}
#success i{
    color: black;
}
#success i:hover{
    color: #4188c6;
}

/*MEDIA Queries*****/
@media(max-width: 768px){

    hr{
        width: 30%;
    }
    /*social*/
    .service-background{
        
        padding-top: 20px;
        padding-bottom: 3rem;
    }
    /*clients*/
    .client-bottom-pic{
        width: 100%;
        align-content: center;
        
    }
    .client-background{
        padding: 1em 10px;
    }
    /*About us*/
    .about-background{
        padding: 1em 10px;
    }
    /*Contact*/
    #contact form{
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 3rem;
    }
    .contact-background{
        padding-left: 5px;
        padding-right: 5px;
    }
}