/* Main Area CSS */
body {
    background-color: #2b5798;
    font-family: 'Lato', sans-serif;
}
.main {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px 90px;
    position: relative;
    display: block;
    overflow: hidden;
    clear: both;
    text-align: center;
}

/* Banner CSS */
.site-banner {
    margin-top: 10px;
    margin-bottom: 45px;
}
.site-banner img {
    width: 100%;
}
.site-title {
    max-width: 830px;
    text-align: center;
    margin: 0 auto;
    margin-top: 30px;
}
.site-title h2 {
    float: left;
    font-size: 18px;
    font-weight: 800;
    margin-top: 7px;
    margin-bottom: 0px;
    color: #2b5798;
}
.site-title img {
    max-width: 38px;
    cursor: pointer;
}


/* Single Content CSS */
.single-content {
    display: block;
    clear: both !important;
    width: 100%;
    overflow: hidden;
    border-bottom: 1px solid #dddddd;
    padding: 30px 0;
    max-width: 650px;
    margin: auto;
}
.content-area>h1 {
    color: #ffffff;
    font-weight: 500;
    font-size: 26px;
    line-height: 40px;
    margin: auto;
    margin-bottom: 20px;
    background-color: #2b5798;
    padding: 20px 100px;
}
.single-content h4 {
    color: #2b5798;
    font-weight: 600;
    margin-top: 0px;
    font-size: 18px;
}
.single-content a {
    background-color: #2b5798;
    color: #ffffff;
    text-decoration: none;
    padding: 10px 20px;
    display: block;
    width: 100%;
    text-align: center;
    max-width: 200px;
    margin: auto;
    border-radius: 2px;
    transition: .3s;
    cursor: pointer;
}
.single-content a:hover {
    background-color: #6169aa;
}


/* Footer CSS */
.footer-area h4 {
    font-size: 15px;
    color: #2b5798;
    margin-bottom: 1px;
}
.footer-area p {
    font-size: 18px;
    line-height: 32px;
    color: #6169aa;
}



/* Responsive CSS */
/* small mobile :320px. */
@media screen and (max-width:767px) {
    body {
        padding: 15px;
        background-color: #ffffff;
    }
   .main {
       padding: 0px;
   }
   .logo>a>img {
       width: 100%;
       max-width: 235px;
   }
   .content-area>h1 {
       font-size: 18px;
       line-height: 28px;
       margin-bottom: 15px;
       padding: 20px 30px;
   }
   .single-content h4 {
       font-size: 15px;
   }
   .single-content a {
       max-width: 125px;
       font-size: 15px;
   }
   .footer-area p {
       font-size: 16px;
       line-height: 26px;
   }
}