  
  /*---------------------------------------------------------------

    Project Name: Labs | Business One Page Template
    File Name: style.css
    Author: Khai Tawng
    Author URI: http://khaitawng.com
    Version: 1.0.0

  ------------------------------------------------------------------*/
  /*----------------------------------------------------------------

  // Table of contents //

    - BODY
    - TYPOGRAPHY
    - GENERAL
    - BUTTONS
    - PRE LOADER
    - MENU BAR
    - HOME
    - ABOUT US
    - SERVICE
    - TEAM 
    - TESTIMONIALS
    - PROJECT
    - CONTACT
    - FOOTER
    - SOCIAL ICON
    - RESPONSIVE STYLES

  ------------------------------------------------------------------*/

  @import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,500,700');

  html, body {
    overflow-x: hidden;
  }

  body {
    background: #ffffff;
    font-family: 'Montserrat', sans-serif;
  }


  /*---------------------------------------
     TYPOGRAPHY              
  -----------------------------------------*/

  h1,h2,h3,h4,h5,h6 {
    font-weight: bold;
    line-height: normal;
    letter-spacing: -1px;
  }

  h1 {
    color: #292929;
    font-size: 6em;
  }

  h2 {
    color: #393939;
    font-size: 2em;
  }

  h3 {
    color: #505050;
    font-size: 1.5em;
    font-weight: 500;
    margin-bottom: 0;
  }

  h4 {
    color: #696969;
    font-size: 18px;
    font-weight: normal;
    line-height: normal;
    margin-bottom: 15px;
  }

  p {
    color: #757575;
    font-size: 14px;
    font-weight: 300;
    line-height: 25px;
  }

  strong {
    font-weight: 500;
  }



  /*---------------------------------------
     GENERAL               
  -----------------------------------------*/

  * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }

  *:before,
  *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }

  a {
    color: #202020;
    font-weight: normal;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    text-decoration: none !important;
  }

  a:hover, a:active, a:focus {
    color: #36d67e;
    outline: none;
  }

  .section-title {
    margin-bottom: 60px;
  }

  .section-title h1 {
    font-size: 3.50em;
  }

  .section-btn {
    background: #36d67e;
    border: 0;
    border-radius: 100px;
    color: #ffffff;
    cursor: pointer;
    font-size: inherit;
    font-weight: normal;
    padding: 15px 30px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }

  .section-btn:hover,
  .section-btn:focus {
    background: #202020;
    border-color: transparent;
    color: #393939;
  }

  .overlay {
    background: rgba(0,0,0,0.5);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  section {
    padding: 80px 0;
  }

  #testimonial,
  #project,
  #contact {
    text-align: center;
  }



  /*---------------------------------------
       PRE LOADER              
  -----------------------------------------*/

  .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;
  }

  .spinner {
    border: 1px solid transparent;
    border-radius: 3px;
    position: relative;
  }

  .spinner:before {
    content: '';
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 45px;
    height: 45px;
    margin-top: -10px;
    margin-left: -10px;
    border-radius: 50%;
    border: 1px solid #575757;
    border-top-color: #ffffff;
    animation: spinner .9s linear infinite;
  }

  @-webkit-@keyframes spinner {
    to {transform: rotate(360deg);}
  }

  @keyframes spinner {
    to {transform: rotate(360deg);}
  }



  /*---------------------------------------
      MENU BAR           
  -----------------------------------------*/

  #g-menu{
    margin:0 !important;
  }

  .custom-navbar {
    border: none;
    margin-bottom: 0;
    padding: 25px 0;
  }

  .custom-navbar .navbar-brand {
    color: #ffffff;
    font-size: 25px;
    font-weight: 500;
    letter-spacing: -1px;
    padding-top: 12px;
  }

  .top-nav-collapse {
    background: #ffffff;
  }

  .custom-navbar .nav .section-btn a:hover {
    color: #ffffff;
  }

  .custom-navbar .nav li a {
    font-size: 32px;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: -0.5px;
    padding-right: 22px;
    padding-left: 22px;
  }

  .custom-navbar .nav li a:hover {
    background: transparent;
    color: #36d67e;
  }

  .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: #36d67e;
  }

  .custom-navbar .navbar-nav.navbar-nav-first {
    margin-left: 13em;
  }

  .custom-navbar .section-btn {
    padding: 0;
  }

  .custom-navbar li.section-btn a {
    display: block;
    padding: 15px 30px;
  }

  .custom-navbar .navbar-toggle {
    border: none;
    padding-top: 10px;
  }

  .custom-navbar .navbar-toggle {
    background-color: transparent;
  }

  .custom-navbar .navbar-toggle .icon-bar {
    background: #202020;
    border-color: transparent;
  }

  @media(min-width:768px) {
    .custom-navbar {
      border-bottom: 0;
      background: 0 0; 
    }

    .custom-navbar.top-nav-collapse {
      background: #ffffff;
      -webkit-box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
      -moz-box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
      box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
      padding: 12px 0;
    }

    .top-nav-collapse .navbar-brand {
      color: #202020;
    }

    .top-nav-collapse .nav li a {
      color: #575757;
    }

    .top-nav-collapse .nav .section-btn a {
      color: #ffffff;
    }
  }



  /*---------------------------------------
      HOME              
  -----------------------------------------*/

  #home {
    background: url('../images/pics/bg.jpg') no-repeat center center;
    background-size: cover;
    vertical-align: middle;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 10em;
    text-align: center;
    height: 100vh;
  }

  #home h1 {
    color: #ffffff;
  }

  #home .row {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #home .carousel-navigation-outer {
    display: flex;
  }

  #home p.carousel-navigation {
    color: white;
  }

  #home .carousel-wrapper {
    display: flex;
    align-items: center; /* Center items vertically */
    justify-content: center; /* Center items horizontally */
  }

  #home .carousel {
    //min-height: 100vh;
  }

  #home .carousel-inner {
    display: flex;
    align-items: center; /* Center items vertically */
    justify-content: center; /* Center items horizontally */
  }

  #home .carousel .item {
    height: 400px;
  }

  #home .carousel .item p {
    font-size: 4rem;
    line-height: 5rem;
    color: white;
    font-weight: bold;
    vertical-align: middle;
  }

  @media (max-width: 767px) {
    #home .carousel .item {
      padding: 0 24px;
    }

    #home .carousel .item p {
      font-size: 3rem;
      line-height: 4rem;
      color: white;
      font-weight: bold;
      vertical-align: middle;
    }
  }

  #home #bootstrapCarousel {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }


  /*---------------------------------------
      ABOUT              
  -----------------------------------------*/

  #about {
    padding: 0;
  }

  #about .row {
    display: flex;
    align-items: stretch; /* Ensures both columns match height */
  }

  #about .section-title {
    margin-bottom: 30px;
  }

  #about .container,
  #team .container {
    width: 100%;
  }

  #about .col-md-6,
  #team .col-md-4 {
    margin: 0;
    padding: 0;
  }

  .about-info {
    padding: 0 60px 40px 60px
  }

  .about-info p.rolunk {
    font-size: 2.5rem;
    line-height: 5rem;
    font-weight: initial;
  }

  @media (max-width: 767px) {
    .about-info p.rolunk {
      font-size: 1.5rem;
      line-height: 2.5rem;
    }
  }

  .about-image {
    background: url('../images/pics/tanner-van-dera-oaQ2mTeaP7o-unsplash.jpg') no-repeat center center;
    background-size: cover;
    width: 100%;
    height: 100%;
  }

  .profile img,
  .profile figcaption {
    display: inline-block;
    vertical-align: top;
    margin-top: 1em;
  }

  .profile img {
    border-radius: 100%;
    width: 65px;
    height: 65px;
    margin-right: 1em;
  }

  .profile figcaption h3 {
    margin-top: 0;
  }



  /*---------------------------------------
      SERVICE            
  -----------------------------------------*/

  #service {
    background: #f9f9f9;
  }

  .service-info {
    padding: 0 20px;
  }

  .service-info p {
    font-size: 2.5rem;
    line-height: 3.5rem;
  }

  @media screen and (max-width: 767px) {
    .service-info p {
      font-size: 1.5rem;
      line-height: 2.5rem;
    }
  }



  /*---------------------------------------
      TEAM           
  -----------------------------------------*/
  
  .team-info {
    padding: 20px 40px;
  }

  .team-thumb img {
    width: 100%;
  }



  /*---------------------------------------
      TESTIMONIAL             
  -----------------------------------------*/

  #testimonial {
    padding: 40px 0 80px 0;
    background: #f9f9f9;
  }

  .tst-author h4,
  .tst-image,
  .tst-author {
    display: inline-block;
    vertical-align: top;
  }

  #testimonial .tst-image img {
    border-radius: 100%;
    width: 70px;
    height: 70px;
  }

  .tst-image,
  .tst-author {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  #testimonial p {
    font-size: 25px;
    line-height: inherit;
  }

  .tst-author {
    margin: 10px 20px;
    text-align: left;
  }

  .tst-author h4,
  .tst-author span {
    margin: 0 0 5px 0;
  }

  .tst-author span {
    color: #909090;
    font-weight: 300;
    display: block;
  }



  /*---------------------------------------
     PROJECT              
  -----------------------------------------*/

  #project {
    padding-bottom: 0;
  }

  #project .container {
    width: 100%;
  }

  #project .col-md-6 {
    margin: 0;
    padding: 0;
  }

  .project-thumb img {
    width: 100%;
    transition: 0.5s;
  }

  .project-thumb:hover img {
    transform: translateY(-55px);
  }

  #project .project-thumb {
    overflow: hidden;
    position: relative;
    cursor: pointer;
  }

  .project-thumb .project-info {
    background: #ffffff;
    position: absolute;
    bottom: 0;
    left: 0px;
    width: 100%;
    padding: 35px 30px;
    text-align: center;
    transform: translateY(100%);
    transition: 0.5s 0.2s;
  }

  .project-thumb:hover .project-info {
    transform: translateY(0);
  }

  .project-thumb .project-info p {
    color: #909090;
    text-transform: uppercase;
    font-size: 10px;
    font-weight: normal;
    letter-spacing: 1px;
    margin-top: 3px;
  }



  /*---------------------------------------
      CONTACTS             
  -----------------------------------------*/

  #contact .text-success,
  #contact .text-danger {
    display: none;
    margin-bottom: 20px;
    font-size: 1.5rem;
  }

  #contact .form-control {
    border: 1px solid rgba(0,0,0, 0.1);
    background: #f9f9f9;
    border-radius: 5px;
    box-shadow: none;
    color: rgba(20,20,20,0.5);
    font-size: 14px;
    font-weight: normal;
    margin-bottom: 15px;
  }

  #contact input {
    height: 55px;
  }

  #contact button#cf-submit {
    background: #202020;
    border-radius: 100px;
    color: #ffffff;
    font-weight: 500;
    margin-top: 10px;
    transition: 0.5s 0.2s;
    height: 55px;
  }
  #contact textarea {
    resize: none;
  }

  #contact button#cf-submit:hover {
    background: #36d67e;
  }



  /*---------------------------------------
     FOOTER              
  -----------------------------------------*/

  footer {
    background: #000000;
    padding: 40px 0;
  }

  footer h2 {
    color: #ffffff;
    margin-bottom: 20px;
  }

  footer p {
    color: #E0E0E0;
  }

  .copyright-text {
    padding-top: 1em;
    text-align: center;
  }

  .copyright-text p {
    font-size: 13px;
  }



  /*---------------------------------------
     SOCIAL ICON              
  -----------------------------------------*/

  .social-icon {
    position: relative;
    padding: 0;
    margin: 0;
  }

  .social-icon li {
    display: inline-block;
    list-style: none;
  }

  .social-icon li a {
    border-radius: 100px;
    color: #909090;
    font-size: 15px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    position: relative;
  }

  .social-icon li a:hover {
    background: #ffffff;
    color: #36d67e;
  }



  /*---------------------------------------
     RESPONSIVE STYLES              
  -----------------------------------------*/

  @media screen and (max-width: 1170px) {
    .custom-navbar .navbar-nav.navbar-nav-first {
      margin-left: inherit;
    }
  }


  @media screen and (max-width: 767px) {
    h1 {
      font-size: 4em;
    }

    h2 {
      font-size: 1.50em;
    }

    .section-title h1 {
      font-size: 2.50em;
    }

    section,
    footer {
      padding: 40px 0;
    }

    .section-title {
      margin-bottom: 30px;
    }

    .custom-navbar {
      background: #ffffff;
      -webkit-box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
      -moz-box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
      box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
      padding: 10px 0;
      text-align: center;
    }

    .custom-navbar .navbar-brand {
      color: #202020;
    }

    .custom-navbar .nav li a {
      line-height: normal;
      padding: 5px;
    }

    .custom-navbar .nav li a,
    .top-nav-collapse .nav li a {
      color: #575757;
    }

    .custom-navbar .section-btn {
      display: block;
      width: 22%;
      margin: 10px auto;
      padding: 10px;
    }

    .custom-navbar li.section-btn a {
      color: #ffffff;
    }

    .about-info {
      padding: 10px 10px 40px 10px;
    }

    .about-image {
      height: 350px;
    }

    #team .col-md-4:nth-child(3n) .team-thumb {
      display: flex;
      -webkit-box-orient: vertical;
      flex-direction: column-reverse;
      -webkit-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
    }

    .team-info {
      padding: 20px;
    }

    footer {
      text-align: center;
    }

    .footer-info {
      padding: 10px 0;
    }
  }


  @media screen and (max-width: 580px) {
    h1 {
      font-size: 3em;
    }

    .section-title h1 {
      font-size: 2em;
    }

    .custom-navbar .section-btn {
      width: 40%;
    }

    #testimonial p {
      font-size: 21px;
    }
  }

