html,
body {
  overflow-x: hidden; /* Prevent scroll on narrow devices */
}

body {
  padding-top: 0px;
}

/*//////////////////////////Top Logo Styles//////////////////////////////*/
div.headLogo{
    height: 115px;
    width: 100%;
    background-color: #ffffff;
    color: #777777;
    text-align: center;
    transition: all 800ms ease;
}


div.headLogo > img{
    width: 80px;
    position: fixed;
    left: 46%;
    z-index: 1100;
    top: 60px;
    transition: all 800ms ease;
}

div.headLogo > img.transImg{
    width: 55px;
    position: fixed;
    left: 47%;
    z-index: 1100;
    top: 0px;
}

div.headLogo > span{
    font-size: 3em;
    font-weight: 600;
    display: block
}

/*//////////////////////////Navigation Styles//////////////////////////////*/

@media (max-width: 991.98px) {
  .offcanvas-collapse {
    position: fixed;
    top: 56px; /* Height of navbar */
    bottom: 0;
    left: 100%;
    width: 100%;
    padding-right: 1rem;
    padding-left: 1rem;
    overflow-y: auto;
    visibility: hidden;
    background-color: #009688;
    transition-timing-function: ease-in-out;
    transition-duration: .3s;
    transition-property: left, visibility;
  }
  .offcanvas-collapse.open {
    left: 0;
    visibility: visible;
  }
}

.nav-scroller {
  position: relative;
  z-index: 2;
  height: 2.75rem;
  overflow-y: hidden;
}

.nav-scroller .nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  padding-bottom: 1rem;
  margin-top: -1px;
  overflow-x: auto;
  color: rgba(255, 255, 255, .75);
  text-align: center;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

.nav-underline .nav-link {
  padding-top: .75rem;
  padding-bottom: .75rem;
  font-size: .875rem;
  color: #6c757d;
}

.nav-underline .nav-link:hover {
  color: #007bff;
}

.nav-underline .active {
  font-weight: 500;
  color: #343a40;
}

.text-white-50 { color: rgba(255, 255, 255, .5); }

.bg-purple { background-color: #6f42c1; }

.lh-100 { line-height: 1; }
.lh-125 { line-height: 1.25; }
.lh-150 { line-height: 1.5; }

.navbar.navContainer{
   top: 85px;
    width: 80%;
margin: 0 auto;
    background-color: #009688;
    border-bottom: 3px solid #b71c1c;
    transition: all 800ms ease;
}

.navbar.navContainer.transNav{
    top: 0px;
    width: 100%;
}

a.navbar-brand{
    display: none;
}

@media only screen and (max-width: 1199px) {
.navbar.navContainer{
    top:50px;
    width: 80%;
    }
}

@media only screen and (max-width: 991px) { 
.navbar.navContainer{
    top:50px;
    width: 80%;
    }
}

@media only screen and (max-width: 767px) { 
.navbar.navContainer{
    top:0;
    width: 100%;
    }
    
    a.navbar-brand{
    display: block;
}
    
    a.navbar-brand > img{
        width: 30px
    }
    
    div.headLogo, div.headLogo > img{
        display: none;
    }
}

@media only screen and (max-width: 575px) { 
    .navbar.navContainer{
    top:0;
    width: 100%;
    } 
    
    a.navbar-brand{
    display: block;
}
    
    a.navbar-brand > img{
        width: 30px
    }
    
    div.headLogo, div.headLogo > img{
        display: none;
    }
}


/*//////////////////////////Carousel Styles//////////////////////////////*/
/* Carousel base class */
.carousel {
/*  margin-bottom: 4rem;*/
}
/* Since positioning the image, we need to help out the caption */
.carousel-caption {
  bottom: 3rem;
  z-index: 10;
    background-color: rgba(0,0,0,0.6);
    padding: 0px 20px;
}

/* Declare heights because of positioning of img element */
.carousel-item {
  height: 32rem;
  background-color: #777;
}
.carousel-item > img {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  height: 32rem;
}

@media (min-width: 40em) {
  /* Bump up size of carousel content */
  .carousel-caption p {
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
    line-height: 1.4;
  }
}

/*//////////////////////////Services Offered//////////////////////////////*/

div.servOff{
    text-align: center;
    margin: 50px;
}

div.servOff a{
    color: #333;
}

div.servOff h2{
    margin-top: 10%;
font-size: 3em;
font-weight: 600;
}

div.servOff a:hover{
text-decoration: none;
}

div.linkDiv1{
    width: 90%;
        margin: 10px auto;
    height: 130px;
    border-bottom:4px solid #00BFA5;
    padding: 10px;
    background-color: #b71c1c;
    color: #ffffff;
    text-align: right;
    box-shadow: 5px 5px 10px #cccccc;
    transition: all 500ms ease;
}

div.linkDiv1:hover{
    border-bottom:10px solid #00BFA5;
    box-shadow: 7px 7px 14px #cccccc;
}

div.serveBG{
    position: absolute;
    left: 0;
    right: 0;
    
}

@media only screen and (max-width: 767px) {
    div.serveBG{
        display: none;
    }
}
@media only screen and (max-width: 575px) { 
div.serveBG{
        display: none;
    }
}

/*//////////////////////////Footer//////////////////////////////*/

footer{
  background-color: #009688;
color: #fff;  
}

footer ul{
    list-style-type: none;
}

footer ol{
    list-style-type: disc;
}

footer ul > li, footer ol > li {
    margin: 10px 5px;
}

footer a{
    color: #fff;
    padding: 5px 10px;
    transition: all 500ms ease;
}

footer a:hover{
    background-color: #b71c1c;
    text-decoration: none;
    color: #ffffff;
}
footer h5{
    text-align: center;
border-bottom: 2px solid #b71c1c;
padding: 10px;
}

div.footLogo{
    padding-top: 20px;
}

div.footLogo > img{
    width: 100px;
    margin: 20px 10px;
    float: left;
}

div.footLogo > h6{
    text-align: left;
margin: 20px;
font-size: 1.3em;
font-weight: 600;
   }

/*//////////////////////////About//////////////////////////////*/
div.horizontalSpace{
    width: 100%;
    height: 60px;
}

div.textContainer{
    padding: 50px 20px;
    border: 1px solid #f5f5f5;
box-shadow: 2px 2px 5px #eeeeee;
    margin-bottom: 50px;
}

div.textContainer h2, div.textContainer h3{
    padding: 10px 20px;
    background-color: #b71c1c;
    color: #ffffff;
    text-align: center;
    margin-bottom: 20px;
}

/*//////////////////////////Login//////////////////////////////*/

div.loginForm{
    width: 400px;
    margin: 20px auto;
    border: none;
}

div.loginHead{
    width: 400px;
    background-color: #b71c1c;
    color: #ffffff;
    text-align: center;
padding: 15px 20px;
box-shadow: 3px 3px 6px #aaa;
}

div.loginBody{
width: 360px;
    margin: 0 auto;
    padding: 20px 10px;
    box-shadow: 2px 2px 5px #aaa;
    background-color: #ffffff;
}

div.loginBody [type="text"],div.loginBody [type="password"]{
    margin: 15px auto;
}

div.loginPage img{
         width: 15%;
position: absolute;
top: 50%;
left: 30%;
z-index: -1;
}

@media only screen and (max-width: 767px) {
    div.loginPage img{
        display: none;
    }
}
@media only screen and (max-width: 575px) { 
div.loginPage img
        display: none;
    }
}