
body {
		background: #ffffff;
    font-family: 'Hind Siliguri', sans-serif;
    font-style: normal;
		font-weight: 300;
}


/*---------------------------------------
    Typography              
-----------------------------------------*/
h1,h2,h3,h4,h5 {
  font-weight: 300;
}

h1 {
    font-size: 60px;
    letter-spacing: 2px;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 22px;
}

h5 {
    color: #ddd;
    letter-spacing: 4px;
    padding-top: 10px;
}

h6 {
  color: #666;
  font-weight: 500;
  letter-spacing: 1px;
}

p {
    color: #707070;
    font-size: 15px;
    font-weight: 300;
    line-height: 25px;
}

a {
  text-decoration: none !important;
  outline: none;
}
a:visited,
a:focus {
  outline: none;
  text-decoration: none !important;
}



/*---------------------------------------
    General               
-----------------------------------------*/
.section-title {
  margin-bottom: 32px;
}

#detail,
#feature, 
#video,
#team, 
#pricing,
#testimonial,
#contact, footer {
    padding-top: 80px;
    padding-bottom: 80px;
}

#detail,
#video,
#team,
#pricing,
#testimonial,
footer {
  text-align: center;
}

.parallax-section {
  background-attachment: fixed !important;
  background-size: cover !important;
}



/*---------------------------------------
    Preloader section              
-----------------------------------------*/
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  background: none repeat scroll 0 0 #ffffff;
}

.sk-spinner-pulse {
  width: 100px;
  height: 100px;
  background-color: #1abc9c;
  border-radius: 100%;
  -webkit-animation: sk-pulseScaleOut 1s infinite ease-in-out;
          animation: sk-pulseScaleOut 1s infinite ease-in-out; }

@-webkit-keyframes sk-pulseScaleOut {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0); }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0; } }

@keyframes sk-pulseScaleOut {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0); }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0; } }



/*---------------------------------------
    Navigation Links section              
-----------------------------------------*/
.custom-navbar {
    margin-bottom: 0;
    background-color: #ffffff;
}

.custom-navbar .navbar-brand {
    color: #666;
    font-weight: 400;
    font-size: 3rem;
    line-height: 40px;
}

.custom-navbar .nav li a {
    color: #999;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 40px;
    transition: all 0.4s ease-in-out;
}

.custom-navbar .nav li a:hover {
    background: transparent;
    color: #1abc9c;
}

.custom-navbar .navbar-nav > li > a:hover,
.custom-navbar .navbar-nav > li > a:focus {
  background-color: transparent;
}

.custom-navbar .nav li.active > a {
    background-color: transparent;
    color: #1abc9c;
}

.custom-navbar .navbar-toggle {
    border: none;
    padding-top: 10px;
}

.custom-navbar .navbar-toggle {
    background-color: transparent;
}

.custom-navbar .navbar-toggle .icon-bar {
    background: #1abc9c;
    border-color: transparent;
}

@media(min-width:768px) {
    .custom-navbar {
        padding: 20px 0;
        border-bottom: 0;
        background: 0 0; 
    }
    .custom-navbar.top-nav-collapse {
        background: #ffffff;
        box-shadow: 0px 2px 8px 0px rgba(50, 50, 50, 0.04);
        padding: 0;
    }

}



/*---------------------------------------
    Intro section              
-----------------------------------------*/

#intro {
    background: url('../images/intro-bg.jpg') 50% 0 repeat-y fixed;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center center;
    color: #ffffff;
    display: -webkit-box;
    display: -webkit-flex;
     display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
     -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
    height: 100vh;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#intro .gradient-overlay {
  background: rgba(03,03,03,0.8);     
  position: absolute;
  top: 0;
  width: 100%;
  height: 100vh;
}

#intro .btn {
    background: transparent;
    border: 3px solid #ffffff;
    border-radius: 100px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 16px 42px 14px 42px;
    margin-top: 42px;
    margin-right: 12px;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

#intro .btn-danger {
    background: #ffffff;
    color: #444;
}

#intro .btn-danger:hover {
  background: transparent;
  border-color: #ffffff;
  color: #ffffff;
}

#intro .btn-default:hover {
    background: #1abc9c;
    color: #ffffff;
    border-color: transparent;
}



/*---------------------------------------
    Detail section              
-----------------------------------------*/

#detail {
  background-color: #f0f0f0;
}

#detail h2 {
  padding-bottom: 10px;
}

#detail hr {
  border-bottom: 2px solid #1abc9c;
  width: 42px;
}

#detail .detail-thumb {
  border-radius: 4px;
  background-color: #ffffff;
  box-shadow: 0px 1px 2px 0px rgba(90, 91, 95, 0.15);
  transition: all 0.3s ease-in-out;
  position: relative;
  top: 0px;
  padding: 60px 40px 60px 40px;
  margin-top: 32px;
}

#detail .detail-thumb:hover {
  box-shadow: 0px 16px 22px 0px rgba(90, 91, 95, 0.3);
  top: -5px;
}

#detail .detail-thumb .fa {
  font-size: 42px;
}



/*---------------------------------------
    Feature section              
-----------------------------------------*/

#feature .media {
  padding-top: 22px;
}

#feature .media:last-child {
  padding-top: 6px;
}

#feature h2,
#feature h3 {
  padding-bottom: 4px;
}

#feature .media .fa {
  background-color: #1abc9c;
  border-radius: 2px;
  color: #ffffff;
  font-size: 22px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  vertical-align: middle;
  margin-right: 12px;
}




/*---------------------------------------
    Video section              
-----------------------------------------*/

#video {
  background: url('../images/video-bg.jpg') 50% 0 repeat-y fixed;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center center;
  position: relative;
  color: #999;
}

#video .overlay {
  background: rgba(03,03,03,0.7);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}

#video h2 {
  color: #ffffff;
  padding-top: 20px;
  padding-bottom: 16px;
}

#video .fa {
  position: relative;
  background-color: #1abc9c;
  border-radius: 100%;
  color: #ffffff;
  font-size: 38px;
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  vertical-align: middle;
  padding-left: 12px;
  margin-top: 22px;
}

#video p {
  font-size: 20px;
  letter-spacing: 1px;
  line-height: 32px;
}



/*---------------------------------------
   Team section              
-----------------------------------------*/

#team img {
  border-radius: 2px;
  width: 100%;
  max-width: 100%;
  height: auto;
}

#team .col-md-4 {
    display: block;
    width: 100%;
    padding-top: 30px;
    padding-bottom: 20px;
    margin-bottom: 22px;
}

#team .social-icon li a {
  border-radius: 0px;
}

#team .team-thumb {
  margin-bottom: 42px;
  position: relative;
}

#team .team-thumb .team-overlay {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: all 0.4s ease-in-out;
  opacity: 0;
}

#team .team-thumb .team-overlay .team-item {
    background-color: #ffffff;
    text-align: center;
    position: absolute;
    top:50%;
    left: 50%;
    -webkit-transform:translate(-50%,-50%);
      -ms-transform:translate(-50%,-50%);
          transform:translate(-50%,-50%);
}

#team .team-thumb:hover .team-overlay {
  opacity: 0.9;
}



/*---------------------------------------
   Faq section              
-----------------------------------------*/

#faq {
  background: #f9f9f9;
  padding-top: 8rem;
  padding-bottom: 8rem;
}

#faq .panel-group {
  margin-top: 32px;
}

#faq .panel-group .panel {
  margin-bottom: 8px;
}

#faq .panel-default {
  border: none;
}

#faq .panel-default>.panel-heading {
  background: #f0f0f0;
  color: #505050;
}

#faq .panel-heading {
  border: none;
  padding-top: 8px;
  padding-bottom: 6px;
}

#faq .panel-default>.panel-heading+.panel-collapse>.panel-body {
  border-top: none;
  padding-top: 22px;
  padding-left: 32px;
  padding-bottom: 22px;
}

#faq .panel-heading .panel-title a[data-toggle="collapse"] {
  font-size: 18px;
  font-weight: 300;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 10px 15px;
}

#faq .panel-heading .panel-title a[data-toggle="collapse"]::after {
  content: "-";
  display: block;
  position: absolute;
  line-height: 1;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
}

#faq .panel-heading .panel-title a[data-toggle="collapse"].collapsed::after {
  content: "+";
}



/*---------------------------------------
    Pricing section              
-----------------------------------------*/

#pricing .pricing-thumb {
  border: 2px solid #f9f9f9;
  padding: 40px 34px;
  margin-top: 32px;
}

#pricing .pricing-title h3 {
  color: #666;
}

#pricing .pricing-month {
  padding: 20px;
}

#pricing .pricing-month h2 {
  color: #1abc9c;
}

#pricing .pricing-thumb p {
  border-bottom: 1px solid #f9f9f9;
  padding-bottom: 10px;
}



/*---------------------------------------
   Testimonial section              
-----------------------------------------*/

#testimonial {
  background: url('../images/testimonial-bg.jpg') 50% 0 repeat-y fixed;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center center;
  color: #ffffff;
  position: relative;
}

#testimonial .overlay {
  background: #1abc9c;
  opacity: 0.9;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}

#testimonial img {
  border: 4px solid rgba(250,250,250,0.8);
  display: inline-block;
  padding: 8px;
  margin-top: 80px;
  margin-bottom: 22px;
}

#testimonial h3 {
  color: rgba(250,250,250,0.8);
  line-height: 38px;
  font-weight: 300;
}

#testimonial p {
  color: #ffffff;
  font-size: 18px;
  font-weight: 400;
}

#testimonial .owl-theme .owl-controls .owl-page span{
  background: #ffffff;
}



/*---------------------------------------
   Contact section              
-----------------------------------------*/

#contact .contact_detail {
  padding-top: 40px;
}

#contact .addr,
#contact .ph {
  padding-bottom: 6px;
}

#contact .form-control {
  background: transparent;
  border: none;
  border-bottom: 1px solid #f0f0f0;
  border-radius: 0px;
  box-shadow: none;
  font-size: 18px;
  margin-bottom: 16px;
  transition: all 0.4s ease-in-out;
}

#contact .form-control:focus {
  border-bottom-color: #999;
}

#contact input {
  height: 45px;
}

#contact input[type="submit"] {
  background: #1abc9c;
  border-radius: 100px;
  border: none;
  color: #ffffff;
  font-size: 20px;
  letter-spacing: 1px;
  height: 50px;
  margin-top: 12px;
  transition: all 0.4s ease-in-out;
}

#contact input[type="submit"]:hover {
  background: #242424;
}



/*---------------------------------------
   Footer section              
-----------------------------------------*/

footer {
  background-color: #191b17;
  padding-top: 180px;
  padding-bottom: 180px;
}

footer p {
  padding-bottom: 20px;
}



/* Back top */
.go-top {
  background-color: #ffffff;
  box-shadow: 1px 1.732px 12px 0px rgba( 0, 0, 0, .14 ), 1px 1.732px 3px 0px rgba( 0, 0, 0, .12 );
  transition : all 1s ease;
  bottom: 2em;
  right: 2em;
  color: #333;
  font-size: 24px;
  display: none;
  position: fixed;
  text-decoration: none;
  width: 40px;
  height: 40px;
  line-height: 38px;
  text-align: center;
  border-radius: 100%;
}

.go-top:hover {
    background: #1abc9c;
    color: #ffffff;
}



/*---------------------------------------
   Social icon             
-----------------------------------------*/
.social-icon {
    position: relative;
    padding: 0;
    margin: 0;
}

.social-icon li {
    display: inline-block;
    list-style: none;
}

.social-icon li a {
    color: #666;
    border-radius: 100px;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.4s ease-in-out;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    vertical-align: middle;
}

.social-icon li a:hover {
    background: #1abc9c;
    color: #ffffff;
}



/*---------------------------------------
   Responsive styles            
-----------------------------------------*/
@media (max-width: 980px) {

  #intro { height: 65vh; }

}

@media (max-width: 760px) {

  h1 {
    font-size: 41px;
  }

  h2 {
    font-size: 31px;
  }

  h3 {
    font-size: 20px;
  }

  h5 {
    line-height: 24px;
  }

  .custom-navbar .navbar-brand {
    line-height: 18px;
  }

  .custom-navbar .navbar-nav li a {
    line-height: 25px;
  }

  #intro {
    height: 100vh;
  }

  #video p {
    font-size: 18px;
  }

}

