
body, html{
    color: #979797;
    margin: 0;
    padding: 0;
    line-height: 28px;
    font-size: 18px;
    font-family: 'Roboto', sans-serif;
    background: #FFF;
}
a{
    color: #979797;
    transition: all ease 700ms;
    -moz-transition: all ease 700ms;
    -webkit-transition: all ease 700ms;
    -ms-transition: all ease 700ms;
    -o-transition: all ease 700ms;
}
a:hover{
    text-decoration: none;
    color: #3D88C2;
}
a:focus{
    text-decoration: none;
    outline: 0;
    color: inherit;
}
h1,h2,h3,h4,h5,h6{
    margin: 0;
    padding: 0;
    line-height: .75;
}
ul,ol{
    margin: 0;
    padding: 0;
    list-style: none;
}
p{
    margin: 0;
}
img{
    width: 100%;
    height: auto;
}
/*=======================================================================
// Section Setup
=========================================================================*/
.comonSection{
    position: relative;
    background: #FFF;
    padding: 100px 0;
}
.sectionTitle{
    position: relative;
    margin: 0 0 30px;
    color: #434343;
    font-size: 25px;
    text-align: center;
    text-transform: uppercase;
    line-height: 18px;
    padding-bottom: 35px;
}
.white{
    color: #FFF;
}
.sectionTitle.white:after{
    background: #FFF;
}
.sectionTitle:before{
    width: 30px;
    height: 2px;
    background: #434343;
    content: "";
    position: absolute;
    left: 1px;
    right: 0;
    bottom: 3px;
    margin: 0 auto;
}
.sectionTitle.white:before{
    background: #FFF;
}