
/*General CSS */
.centering-vh
{
    margin-top: 25vh;
}
body
{
    overflow: hidden;
   cursor: context-menu;
}
/*Navbar start */
.navbar-inverse , .navbar-toggle
{
    /*#2B6CA3*/
    
    background-color: #1E2D3B;
    border-color: #1E2D3B;
}
.navbar-inverse .navbar-toggle:focus, .navbar-inverse .navbar-toggle:hover
{
    background-color: #1E2D3B;
    border-color: #fff;
}
/*Navbar End */

/* strart header */ 
.header 
{
    
    background: url("../img/header-bg.jpg") no-repeat top center;
    -webkit-background-size : cover;
    -moz-background-size : cover;
    -o-background-size : cover;
    background-size: cover;
    height: 100vh;
    position: relative;
    color: #fff;
}

.header .overlay 
{
 
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color:rgba(0, 0, 0, .4);
}
.header img
{
    display:block;
    padding-bottom: 20px;
}
.header img ~ .lead::after
{
    content: '';
    display: block;
    width: 70px;
    height: 2px;
    background-color: #fff;
    margin: 20px 0;
}
.header a 
{
    background: transparent;
    padding: 5px 15px;
    border: 2px solid #fff;
    margin-top: 20px;
    color: #fff;
}
.header .lead ~ p
{
    font-weight: 600;
}
.header form 
{
    width: 360px;
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
}
.header form h3 
{
    background-color: #F5F5F5;
    color: #1E2D3B;
    padding: 10px;
    margin-top: 0;
    margin-bottom: 30px;
}


.header form .form-control 
{
    border-radius: 0;
    border: none;
    box-shadow: none;
    border-bottom: 1px solid #d1cece;
    margin: 0 auto 40px;
    width: 80%;

}
.header form .btn
{
    background-color: #F5F5F5;
    padding: 10px;
    border-radius:0;
    color: #1E2D3B;
    font-weight: 700;
}
/* end header */ 

/* Start our services */ 
.our-services 
{
    padding: 60px 0;
    background-color: #f5f5f5;
}

.our-services .row
{
    margin: 0;
}
.our-services .nav>li>a
{
    padding: 30px 15px;
}
.our-services .nav-tabs>li
{
    float: none;
}
.our-services .nav-tabs>li>a
{
    border: none;
}
.our-services .nav-tabs>li.active>a, .nav-tabs>li.active>a:focus, .nav-tabs>li.active>a:hover
{
    border: none;
    color: #fff;
    background-color: #1E2D3B;
}
.our-services .nav-tabs>li>a
{
    color: #1E2D3B;
}

.our-services h1
{
    padding-bottom: 40px;
}

.our-services h1::after
{
    content: '';
    display: block;
    width: 70px;
    height: 2px;
    background-color: #1E2D3B;
    margin: 20px auto;
}
.our-services  img
{
    margin: 30px auto;
    border-radius: 20px;
}
/* End our services */

/* Start testimonials */
.testimonials
{
    padding-top: 50px;
    padding-bottom: 50px;
}

.testimonials h1::after
{
    content: '';
    display: block;
    width: 70px;
    height: 2px;
    background-color: #1E2D3B;
    margin: 20px auto;
}

.testimonials .client-text
{
    background-color: #f5f5f5;
    color: #8e8f93;
    padding: 30px;
    position: relative;
    border-radius: 20px;
    margin-bottom: 20px;
}
.testimonials .client-text::after
{
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 15px 15px 15px;
    border-color:#f5f5f5 transparent transparent transparent;
    position: absolute;
    left: 45px;
    bottom: -28px;
}
.testimonials img
{
    width: 64px;
    height: 64px;
}

.testimonials .media-heading
{
    margin-top: 10px;
}
/*End testimonials */

/* Start Find us */ 
.find-us
{
    padding-top: 50px;
    padding-bottom: 50px;
}
.find-us h3::after
{
    content: '';
    display: block;
    width: 70px;
    height: 2px;
    background-color: #1E2D3B;
    margin: 20px auto;
}
.find-us .reachus
{
    background-color: #1E2D3B;
    color: #fff;
    padding: 30px;
    margin-bottom: 40px;
}

.find-us .reachus i
{
    padding: 10px;
    font-size: 60px;
   
}
/* End find us */

/* Start footer */ 
.footer 
{
    padding: 40px;
    background-color: #1E2D3B;
    color: #fff;
}
.footer a
{
    color: #fff;
}
.footer a i 
{
    font-size: 30px;
    padding-right: 5px;
}
#social-network
{
    text-align: center;
}
/* end footer */ 

/* Spinner start */ 
.myspinner
{
    background-color: #dfdbdb;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;

}
@keyframes spinner {
    100% {
      transform: rotate(3600deg);
    }
  }
  
  .loading-container {
    margin: 0 auto;
    text-align: center;
    position: relative;
    top: 50vh;
    transform: translateY(-50%);
  }
  
  .spinner {
    display: inline-block;
    width: 100px;
    height: 100px;
    background: url('../img/spinner.png') center center;
    background-size: contain;
    transition-origin: 50% 50%;
    animation: spinner 3s infinite alternate ease-in-out;
  }
  .spinner-center {
    display: inline-block;
    position: absolute;
    margin-left: -100px;
    width: 100px;
    height: 100px;
    background: url('http://i.imgur.com/u0BC2ZR.png') center center;
    background-size: contain;
    content: '';
  }
  
  .loading-text {
    position: relative;
    z-index: 1;
    font-size: 1.5rem;
    font-family: "Comic Sans MS", cursive, sans-serif;
    margin-left: 0.5em;
  }
/* Spinner End */ 

/* gallery start */ 
.mygallery
{
    padding-top:10vh;
    padding-bottom: 10vh;
}
/* gallery end */ 
@media (max-width:767px)
{
    .text-center-xs
    {
        text-align: center;
    }
    .header img
    {
        margin: 0 auto;
    }
    .header img ~ .lead::after
    {
        margin: 20px auto;
    }
    .header a 
    {
        margin: 20px auto;
        display: block;
        width: 50%;
        text-align: center;
    }
    .full-customer
    {
        margin-bottom: 20px;
    }
    .header 
    {
        height: 115vh;
    }
    
   
}
@media (max-width:400px)
{
    .header form 
    {
        width: 260px;
    }
    .header 
    {
        height: 140vh;
    }
}
@media (max-width:991px)
{
    .centering-vh
    {
        margin-top: 10vh;
    }
  
    .footer
    {
        text-align: center;
    }
    #social-network
    {
        margin-top: 10px;
    }
}