*{
    font-family: "Arial";
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.navbar-logo{
    margin: 0;
}
#navbar{
    background-image: url(../images/top-bg.gif);
}
#mob-logo{
    color: #fff;
}

.banner {
    position: relative; 
    height: 40vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.banner img{
    position: relative;
    height: 80px;
    padding: 10px;
}

.banner::before {    
    content: "";
    background-image: url(../images/banner-2.jpg);
    background-size: cover;
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    opacity: 0.3;
}
.banner h1 {
    position: relative;
    text-align: center;
    color: rgb(185, 11, 11);
    font-weight: 600;
}
.banner p {
    position: relative;
    text-align: center;
    color: rgb(5, 15, 5);
    font-weight: 600;
}
.fixed-menu{
    background-color: rgba(128, 128, 128, 0.021);
}
.fixed-menu ul{
    padding-left: 0;
}
.fixed-menu ul li ul{
    padding-left: 20px;
}
.fixed-menu ul li{
    list-style-type: none;
    border-bottom: 1px solid #111;
}
.fixed-menu ul li a{
    text-decoration: none;
    color: rgba(17, 17, 17, 0.781);
    line-height: 1.9;
    font-weight: 600;
    font-size: 14px;
    
}
.fixed-menu ul li a:hover,
.fixed-menu-heading span:hover{
    color: blue;
}
.fixed-menu-heading span{
    border-left: 2px solid red;
    padding-left: 5px;
    color: #111;
    line-height: 1.9;
    font-weight: 600;
    font-size: 14px;
}
.home-container h1{
    font-size: 2.5rem;
    font-weight: 600;
    color: rgb(185, 11, 11);
}

/* contact page */
.contact-container {
    line-height: 1.2rem;
}
.contact-container span{
    font-weight: 600;
}
.contact-container a{
    text-decoration: none;
    color: #111;
}

/* Links Page */
.links-container p{
    font-weight: 600;
    margin-bottom: 5px;
}
.links-container a{
    text-decoration: none;
    color: rgb(87, 80, 80);
}
.links-container a:hover{
    color: blue;
}

/* Career Page */
.career-container a{
    text-decoration: none;
}

/* Services Page */
.services-container p{
    margin-bottom: 0;
    margin-top: 10px;
}
.services-container p span{
    font-weight: 600;
}

.sitemap-container h1{
    color: rgb(185, 11, 11);
    font-weight: 600;
}
.sitemap-container p{
    color: rgb(5, 15, 5);
    font-weight: 600;
}
.sitemap-container-p{
    font-weight: 500 !important;
}
.sitemap-links p a,
.sitemap-links ul li a
{
    text-decoration: none;
}


/* Media Query */

@media only screen and (max-width: 992px){    
    .navbar-logo img{
        width: 250px;
    }
    #navbarSupportedContent{
        text-align: center !important;
    }   
    .fixed-menu ul li a{
        font-size: 12px;
    }
}
@media only screen and (max-width: 600px){
    .navbar-logo img{
        width: 240px;
    }
    .banner img{
        height: 60px;
    }
    .banner h1{
        font-size: 1.8rem;
    }
    .banner p{
        font-size: 0.8rem;
    }
    .home-container h1{
        font-size: 2rem;
    }
    .contact-container h2{
        font-size: 1.5rem;
    }
}