/* RESET CSS */
* {
    margin: 0;
    padding: 0;
}

/* Include all Fonts */
@import url('https://fonts.googleapis.com/css?family=Roboto');

/* END of Fonts*/

body {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
}

ul {
    list-style: none;
    margin-bottom: 0;
}



img {
    max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,p {
    margin: 0;
}

h4 {
    font-size: 18px;
}

h2 {
    font-size: 40px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}
@media (max-width: 400px) {
    h2 {
    font-size: 25px;
}
    }


.nav > li > a:focus,
.nav > li > a:hover {
    background-color: transparent;
    text-decoration: none;
}

.navbar{
    margin-bottom: 0;
    border:0;

}

input:focus,input:active{
    outline: none;
}

textarea:focus{
    outline: none !important;
    box-shadow: none !important
}

/* Remove Chrome Input Field's Unwanted Yellow Background Color */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px white inset !important;
}