* {
    border: 0;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  
  a {
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    text-decoration: none;
  }
  
  
  /*======================================================
                            Navbar
    ======================================================*/
  #navbar {
    background: white;
    color: rgb(13, 26, 38);
    position: fixed;
    top: 0;
    height: 60px;
    line-height: 60px;
    width: 100vw;
    z-index: 100;
  }
  
  .nav-wrapper {
    margin: auto;
    text-align: center;
    width: 70%;
  }
  
  @media(max-width: 768px) {
    .nav-wrapper {
      width: 90%;
    }
  }
  
  @media(max-width: 638px) {
    .nav-wrapper {
      width: 100%;
    }
  }
  
  
  .logo {
    float: left;
    margin-left: 28px;
    font-size: 1.5em;
    height: 60px;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  
  @media(max-width: 768px) {
    .logo {
      /*       margin-left: 5px; */
    }
  }
  
  #navbar ul {
    display: inline-block;
    list-style: none;
    transition: transform 0.5s ease-out;
    -webkit-transition: transform 0.5s ease-out;
  }
  
  @media(max-width: 640px) {
    #navbar ul {
      display: none;
    }
  }
  
  @media(orientation: landscape) {
    #navbar ul {
      display: inline-block;
    }
  }
  
  #navbar li {
    display: inline-block;
  }
  
  #navbar li a {
    color: rgb(13, 26, 38);
    display: block;
    font-size: 1em;
    height: 50px;
    font-weight: bold;
    letter-spacing: 1px;
    margin: 0 20px;
    padding: 0 4px;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
  }
  
  #navbar li a:hover {
    /* border-bottom: 1px solid rgb(28, 121, 184); */
    color: rgb(28, 121, 184);
    transition: all 1s ease;
    -webkit-transition: all 1s ease;
  }
  
  /* Animated Bottom Line */
  #navbar li a:before,
  #navbar li a:after {
    content: '';
    position: absolute;
    width: 0%;
    height: 1px;
    bottom: -1px;
    background: rgb(13, 26, 38);
  }
  
  #navbar li a:before {
    left: 0;
    transition: 0.5s;
  }
  
  #navbar li a:after {
    background: rgb(13, 26, 38);
    right: 0;
    /* transition: width 0.8s cubic-bezier(0.22, 0.61, 0.36, 1); */
  }
  
  #navbar li a:hover:before {
    background: rgb(13, 26, 38);
    width: 100%;
    transition: width 0.5s cubic-bezier((0.22, 0.61, 0.36, 1));
  }
  
  #navbar li a:hover:after {
    background: transparent;
    width: 100%;
    /* transition: 0s; */
  }
  
  
  
  /*======================================================
                      Mobile Menu Menu Icon
    ======================================================*/
  @media(max-width: 640px) {
    .menuIcon {
      cursor: pointer;
      display: block;
      position: fixed;
      right: 15px;
      top: 20px;
      height: 23px;
      width: 27px;
      z-index: 12;
    }
  
    /* Icon Bars */
    .icon-bars {
      background: rgb(13, 26, 38);
      position: absolute;
      left: 1px;
      top: 45%;
      height: 2px;
      width: 20px;
      -webkit-transition: 0.4s;
      transition: 0.4s;
    }
  
    .icon-bars::before {
      background: rgb(13, 26, 38);
      content: '';
      position: absolute;
      left: 0;
      top: -8px;
      height: 2px;
      width: 20px;
      /*     -webkit-transition: top 0.2s ease 0.3s;
      transition: top 0.2s ease 0.3s; */
      -webkit-transition: 0.3s width 0.4s;
      transition: 0.3s width 0.4s;
    }
  
    .icon-bars::after {
      margin-top: 0px;
      background: rgb(13, 26, 38);
      content: '';
      position: absolute;
      left: 0;
      bottom: -8px;
      height: 2px;
      width: 20px;
      /*     -webkit-transition: top 0.2s ease 0.3s;
      transition: top 0.2s ease 0.3s; */
      -webkit-transition: 0.3s width 0.4s;
      transition: 0.3s width 0.4s;
    }
  
    /* Bars Shadows */
    .icon-bars.overlay {
      background: rgb(97, 114, 129);
      background: rgb(183, 199, 211);
      width: 20px;
      animation: middleBar 3s infinite 0.5s;
      -webkit-animation: middleBar 3s infinite 0.5s;
    }
  
    @keyframes middleBar {
      0% {
        width: 0px
      }
  
      50% {
        width: 20px
      }
  
      100% {
        width: 0px
      }
    }
  
    @-webkit-keyframes middleBar {
      0% {
        width: 0px
      }
  
      50% {
        width: 20px
      }
  
      100% {
        width: 0px
      }
    }
  
    .icon-bars.overlay::before {
      background: rgb(97, 114, 129);
      background: rgb(183, 199, 211);
      width: 10px;
      animation: topBar 3s infinite 0.2s;
      -webkit-animation: topBar 3s infinite 0s;
    }
  
    @keyframes topBar {
      0% {
        width: 0px
      }
  
      50% {
        width: 10px
      }
  
      100% {
        width: 0px
      }
    }
  
    @-webkit-keyframes topBar {
      0% {
        width: 0px
      }
  
      50% {
        width: 10px
      }
  
      100% {
        width: 0px
      }
    }
  
    .icon-bars.overlay::after {
      background: rgb(97, 114, 129);
      background: rgb(183, 199, 211);
      width: 15px;
      animation: bottomBar 3s infinite 1s;
      -webkit-animation: bottomBar 3s infinite 1s;
    }
  
    @keyframes bottomBar {
      0% {
        width: 0px
      }
  
      50% {
        width: 15px
      }
  
      100% {
        width: 0px
      }
    }
  
    @-webkit-keyframes bottomBar {
      0% {
        width: 0px
      }
  
      50% {
        width: 15px
      }
  
      100% {
        width: 0px
      }
    }
  
  
    /* Toggle Menu Icon */
    .menuIcon.toggle .icon-bars {
      top: 5px;
      transform: translate3d(0, 5px, 0) rotate(135deg);
      transition-delay: 0.1s;
      transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }
  
    .menuIcon.toggle .icon-bars::before {
      top: 0;
      transition-delay: 0.1s;
      opacity: 0;
    }
  
    .menuIcon.toggle .icon-bars::after {
      top: 10px;
      transform: translate3d(0, -10px, 0) rotate(-270deg);
      transition-delay: 0.1s;
      transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }
  
    .menuIcon.toggle .icon-bars.overlay {
      width: 20px;
      opacity: 0;
      -webkit-transition: all 0s ease 0s;
      transition: all 0s ease 0s;
    }
  }
  
  
  /*======================================================
                     Responsive Mobile Menu 
    ======================================================*/
  .overlay-menu {
    background: lightblue;
    color: rgb(13, 26, 38);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
    padding-right: 15px;
    transform: translateX(-100%);
    width: 100vw;
    height: 100vh;
    -webkit-transition: transform 0.2s ease-out;
    transition: transform 0.2s ease-out;
  }
  
  .overlay-menu ul,
  .overlay-menu li {
    display: block;
    position: relative;
  }
  
  .overlay-menu li a {
    display: block;
    font-size: 1.8em;
    letter-spacing: 4px;
    /*   opacity: 0; */
    padding: 10px 0;
    text-align: right;
    text-transform: uppercase;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
    /*   -webkit-transition: 0.2s opacity 0.2s ease-out;
    transition: 0.2s opacity 0.2s ease-out; */
  }
  
  .overlay-menu li a:hover,
  .overlay-menu li a:active {
    color: rgb(28, 121, 184);
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
  }
  

#myFooter {
    padding-top: 32px;
    background-color: #222 !important;
}

#myFooter .container {
    text-align: center;

}

#myFooter .footer-copyright {
    margin-bottom: 35px;
    text-align: center;
    color: #777;
}

#myFooter ul {
    list-style-type: none;
    padding: 0;
    margin-bottom: 18px;
}

#myFooter a {
    color: #fff;
    font-size: 18px;
}

#myFooter li {
    display: inline-block;
    margin: 0px 15px;
    line-height: 2;
}

#myFooter .footer-social {
    text-align: center;
    padding-top: 25px;
    padding-bottom: 25px;
    background-color: #fff;
}

#myFooter .fa {
    font-size: 36px;
    margin-right: 15px;
    margin-left: 20px;
    background-color: white;
    color: #000;
    border-radius: 51%;
    padding: 10px;
    height: 60px;
    width: 60px;
    text-align: center;
    line-height: 43px;
    text-decoration: none;
    transition: color 0.2s;
}

#myFooter .fa-facebook:hover {
    color: #2b55ff;
}

#myFooter .fa-facebook:focus {
    color: #2b55ff;
}

#myFooter .fa-google-plus:hover {
    color: red;
}

#myFooter .fa-google-plus:focus {
    color: red;
}

#myFooter .fa-twitter:hover {
    color: #00aced;

}

#myFooter .fa-twitter:focus {
    color: #00aced;
}


/* Pricing */
#lab_pricing_table {
  background: #222;
  padding: 15px;
}

#lab_pricing_table .navbar {
  box-shadow: 0 2px 2px rgba(10, 10, 10, 0.06);
  -moz-box-shadow: 0 2px 2px rgba(10, 10, 10, 0.06);
  -webkit-box-shadow: 0 2px 2px rgba(10, 10, 10, 0.06);
  border: none;
  background: #fff;
}

#lab_pricing_table .navbar ul > li > a {
  font-weight: 600;
  padding: 26px;
  color: #434a54;
  font-size: 12px;
  text-transform: uppercase;
}

#lab_pricing_table .navbar .container .navbar-brand {
  margin-left: 0px;
  padding: 25px;
}

#lab_pricing_table .main-title {
  text-align: center;
}

#lab_pricing_table .pricing-tables {
  padding: 20px;
  max-width: 90%;
  margin: 0 auto;
}

#lab_pricing_table .pricing-tables h1 {
  font-size: 48px;
}

#lab_pricing_table .pricing-tables .plan.first {
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}

#lab_pricing_table .pricing-tables .plan.last {
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
}

#lab_pricing_table .pricing-tables .plan.recommended {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

#lab_pricing_table .pricing-tables .plan.recommended .head {
  margin-bottom: 20px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

#lab_pricing_table .pricing-tables.attached .col-sm-4,
#lab_pricing_table .pricing-tables.attached .col-md-4,
#lab_pricing_table .pricing-tables.attached .col-sm-3,
#lab_pricing_table .pricing-tables.attached .col-md-3 {
  padding-left: 0;
  padding-right: 0;
}

#lab_pricing_table .pricing-tables.attached .plan {
  border-radius: 0;
}

#lab_pricing_table .pricing-tables.attached .plan .head {
  border-radius: 0;
}

#lab_pricing_table .pricing-tables.attached .plan.recommended {
  border-radius: 4px;
}

#lab_pricing_table .pricing-tables.attached .plan.recommended .head {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

#lab_pricing_table .pricing-tables.attached .plan.last {
  border-bottom-right-radius: 4px;
}

#lab_pricing_table .pricing-tables.attached .plan.last .head {
  border-top-right-radius: 4px;
}

#lab_pricing_table .pricing-tables.attached .plan.first {
  border-bottom-left-radius: 4px;
}

#lab_pricing_table .pricing-tables.attached .plan.first .head {
  border-top-left-radius: 4px;
}

#lab_pricing_table .plan {
  box-shadow: 0 2px 2px rgba(10, 10, 10, 0.06);
  min-height: 100px;
  background: #fff;
  border-radius: 4px;
  margin: 20px 0;
  padding-bottom: 25px;
  text-align: center;
}

#lab_pricing_table .plan .head {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  padding: 12px 16px;
  background: #0084ff;
  color: #fff;
}

#lab_pricing_table .plan .head h1,
#lab_pricing_table .plan .head h2,
#lab_pricing_table .plan .head h3 {
  padding: 0;
  margin: 0;
  font-weight: 500;
}

#lab_pricing_table .plan .price {
  border-top: 1px solid #eee;
  margin: 0 auto 30px auto;
  width: 80%;
}

#lab_pricing_table .plan .price h3 {
  font-size: 82px;
  vertical-align: top;
  line-height: 1;
}

#lab_pricing_table .plan .price h3 span {
  font-size: 38px;
  vertical-align: top;
  position: relative;
  margin: 6px 0 0 -7px;
  display: inline-block;
}

#lab_pricing_table .plan .price h4 {
  color: #aaa;
  font-size: 14px;
}

#lab_pricing_table .plan .btn {
  padding: 10px 30px;
  text-transform: uppercase;
  font-weight: 500;
}

#lab_pricing_table .plan ul {
  list-style-type: none;
  padding: 20px;
  margin-top: 2px;
}

#lab_pricing_table .plan ul li {
  line-height: 22px;
  margin-bottom: 15px;
  font-size: 14px;
  font-weight: 400;
}

#lab_pricing_table .plan ul li a {
  text-decoration: underline;
  color: #e6e9ed;
}

#lab_pricing_table .plan ul li:last-child {
  border-bottom: none;
}

#lab_pricing_table .plan ul strong {
  font-weight: 700;
}

#lab_pricing_table .plan.recommended {
  margin-top: 6px;
  box-shadow: 0 0 22px rgba(10, 10, 10, 0.42);
  position: relative;
  z-index: 99;
  border-radius: 4px;
}

#lab_pricing_table .plan.recommended .head {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  background: #0084ff;
}

#lab_pricing_table .plan.recommended .btn {
  margin-bottom: 10px;
}

/* END Pricing */