 html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}
.padding-0 {
    padding: 0px;
}
.padding-left-0 {
    padding-left: 0px;
}
.padding-right-0 {
    padding-right: 0px;
}
/** NAV BAR **/
#nav-bar {
    background: #076e7d;
    
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 500;
    
}
#nav-bar nav {
    background-image: url("asserts/Logo/Logo-05.png");
    background-repeat: no-repeat;
    background-size: 90px 60px;
    min-height: 59px;
}
#nav-bar ul {
    margin: 0px;
}
#nav-bar ul li {
    list-style-type: none;
    display: inline-block;
}
#nav-bar ul a {
    text-decoration: none;
    color: #FFFFFF;
    font-size: 25px;
    display: inline-block;
    padding: 12px 15px;
}
.select {
    color: #076e7d !important;
    background: white;
}
/** END NAV BAR **/
/** BODDY WRAPPER **/

#body-wrapper {
    position: relative;
    height: 100vh;
}
#body-wrapper .content {
    padding: 100px 0 250px 0;
    min-height: 100%;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center center;
}
.display-none {
    display: none;
}
.display-block {
    display: block;
}
/** END BODDY WRAPPER **/
/** HOME PAGE **/
#home-page {
    background-image: url("asserts/bg-images/home.jpeg");
    background-repeat: no-repeat;
    background-size:  100% 100%;
    min-height: 100%;
}
.page-left img{
    max-width: 100%;
     display: block;
    margin-left: auto;
    margin-right: auto;
}
#home-page-right {
    font-size: 22px;
    text-align: justify;
    padding-top: 80px;
}
#home-page-right > div {
    padding-top: 30px;
}
/** END HOME PAGE **/
/** ABOUT PAGE **/
#about-page {
    background-image: url("asserts/bg-images/about-02.jpeg");
    background-repeat: no-repeat;
    background-size:  100% 100%;
    min-height: 100%;
    font-size: 17px;
}
#about-page .page-left {
    padding-top: 30px;
}
/** END ABOUT PAGE **/
/** CONTACT PAGE **/
#contact-page {
    background-image: url("asserts/bg-images/contact.jpeg");
    background-repeat: no-repeat;
    background-size:  100% 100%;
    min-height: 100%;
}
#contact-page .page-left {
    padding-top: 30px;
}
.form-container  {
    padding-top: 20px;
}
.form-container h3,
.form-container form {
    background: #076e7d;
    padding: 10px 20px;
    margin: 0;
}
.form-container h3 {
    font-family: "Arial Black", Gadget, sans-serif;
    color: #FFFFFF;
    border-bottom: 5px solid #FFFFFF;
    border-radius: 15px 15px 0 0;
}
.form-container form {
    border-radius: 0 0 15px 15px;
}
.form-container input,
.form-container textarea{
    font-size: 15px;
    font-family: "Arial Black", Gadget, sans-serif;
    padding: 20px;
    width: 100%;
    margin: 20px 0;
    border: 0px;
    border-radius: 10px;
}
.form-container textarea{
    height: 200px;
    max-height: 280px;
    max-width: 100%;
    min-width: 100%;
}
/** END CONTACT PAGE **/

/** REFERRAL PAGE **/
#referral-page {
    background-image: url("asserts/bg-images/contact.jpeg");
    background-repeat: no-repeat;
    background-size:  100% 100%;
    min-height: 100%;
}
#referral-page .page-left {
    padding-top: 30px;
}

.referral-form {
    padding-top: 20px;
}
.referral-form h3 {
    color: #FFFFFF;
    font-weight: bold;
    border-bottom: 5px solid #FFFFFF;
    border-radius: 15px 15px 0 0;
}
.referral-form h3,
.referral-form form {
    background: #076e7d;
    padding: 10px 20px;
    margin: 0;
}

.referral-form form {
    border-radius: 0 0 15px 15px;
}
.referral-form label {
   padding-top: 25px;
   color: #FFFFFF;
}
.referral-form input,
.referral-form textarea{
    font-size: 15px;
    font-family: "Arial Black", Gadget, sans-serif;
    padding: 12px;
    margin: 20px 0;
    max-width: 100%;
    max-height: 100px;
    border: 0px;
    border-radius: 10px;
}
.referal-form-submit {
   
    
}
/** END REFERRAL PAGE **/

/** FOOTER **/
#footer {
    background: #3a3b3c;
    position: fixed;
    bottom: 0;
    z-index: 500;
    width: 100%;
    color: #FFFFFF;
}

#footer > div > div > div:not(:first-child) {
    height: 55px;
    background-repeat: no-repeat;
    background-size: 50px 50px;
    background-position: top 0px left -10px;
    padding-left: 40px;
    padding-top: 14px;
    overflow-wrap: break-word;
}

.footer-copy {
    padding-top: 14px;
}
.footer-phone {
    background-image: url("asserts/Icons/icon-01.png");

}
.footer-fax {
    background-image: url("asserts/Icons/icon-02.png");
  
}
.footer-email {
    background-image: url("asserts/Icons/icon-03.png");
  
}
.footer-address {
    background-image: url("asserts/Icons/icon-04.png");
}

/** END FOOTER **/


@media (max-width:991px) {

    #footer {
        position: relative;
    }

    #body-wrapper {
        position: relative;
        height: 100%;
    }
}

@media (max-width:767px) {

    #nav-bar {
        top: 0px;
    }
    #nav-bar nav {
        background-size: 45px 30px;
        background-position: top 10px left 0px;
        min-height: 40px;
    }
    #nav-bar ul a {
        font-size: 16px;
        padding: 15px 4px;
    }
}