/*
Project Name: Project #
Description: This project is to create ?
Author: your name
Version: 1.0
License: 

Tags: (optional)

General comments (optional)

Table of Contents in CSS
1. Global
2. Links
3. Headings
4. Header
5. Navigation
6. Index
7. Contact Us
8. Services
9. Client
10. Our People
11. Products
12. Forms
13. Extras
14. Footer
15. Media Queries
*/

/* 1. Global */
@font-face {
    font-family: 'spartan_mbblack';
    src: url('../fonts/spartanmb-black-webfont.woff2') format('woff2'),
         url('../fonts/spartanmb-black-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'spartan_mbbold';
    src: url('../fonts/spartanmb-bold-webfont.woff2') format('woff2'),
         url('../fonts/spartanmb-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'spartan_mbextrabold';
    src: url('../fonts/spartanmb-extra-bold-webfont.woff2') format('woff2'),
         url('../fonts/spartanmb-extra-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'hk_groteskbold';
    src: url('../fonts/hkgrotesk-bold-webfont.woff2') format('woff2'),
         url('../fonts/hkgrotesk-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'hk_groteskbold_italic';
    src: url('../fonts/hkgrotesk-bolditalic-webfont.woff2') format('woff2'),
         url('../fonts/hkgrotesk-bolditalic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'hk_groteskitalic';
    src: url('../fonts/hkgrotesk-italic-webfont.woff2') format('woff2'),
         url('../fonts/hkgrotesk-italic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'hk_groteskmedium';
    src: url('../fonts/hkgrotesk-medium-webfont.woff2') format('woff2'),
         url('../fonts/hkgrotesk-medium-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'hk_groteskmedium_italic';
    src: url('../fonts/hkgrotesk-mediumitalic-webfont.woff2') format('woff2'),
         url('../fonts/hkgrotesk-mediumitalic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'hk_groteskregular';
    src: url('../fonts/hkgrotesk-regular-webfont.woff2') format('woff2'),
         url('../fonts/hkgrotesk-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'hk_grotesksemibold';
    src: url('../fonts/hkgrotesk-semibold-webfont.woff2') format('woff2'),
         url('../fonts/hkgrotesk-semibold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'hk_grotesksemibold_italic';
    src: url('../fonts/hkgrotesk-semibolditalic-webfont.woff2') format('woff2'),
         url('../fonts/hkgrotesk-semibolditalic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
html,body  { 
   margin: 0;
   padding-top: 0px;
   font-size: 16px;
   line-height: 1.5em;
   font-family: 'hk_groteskregular';
   -webkit-font-smoothing: antialiased;
   -webkit-text-size-adjust: 100%;
}
* {
   box-sizing: border-box;
}
section {
   height: vh;
}
.container {
   padding: 0px 15px 0px 15px;
}
h2 {
    font-family: 'spartan_mbbold';
    line-height: 1.5em;
}
.logo {
    width: 15%;
}
.row {
  display: -ms-flexbox; /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE10 */
  flex-wrap: wrap;
  margin: 0 -16px;
}
.col-25 {
  -ms-flex: 25%; /* IE10 */
  flex: 25%;
}

.col-50 {
  -ms-flex: 50%; /* IE10 */
  flex: 50%;
}

.col-75 {
  -ms-flex: 75%; /* IE10 */
  flex: 75%;
}

.col-25,
.col-50,
.col-75 {
  padding: 0 16px;
}
/* 2. Links */
.hero-link {
    background-color: #2e3192;
    color: #fff;
    padding: 1.5% 4%;
}
.hero-link:hover {
    background-color: #1c1d58;
    color: #fff;
}
.text-intro a {
    background-color: #2e3192;
    color: #fff;
    padding: 3% 12%;
    font-family: 'spartan_mbblack';
}
.text-intro a:hover {
    background-color: #1c1d58;
    color: #fff;
}
a {
  text-decoration: none;
  color: rgba(34, 34, 34, 0.8);
}
a:hover, a :focus {
  color: #00a04f;
}

.menu-left a {
  display: inline-block;
  position: relative;
  padding-bottom: 0px;
  transition: color .35s ease;
}
.menu-left a:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  transition: width 0s ease, background .35s ease;
}
.menu-left a:after {
  content: '';
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: #000;
  transition: width .35s ease;
}
.menu-left a:hover:before {
  width: 100%;
  background: #00a04f;
  transition: width .35s ease;
}
.menu-left a:hover:after {
  width: 100%;
  background: transparent;
  transition: all 0s ease;
}
/* 3. Headings */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2rem 0;
  background: rgba(255, 255, 255, 0.92);
  z-index: 3;
  will-change: transform;
  transition: background 0.3s, -webkit-transform 0.5s cubic-bezier(0.694, 0.048, 0.335, 1);
  transition: transform 0.5s cubic-bezier(0.694, 0.048, 0.335, 1), background 0.3s;
  transition: transform 0.5s cubic-bezier(0.694, 0.048, 0.335, 1), background 0.3s, -webkit-transform 0.5s cubic-bezier(0.694, 0.048, 0.335, 1);
  transform: translateY(0);
  -webkit-transform: translateY(0);
}
header nav .logo {
  float: left;
  padding-top: .25rem;
  padding-bottom: .25rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  line-height: inherit;
  font-weight: 500;
  color: black;
}
header nav .logo:after {
  content: '';
  display: table;
  clear: both;
}
header nav ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
header nav ul li {
  float: none;
  margin-left: 0;
}
.clients {
   font-family: 'spartan_mbblack';
   color: #fff;
   background-color: #2e3192;
   padding: 1%;
   margin-bottom: %;
   float: right;
   width: 20%;
   text-align: center;
}
.clients:hover {
    background-color: #1c1d58;
    color: #fff;
}
/* 4. Header */
.nav-toggle {
  display: block;
  border-radius: 5px;
  background-color: transparent;
  float: right;
  height: 38px;
  width: 38px;
  cursor: pointer;
  padding: 8px 8px;
}
.nav-toggle.open span:first-child {
  transform: rotate(45deg) translate(4.4px, 4.4px);
}
.nav-toggle.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}
.nav-toggle.open span:last-child {
  transform: rotate(-45deg) translate(4.4px, -4.4px);
}
.nav-toggle span {
  position: relative;
  display: block;
  height: 2px;
  width: 100%;
  margin-top: 4px;
  background-color: #000;
  transition: all .25s;
}
ul.menu-left:before {
  content: '';
  display: table;
  clear: both;
}
ul.menu-left.collapse {
  max-height: 15em !important;
}
header nav ul li a {
  display: block;
}
/* 5. Navigation */
nav {
    font-family: 'hk_groteskbold';
    padding: 10px;
}
nav li a {
    vertical-align: bottom;
}
.hide-nav {
  transform: translateY(-120% !important);
  -webkit-transform: translateY(-120%) !important;
}

ul.menu-left {
  display: block;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  z-index: 10;
}
/**************************************** 6. Index ********************************************/
.hero_intro {
    background: linear-gradient(0deg,rgba(0,0,0,0.3),rgba(0,0,0,0.3)),url('../images/hero.jpeg') 0 0 no-repeat;
    background-size: cover;
    background-position: center;
    height: 1000px;
}
.hero_intro-text {
    color: #fff;
    font-family: 'spartan_mbblack';
    
    text-align: center;
    padding-top: 30%;
}
.hero_intro-text h1 {
    font-size: 5em;
    line-height: 1em;
    padding: 0;
}
.icon-scroll {
    align-items: center;
        justify-content: center;
        flex-direction: column;
}
.ourpeople_intro {
    background: url('../images/ourpeople.jpeg') 0 0 no-repeat;
    background-position: top;
}
.buildingteams_intro {
    background: url('../images/buildingteams.jpg') 0 0 no-repeat;
    background-position: top;
}
.joinourteam_intro {
    background: url('../images/joinourteam.jpg') 0 0 no-repeat;
    background-position: center;
}
.ourpeople_intro, .buildingteams_intro, .joinourteam_intro {
    background-size: cover;
    height: 700px;
    position: relative;
}
.ourpeople_intro {
    padding: 3% 0;
}
.text-intro {
    background-color: #fff;
    width: 25%;
    padding: 2%;
    position: absolute;
    top: 10%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.text-intro p {
    margin-bottom: 10%;
}
.services_intro, .whowearebuild_intro {
    margin-top: 5%;
}
.services_intro {
    margin-bottom: 10%;
}

.services_boxes-offers {
    text-align: center;
    background-color: #fff;
    padding: 2%;
    float: left;
    width: 33%;
    height: 400px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    transition: transform .2s;
}
.services_boxes-offers:hover {
     transform: scale(1.05);
}
.services_boxes-offers p {
    font-size: 0.9em;
}
.services_boxes-icons {
    width: 50%;
}
.whowearebuild_intro {
   margin-bottom: 5%;
}
.company-logos_icons {
   width: 16.5%;
   margin: 0 auto;
   vertical-align: middle;
}
.domo {
   width: 10%;
    margin-right: 5%;
    margin-left: 3%;
}
.contactus_intro {
    background-color: #ebebeb;
    padding: 5%;
}
.contactus_intro img {
    width: 30%;
    float: right;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.contact_signup {
    background-color: #00a04f;
    color: #ffffff;
}
.contact_signup:hover {
    background-color: #00783B;
}
/************************************* 7. Contact Us ******************************************/
.contactus_page_intro {
    padding-top: 10%;
    margin-bottom: 0%;
}
.contactus_page_intro-text {
    border-bottom: 1px solid #000;
}
.contactus_page_intro h2 {
    font-size: 3em;
    font-family: 'hk_groteskbold';
    margin-bottom: 5%;
}
.contactus_page_intro h3 {
    font-size: 2em;
    line-height: 2em;
}
.contactus_page_form {
    padding: %;
}
.connect {
    font-family: 'spartan_mbblack';
    font-size: 1em;
    padding: 1.5% 8%;
}
/************************************* 8. Services ********************************************/
.services_page {
    background: linear-gradient(0deg,rgba(0,0,0,0.3),rgba(0,0,0,0.3)), url('../images/services.jpeg') 0 0 no-repeat;
    background-size: cover;
    background-position: center;
    height: 600px;
    
}
.services_intro-text {
    color: #fff;
    font-family: 'spartan_mbblack';
    
    text-align: left;
    padding-top: 15%;
}
.services_intro-text h1 {
    font-size: 5em;
    line-height: 1em;
    padding: 0;
}
.services_intro-text h2 {
   line-height: 1em;
}
.services_desc_content {
   width: 33%;
   float: left;
   
   margin: 0 auto;
}
.services_desc_content p {
   width: 85%;
}
.services_desc_row {
   flex-wrap: wrap;
   display: flex;
   padding: 5% 0 7%;
}
.services_desc_expect {
   width: 80%;
   
}
.services_desc_expect h2 {
   
}
.services_desc_pic {
   width: 95%;
   padding: 0;
   box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.listleft, .listright {
   width: 50%;
   line-height: 2em;
}
.listleft li, .listright li {
   padding: 0 03%;
}
.listleft {
   float: left;
}
.listright {
   float: right;
}
/****************************************** 9. Client *****************************************/
.client-nav {
    background-color: #23256e;
    padding: 1%;
    position: fixed;
   z-index: 999;
   top: 0;
   width: 100%;
}
.client-logo {
    float:;
    width: 8%;
}
.client-nav_right {
    font-family: 'spartan_mbblack';
    float: right;
    margin-right: %;
    width: 20%; 
    padding: 0.75% 0 0 0;
}
.client-nav_right a {
    color: #fff;
    padding-left: 15%;
}
.client-nav_right a:hover {
   color: #00a04f;
   transition: width 0s ease, background .35s ease;
}
.sidebar-nav {
    background: #2e3192;
    width: 5%;
    float: left;
    position: fixed;
    top: 0px;
   height: 100vh;
}
.sidebar-nav_container {
   margin-top: 120%;
}
.sidebar-nav_icon {
    margin-left: 22%;
    padding-top: 10%;
    padding-bottom: 20%;
    width: 55%;
}
.sidebar-nav_icon:hover {
/*    background-color: #119da4;*/
    transform: scale(1.5);
   
}
.client-portal-bed {
    flex: 75%;
    background-color: #f6f6f7;
    padding: 2% 5% 5% 10%;
}
.client-portal-products {
    background-color: #fff;
}
.client-portal_mtd {
    width: 33%;
}
.client-portal_hlr {
    width: 45%;
}
.client-portal_full {
   width: 40%;
}
.tooltip {
  position: relative;
  display: inline-block;
  
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;

  /* Position the tooltip */
  position: absolute;
  z-index: 1;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}
/************************************ 10. Our People/Staff ************************************/
.ourpeople_page {
    background: linear-gradient(0deg,rgba(0,0,0,0.3),rgba(0,0,0,0.3)), url('../images/ourpeople2.jpeg') 0 0 no-repeat;
    background-size: cover;
    background-position: center;
    height: 600px;
   
}
.ourpeople_intro-text {
    color: #fff;
    font-family: 'spartan_mbblack';
    
    text-align: left;
    padding-top: 15%;
}
.ourpeople_intro-text h1 {
    font-size: 5em;
    line-height: 1em;
    padding: 0;
}
.ourpeople_intro-text h2 {
   line-height: 1em;
}
.ourpeople_desc_text {
   width: 40%;
   line-height: 2em;
   margin: 10% 0;
}

.ourpeople_photo_gallery {
   
}
.employee_photos {
   float: left;
   width: 25%;
   margin: 0 0 5%;
}
.employee_photos img {
   width: 100%;
   height: 450px;
}
.employee_portrait {
   width: 25%;
   
}
.employee_desc {
   text-align: center;
   width: 100%;
}
.ceo {
    float: right;
    width: 20%;
}
/*********************************** 11. Product **********************************************/
.product_page {
    background: linear-gradient(0deg,rgba(0,0,0,0.3),rgba(0,0,0,0.3)), url('../images/consultation.jpeg') 0 0 no-repeat;
    background-size: cover;
    background-position: center;
    height: 600px;
   
}
.product_intro-text {
    color: #fff;
    font-family: 'spartan_mbblack';
    
    text-align: left;
    padding-top: 15%;
}
.product_intro-text h1 {
    font-size: 5em;
    line-height: 1em;
    padding: 0;
}
.product_intro-text h2 {
   line-height: 1em;
}
.product_desc_text {
   width: 100%;
   line-height: 2em;
   margin: 10% 0 5%;
}
.product_desc_text h2, .product_desc_text h3, .product_desc_text p {
    width: 40%;
}
.product_desc_pic {
    float: right;
    width: 50%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.listfull {
    width: 90%;
    line-height: 2em;
}
/************************************* 12. Forms **********************************************/
.contactus_intro_form [type=text], select, textarea {
    background-color: transparent;
    width: 100%;
    padding: 3% 0;
    border: none;
    border-bottom: 1px solid #000;
    resize: vertical;
    margin-bottom: 2%;
}
.contactus_intro_form button {
   font-family: 'spartan_mbblack';
   font-size: 1em;
   background-color: #00a04f;
   color: #fff;
   padding: 2% 0.5%;
   margin: 8px 0;
   border: none;
   cursor: pointer;
   width: 35%;
   opacity: 0.9;
   float: left;
}
textarea {
    background-color: transparent;
    width: 100%;
    padding: 3%;
    border: 1px solid #000;
    resize: vertical;
    margin-top: 2%;
}
label {
    font-family: 'spartan_mbbold';
}
/**************************************** 13. Extras ******************************************/
#mobileview {
    display: none;
}
#mobile-search {
    float: right;
    display: none;
}
.icon-scroll, .icon-scroll:before {
  position: absolute;
  left: 50%;
}
.icon-scroll {
  width: 40px;
  height: 80px;
  margin-left: -20px;
  top: 90%;
  margin-top: -35px;
  box-shadow: inset 0 0 0 1px #fff;
  border-radius: 25px;
}
.icon-scroll:before {
  content: '';
  width: 8px;
  height: 8px;
  background: #fff;
  margin-left: -4px;
  top: 8px;
  border-radius: 4px;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: scroll;
          animation-name: scroll;
}
@-webkit-keyframes scroll {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(46px);
            transform: translateY(46px);
  }
}
@keyframes scroll {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(46px);
            transform: translateY(46px);
  }
}
.breadcrumb {
    color: #fff;
    list-style: none;
    padding: 0;
}
.breadcrumb li {
    color: #fff;
    display: inline;
}
.breadcrumb li a {
    color: #fff;
    display: inline-block;
}
.breadcrumb li+li:before {
    padding: 8px;
    color: #fff;
    content: "/\00a0";   
}
.breadcrumb li a:hover {
    color: #00a04f;
}
.legal-left {
    float: left;
}
.legal-right {
    float: right;
}
.signature {
  position: fixed;
  font-weight: 100;
  bottom: 10px;
  color: #000;
  left: 0;
  letter-spacing: 4px;
  font-size: 10px;
  width: 100vw;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
}
/***************************************** 14. Footer *****************************************/
footer {
   font-family: 'hk_grotesksemibold';
   background-color: #fff;
   padding: 5% 5% 2% 5%;
}
.footer-links_section {
   padding: 7% 0;
   box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.footerlogo {
   width: 20%;
   float: left;
}
.contact-address {
   width: 20%;
   float: right;
}
.footer-links {
   width: 15%;
   float: right;
}
.footer-links ul {
   display: inline-block;
}
.footer-links li {
   list-style: none;
   padding-bottom: 15%;
}
.signup_section {
   color: #fff;
   background-color: #2e3192;
   padding: 3% 0;
   box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.signup-section_content {
   vertical-align: middle;
}
.signupdesc {
   width: 40%; 
}
.signupform {
   width: 100%;
   float: left;
}
.signupform input[type=text] {
   width: 30%;
   padding: 12px 20px;
   margin: 8px 0;
   box-sizing: border-box;
   border: none;
   border-bottom: 2px solid #fff;
   background-color: transparent;
   float: left;
   color: #fff;
   outline: none;
}
.signupform :focus, input:focus{
    outline: none;
}
#fname {
   color: #fff;    
}
.signupform button {
   font-family: 'spartan_mbblack';
   font-size: 1em;
   background-color: #fff;
   color: #2e3192;
   padding: 1.5% 0.5%;
   margin: 8px 0;
   border: none;
   cursor: pointer;
   width: 20%;
   opacity: 0.9;
   float: left;
}
.signup:hover {
    background-color: #23256E;
    color: #ffffff;
}
/* 15. Media Queries */
@media (min-width: 0) {
  .container {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .container:after {
    content: " ";
    display: block;
    clear: both;
  }
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
  }
  .container:after {
    content: " ";
    display: block;
    clear: both;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }
  .container:after {
    content: " ";
    display: block;
    clear: both;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
  }
  .container:after {
    content: " ";
    display: block;
    clear: both;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
  }
  .container:after {
    content: " ";
    display: block;
    clear: both;
  }
}
@media (min-width: 1025px) {
  header nav ul li {
    float: left;
    margin-left: 1rem;
  }
}
@media (min-width: 1025px) {
  header nav ul li a {
    display: block;
    padding: .425rem 0rem;
  }
}
@media (max-width: 1025px) {
  ul {
    clear: both;
  }
  ul li {
    padding: .5em 0;
  }
}
@media (min-width: 1025px) {
  ul.menu-left {
    display: block !important;
    float: right;
    max-height: none;
  }
}
@media (min-width: 1025px) {
  .nav-toggle {
    display: none;
  }
}
/************************************ 16. More Media Queries **********************************/
/******************************************* 1024px *******************************************/
@media only screen and (max-width: 1024px) {
    /**************************************** 6a. Index ********************************************/
    .clients, .hidden {
        display: none;
    }
    #mobileview {
        visibility: visible;
    }
    .logo {
        width: 20%;
    }
    .icon-scroll {
      width: 40px;
      height: 80px;
      margin-left: -20px;
      top: 60%;
      margin-top: -35px;
      box-shadow: inset 0 0 0 1px #fff;
      border-radius: 25px;
    }
    .nav-toggle {
      display: block;
      border-radius: 5px;
      background-color: transparent;
      float: right;
      height: 38px;
      width: 50px;
      cursor: pointer;
      padding: 20px 8px;
    }
    .nav-toggle span {
      position: relative;
      display: block;
      height: 2px;
      width: 100%;
      margin-top: 4px;
      background-color: #000;
      transition: all .25s;
    }
    section {
       height: 100vh;
     
    }
    .hero-link {
        background-color: #2e3192;
        color: #fff;
        padding: 3% 6%;
    }
    .text-intro a {
        background-color: #2e3192;
        color: #fff;
        padding: 3% 12%;
        font-family: 'spartan_mbblack';
    }
    .container {
       padding: 0 5%;
    }
    .hero_intro {
        background: linear-gradient(0deg,rgba(0,0,0,0.3),rgba(0,0,0,0.3)),url('../images/hero.jpeg') 0 0 no-repeat;
        background-size: cover;
        background-position: center;
        height: 1000px;
    }
    .hero_intro-text {
        color: #fff;
        font-family: 'spartan_mbblack';

        text-align: center;
        padding-top: 35%;
    }
    .hero_intro-text h1 {
        font-size: 5em;
        line-height: 1em;
        padding: 0;
    }
    .ourpeople_intro {
        background: url('../images/ourpeople.jpeg') 0 0 no-repeat;
        background-position: top;
    }
    .buildingteams_intro {
        background: url('../images/buildingteams.jpg') 0 0 no-repeat;
        background-position: top;
    }
    .joinourteam_intro {
        background: url('../images/joinourteam.jpg') 0 0 no-repeat;
        background-position: center;
    }
    .ourpeople_intro, .buildingteams_intro, .joinourteam_intro {
        background-size: cover;
        height: 700px;
        position: relative;
    }
    .text-intro {
        background-color: #fff;
        width: 40%;
        padding: 5%;
        position: absolute;
        top: 10%;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    }
    .text-intro p {
        margin-bottom: 10%;
    }
    .services_intro, .whowearebuild_intro {
        margin-top: 5%;
    }
    .services_boxes-offers {
        text-align: center;
        background-color: #fff;
        padding: 2%;
        float: left;
        width: 50%;
        height: 400px;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
        transition: transform .2s;
    }
    .services_boxes-offers p {
        font-size: 0.9em;
    }
    .services_boxes-icons {
        width: 40%;
    }
    .whowearebuild_intro {
       margin-bottom: 5%;
    }
    .company-logos {
       width: 100%;

    }
    .company-logos_icons {
       width: 19.5%;
       margin: 0 auto;
       vertical-align: middle;
    }
    .domo {
       width: 10%;
        margin-right: 5%;
        margin-left: 3%;
    }
    /************************************* 7a. Contact Us ******************************************/
    .contactus_intro {
        background-color: #ebebeb;
        padding: 5%;
    }
    .contactus_intro img {
        width: 30%;
        float: right;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    }
    footer {
       font-family: 'hk_grotesksemibold';
       background-color: #fff;
       padding: 5% 5% 2% 5%;
    }
    .footer-links_section {
       padding: 7% 0;
       box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    }
    .footerlogo {
       width: 20%;
       float: left;
    }
    .contact-address {
       width: 20%;
       float: right;
    }
    .footer-links {
       width: 18%;
       float: right;
    }
    .footer-links ul {
       display: inline-block;
    }
    .footer-links li {
       list-style: none;
       padding-bottom: 15%;
    }
    .signup_section {
       color: #fff;
       background-color: #2e3192;
       padding: 3% 0;
       box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    }
    .signup-section_content {
       vertical-align: middle;
    }
    .signupdesc {
       width: 40%;

    }
    .signupform {
       width: 100%;
       float: left;
    }
    .signupform input[type=text] {
       width: 30%;
       padding: 12px 20px;
       margin: 8px 0;
       box-sizing: border-box;
       border: none;
       border-bottom: 2px solid #fff;
       background-color: transparent;
       float: left;
       color: #fff;
       outline: none;
    }
    .signupform :focus, input:focus{
        outline: none;
    }
    #fname {
       color: #fff;    
    }
    .signupform button {
       font-family: 'spartan_mbblack';
       font-size: 1em;
       background-color: #fff;
       color: #2e3192;
       padding: 1.5% 0.5%;
       margin: 8px 0;
       border: none;
       cursor: pointer;
       width: 20%;
       opacity: 0.9;
       float: left;
    }
    .breadcrumb {
        color: #fff;
        list-style: none;
        padding: 0;
    }
    .breadcrumb li {
        color: #fff;
        display: inline;
    }
    .breadcrumb li a {
        color: #fff;
        display: inline-block;
    }
    .breadcrumb li+li:before {
        padding: 8px;
        color: #fff;
        content: "/\00a0";   
    }
    .breadcrumb li a:hover {
        color: #00a04f;
    }
    .legal-left {
        float: left;
    }
    .legal-right {
        float: right;
    }
    .contactus_page_intro {
        padding-top: 250px;
        margin-bottom: 30%;
    }
    .contactus_page_intro-text {
        border-bottom: 1px solid #000;
    }
    .contactus_page_intro h2 {
        font-size: 3em;
        font-family: 'hk_groteskbold';
        margin-bottom: 5%;
    }
    .contactus_page_intro h3 {
        font-size: 2em;
        line-height: 2em;
    }
    .contactus_page_form {
        padding: %;
    }
    /************************************* 8a. Services ********************************************/
    .services_page {
        background: linear-gradient(0deg,rgba(0,0,0,0.3),rgba(0,0,0,0.3)), url('../images/services.jpeg') 0 0 no-repeat;
        background-size: cover;
        background-position: center;
        height: 600px;

    }
    .services_intro-text {
        color: #fff;
        font-family: 'spartan_mbblack';

        text-align: left;
        padding-top: 15%;
    }
    .services_intro-text h1 {
        font-size: 5em;
        line-height: 1em;
        padding: 0;
    }
    .services_intro-text h2 {
       line-height: 1em;
    }
    .services_desc_content {
       width: 33%;
       float: left;

       margin: 0 auto;
    }
    .services_desc_content p {
       width: 85%;
    }
    .services_desc_row {
       flex-wrap: wrap;
       display: flex;
       padding: 5% 0 7%;
    }
    .services_desc_expect {
       width: 80%;

    }
    .services_desc_expect h2 {

    }
    .services_desc_pic {
       width: 95%;
       padding: 0;
       box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    }
    .listleft, .listright {
       width: 100%;
       line-height: 2em;
    }
    .listleft li, .listright li {
       padding: 0 03%;
    }
    .listleft {
       float: left;
    }
    .listright {
       float: right;
    }
    /****************************************** 9a. Client ******************************************/
    .client-nav {
        background-color: #23256e;
        padding: 2%;
        position: fixed;
       z-index: 999;
       top: 0;
       width: 100%;
    }
    .client-logo {
        float:;
        width: 10%;
    }
    .client-nav_right {
        font-family: 'spartan_mbblack';
        float: right;
        margin-right: %;
        width: 30%; 
        padding: 0.75% 0 0 0;
    }
    .client-nav_right a {
        color: #fff;
        padding-left: 15%;
    }
    .client-nav_right a:hover {
       color: #00a04f;
       transition: width 0s ease, background .35s ease;
    }
    .sidebar-nav {
        background: #2e3192;
        width: 6%;
        float: left;
        position: fixed;
        top: 0px;
       height: 100vh;
    }
    .sidebar-nav_container {
       margin-top: 170%;
    }
    .sidebar-nav_icon {
        margin-left: 22%;
        padding-top: 10%;
        padding-bottom: 20%;
        width: 55%;
    }
    .sidebar-nav_icon:hover {
    /*    background-color: #119da4;*/
        transform: scale(1.5);

    }
    .client-portal-bed {
        flex: 75%;
        background-color: #f6f6f7;
        padding: 9% 5% 5% 10%;
    }
    .client-portal-products {
        background-color: #fff;
    }
    .client-portal_mtd {
        width: 33%;
    }
    .client-portal_hlr {
        width: 45%;
    }
    .client-portal_full {
       width: 40%;
    }
    .tooltip {
      position: relative;
      display: inline-block;
    }
    .tooltip .tooltiptext {
      visibility: hidden;
      width: 120px;
      background-color: black;
      color: #fff;
      text-align: center;
      border-radius: 6px;
      padding: 5px 0;
      position: absolute;
      z-index: 1;
    }
    .tooltip:hover .tooltiptext {
      visibility: visible;
    }
    /************************************ 10a. Our People/Staff ************************************/
    .ourpeople_page {
        background: linear-gradient(0deg,rgba(0,0,0,0.3),rgba(0,0,0,0.3)), url('../images/ourpeople2.jpeg') 0 0 no-repeat;
        background-size: cover;
        background-position: center;
        height: 600px;

    }
    .ourpeople_intro-text {
        color: #fff;
        font-family: 'spartan_mbblack';

        text-align: left;
        padding-top: 15%;
    }
    .ourpeople_intro-text h1 {
        font-size: 5em;
        line-height: 1em;
        padding: 0;
    }
    .ourpeople_intro-text h2 {
       line-height: 1em;
    }
    .ourpeople_desc_text {
       width: 40%;
       line-height: 2em;
       margin: 10% 0;
    }
    .ourpeople_photo_gallery {
    }
    .employee_photos {
       float: left;
       width: 25%;
       margin: 0 0 5%;
    }
    .employee_photos img {
       width: 100%;
       height: 350px;
    }
    .employee_portrait {
       width: 25%;

    }
    .employee_desc {
       text-align: center;
       width: 100%;
    }
    /*********************************** 11a. Product **********************************************/
    .product_page {
        background: linear-gradient(0deg,rgba(0,0,0,0.3),rgba(0,0,0,0.3)), url('../images/consultation.jpeg') 0 0 no-repeat;
        background-size: cover;
        background-position: center;
        height: 600px;

    }
    .product_intro-text {
        color: #fff;
        font-family: 'spartan_mbblack';

        text-align: left;
        padding-top: 15%;
    }
    .product_intro-text h1 {
        font-size: 5em;
        line-height: 1em;
        padding: 0;
    }
    .product_intro-text h2 {
       line-height: 1em;
    }
    .product_desc_text {
       width: 100%;
       line-height: 2em;
       margin: 10% 0 5%;
    }
    .product_desc_text h2, .product_desc_text h3, .product_desc_text p {
        width: 40%;
    }
    .product_desc_pic {
        float: right;
        width: 50%;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    }
    .listfull {
        width: 100%;
        line-height: 2em;
    }
    .services_desc_pic {
        width: 100%;
    }
    .services_desc_expect {
        float: left;
        
    }
    /************************************* 12a. Forms **********************************************/
    .contactus_intro_form [type=text], select, textarea {
        background-color: transparent;
        width: 100%;
        padding: 3% 0;
        border: none;
        border-bottom: 1px solid #000;
        resize: vertical;
        margin-bottom: 2%;
    }
    .contactus_intro_form button {
       font-family: 'spartan_mbblack';
       font-size: 1em;
       background-color: #00a04f;
       color: #fff;
       padding: 2% 0.5%;
       margin: 8px 0;
       border: none;
       cursor: pointer;
       width: 35%;
       opacity: 0.9;
       float: left;
    }
    textarea {
        background-color: transparent;
        width: 100%;
        padding: 3%;
        border: 1px solid #000;
        resize: vertical;
        margin-top: 2%;
    }
    label {
        font-family: 'spartan_mbbold';
    }
}
/******************************************* 768px ********************************************/
@media only screen and (max-width: 768px) {
    /**************************************** 6b. Index ********************************************/
    .clients, .hidden {
        display: none;
    }
    #mobileview, #mobile-search {
        visibility: visible;
    }
        .logo {
        width: 20%;
    }
    .nav-toggle {
      display: block;
      border-radius: 5px;
      background-color: transparent;
      float: right;
      height: 38px;
      width: 50px;
      cursor: pointer;
      padding: 20px 8px;
    }
    .nav-toggle span {
      position: relative;
      display: block;
      height: 2px;
      width: 100%;
      margin-top: 4px;
      background-color: #000;
      transition: all .25s;
    }
    section {
       height: 100vh;
    }
    .icon-scroll {
      width: 40px;
      height: 80px;
      margin-left: -20px;
      top: 80%;
      margin-top: -35px;
      box-shadow: inset 0 0 0 1px #fff;
      border-radius: 25px;
    }
    .hero-link {
        background-color: #2e3192;
        color: #fff;
        padding: 3% 6%;
    }
    .text-intro a {
        background-color: #2e3192;
        color: #fff;
        padding: 3% 12%;
        font-family: 'spartan_mbblack';
    }
    .container {
       padding: 0 5%;
    }
    .hero_intro {
        background: linear-gradient(0deg,rgba(0,0,0,0.3),rgba(0,0,0,0.3)),url('../images/hero.jpeg') 0 0 no-repeat;
        background-size: cover;
        background-position: center;
        height: 1000px;
    }
    .hero_intro-text {
        color: #fff;
        font-family: 'spartan_mbblack';

        text-align: center;
        padding-top: 35%;
    }
    .hero_intro-text h1 {
        font-size: 5em;
        line-height: 1em;
        padding: 0;
    }
    .ourpeople_intro {
        background: url('../images/ourpeople.jpeg') 0 0 no-repeat;
        background-position: top;
    }
    .buildingteams_intro {
        background: url('../images/buildingteams.jpg') 0 0 no-repeat;
        background-position: top;
    }
    .joinourteam_intro {
        background: url('../images/joinourteam.jpg') 0 0 no-repeat;
        background-position: center;
    }
    .ourpeople_intro, .buildingteams_intro, .joinourteam_intro {
        background-size: cover;
        height: 700px;
        position: relative;
    }
    .text-intro {
        background-color: #fff;
        width: 50%;
        padding: 5%;
        position: absolute;
        top: 10%;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    }
    .text-intro p {
        margin-bottom: 10%;
    }
    .services_intro, .whowearebuild_intro {
        margin-top: 5%;
    }
    .services_intro {
        margin-bottom: 50%;
    }
    .services_boxes-offers {
        text-align: center;
        background-color: #fff;
        padding: 2%;
        float: left;
        width: 50%;
        height: 400px;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
        transition: transform .2s; 
    }
    .services_boxes-offers p {
        font-size: 0.9em;
    }
    .services_boxes-icons {
        width: 40%;
    }
    .whowearebuild_intro {
       margin-bottom: 5%;
    }
    .company-logos {
       width: 100%;

    }
    .company-logos_icons {
       width: 19.1%;
       margin: 0 auto;
       vertical-align: middle;
    }
    .domo {
       width: 10%;
        margin-right: 5%;
        margin-left: 5%;
    }
    /************************************* 7b. Contact Us ******************************************/
    .contactus_intro {
        background-color: #ebebeb;
        padding: 5%;
    }
    .contactus_intro img {
        width: 30%;
        float: right;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    }
    .breadcrumb {
        color: #fff;
        list-style: none;
        padding: 5% 0 0;
        margin-top: 10%
    }
    .breadcrumb li {
        color: #fff;
        display: inline;
    }
    .breadcrumb li a {
        color: #fff;
        display: inline-block;
    }
    .breadcrumb li+li:before {
        padding: 8px;
        color: #fff;
        content: "/\00a0";   
    }
    .breadcrumb li a:hover {
        color: #00a04f;
    }
    .legal-left {
        float: left;
    }
    .legal-right {
        float: right;
    }
    .contactus_page_intro {
        padding-top: 180px;
        margin-bottom: 90%;
    }
    .contactus_page_intro-text {
        border-bottom: 1px solid #000;
    }
    .contactus_page_intro h2 {
        font-size: 3em;
        font-family: 'hk_groteskbold';
        margin-bottom: 5%;
    }
    .contactus_page_intro h3 {
        font-size: 2em;
        line-height: 2em;
    }
    .contactus_page_form {
        padding: %;
    }
    /************************************* 8b. Services ********************************************/
    .services_page {
        background: linear-gradient(0deg,rgba(0,0,0,0.3),rgba(0,0,0,0.3)), url('../images/services.jpeg') 0 0 no-repeat;
        background-size: cover;
        background-position: center;
        height: 600px;

    }
    .services_intro-text {
        color: #fff;
        font-family: 'spartan_mbblack';

        text-align: left;
        padding-top: 8%;
    }
    .services_intro-text h1 {
        font-size: 4em;
        line-height: 1em;
        padding: 0;
    }
    .services_intro-text h2 {
       line-height: 1em;
    }
    .services_desc_content {
       width: 100%;
       float: left;

       margin: 0 auto;
    }
    .services_desc_content p {
       width: 85%;
    }
    .services_desc_row {
       flex-wrap: wrap;
       display: flex;
       padding: 5% 0 7%;
    }
    .services_desc_expect {
       width: 80%;
       margin-left: 7%;    
    }
    .services_desc_expect h2 {

    }
    .services_desc_pic {
       display: 
    }
    .listleft, .listright {
       width: 100%;
       line-height: 2em;
    }
    .listleft li, .listright li {
       padding: 0 03%;
    }
    .listleft {
       float: left;
    }
    .listright {
       float: right;
    }
    /****************************************** 9b. Client ******************************************/
    .client-nav {
        background-color: #23256e;
        font-size: 0.80em;
        padding: 2.1%;
        position: fixed;
        z-index: 999;
        top: 0;
        width: 100%;
    }
    .client-logo {
        float:;
        width: 12%;
    }
    h2 {
        font-size: 1.35em;
    }
    h3 {
        font-size: 1.1em;
    }
    .client-nav_right {
        font-family: 'spartan_mbblack';
        float: right;
        margin-right: %;
        width: 30%; 
        padding: 0.75% 0 0 0;
    }
    .client-nav_right a {
        color: #fff;
        padding-left: 15%;
    }
    .client-nav_right a:hover {
       color: #00a04f;
       transition: width 0s ease, background .35s ease;
    }
    .sidebar-nav {
        background: #2e3192;
        width: 6%;
        float: left;
        position: fixed;
        top: 0px;
       height: 100vh;
    }
    .sidebar-nav_container {
       margin-top: 170%;
    }
    .sidebar-nav_icon {
        margin-left: 22%;
        padding-top: 10%;
        padding-bottom: 20%;
        width: 55%;
    }
    .sidebar-nav_icon:hover {
    /*    background-color: #119da4;*/
        transform: scale(1.5);
    }
    .client-portal-bed {
        flex: 75%;
        background-color: #f6f6f7;
        padding: 12% 5% 5% 11%;
    }
    .client-portal-products {
        background-color: #fff;
    }
    .client-portal_mtd {
        width: 32%;
    }
    .client-portal_hlr {
        width: 48%;
    }
    .client-portal_full {
       width: 40%;
    }
    .tooltip {
      position: relative;
      display: inline-block;
    }
    .tooltip .tooltiptext {
      visibility: hidden;
      width: 120px;
      background-color: black;
      color: #fff;
      text-align: center;
      border-radius: 6px;
      padding: 5px 0;
      position: absolute;
      z-index: 1;
    }
    .tooltip:hover .tooltiptext {
      visibility: visible;
    }
    /************************************ 10b. Our People/Staff ************************************/
    .ourpeople_page {
        background: linear-gradient(0deg,rgba(0,0,0,0.3),rgba(0,0,0,0.3)), url('../images/ourpeople2.jpeg') 0 0 no-repeat;
        background-size: cover;
        background-position: center;
        height: 600px;

    }
    .ourpeople_intro-text {
        color: #fff;
        font-family: 'spartan_mbblack';

        text-align: left;
        padding-top: 8%;
    }
    .ourpeople_intro-text h1 {
        font-size: 4em;
        line-height: 1em;
        padding: 0;
    }
    .ourpeople_intro-text h2 {
       line-height: 1em;
    }
    .ourpeople_desc_text {
       width: 100%;
       line-height: 2em;
       margin: 10% 0;
    }
    .ourpeople_photo_gallery {
    }
    .employee_photos {
       float: left;
       width: 25%;
       margin: 0 0 5%;
    }
    .employee_photos img {
       width: 100%;
       height: 250px;
    }
    .employee_portrait {
       width: 25%;

    }
    .employee_desc {
       text-align: center;
       width: 100%;
    }
    /*********************************** 11b. Product **********************************************/
    .product_page {
        background: linear-gradient(0deg,rgba(0,0,0,0.3),rgba(0,0,0,0.3)), url('../images/consultation.jpeg') 0 0 no-repeat;
        background-size: cover;
        background-position: center;
        height: 600px;

    }
    .product_intro-text {
        color: #fff;
        font-family: 'spartan_mbblack';

        text-align: left;
        padding-top: 8%;
    }
    .product_intro-text h1 {
        font-size: 4em;
        line-height: 1em;
        padding: 0;
    }
    .product_intro-text h2 {
       line-height: 1em;
    }
    .product_desc_text {
       width: 100%;
       line-height: 2em;
       margin: 10% 0 5%;
    }
    .product_desc_text h2, .product_desc_text h3 {
        width: 40%;
    }
    .product_desc_text p {
        width: 80%;
    }
    .product_desc_pic {
        float: right;
        width: 50%;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    }
    .listfull {
        width: 100%;
        line-height: 2em;
    }
    .services_desc_pic {
        width: 100%;
    }
    .services_desc_expect {
        float: left;
        
    }
    /************************************* 12b. Forms **********************************************/
    .contactus_intro_form [type=text], select, textarea {
        background-color: transparent;
        width: 100%;
        padding: 3% 0;
        border: none;
        border-bottom: 1px solid #000;
        resize: vertical;
        margin-bottom: 2%;
    }
    .contactus_intro_form button {
       font-family: 'spartan_mbblack';
       font-size: 1em;
       background-color: #00a04f;
       color: #fff;
       padding: 2% 0.5%;
       margin: 8px 0;
       border: none;
       cursor: pointer;
       width: 50%;
       opacity: 0.9;
       float: left;
    }
    textarea {
        background-color: transparent;
        width: 100%;
        padding: 3%;
        border: 1px solid #000;
        resize: vertical;
        margin-top: 2%;
    }
    label {
        font-family: 'spartan_mbbold';
    }
    .contactus-sign {
        display: none;
    }
    /***************************************** 14b. Footer *****************************************/
    footer {
       font-family: 'hk_grotesksemibold';
       background-color: #fff;
       padding: 5% 9% 2% 9%;
    }
    .footer-links_section {
       padding: 7% 0;
       box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    }
    .footerlogo {
       width: 50%;
       float: left;
    }
    .contact-address {
       width: 40%;
       float: right;
    }
    .footer-links {
       display: none;
    }
    .footer-links ul {
       display: inline-block;
    }
    .footer-links li {
       list-style: none;
       padding-bottom: 15%;
    }
    .signup_section {
       color: #fff;
       background-color: #2e3192;
       padding: 3% 0;
       box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    }
    .signup-section_content {
       vertical-align: middle;
    }
    .signupdesc {
       width: 50%;

    }
    .signupform {
       width: 100%;
       float: left;
    }
    .signupform input[type=text] {
       width: 30%;
       padding: 12px 20px;
       margin: 8px 0;
       box-sizing: border-box;
       border: none;
       border-bottom: 2px solid #fff;
       background-color: transparent;
       float: left;
       color: #fff;
       outline: none;
    }
    .signupform :focus, input:focus{
        outline: none;
    }
    #fname {
       color: #fff;    
    }
    .signupform button {
       font-family: 'spartan_mbblack';
       font-size: 1em;
       background-color: #fff;
       color: #2e3192;
       padding: 1.5% 0.5%;
       margin: 8px 0;
       border: none;
       cursor: pointer;
       width: 50%;
       opacity: 0.9;
       float: left;
    }
}
/******************************************* 414px ********************************************/
@media only screen and (max-width: 414px) {
    /**************************************** 6c. Index ********************************************/
    .clients, .hidden {
        display: none;
    }
    #mobileview, #mobile-search {
        visibility: visible;
    }
    .logo {
        width: 40%;
    }
    .nav-toggle {
      display: block;
      border-radius: 5px;
      background-color: transparent;
      float: right;
      height: 38px;
      width: 50px;
      cursor: pointer;
      padding: 20px 8px;
    }
    .nav-toggle span {
      position: relative;
      display: block;
      height: 2px;
      width: 100%;
      margin-top: 4px;
      background-color: #000;
      transition: all .25s;
    }
    section {
       height: 100vh;
    }
    .col-25 {
        -ms-flex: 100%; /* IE10 */
        flex: 100%;
    }
    .icon-scroll {
      width: 40px;
      height: 80px;
      margin-left: -20px;
      top: 80%;
      margin-top: -35px;
      box-shadow: inset 0 0 0 1px #fff;
      border-radius: 25px;
    }
    .hero-link {
        background-color: #2e3192;
        color: #fff;
        padding: 3% 6%;
    }
    .text-intro a {
        background-color: #2e3192;
        color: #fff;
        padding: 3% 12%;
        font-family: 'spartan_mbblack';
    }
    .container {
       padding: 0 5%;
    }
    .hero_intro {
        background: linear-gradient(0deg,rgba(0,0,0,0.3),rgba(0,0,0,0.3)),url('../images/hero.jpeg') 0 0 no-repeat;
        background-size: cover;
        background-position: center;
        height: 700px;
    }
    .hero_intro-text {
        color: #fff;
        font-family: 'spartan_mbblack';

        text-align: center;
        padding-top: 35%;
    }
    .hero_intro-text h1 {
        font-size: 3em;
        line-height: 1em;
        padding: 0;
    }
    .ourpeople_intro {
        background: url('../images/ourpeople.jpeg') 0 0 no-repeat;
        background-position: top;
    }
    .buildingteams_intro {
        background: url('../images/buildingteams.jpg') 0 0 no-repeat;
        background-position: top;
    }
    .joinourteam_intro {
        background: url('../images/joinourteam.jpg') 0 0 no-repeat;
        background-position: center;
    }
    .ourpeople_intro, .buildingteams_intro, .joinourteam_intro {
        background-size: cover;
        height: 600px;
        position: relative;
    }
    .text-intro {
        background-color: #fff;
        width: 90%;
        padding: 5%;
        position: absolute;
        top: 7%;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    }
    .text-intro p {
        margin-bottom: 10%;
    }
    .services_intro, .whowearebuild_intro {
        margin-top: 5%;
    }
    .services_intro {
        margin-bottom: 450%;
    }
    .services_boxes-offers {
        text-align: center;
        background-color: #fff;
        padding: 2%;
        float: left;
        width: 100%;
        height: 400px;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
        transition: transform .2s; 
    }
    .services_boxes-offers p {
        font-size: 0.9em;
    }
    .services_boxes-icons {
        width: 40%;
    }
    .whowearebuild_intro {
       margin-bottom: 5%;
    }
    .company-logos {
       width: 100%;

    }
    .company-logos_icons {
       width: 18%;
       margin: 0 auto;
       vertical-align: middle;
    }
    .domo {
       width: 10%;
        margin-right: 5%;
        margin-left: 5%;
    }
    /************************************* 7c. Contact Us ******************************************/
    .contactus_intro {
        background-color: #ebebeb;
        padding: 5%;
    }
    .contactus_intro img {
        width: 30%;
        float: right;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    }
    .breadcrumb {
        color: #fff;
        list-style: none;
        padding: 5% 0 0;
        margin-top: 30%
    }
    .breadcrumb li {
        color: #fff;
        display: inline;
    }
    .breadcrumb li a {
        color: #fff;
        display: inline-block;
    }
    .breadcrumb li+li:before {
        padding: 8px;
        color: #fff;
        content: "/\00a0";   
    }
    .breadcrumb li a:hover {
        color: #00a04f;
    }
    .legal-left {
        float: left;
    }
    .legal-right {
        float: right;
    }
    .contactus_page_intro {
        padding-top: 120px;
        margin-bottom: 200%;
    }
    .contactus_page_intro-text {
        border-bottom: 1px solid #000;
    }
    .contactus_page_intro h2 {
        font-size: 2em;
        font-family: 'hk_groteskbold';
        margin-bottom: 5%;
    }
    .contactus_page_intro h3 {
        font-size: 1em;
        line-height: 2em;
    }
    .contactus_page_form {
        padding: %;
    }
    .connect {
        font-family: 'spartan_mbblack';
        font-size: 1em;
        padding: 4% 8%;
        width: 100%;
    }
    /************************************* 8c. Services ********************************************/
    .services_page {
        background: linear-gradient(0deg,rgba(0,0,0,0.3),rgba(0,0,0,0.3)), url('../images/services.jpeg') 0 0 no-repeat;
        background-size: cover;
        background-position: center;
        height: 600px;

    }
    .services_intro-text {
        color: #fff;
        font-family: 'spartan_mbblack';

        text-align: left;
        padding-top: 5%;
    }
    .services_intro-text h1 {
        font-size: 2.5em;
        line-height: 1em;
        padding: 0;
    }
    .services_intro-text h2 {
       line-height: 1em;
    }
    .services_desc_content {
       width: 100%;
       float: left;
       margin-left: 7%;
    }
    .services_desc_content p {
       width: 85%;
    }
    .services_desc_row {
       flex-wrap: wrap;
       display: flex;
       padding: 5% 0 7%;
    }
    .services_desc_expect {
       width: 80%;
       margin-left: 7%;    
    }
    .services_desc_expect h2 {

    }
    .services_desc_pic {
       display: 
    }
    .listleft, .listright {
       width: 100%;
       line-height: 2em;
    }
    .listleft li, .listright li {
       padding: 0 03%;
    }
    .listleft {
       float: left;
    }
    .listright {
       float: right;
    }
    /****************************************** 9c. Client ******************************************/
    .client-nav {
        background-color: #23256e;
        font-size: 0.70em;
        padding: 2.1%;
        position: fixed;
        z-index: 999;
        top: 0;
        width: 100%;
    }
    .client-logo {
        margin-left: 2%;
        width: 20%;
    }
    h2 {
        font-size: 1.25em;
    }
    h3 {
        font-size: 1em;
    }
    .client-nav_right {
        font-family: 'spartan_mbblack';
        float: right;
        margin-left: 10%;
        width: 50%; 
        padding: 0.75% 0 0 0;
    }
    .client-nav_right a {
        color: #fff;
        padding-left: 15%;
    }
    .client-nav_right a:hover {
       color: #00a04f;
       transition: width 0s ease, background .35s ease;
    }
    .sidebar-nav {
        background: #2e3192;
        width: 12%;
        float: left;
        position: fixed;
        top: 0px;
       height: 100vh;
    }
    .sidebar-nav_container {
       margin-top: 160%;
    }
    .sidebar-nav_icon {
        margin-left: 18%;
        padding-top: 10%;
        padding-bottom: 20%;
        width: 65%;
    }
    .sidebar-nav_icon:hover {
    /*    background-color: #119da4;*/
        transform: scale(1.5);
    }
    .client-portal-bed {
        flex: 75%;
        background-color: #f6f6f7;
        padding: 12% 5% 5% 17%;
    }
    .client-portal-products {
        background-color: #fff;
    }
    .client-portal_mtd {
        width: 100%;
    }
    .client-portal_hlr {
        width: 100%;
    }
    .client-portal_full {
       width: 40%;
    }
    .tooltip {
      position: relative;
      display: inline-block;
    }
    .tooltip .tooltiptext {
      visibility: hidden;
      width: 120px;
      background-color: black;
      color: #fff;
      text-align: center;
      border-radius: 6px;
      padding: 5px 0;
      position: absolute;
      z-index: 1;
    }
    .tooltip:hover .tooltiptext {
      visibility: visible;
    }
    /************************************ 10c. Our People/Staff ************************************/
    .ourpeople_page {
        background: linear-gradient(0deg,rgba(0,0,0,0.3),rgba(0,0,0,0.3)), url('../images/ourpeople2.jpeg') 0 0 no-repeat;
        background-size: cover;
        background-position: center;
        height: 600px;

    }
    .ourpeople_intro-text {
        color: #fff;
        font-family: 'spartan_mbblack';

        text-align: left;
        padding-top: 8%;
    }
    .ourpeople_intro-text h1 {
        font-size: 2.5em;
        line-height: 1em;
        padding: 0;
    }
    .ourpeople_intro-text h2 {
       line-height: 1em;
    }
    .ourpeople_desc_text {
       width: 100%;
       line-height: 2em;
       margin: 10% 0;
    }
    .ourpeople_photo_gallery {
    }
    .employee_photos {
       float: left;
       width: 50%;
       margin: 0 0 5%;
    }
    .employee_photos img {
       width: 100%;
       height: 300px;
    }
    .employee_portrait {
       width: 25%;

    }
    .employee_desc {
       text-align: center;
       width: 100%;
    }
    /*********************************** 11c. Product **********************************************/
    .product_page {
        background: linear-gradient(0deg,rgba(0,0,0,0.3),rgba(0,0,0,0.3)), url('../images/consultation.jpeg') 0 0 no-repeat;
        background-size: cover;
        background-position: center;
        height: 600px;

    }
    .product_intro-text {
        color: #fff;
        font-family: 'spartan_mbblack';

        text-align: left;
        padding-top: 8%;
    }
    .product_intro-text h1 {
        font-size: 2.5em;
        line-height: 1em;
        padding: 0;
    }
    .product_intro-text h2 {
       line-height: 1em;
    }
    .product_desc_text {
       width: 95%;
       line-height: 2em;
       margin: 10% 0 5% 2%;
    }
    .product_desc_text h2, .product_desc_text h3 {
        width: 100%;
    }
    .product_desc_text p {
        width: 100%;
    }
    .product_desc_pic {
        float: right;
        width: 100%;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    }
    .listfull {
        width: 100%;
        line-height: 2em;
    }
    .services_desc_pic {
        width: 100%;
    }
    .services_desc_expect {
        float: left;
        
    }
    /************************************* 12c. Forms **********************************************/
    .contactus_intro_form [type=text], select, textarea {
        background-color: transparent;
        width: 100%;
        padding: 3% 0;
        border: none;
        border-bottom: 1px solid #000;
        resize: vertical;
        margin-bottom: 2%;
    }
    .contactus_intro_form button {
       font-family: 'spartan_mbblack';
       font-size: 1em;
       background-color: #00a04f;
       color: #fff;
       padding: 3% 0.5%;
       margin: 8px 0;
       border: none;
       cursor: pointer;
       width: 100%;
       opacity: 0.9;
       float: left;
    }
    textarea {
        background-color: transparent;
        width: 100%;
        padding: 3%;
        border: 1px solid #000;
        resize: vertical;
        margin-top: 2%;
    }
    label {
        font-family: 'spartan_mbbold';
    }
    .contactus-sign {
        display: none;
    }
    /***************************************** 14c. Footer *****************************************/
    footer {
       font-family: 'hk_grotesksemibold';
       background-color: #fff;
       padding: 15% 9% 12% 9%;
    }
    .footer-links_section {
       padding: 7% 0;
       box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    }
    .footerlogo {
       width: 60%;
      margin-left: 22%;
    }
    .contact-address {
       width: 100%;
       float: right;
    }
    .footer-links {
       display: none;
    }
    .footer-links ul {
       display: inline-block;
    }
    .footer-links li {
       list-style: none;
       padding-bottom: 15%;
    }
    .signup_section {
       color: #fff;
       background-color: #2e3192;
       padding: 5% 0;
       box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    }
    .signup-section_content {
       vertical-align: middle;
    }
    .signupdesc {
       width: 100%;

    }
    .signupform {
       width: 100%;
       float: left;
    }
    .signupform input[type=text] {
       width: 100%;
       padding: 12px 0px;
       margin: 8px 0;
       box-sizing: border-box;
       border: none;
       border-bottom: 2px solid #fff;
       background-color: transparent;
       float: left;
       color: #fff;
       outline: none;
    }
    .signupform :focus, input:focus{
        outline: none;
    }
    #fname {
       color: #fff;    
    }
    .signupform button {
       font-family: 'spartan_mbblack';
       font-size: 1em;
       background-color: #fff;
       color: #2e3192;
       padding: 4% 0.5%;
       margin: 8px 0;
       border: none;
       cursor: pointer;
       width: 100%;
       opacity: 0.9;
       float: left;
    }
}
/******************************************* 375px ********************************************/
@media only screen and (max-width: 375px) {
    /**************************************** 6d. Index ********************************************/
    .clients, .hidden {
        display: none;
    }
    #mobileview, #mobile-search {
        visibility: visible;
    }
    .logo {
        width: 40%;
    }
    .nav-toggle {
      display: block;
      border-radius: 5px;
      background-color: transparent;
      float: right;
      height: 38px;
      width: 50px;
      cursor: pointer;
      padding: 20px 8px;
    }
    .nav-toggle span {
      position: relative;
      display: block;
      height: 2px;
      width: 100%;
      margin-top: 4px;
      background-color: #000;
      transition: all .25s;
    }
    section {
       height: 100vh;
     
    }
    .col-25 {
        -ms-flex: 100%; /* IE10 */
        flex: 100%;
    }
    .icon-scroll {
      width: 40px;
      height: 80px;
      margin-left: -20px;
      top: 75%;
      margin-top: -35px;
      box-shadow: inset 0 0 0 1px #fff;
      border-radius: 25px;
    }
    .hero-link {
        background-color: #2e3192;
        color: #fff;
        padding: 3% 6%;
    }
    .text-intro a {
        background-color: #2e3192;
        color: #fff;
        padding: 3% 12%;
        font-family: 'spartan_mbblack';
    }
    .container {
       padding: 0 5%;
    }
    .hero_intro {
        background: linear-gradient(0deg,rgba(0,0,0,0.3),rgba(0,0,0,0.3)),url('../images/hero.jpeg') 0 0 no-repeat;
        background-size: cover;
        background-position: center;
        height: 600px;
    }
    .hero_intro-text {
        color: #fff;
        font-family: 'spartan_mbblack';

        text-align: center;
        padding-top: 35%;
    }
    .hero_intro-text h1 {
        font-size: 3em;
        line-height: 1em;
        padding: 0;
    }
    .ourpeople_intro {
        background: url('../images/ourpeople.jpeg') 0 0 no-repeat;
        background-position: top;
    }
    .buildingteams_intro {
        background: url('../images/buildingteams.jpg') 0 0 no-repeat;
        background-position: top;
    }
    .joinourteam_intro {
        background: url('../images/joinourteam.jpg') 0 0 no-repeat;
        background-position: center;
    }
    .ourpeople_intro, .buildingteams_intro, .joinourteam_intro {
        background-size: cover;
        height: 500px;
        position: relative;
    }
    .text-intro {
        font-size: 0.8em;
        background-color: #fff;
        width: 90%;
        padding: 7%;
        position: absolute;
        top: 7%;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    }
    .text-intro a {
        width: 100%;
        background-color: #2e3192;
        color: #fff;
        padding: 5% 32%;
        font-family: 'spartan_mbblack';
        
    }
    .text-intro p {
        margin-bottom: 10%;
    }
    .services_intro, .whowearebuild_intro {
        margin-top: 5%;
    }
    .services_intro {
        margin-bottom: 500%;
    }
    .services_boxes-offers {
        text-align: center;
        background-color: #fff;
        padding: 8%;
        float: left;
        width: 100%;
        height: 400px;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
        transition: transform .2s; 
    }
    .services_boxes-offers p {
        font-size: 0.9em;
    }
    .services_boxes-icons {
        width: 40%;
    }
    .whowearebuild_intro {
       margin-bottom: 5%;
    }
    .company-logos {
       width: 100%;

    }
    .company-logos_icons {
       width: 18%;
       margin: 0 auto;
       vertical-align: middle;
    }
    .domo {
       width: 10%;
        margin-right: 5%;
        margin-left: 5%;
    }
    /************************************* 7d. Contact Us ******************************************/
    .contactus_intro {
        background-color: #ebebeb;
        padding: 5%;
    }
    .contactus_intro img {
        width: 30%;
        float: right;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    }
    .breadcrumb {
        color: #fff;
        list-style: none;
        padding: 5% 0 0;
        margin-top: 30%
    }
    .breadcrumb li {
        color: #fff;
        display: inline;
    }
    .breadcrumb li a {
        color: #fff;
        display: inline-block;
    }
    .breadcrumb li+li:before {
        padding: 8px;
        color: #fff;
        content: "/\00a0";   
    }
    .breadcrumb li a:hover {
        color: #00a04f;
    }
    .legal-left {
        float: left;
    }
    .legal-right {
        float: right;
    }
    .contactus_page_intro {
        padding-top: 120px;
        margin-bottom: 230%;
    }
    .contactus_page_intro-text {
        border-bottom: 1px solid #000;
    }
    .contactus_page_intro h2 {
        font-size: 2em;
        font-family: 'hk_groteskbold';
        margin-bottom: 5%;
    }
    .contactus_page_intro h3 {
        font-size: 1em;
        line-height: 2em;
    }
    .contactus_page_form {
        padding: %;
    }
    /************************************* 8d. Services ********************************************/
    .services_page {
        background: linear-gradient(0deg,rgba(0,0,0,0.3),rgba(0,0,0,0.3)), url('../images/services.jpeg') 0 0 no-repeat;
        background-size: cover;
        background-position: center;
        height: 550px;

    }
    .services_intro-text {
        color: #fff;
        font-family: 'spartan_mbblack';

        text-align: left;
        padding-top: 5%;
    }
    .services_intro-text h1 {
        font-size: 2.5em;
        line-height: 1em;
        padding: 0;
    }
    .services_intro-text h2 {
       line-height: 1em;
    }
    .services_desc_content {
       width: 100%;
       float: left;
       margin-left: 7%;
    }
    .services_desc_content p {
       width: 85%;
    }
    .services_desc_row {
       flex-wrap: wrap;
       display: flex;
       padding: 5% 0 7%;
    }
    .services_desc_expect {
       width: 80%;
       margin-left: 7%;    
    }
    .services_desc_expect h2 {

    }
    .services_desc_pic {
       display: 
    }
    .listleft, .listright {
       width: 100%;
       line-height: 2em;
    }
    .listleft li, .listright li {
       padding: 0 03%;
    }
    .listleft {
       float: left;
    }
    .listright {
       float: right;
    }
    /****************************************** 9d. Client ******************************************/
    .client-nav {
        background-color: #23256e;
        font-size: 0.67em;
        padding: 2.1%;
        position: fixed;
        z-index: 999;
        top: 0;
        width: 100%;
    }
    .client-logo {
        margin-left: 2%;
        width: 20%;
    }
    h2 {
        font-size: 1.2em;
    }
    h3 {
        font-size: 0.9em;
    }
    .client-nav_right {
        font-family: 'spartan_mbblack';
        float: right;
        margin-left: 10%;
        width: 60%; 
        padding: 0.75% 0 0 0;
    }
    .client-nav_right a {
        color: #fff;
        padding-left: 15%;
    }
    .client-nav_right a:hover {
       color: #00a04f;
       transition: width 0s ease, background .35s ease;
    }
    .sidebar-nav {
        background: #2e3192;
        width: 12%;
        float: left;
        position: fixed;
        top: 0px;
       height: 100vh;
    }
    .sidebar-nav_container {
       margin-top: 160%;
    }
    .sidebar-nav_icon {
        margin-left: 18%;
        padding-top: 10%;
        padding-bottom: 20%;
        width: 65%;
    }
    .sidebar-nav_icon:hover {
    /*    background-color: #119da4;*/
        transform: scale(1.5);
    }
    .client-portal-bed {
        flex: 75%;
        background-color: #f6f6f7;
        padding: 15% 5% 5% 17%;
    }
    .client-portal-products {
        background-color: #fff;
    }
    .client-portal_mtd {
        width: 100%;
    }
    .client-portal_hlr {
        width: 100%;
    }
    .client-portal_full {
       width: 40%;
    }
    .tooltip {
      position: relative;
      display: inline-block;
    }
    .tooltip .tooltiptext {
      visibility: hidden;
      width: 120px;
      background-color: black;
      color: #fff;
      text-align: center;
      border-radius: 6px;
      padding: 5px 0;
      position: absolute;
      z-index: 1;
    }
    .tooltip:hover .tooltiptext {
      visibility: visible;
    }
    /************************************ 10d. Our People/Staff ************************************/
    .ourpeople_page {
        background: linear-gradient(0deg,rgba(0,0,0,0.3),rgba(0,0,0,0.3)), url('../images/ourpeople2.jpeg') 0 0 no-repeat;
        background-size: cover;
        background-position: center;
        height: 550px;

    }
    .ourpeople_intro-text {
        color: #fff;
        font-family: 'spartan_mbblack';

        text-align: left;
        padding-top: 8%;
    }
    .ourpeople_intro-text h1 {
        font-size: 2.5em;
        line-height: 1em;
        padding: 0;
    }
    .ourpeople_intro-text h2 {
       line-height: 1em;
    }
    .ourpeople_desc_text {
       width: 100%;
       line-height: 2em;
       margin: 10% 0;
    }
    .ourpeople_desc_text p {
        width: 80%;
    }
    .ourpeople_photo_gallery {
    }
    .employee_photos {
       float: left;
       width: 50%;
       margin: 0 0 5%;
    }
    .employee_photos img {
       width: 100%;
       height: 275px;
    }
    .employee_portrait {
       width: 25%;

    }
    .employee_desc {
       text-align: center;
       width: 100%;
    }
    /*********************************** 11d. Product **********************************************/
    .product_page {
        background: linear-gradient(0deg,rgba(0,0,0,0.3),rgba(0,0,0,0.3)), url('../images/consultation.jpeg') 0 0 no-repeat;
        background-size: cover;
        background-position: center;
        height: 550px;

    }
    .product_intro-text {
        color: #fff;
        font-family: 'spartan_mbblack';

        text-align: left;
        padding-top: 8%;
    }
    .product_intro-text h1 {
        font-size: 2.5em;
        line-height: 1em;
        padding: 0;
    }
    .product_intro-text h2 {
       line-height: 1em;
    }
    .product_desc_text {
       width: 95%;
       line-height: 2em;
       margin: 10% 0 5% 2%;
    }
    .product_desc_text h2, .product_desc_text h3 {
        width: 100%;
    }
    .product_desc_text p {
        width: 100%;
    }
    .product_desc_pic {
        float: right;
        width: 100%;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    }
    .listfull {
        width: 100%;
        line-height: 2em;
    }
    .services_desc_pic {
        width: 100%;
    }
    .services_desc_expect {
        float: left;
        
    }
    /************************************* 12d. Forms **********************************************/
    .contactus_intro_form [type=text], select, textarea {
        background-color: transparent;
        width: 100%;
        padding: 3% 0;
        border: none;
        border-bottom: 1px solid #000;
        resize: vertical;
        margin-bottom: 2%;
    }
    .contactus_intro_form button {
       font-family: 'spartan_mbblack';
       font-size: 1em;
       background-color: #00a04f;
       color: #fff;
       padding: 3% 0.5%;
       margin: 8px 0;
       border: none;
       cursor: pointer;
       width: 100%;
       opacity: 0.9;
       float: left;
    }
    textarea {
        background-color: transparent;
        width: 100%;
        padding: 3%;
        border: 1px solid #000;
        resize: vertical;
        margin-top: 2%;
    }
    label {
        font-family: 'spartan_mbbold';
    }
    .contactus-sign {
        display: none;
    }
    /***************************************** 14d. Footer *****************************************/
    footer {
       font-family: 'hk_grotesksemibold';
       background-color: #fff;
       padding: 20% 9% 15% 9%;
    }
    .footer-links_section {
       padding: 7% 0;
       box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    }
    .footerlogo {
       width: 60%;
      margin-left: 22%;
    }
    .contact-address {
       width: 100%;
       float: right;
    }
    .footer-links {
       display: none;
    }
    .footer-links ul {
       display: inline-block;
    }
    .footer-links li {
       list-style: none;
       padding-bottom: 15%;
    }
    .signup_section {
       color: #fff;
       background-color: #2e3192;
       padding: 5% 0;
       box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    }
    .signup-section_content {
       vertical-align: middle;
    }
    .signupdesc {
       width: 100%;

    }
    .signupform {
       width: 100%;
       float: left;
    }
    .signupform input[type=text] {
       width: 100%;
       padding: 12px 0px;
       margin: 8px 0;
       box-sizing: border-box;
       border: none;
       border-bottom: 2px solid #fff;
       background-color: transparent;
       float: left;
       color: #fff;
       outline: none;
    }
    .signupform :focus, input:focus{
        outline: none;
    }
    #fname {
       color: #fff;    
    }
    .signupform button {
       font-family: 'spartan_mbblack';
       font-size: 1em;
       background-color: #fff;
       color: #2e3192;
       padding: 4% 0.5%;
       margin: 8px 0;
       border: none;
       cursor: pointer;
       width: 100%;
       opacity: 0.9;
       float: left;
    }
}
/******************************************* 360px ********************************************/
@media only screen and (max-width: 360px) {
    /**************************************** 6e. Index ********************************************/
    .clients, .hidden {
        display: none;
    }
    #mobileview, #mobile-search {
        visibility: visible;
    }
    .logo {
        width: 40%;
    }
    .nav-toggle {
      display: block;
      border-radius: 5px;
      background-color: transparent;
      float: right;
      height: 38px;
      width: 50px;
      cursor: pointer;
      padding: 20px 8px;
    }
    .nav-toggle span {
      position: relative;
      display: block;
      height: 2px;
      width: 100%;
      margin-top: 4px;
      background-color: #000;
      transition: all .25s;
    }
    section {
       height: 100vh;
     
    }
    .col-25 {
        -ms-flex: 100%; /* IE10 */
        flex: 100%;
    }
    .icon-scroll {
      width: 40px;
      height: 80px;
      margin-left: -20px;
      top: 80%;
      margin-top: -35px;
      box-shadow: inset 0 0 0 1px #fff;
      border-radius: 25px;
    }
    .hero-link {
        background-color: #2e3192;
        color: #fff;
        padding: 3% 6%;
    }
    .text-intro a {
        background-color: #2e3192;
        color: #fff;
        padding: 3% 12%;
        font-family: 'spartan_mbblack';
    }
    .container {
       padding: 0 5%;
    }
    .hero_intro {
        background: linear-gradient(0deg,rgba(0,0,0,0.3),rgba(0,0,0,0.3)),url('../images/hero.jpeg') 0 0 no-repeat;
        background-size: cover;
        background-position: center;
        height: 600px;
    }
    .hero_intro-text {
        color: #fff;
        font-family: 'spartan_mbblack';

        text-align: center;
        padding-top: 40%;
    }
    .hero_intro-text h1 {
        font-size: 3em;
        line-height: 1em;
        padding: 0;
    }
    .ourpeople_intro {
        background: url('../images/ourpeople.jpeg') 0 0 no-repeat;
        background-position: top;
    }
    .buildingteams_intro {
        background: url('../images/buildingteams.jpg') 0 0 no-repeat;
        background-position: top;
    }
    .joinourteam_intro {
        background: url('../images/joinourteam.jpg') 0 0 no-repeat;
        background-position: center;
    }
    .ourpeople_intro, .buildingteams_intro, .joinourteam_intro {
        background-size: cover;
        height: 500px;
        position: relative;
    }
    .text-intro {
        font-size: 0.8em;
        background-color: #fff;
        width: 90%;
        padding: 7%;
        position: absolute;
        top: 7%;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    }
    .text-intro a {
        width: 100%;
        background-color: #2e3192;
        color: #fff;
        padding: 5% 32%;
        font-family: 'spartan_mbblack';
        
    }
    .text-intro p {
        margin-bottom: 10%;
    }
    .services_intro, .whowearebuild_intro {
        margin-top: 5%;
    }
    .services_intro {
        margin-bottom: 550%;
    }
    .services_boxes-offers {
        text-align: center;
        background-color: #fff;
        padding: 8%;
        float: left;
        width: 100%;
        height: 400px;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
        transition: transform .2s; 
    }
    .services_boxes-offers p {
        font-size: 0.9em;
    }
    .services_boxes-icons {
        width: 40%;
    }
    .whowearebuild_intro {
       margin-bottom: 5%;
    }
    .company-logos {
       width: 100%;

    }
    .company-logos_icons {
       width: 18%;
       margin: 0 auto;
       vertical-align: middle;
    }
    .domo {
       width: 10%;
        margin-right: 5%;
        margin-left: 5%;
    }
    /************************************* 7e. Contact Us ******************************************/
    .contactus_intro {
        background-color: #ebebeb;
        padding: 5%;
    }
    .contactus_intro img {
        width: 30%;
        float: right;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    }
    .breadcrumb {
        color: #fff;
        list-style: none;
        padding: 5% 0 0;
        margin-top: 35%
    }
    .breadcrumb li {
        color: #fff;
        display: inline;
    }
    .breadcrumb li a {
        color: #fff;
        display: inline-block;
    }
    .breadcrumb li+li:before {
        padding: 4px;
        color: #fff;
        content: "/\00a0";   
    }
    .breadcrumb li a:hover {
        color: #00a04f;
    }
    .legal-left {
        float: left;
    }
    .legal-right {
        float: right;
    }
    .contactus_page_intro {
        padding-top: 120px;
        margin-bottom: 230%;
    }
    .contactus_page_intro-text {
        border-bottom: 1px solid #000;
    }
    .contactus_page_intro h2 {
        font-size: 2em;
        font-family: 'hk_groteskbold';
        margin-bottom: 5%;
    }
    .contactus_page_intro h3 {
        font-size: 1em;
        line-height: 2em;
    }
    .contactus_page_form {
        padding: %;
    }
    .connect {
        font-family: 'spartan_mbblack';
        font-size: 0.9em;
        padding: 4% 8%;
        width: 100%;
    }
    /************************************* 8e. Services ********************************************/
    .services_page {
        background: linear-gradient(0deg,rgba(0,0,0,0.3),rgba(0,0,0,0.3)), url('../images/services.jpeg') 0 0 no-repeat;
        background-size: cover;
        background-position: center;
        height: 525px;

    }
    .services_intro-text {
        color: #fff;
        font-family: 'spartan_mbblack';

        text-align: left;
        padding-top: 5%;
    }
    .services_intro-text h1 {
        font-size: 2.5em;
        line-height: 1em;
        padding: 0;
    }
    .services_intro-text h2 {
       line-height: 1em;
    }
    .services_desc_content {
       width: 100%;
       float: left;
       margin-left: 7%;
    }
    .services_desc_content p {
       width: 85%;
    }
    .services_desc_row {
       flex-wrap: wrap;
       display: flex;
       padding: 5% 0 7%;
    }
    .services_desc_expect {
       width: 80%;
       margin-left: 7%;    
    }
    .services_desc_expect h2 {

    }
    .services_desc_pic {
       display: 
    }
    .listleft, .listright {
       width: 100%;
       line-height: 1.5em;
    }
    .listleft li, .listright li {
       padding: 0 03%;
    }
    .listleft {
       float: left;
    }
    .listright {
       float: right;
    }
    /****************************************** 9e. Client ******************************************/
    .client-nav {
        background-color: #23256e;
        font-size: 0.68em;
        padding: 2.1%;
        position: fixed;
        z-index: 999;
        top: 0;
        width: 100%;
    }
    .client-logo {
        margin-left: 2%;
        width: 22%;
    }
    h2 {
        font-size: 1.1em;
    }
    h3 {
        font-size: 0.8em;
    }
    .client-nav_right {
        font-family: 'spartan_mbblack';
        float: right;
        margin-left: 10%;
        width: 60%; 
        padding: 0.75% 0 0 0;
    }
    .client-nav_right a {
        color: #fff;
        padding-left: 15%;
    }
    .client-nav_right a:hover {
       color: #00a04f;
       transition: width 0s ease, background .35s ease;
    }
    .sidebar-nav {
        background: #2e3192;
        width: 12%;
        float: left;
        position: fixed;
        top: 0px;
       height: 100vh;
    }
    .sidebar-nav_container {
       margin-top: 160%;
    }
    .sidebar-nav_icon {
        margin-left: 18%;
        padding-top: 10%;
        padding-bottom: 20%;
        width: 65%;
    }
    .sidebar-nav_icon:hover {
    /*    background-color: #119da4;*/
        transform: scale(1.5);
    }
    .client-portal-bed {
        flex: 75%;
        background-color: #f6f6f7;
        padding: 15% 5% 5% 17%;
    }
    .client-portal-products {
        background-color: #fff;
    }
    .client-portal_mtd {
        width: 100%;
    }
    .client-portal_hlr {
        width: 100%;
    }
    .client-portal_full {
       width: 40%;
    }
    .tooltip {
      position: relative;
      display: inline-block;
    }
    .tooltip .tooltiptext {
      visibility: hidden;
      width: 120px;
      background-color: black;
      color: #fff;
      text-align: center;
      border-radius: 6px;
      padding: 5px 0;
      position: absolute;
      z-index: 1;
    }
    .tooltip:hover .tooltiptext {
      visibility: visible;
    }
    /************************************ 10e. Our People/Staff ************************************/
    .ourpeople_page {
        background: linear-gradient(0deg,rgba(0,0,0,0.3),rgba(0,0,0,0.3)), url('../images/ourpeople2.jpeg') 0 0 no-repeat;
        background-size: cover;
        background-position: center;
        height: 525px;

    }
    .ourpeople_intro-text {
        color: #fff;
        font-family: 'spartan_mbblack';

        text-align: left;
        padding-top: 8%;
    }
    .ourpeople_intro-text h1 {
        font-size: 2.5em;
        line-height: 1em;
        padding: 0;
    }
    .ourpeople_intro-text h2 {
       line-height: 1em;
    }
    .ourpeople_desc_text {
       width: 100%;
       line-height: 2em;
       margin: 10% 0;
    }
    .ourpeople_desc_text p {
        width: 80%;
    }
    .ourpeople_photo_gallery {
    }
    .employee_photos {
       float: left;
       width: 50%;
       margin: 0 0 5%;
    }
    .employee_photos img {
       width: 100%;
       height: 250px;
    }
    .employee_portrait {
       width: 25%;

    }
    .employee_desc {
       text-align: center;
       width: 100%;
    }
    /*********************************** 11e. Product **********************************************/
    .product_page {
        background: linear-gradient(0deg,rgba(0,0,0,0.3),rgba(0,0,0,0.3)), url('../images/consultation.jpeg') 0 0 no-repeat;
        background-size: cover;
        background-position: center;
        height: 525px;

    }
    .product_intro-text {
        color: #fff;
        font-family: 'spartan_mbblack';

        text-align: left;
        padding-top: 8%;
    }
    .product_intro-text h1 {
        font-size: 2.5em;
        line-height: 1em;
        padding: 0;
    }
    .product_intro-text h2 {
       line-height: 1em;
    }
    .product_desc_text {
       width: 95%;
       line-height: 2em;
       margin: 10% 0 5% 2%;
    }
    .product_desc_text h2, .product_desc_text h3 {
        width: 100%;
    }
    .product_desc_text p {
        width: 100%;
    }
    .product_desc_pic {
        float: right;
        width: 100%;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    }
    .listfull {
        width: 100%;
        line-height: 2em;
    }
    .services_desc_pic {
        width: 100%;
    }
    .services_desc_expect {
        float: left;
        
    }
    /************************************* 12e. Forms **********************************************/
    .contactus_intro_form [type=text], select, textarea {
        background-color: transparent;
        width: 100%;
        padding: 3% 0;
        border: none;
        border-bottom: 1px solid #000;
        resize: vertical;
        margin-bottom: 2%;
    }
    .contactus_intro_form button {
       font-family: 'spartan_mbblack';
       font-size: 1em;
       background-color: #00a04f;
       color: #fff;
       padding: 3% 0.5%;
       margin: 8px 0;
       border: none;
       cursor: pointer;
       width: 100%;
       opacity: 0.9;
       float: left;
    }
    textarea {
        background-color: transparent;
        width: 100%;
        padding: 3%;
        border: 1px solid #000;
        resize: vertical;
        margin-top: 2%;
    }
    label {
        font-family: 'spartan_mbbold';
    }
    .contactus-sign {
        display: none;
    }
    /***************************************** 14e. Footer *****************************************/
    footer {
       font-family: 'hk_grotesksemibold';
       background-color: #fff;
       padding: 20% 9% 15% 9%;
    }
    .footer-links_section {
       padding: 7% 0;
       box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    }
    .footerlogo {
       width: 60%;
      margin-left: 22%;
    }
    .contact-address {
       width: 100%;
       float: right;
    }
    .footer-links {
       display: none;
    }
    .footer-links ul {
       display: inline-block;
    }
    .footer-links li {
       list-style: none;
       padding-bottom: 15%;
    }
    .signup_section {
       color: #fff;
       background-color: #2e3192;
       padding: 5% 0;
       box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    }
    .signup-section_content {
       vertical-align: middle;
    }
    .signupdesc {
       width: 100%;

    }
    .signupform {
       width: 100%;
       float: left;
    }
    .signupform input[type=text] {
       width: 100%;
       padding: 12px 0px;
       margin: 8px 0;
       box-sizing: border-box;
       border: none;
       border-bottom: 2px solid #fff;
       background-color: transparent;
       float: left;
       color: #fff;
       outline: none;
    }
    .signupform :focus, input:focus{
        outline: none;
    }
    #fname {
       color: #fff;    
    }
    .signupform button {
       font-family: 'spartan_mbblack';
       font-size: 1em;
       background-color: #fff;
       color: #2e3192;
       padding: 4% 0.5%;
       margin: 8px 0;
       border: none;
       cursor: pointer;
       width: 100%;
       opacity: 0.9;
       float: left;
    }
}
/******************************************* 320px ********************************************/
@media only screen and (max-width: 320px) {
    /**************************************** 6f. Index ********************************************/
    .clients, .hidden {
        display: none;
    }
    #mobileview, #mobile-search {
        visibility: visible;
    }
    .logo {
        width: 40%;
    }
    .nav-toggle {
      display: block;
      border-radius: 5px;
      background-color: transparent;
      float: right;
      height: 38px;
      width: 50px;
      cursor: pointer;
      padding: 20px 8px;
    }
    .nav-toggle span {
      position: relative;
      display: block;
      height: 2px;
      width: 100%;
      margin-top: 4px;
      background-color: #000;
      transition: all .25s;
    }
    section {
       height: 100vh;
     
    }
    .col-25 {
        -ms-flex: 100%; /* IE10 */
        flex: 100%;
    }
    .icon-scroll {
      width: 40px;
      height: 80px;
      margin-left: -20px;
      top: 85%;
      margin-top: -35px;
      box-shadow: inset 0 0 0 1px #fff;
      border-radius: 25px;
    }
    .hero-link {
        background-color: #2e3192;
        color: #fff;
        padding: 3% 6%;
    }
    .text-intro a {
        background-color: #2e3192;
        color: #fff;
        padding: 3% 12%;
        font-family: 'spartan_mbblack';
    }
    .container {
       padding: 0 5%;
    }
    .hero_intro {
        background: linear-gradient(0deg,rgba(0,0,0,0.3),rgba(0,0,0,0.3)),url('../images/hero.jpeg') 0 0 no-repeat;
        background-size: cover;
        background-position: center;
        height: 575px;
    }
    .hero_intro-text {
        color: #fff;
        font-family: 'spartan_mbblack';

        text-align: center;
        padding-top: 40%;
    }
    .hero_intro-text h1 {
        font-size: 2.75em;
        line-height: 1em;
        padding: 0;
    }
    .ourpeople_intro {
        background: url('../images/ourpeople.jpeg') 0 0 no-repeat;
        background-position: top;
    }
    .buildingteams_intro {
        background: url('../images/buildingteams.jpg') 0 0 no-repeat;
        background-position: top;
    }
    .joinourteam_intro {
        background: url('../images/joinourteam.jpg') 0 0 no-repeat;
        background-position: center;
    }
    .ourpeople_intro, .buildingteams_intro, .joinourteam_intro {
        background-size: cover;
        height: 500px;
        position: relative;
    }
    .text-intro {
        font-size: 0.7em;
        background-color: #fff;
        width: 90%;
        padding: 7%;
        position: absolute;
        top: 7%;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    }
    .text-intro a {
        width: 100%;
        background-color: #2e3192;
        color: #fff;
        padding: 5% 29%;
        font-family: 'spartan_mbblack';
        
    }
    .text-intro p {
        margin-bottom: 10%;
    }
    .services_intro, .whowearebuild_intro {
        margin-top: 5%;
    }
    .services_intro {
        margin-bottom: 620%;
    }
    .services_boxes-offers {
        text-align: center;
        background-color: #fff;
        padding: 8%;
        float: left;
        width: 100%;
        height: 400px;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
        transition: transform .2s; 
    }
    .services_boxes-offers p {
        font-size: 0.9em;
    }
    .services_boxes-icons {
        width: 40%;
    }
    .whowearebuild_intro {
       margin-bottom: 5%;
    }
    .company-logos {
       width: 100%;

    }
    .company-logos_icons {
       width: 18%;
       margin: 0 auto;
       vertical-align: middle;
    }
    .domo {
       width: 10%;
        margin-right: 5%;
        margin-left: 5%;
    }
    /************************************* 7f. Contact Us ******************************************/
    .contactus_intro {
        background-color: #ebebeb;
        padding: 5%;
    }
    .contactus_intro img {
        width: 30%;
        float: right;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    }
    .breadcrumb {
        font-size: 1em;
        color: #fff;
        list-style: none;
        padding: 5% 0 0;
        margin-top: 35%
    }
    .breadcrumb li {
        color: #fff;
        display: inline;
    }
    .breadcrumb li a {
        color: #fff;
        display: inline-block;
    }
    .breadcrumb li+li:before {
        padding: 2px;
        color: #fff;
        content: "/\00a0";   
    }
    .breadcrumb li a:hover {
        color: #00a04f;
    }
    .legal-left {
        float: left;
    }
    .legal-right {
        float: right;
    }
    .contactus_page_intro {
        padding-top: 120px;
        margin-bottom: 240%;
    }
    .contactus_page_intro-text {
        border-bottom: 1px solid #000;
    }
    .contactus_page_intro h2 {
        font-size: 1.5em;
        font-family: 'hk_groteskbold';
        margin-bottom: 5%;
    }
    .contactus_page_intro h3 {
        font-size: 1em;
        line-height: 2em;
    }
    .contactus_page_form {
        padding: %;
    }
    /************************************* 8f. Services ********************************************/
    .services_page {
        background: linear-gradient(0deg,rgba(0,0,0,0.3),rgba(0,0,0,0.3)), url('../images/services.jpeg') 0 0 no-repeat;
        background-size: cover;
        background-position: center;
        height: 525px;

    }
    .services_intro-text {
        color: #fff;
        font-family: 'spartan_mbblack';

        text-align: left;
        padding-top: 5%;
    }
    .services_intro-text h1 {
        font-size: 2.25em;
        line-height: 1.1em;
        padding: 0;
    }
    .services_intro-text h2 {
       line-height: 1em;
    }
    .services_desc_content {
       width: 100%;
       float: left;
       margin-left: 7%;
    }
    .services_desc_content p {
       width: 85%;
    }
    .services_desc_row {
       flex-wrap: wrap;
       display: flex;
       padding: 5% 0 7%;
    }
    .services_desc_expect {
       width: 80%;
       margin-left: 7%;    
    }
    .services_desc_expect h2 {

    }
    .services_desc_pic {
       display: 
    }
    .listleft, .listright {
       width: 100%;
       line-height: 1.5em;
    }
    .listleft li, .listright li {
       padding: 0 03%;
    }
    .listleft {
       float: left;
    }
    .listright {
       float: right;
    }
    /****************************************** 9f. Client ******************************************/
    .client-nav {
        background-color: #23256e;
        font-size: 0.62em;
        padding: 2.1%;
        position: fixed;
        z-index: 999;
        top: 0;
        width: 100%;
    }
    .client-logo {
        margin-left: 2%;
        width: 20%;
    }
    h2 {
        font-size: 1.1em;
    }
    h3 {
        font-size: 0.8em;
    }
    .client-nav_right {
        font-family: 'spartan_mbblack';
        float: right;
        margin-left: 10%;
        width: 60%; 
        padding: 0.75% 0 0 0;
    }
    .client-nav_right a {
        color: #fff;
        padding-left: 15%;
    }
    .client-nav_right a:hover {
       color: #00a04f;
       transition: width 0s ease, background .35s ease;
    }
    .sidebar-nav {
        background: #2e3192;
        width: 12%;
        float: left;
        position: fixed;
        top: 0px;
       height: 100vh;
    }
    .sidebar-nav_container {
       margin-top: 160%;
    }
    .sidebar-nav_icon {
        margin-left: 18%;
        padding-top: 10%;
        padding-bottom: 20%;
        width: 65%;
    }
    .sidebar-nav_icon:hover {
    /*    background-color: #119da4;*/
        transform: scale(1.5);
    }
    .client-portal-bed {
        flex: 75%;
        background-color: #f6f6f7;
        padding: 15% 5% 5% 17%;
    }
    .client-portal-products {
        background-color: #fff;
    }
    .client-portal_mtd {
        width: 100%;
    }
    .client-portal_hlr {
        width: 100%;
    }
    .client-portal_full {
       width: 40%;
    }
    .tooltip {
      position: relative;
      display: inline-block;
    }
    .tooltip .tooltiptext {
      visibility: hidden;
      width: 120px;
      background-color: black;
      color: #fff;
      text-align: center;
      border-radius: 6px;
      padding: 5px 0;
      position: absolute;
      z-index: 1;
    }
    .tooltip:hover .tooltiptext {
      visibility: visible;
    }
    /************************************ 10f. Our People/Staff ************************************/
    .ourpeople_page {
        background: linear-gradient(0deg,rgba(0,0,0,0.3),rgba(0,0,0,0.3)), url('../images/ourpeople2.jpeg') 0 0 no-repeat;
        background-size: cover;
        background-position: center;
        height: 525px;

    }
    .ourpeople_intro-text {
        color: #fff;
        font-family: 'spartan_mbblack';

        text-align: left;
        padding-top: 8%;
    }
    .ourpeople_intro-text h1 {
        font-size: 2.25em;
        line-height: 1.1em;
        padding: 0;
    }
    .ourpeople_intro-text h2 {
       line-height: 0.75em;
    }
    .ourpeople_desc_text {
       width: 100%;
       line-height: 1.75em;
       margin: 10% 0;
    }
    .ourpeople_desc_text p {
        width: 80%;
    }
    .ourpeople_photo_gallery {
    }
    .employee_photos {
       float: left;
       width: 50%;
       margin: 0 0 5%;
    }
    .employee_photos img {
       width: 100%;
       height: 225px;
    }
    .employee_portrait {
       width: 25%;

    }
    .employee_desc {
       text-align: center;
       width: 100%;
    }
    /*********************************** 11f. Product **********************************************/
    .product_page {
        background: linear-gradient(0deg,rgba(0,0,0,0.3),rgba(0,0,0,0.3)), url('../images/consultation.jpeg') 0 0 no-repeat;
        background-size: cover;
        background-position: center;
        height: 525px;

    }
    .product_intro-text {
        color: #fff;
        font-family: 'spartan_mbblack';

        text-align: left;
        padding-top: 8%;
    }
    .product_intro-text h1 {
        font-size: 2.5em;
        line-height: 1em;
        padding: 0;
    }
    .product_intro-text h2 {
       line-height: 1em;
    }
    .product_desc_text {
       width: 95%;
       line-height: 2em;
       margin: 10% 0 5% 2%;
    }
    .product_desc_text h2, .product_desc_text h3 {
        width: 100%;
    }
    .product_desc_text p {
        width: 100%;
    }
    .product_desc_pic {
        float: right;
        width: 100%;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    }
    .listfull {
        width: 100%;
        line-height: 2em;
    }
    .services_desc_pic {
        width: 100%;
    }
    .services_desc_expect {
        float: left;
        
    }
    /************************************* 12f. Forms **********************************************/
    .contactus_intro_form [type=text], select, textarea {
        background-color: transparent;
        width: 100%;
        padding: 3% 0;
        border: none;
        border-bottom: 1px solid #000;
        resize: vertical;
        margin-bottom: 2%;
    }
    .contactus_intro_form button {
       font-family: 'spartan_mbblack';
       font-size: 1em;
       background-color: #00a04f;
       color: #fff;
       padding: 3% 0.5%;
       margin: 8px 0;
       border: none;
       cursor: pointer;
       width: 100%;
       opacity: 0.9;
       float: left;
    }
    textarea {
        background-color: transparent;
        width: 100%;
        padding: 3%;
        border: 1px solid #000;
        resize: vertical;
        margin-top: 2%;
    }
    label {
        font-family: 'spartan_mbbold';
    }
    .contactus-sign {
        display: none;
    }
    /***************************************** 14f. Footer *****************************************/
    footer {
       font-family: 'hk_grotesksemibold';
       background-color: #fff;
       padding: 20% 9% 15% 9%;
    }
    .footer-links_section {
       padding: 7% 0;
       box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    }
    .footerlogo {
       width: 60%;
      margin-left: 22%;
    }
    .contact-address {
       width: 100%;
       float: right;
    }
    .footer-links {
       display: none;
    }
    .footer-links ul {
       display: inline-block;
    }
    .footer-links li {
       list-style: none;
       padding-bottom: 15%;
    }
    .signup_section {
       color: #fff;
       background-color: #2e3192;
       padding: 5% 0;
       box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    }
    .signup-section_content {
       vertical-align: middle;
    }
    .signupdesc {
       width: 100%;

    }
    .signupform {
       width: 100%;
       float: left;
    }
    .signupform input[type=text] {
       width: 100%;
       padding: 12px 0px;
       margin: 8px 0;
       box-sizing: border-box;
       border: none;
       border-bottom: 2px solid #fff;
       background-color: transparent;
       float: left;
       color: #fff;
       outline: none;
    }
    .signupform :focus, input:focus{
        outline: none;
    }
    #fname {
       color: #fff;    
    }
    .signupform button {
       font-family: 'spartan_mbblack';
       font-size: 1em;
       background-color: #fff;
       color: #2e3192;
       padding: 4% 0.5%;
       margin: 8px 0;
       border: none;
       cursor: pointer;
       width: 100%;
       opacity: 0.9;
       float: left;
    }
}