@import url('https://fonts.googleapis.com/css?family=Montserrat');
@import url('https://fonts.googleapis.com/css?family=Open+Sans');

html,
body {
    font-family: 'Open Sans', sans-serif;
    overflow-x: hidden;
    background: #fff;
}

@media only screen and (min-width: 992px) {
    html,
    body {
        font-size: 100%;
    }
}

body a {
    transition: 0.5s all ease;
    -webkit-transition: 0.5s all ease;
    -moz-transition: 0.5s all ease;
    -o-transition: 0.5s all ease;
    -ms-transition: 0.5s all ease;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    color: #272727;
}

a {
    color: #45aed6;
    -webkit-transition: color 400ms, background-color 400ms;
    -moz-transition: color 400ms, background-color 400ms;
    -o-transition: color 400ms, background-color 400ms;
    transition: color 400ms, background-color 400ms;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #2a95be;
}

hr {
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #fff;
}

.gradiant {
    background-image: -moz-linear-gradient(90deg, #2caab3 0%, #2c8cb3 100%);
    background-image: -webkit-linear-gradient(90deg, #2caab3 0%, #2c8cb3 100%);
    background-image: -ms-linear-gradient(90deg, #2caab3 0%, #2c8cb3 100%);
}

.gradiant-horizontal {
    background-image: -moz-linear-gradient(4deg, #2caab3 0%, #2c8cb3 100%);
    background-image: -webkit-linear-gradient(4deg, #2caab3 0%, #2c8cb3 100%);
    background-image: -ms-linear-gradient(4deg, #2caab3 0%, #2c8cb3 100%);
}

.btn {
    border-width: 0;
    border-bottom-width: 3px;
    border-radius: 3px;
}

.btn.btn-primary {
    background: #45aed6;
    border-color: #2a95be;
}

.btn.btn-primary:hover,
.btn.btn-primary:focus {
    background: #2a95be;
}

ul.nostyle {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

ul.nostyle i {
    color: #45aed6;
}

.mandatory {
    color: #ff0000;
    font-size: 10pt;
}

.form-control {
    border-radius: 0;
}

.PageScroll {
    display: none;
    width: 100%;
    margin: 0 auto;
    position: fixed;
    bottom: 20px;
    right: 10px; 
}

.pagetop {
    position: absolute;
    right: 20px;
    bottom: 20px;
    background: #ea6226;
    background: rgba(234, 98, 38, 0.7);
    padding: 20px;
    text-align: center;
    margin: 0 0 0 0;
    cursor:pointer;
    transition: 0.5s;
    -moz-transition: 0.5s;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;        
}

.pagetop:hover {
    background: rgba(234, 98, 38, 1.0);
    transition: 0.5s;
    -moz-transition: 0.5s;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;        
}

.pagetop:hover .fa {
    padding-top: -10px;
}

.pagetop .fa {
    font-size: 30px;
    margin-top: -5px;
    margin-left: 1px;
    transition: 0.5s;
    -moz-transition: 0.5s;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;  
    color: #fff;  
}

/*************************
*********Header***********
**************************/
.navbar.navbar-default {
    border: 0;
    border-radius: 0;
    margin-bottom: 0;
}

.navbar.navbar-default .navbar-toggle {
    margin-top: 30px;
}

.navbar.navbar-default .navbar-brand {
    height: auto;
    padding: 10px 0;
}

.navbar-brand > img {
    width: 420px;
}

#top-menu.navbar-default {
    background: rgba(249, 249, 249, 0.3);
    -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.5);
}

.scroll-nav {
    background: rgba(249, 249, 249,1) !important;
}

.menuBorderShadow {
    -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.5);
}

#top-menu.navbar-default .navbar-nav > li > a {
/*    padding-top: 45px;
    padding-bottom: 45px;
    color: #fff;*/
    font-weight: 600;
    text-transform: uppercase;
}

@media only screen and (min-width: 992px) {
    .navbar.navbar-default {
        height: 90px;
    }

    #top-menu.navbar-default .navbar-nav > li > a {
        padding-top: 35px;
        padding-bottom: 35px;
        color: #333;
        font-weight: 500;
        text-transform: uppercase;
        font-size: 18px;
    }

    #top-menu.navbar-default .navbar-nav > li.active > a,
    #top-menu.navbar-default .navbar-nav > li.open > a,
    #top-menu.navbar-default .navbar-nav > li:hover > a {
        background: #45B2F3;
        padding-top: 35px;
        color: #fff;
    }
}

@media only screen and (max-width: 991px) {
    .navbar-default .navbar-collapse {
        background: rgba(249, 249, 249, 1);
    }
}

@media only screen and (max-width: 400px) {
    .navbar-brand > img {
        width: 240px;
    }

    .navbar.navbar-default .navbar-toggle {
        margin-top: 18px;
    }
}


@media only screen and (min-width: 401px) and (max-width: 450px) {
    .navbar-brand > img {
        width: 320px;
    }

    .navbar.navbar-default .navbar-toggle {
        margin-top: 25px;
    }
}

@media only screen and (min-width: 451px) and (max-width: 548px) {
    .navbar-brand > img {
        width: 370px;
    }

    .navbar.navbar-default .navbar-toggle {
        margin-top: 30px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .navbar-brand > img {
        width: 345px;
    }
}

.rowSplit {
    margin-bottom: 20px;
}

/*************************
*********Container********
**************************/
@media only screen and (min-width: 1200px) and (max-width: 1430px) {
  .container {
    width: 1150px;
  }
}

@media only screen and (min-width: 1431px) and (max-width: 1460px) {
  .container {
    width: 1200px;
  }
}

@media only screen and (min-width: 1461px) and (max-width: 1599px) {
  .container {
    width: 1300px;
  }
}

@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .container {
    width: 1500px;
  }
}

@media only screen and (min-width: 1701px) {
  .container {
    width: 1480px;
  }
}

/*************************
*******Bread Crumb********
**************************/

#breadcrumb {
    background-color: #f5f5f5;
    font-size:18px;
    padding: 20px 0 0;
}

.breadcrumb-active{
    color: #5f82c5;
    font-weight: 600;

}

.breadcrumb-ol > li {
    display: inline-block;
}

.breadcrumb-divider{
    font-weight:600;
    font-size:20px;
}

.sideContact {
    margin: 0 auto;
    width: 76%;
}

@media screen and (max-width: 350px) {
    .sideContact {
        width: 100%;
    }
}

@media screen and (min-width: 351px) and (max-width: 420px) {
    .sideContact {
        width: 94%;
    }
}

.sideContactCol {
    border: 1px solid #333;
}

.sideContact h3 {
    font-size: 20px;
}

.sideContact p {
    font-size: 20px !important;
    font-weight: 600;
}

.sideContact p span {
    font-size: 16px !important;
    font-weight: 600;
}

@media only screen and (min-width: 992px) and (max-width: 1599px) {
    .sideContact h3 {
        font-size: 18px;
    }

    .sideContact p span {
        font-size: 15px !important;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .sideContact {
        width: 96%;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1430px) {
    .sideContact {
        width: 100%;
    }
}

@media only screen and (min-width: 1431px) and (max-width: 1460px) {
    .sideContact {
        width: 97%;
    }
}


@media only screen and (min-width: 1461px) and (max-width: 1599px) {
    .sideContact {
        width: 86%;
    }
}

/*************************
**********Banner**********
**************************/
#banner {    
    height: 700px;
    padding: 100px 0;
    color: #fff;
    background: #000;
    background-image: -moz-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0)), url(../images/home.jpg);
    background-image: -webkit-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0)), url(../images/home.jpg);
    background-image: -ms-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0)), url(../images/home.jpg);
    background-image: linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0)), url(../images/home.jpg);
    background-position: 100% 50%;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.banner-inner {
    padding: 27em 0 0 3vw;
}

.banner-align {
    float: right;
}

.captionSlide {
    /*background: rgba(0, 0, 0, 0.4);*/
    padding: 15px 30px;
}

.captionTxt {
    color: #fff;
    font-size: 40px;
    letter-spacing: 2px;
    word-spacing: 4px;
    text-transform: uppercase;
    line-height: 1.5;
    text-align: right;
    text-shadow: 4px 2px 5px #000000;
    font-family: 'Times New Roman';
    font-weight: 1000;
}

@media only screen and (max-width: 991px) {
    .banner-inner {
        padding: 19em 0 0 3vw;
    }
}

@media only screen and (max-width: 767px) {
    .captionSlide {
        padding: 10px;
    }

    .captionTxt {
        font-size: 26px;
    }

    #aboutus, #services, #projects, #projgallery, #contact {
        padding: 100px 0 40px !important;
    }
}


@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .captionTxt {
        font-size: 31px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1440px) {
    .captionTxt {
        font-size: 38px;
    }
}

@media only screen and (max-width: 1199px) {
    #banner {
        background-attachment: scroll;
        background-size: cover;
        background-position: 70% 100%;
    }
}

@media only screen and (max-width: 991px) {
    .captionTxt {
        line-height: 2; 
        text-align: right;
    }
}

/*************************
****Home About Narmada****
**************************/
#about {
    padding: 40px 0;
}

#about h3 {
    color: #c90d0d;
    text-transform: uppercase;
}

#about p {
    font-size: 18px;
    line-height: 2;
    margin-bottom: 20px;
}

#about img {
    border: 1px solid #333;
    margin: 0 auto;
    padding: 10px;
    width: 300px;
}

#about .contactPanel {
    margin: 0 auto;
}

@media (min-width: 992px) {
    .imgCol {
        margin-top: 60px;
    }
}

/*************************
********About Us**********
**************************/
#aboutus {
    padding: 125px 0 40px;
}

#aboutus h3 {
    color: #c90d0d;
    text-transform: uppercase;
}

.mgmtHead {
    font-size: 20px !important;
}

@media only screen and (min-width: 992px) and (max-width: 1599px) {
    .mgmtHead {
        font-size: 18px !important;
    }
}

#aboutus p {
    font-size: 18px;
    line-height: 2;
}

#aboutus img {
    border: 1px solid #333;
    margin: 0 auto;
    padding: 10px;
    width: 300px;
}

#mgmtImg {
    width: 160px !important;
    padding: 5px !important;
    height: auto !important;
    margin-top: 12px !important;
}

#aboutus .contactPanel {
    margin: 0 auto;
}

@media only screen and (max-width: 991px) {
    #mgmtImg {
        margin-top: 10px !important;
        margin-bottom: 25px !important;
    }
}

/*************************
********Services**********
**************************/
#services {
    padding: 125px 0 40px;
}

#services h3 {
    color: #c90d0d;
    text-transform: uppercase;
}

#services p {
    font-size: 18px;
    line-height: 2;
    margin-bottom: 10px;
}

#services img {
    border: 1px solid #333;
    margin: 0 auto;
    padding: 10px;
    width: 300px;
}

#services .contactPanel {
    margin: 0 auto;
}

/*************************
********Projects**********
**************************/
#projects {
    padding: 125px 0 40px;
}

#projects h3 {
    color: #c90d0d;
    text-transform: uppercase;
}

#projects p {
    font-size: 18px;
    line-height: 2;
}

#projects img {
    border: 1px solid #333;
    margin: 0 auto;
    padding: 10px;
    width: 300px;
}

#projects .contactPanel {
    margin: 0 auto;
}

/*************************
*********Gallery**********
**************************/
#projgallery {
    padding: 125px 0 40px;
}

#projgallery h3 {
    color: #c90d0d;
    text-transform: uppercase;
}

#projgallery p {
    font-size: 18px;
    line-height: 2;
}

#projgallery img {
    border: 1px solid #333;
    margin: 0 auto;
}

.photo-gallery {
    color:#313437;
    background-color:#fff;
}

.photo-gallery .photos {
    padding-bottom: 20px;
}

.photo-gallery .item {
    padding-bottom: 30px;
}

.mobSpace {
    margin-bottom: 20px;
}

.sectTitle {
    font-size: 20px !important;
}

.sectTitle span {
    text-transform: none !important;
}

/*************************
*********Contact**********
**************************/
#contact {
    padding: 125px 0 40px;
}

#contact h3 {
    color: #c90d0d;
    text-transform: uppercase;
}

#contact h4 {
    text-transform: uppercase;
}

#contact p {
    font-size: 18px;
    line-height: 2;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    #contact p {
        font-size: 13px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
    #contact p {
        font-size: 16px;
    }
}

.contact-form {
    padding: 36px;
    /* margin-top: 25px; */
    background: #f1f1f1;
}

.contact-form-control {
    font-size: 16px;
    height: 50px;
}

.contactBtn {
    background: #45B2F3;    
    border: none;
    border-radius: 0px;
    color: #fff;
    padding: 15px 60px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
}

.mailSuccess {
	font-size: 30px !important;
    color: #3fff02;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 20px;
}

#contact img {
    border: 1px solid #333;
    margin: 0 auto;
    padding: 10px;
    width: 300px;
}

/***********************
*********Footer*********
************************/
#footer {
    padding-top: 30px;
    padding-bottom: 30px;
    color: #333;
    background: #d8d7d7;
    position: relative;
    right: 0;
    bottom: 0;
    left: 0;
    text-align: center;
}

#footer p {
    margin-top: 10px;
}

#footer ul {
    list-style: none;
    padding: 0;
    margin: 0 -7.5px;
    float: right;
}

#footer ul > li {
    display: inline-block;
    margin: 0 7.5px;
}

@media only screen and (max-width: 767px) {
    #footer {
        text-align: center;
    }

    #footer ul {
        float: none;
    }
}

@media only screen and (max-width: 1199px) {
    #footer p {
        margin-bottom: 20px;
    }
}