
html, body {
    padding: 0;
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    height: 100%;
}

*{
    box-sizing: border-box;
}

/*********** General Styling ************/

.sp-100{
    padding: 100px 0px;
}

.sm-100{
   margin: 100px 0px;
}

.head-title{
    color: #022943;
    position: relative;    
    display: inline-block;
}
.head-title::after{
    content: '';
    background: #6C98C6;
    width: 100%;
    height: 2px;
    display:block;
    margin: 20px auto;
}

.head-title-white{
    color: #fff;
    position: relative;    
    display: inline-block;
}
.head-title-white::after{
    content: '';
    background:#6C98C6;
    width: 100%;
    height: 2px;
    display:block;
    margin: 20px auto;
}

.para{
   line-height: 2;
    font-weight: 500;
    color: #414141;
    letter-spacing: 1px;
}

.no-gutters{
    padding: 0;
}




/*------------------------------------------------*/
/* Start Top Header Section                           */
/*------------------------------------------------*/

#header-Div{
background-color:#F8F8F8;}
#topheader{
    background: #022943;
    color: #fff;
    padding: 15px 0px;
}

.top-contact p{
    margin: 0;
    letter-spacing: 1px;
}

.social{
    text-align: right;
}

.social a{
    text-decoration: none;
    color: #fff;
}
.social a:hover{
    text-decoration: none;
    color: #6C98C6;
}

.social i{
    margin-left: 10px;
    font-size: 18px;
}


/*------------------------------------------------*/
/* Start Top Navbar Section                           */
/*------------------------------------------------*/
.top-logo{
    padding: 0;
    margin: 0;
    font-weight: bold;
    color: #022943;
}
.top-logo span{
    font-weight: normal;
    color: #6C98C6;
}

.custom-nav{
    background:transparent;
    border-radius:0px;
    padding:10px 0px;
    border: none;
}
.navbar{
    margin: 0;   
}

.navbar-default .navbar-nav > li > a{
 color:#022943;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.25s ease-in;
    position: relative;
}

.navbar-default .navbar-nav > li > a.active{
 color:#6C98C6;
}

.block-nav li::after{
    content: '';
    display: block;
    margin: auto; 
    background:#6C98C6;
    width: 0;
    height:2px;
    transition: width 0.5s ease;
}

.block-nav li:hover::after{
    width:80%;  
}

.navbar-default .navbar-nav > li > a:hover{
 color:#6C98C6;
}

.block-nav li.active-all::after{
    content: '';
    display: block;
    margin: auto; 
    background:#6C98C6;
    width: 80%;
    height:2px;
    transition: width 0.5s ease;
}

.navbar-default .navbar-toggle{
    border: none;
}

.navbar-toggle{
    padding: 9px 18px;
    border-radius: 0px;
    background:#6C98C6;
    font-size: 20px;
}

.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus{
    background: #000;
    color: #fff;
}

@media(max-width:480px){
   .block-nav li.active-all::after{
  display: none;
} 
    .block-nav li::after{
   display: none;
}

}


/*================================================== 
     Home
 ================================================== */

#home{
    width: 100%;
    height: 80%;
    background-image: url(../images/homebg.jpg);
    background-attachment: fixed; 
    background-position: center;
    background-size: cover;
     display: table;
}

.home-inner{
    height: 80%;
   display: table-cell;
    vertical-align: middle;   
}


.main-title{
    padding: 50px 0px;
}

.main-title h1{
   color: #fff;
    font-size: 60px;
    margin: 0;
}

.main-para{
    padding: 20px 0px;
}

.main-para p{
    color: #fff;
    letter-spacing: 1px;
    line-height: 2;
}
.main-btn{
    padding: 20px 0px;
}

.btn-home{
    background: #6C98C6;
    color: #fff;
    font-weight: bold;
    letter-spacing: 1px;
    padding: 10px 30px;
    border-radius: 50px;
    transition: all 0.5s ease-out;
}
.btn-home:hover{
    background:#022943;
    color: #fff;
}

@media(max-width:480px){
    .main-title{
    padding: 20px 0px;
}
.main-title h1{
    font-size: 30px;
}
    .main-para p{
    line-height: 1.7;
}

}

/*================================================== 
     About
 ================================================== */
#about{
    position: relative;
    padding: 20px;
}
#about::after{
    content: '';
    background: #D0E0F2;
    position: absolute;
    width: 500px;
    height: 500px;
    top: 0;
    right: 0;
    z-index: -1;
}

.owner-info{
  background: #6C98C6;
    padding: 10px;
    color: #fff;
}


@media(max-width:480px){
   #about::after{
    display: none;
} 
}





/*================================================== 
     Service
 ================================================== */

#services{
  position: relative;
    padding: 20px;
}

#services::after{
    content: '';
    background: #D0E0F2;
    position: absolute;
    width: 500px;
    height: 500px;
    top: 0;
    left: 0;
    z-index: -1;
}

.service-para{
   background: #6C98C6;
    padding: 10px;
    color: #fff; 
    transition: all 0.25s ease-in;
}

.service-para:hover{
   background:#022943;
}

.service-para a{
    color: #fff;
    text-decoration: none;
}

@media(max-width:480px){
   #services::after{
    display: none;
} 
}


/*================================================== 
     Contact
 ================================================== */

#contact{
background: #022943;
    padding: 20px;
}

.contact-title{
    color:#6C98C6;   
}
.contact-title h5{
    color:#fff;
    margin-top: 50px;
}

.contact-form{
    padding-bottom: 50px;
}

label{
    color:#6C98C6;
}

.form-group{
    margin: 20px 0px;   
}

.form-group input{    
    padding: 20px;
}

.form-group textarea{
    margin-bottom: 30px;
    padding: 20px;
}

.btn-home:hover.btn-form{
    background: #000;
}




#footer{
 background: #022943;
    padding: 50px 0px;
    color: #fff;
}
.footer-widget h4{
    margin-bottom: 20px;
    color: #6C98C6;
}
.footer-widget p{
    line-height: 2;
}
.social2 a{
    text-decoration: none;
    color: #fff;
}
.social2 a:hover{
    text-decoration: none;
    color: #6C98C6;
}

.social2 i{
    margin-left: 10px;
    font-size: 18px;
}

.last-footer{
    background:#000;
    padding: 20px 0px;
    color: #999;
}

.image-box{
background-color:#6C98C6;
margin-bottom:20px;
padding-top:20px;
}


 ul {         
          padding:0 0 0 0;
          margin:0 0 0 0;
      }
      ul li {     
          list-style:none;
          margin-bottom:25px;           
      }
      ul li img {
          cursor: pointer;
      }
      .modal-body {
          padding:5px !important;
      }
      .modal-content {
          border-radius:0;
      }
      .modal-dialog img {
          text-align:center;
          margin:0 auto;
      }
    .controls{          
        width:50px;
        display:block;
        font-size:11px;
        padding-top:8px;
        font-weight:bold;          
    }
    .next {
        float:right;
        text-align:right;
    }
      /*override modal for demo only*/
      .modal-dialog {
          max-width:500px;
          padding-top: 90px;
      }
      @media screen and (min-width: 768px){
          .modal-dialog {
              width:500px;
              padding-top: 90px;
          }          
      }
      @media screen and (max-width:1500px){
          #ads {
              display:none;
          }
      }
	  
.gallery-row{
text-align:center;
 padding:0 0 20px 0;
  margin-bottom:40px;
}	  
.gallery-row h3{
font-family:arial;
 font-weight:bold;
  font-size:30px;
   border-bottom:solid 4px #6C98C6;
}	  
	 
	 /***********About************/ 
.about-inner{
text-align:center;
margin-top:40px;
margin-bottom:40px;
}
.about-inner h2{
border-bottom:solid 2px #6C98C6;
width:15%; 
margin:auto;}
.immage img{
margin-bottom:20px;}
.text p{
text-align:justify;
font-family: 'Magra', sans-serif;
font-size:18px;
}
.immage img{
margin-right:-40px;}
 /***********  Service  ************/

.service-image{
margin-bottom:10px;
margin-top:10px;}
.service-text h2{
margin-left:30px;}
.service-text h4{
margin-left:30px;}
.service-text p{
margin-left:30px;
text-align:justify;}

@media (max-width:700px) {
.about-inner{
text-align:center;
margin-top:20px;
margin-bottom:20px;
}

.about-inner h2{
border-bottom:solid 2px #6C98C6;
width:30%; 
margin:auto;}
.immage img{
margin-bottom:20px;}
}

 @media (max-width:480px){
 .about-inner{
text-align:center;
margin-top:20px;
margin-bottom:20px;
}

.about-inner h2{
border-bottom:solid 2px #6C98C6;
width:40%; 
margin:auto;}
.immage img{
margin-bottom:20px;}
}