html,body,div,span,applet,object,iframe,a,abbr,acronym,address,big,cite,code,del,dfn,em,font,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,dl,dt,dd,ol,ul,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,label,legend,p,blockquote,table,caption,tbody,tfoot,thead,tr,th,td{margin:0;padding:0;border:0;outline:0;font-weight:inherit;font-style:inherit;font-size:100%;font-family:inherit;vertical-align:baseline;}body{line-height:1;color:black;background:white;}:focus{outline:0;}table{border-collapse:collapse;border-spacing:0;}caption,th,td{text-align:left;font-weight:normal;}fieldset,img{border:0;}address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal;}ol,ul{list-style:none;}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal;}blockquote:before,blockquote:after,q:before,q:after{content:"";}blockquote,q{quotes:"" "";}abbr,acronym{border:0;}

html {
  font-family: 'Roboto', arial, sans-serif;
}

body {
  overflow-x: hidden;
}

h1 {
  font-weight:300;
  font-size: 3rem;
  color: #000;
}

h2 {
  font-weight: 700;
  line-height:70px;
  font-size: 2.3rem;
  color: #000000;
  letter-spacing: -2px;
}

h3 {
  font-weight: 500;
  font-size: 2rem;
  color: #000000;
  letter-spacing: -0.61px;
}

p {
  font-weight:300;
  font-size: 1.5rem;
  color: #333333;
  line-height:33px;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  color:inherit;
}

a:focus {
  text-decoration: none;
}

#wrapper {
  padding-left: 0;
  -webkit-transition: all 0.5s cubic-bezier(0.4, 0.0, 0.2,1) 0s;
  -moz-transition: all 0.5s cubic-bezier(0.4, 0.0, 0.2,1) 0s;
  -o-transition: all 0.5s cubic-bezier(0.4, 0.0, 0.2,1) 0s;
  transition: all 0.5s cubic-bezier(0.4, 0.0, 0.2,1) 0s;
}

#wrapper.toggled {
  padding-right: 300px;
}

#sidebar-wrapper {
  /*background-color:#ccc;*/
  /*z-index: 1000;*/
  position: fixed;
  right: 0;
  width: 0;
  height: 100%;
  margin-left: -300px;
  overflow-y: auto;
  background: #fff;
  -webkit-transition: all 0.5s cubic-bezier(0.4, 0.0, 0.2,1) 0s;
  -moz-transition: all 0.5s cubic-bezier(0.4, 0.0, 0.2,1) 0s;
  -o-transition: all 0.5s cubic-bezier(0.4, 0.0, 0.2,1) 0s;
  transition: all 0.5s cubic-bezier(0.4, 0.0, 0.2,1) 0s;
}

#wrapper.toggled #sidebar-wrapper {
  width: 300px;
}

#page-content-wrapper {
  background-color:#fff;
  width: 100%;
  position: absolute;
  -webkit-transition: all 0.5s cubic-bezier(0.4, 0.0, 0.2,1) 0s;
  -moz-transition: all 0.5s cubic-bezier(0.4, 0.0, 0.2,1) 0s;
  -o-transition: all 0.5s cubic-bezier(0.4, 0.0, 0.2,1) 0s;
  transition: all 0.5s cubic-bezier(0.4, 0.0, 0.2,1) 0s;
}

#wrapper.toggled #page-content-wrapper {
  filter: brightness(0.5);
  -webkit-filter: brightness(0.5);
  /*opacity:0.5;*/
  position: absolute;
  margin-left: -300px;
}

.sidebar-toggle {
  z-index:1;
  border-radius:1px;
  position:fixed;
  right:50px;
  top:25px;
  float:right;
  background-color:#4BAD00;
  padding:12px;
  -webkit-transition: all 0.5s cubic-bezier(0.4, 0.0, 0.2,1) 0s;
  -moz-transition: all 0.5s cubic-bezier(0.4, 0.0, 0.2,1) 0s;
  -o-transition: all 0.5s cubic-bezier(0.4, 0.0, 0.2,1) 0s;
  transition: all 0.5s cubic-bezier(0.4, 0.0, 0.2,1) 0s;
}

.cta-toggle {
  font-weight: 700;
  font-size: 20px;
  z-index:1;
  border-radius:1px;
  position:fixed;
  right:125px;
  top:25px;
  float:right;
  line-height:17px;
  background-color:#fff;
  padding:12px 20px;
  -webkit-transition: all 0.5s cubic-bezier(0.4, 0.0, 0.2,1) 0s;
  -moz-transition: all 0.5s cubic-bezier(0.4, 0.0, 0.2,1) 0s;
  -o-transition: all 0.5s cubic-bezier(0.4, 0.0, 0.2,1) 0s;
  transition: all 0.5s cubic-bezier(0.4, 0.0, 0.2,1) 0s;
}

#wrapper.toggled .sidebar-toggle {
  right: 325px;
}

#wrapper.toggled .cta-toggle {
  right: 400px;
}

.nav-sep {
  margin-bottom:30px;
}

.nav-sep-small {
  margin-bottom:20px;
}

.ca {
  font-weight:700;
  font-size: 20px;
  color: #000000;
  opacity:0.5;
  transition: all 0.5s;
  white-space: nowrap;
}

.ca.active {
  opacity:1;
}

.ca:hover {
  text-decoration: none;
  color: #000;
  opacity:1;
}

.casmall {
  font-weight:700;
  font-size: 15px;
  color: #000;
  opacity:0.5;
  transition: all 0.5s;
  white-space: nowrap;
}

.casmall:hover {
  text-decoration: none;
  color: #000;
  opacity:1;
}

.casmall.active {
  opacity:1;
}

.mainLanding {
  height:100vh;
  display: flex;
  position:relative;
  align-items: center;
  background: url('img/jumbo-back-2.jpg') center top no-repeat;
  background-size:cover;
  min-height:600px;
}

.mainAlign {
  max-width: 50%;
}

.mainContent {
  margin-left:5%;
  margin-bottom:10%;
  flex: 0 1 100%;
  justify-content: flex-start;
}

.mainClient {
  position:absolute;
  width:100%;
  bottom:0;
  left:0;
  flex: 1 0 100%;
  align-self: flex-end;
  height:160px;
  background-color:#FAFAFA;
}

.LBSLanding {
  height:100vh;
  display: flex;
  position:relative;
  align-items: center;
  background: url('img/lbs-back.jpg') center center no-repeat;
  background-size:cover;
  min-height:600px;
}

.LBSContent {
  margin: 0 auto;
}

.career {
  position:absolute;
  bottom:40px;
  color:#039CEE;
}

.cbtn {
  padding:1rem 2rem;
  color:#fff;
  font-weight:700;
  font-size: 1.5rem;
  border-radius:1px;
  background-color:#4BAD00;
  transition: border 0.2s;
  white-space: nowrap;
  border:5px #4BAD00 solid;
}

.cbtn:hover {
  color:#fff;
  border: 5px #3e8f00 solid;
}

.cbtn:focus {
  color:#fff;
}

.hbtn {
  padding:1rem 2rem;
  color:#4BAD00;
  font-weight:700;
  font-size: 1.5rem;
  border-radius:1px;
  border: #4BAD00 5px solid;
  transition: all 0.2s;
  white-space: nowrap;
}

.hbtn:hover {
  color:#3e8f00;
  border: 5px #3e8f00 solid;
}

.hbtn:focus {
  color:#4BAD00;
}

.wbtn {
  padding:1rem 2rem;
  color:#FFF;
  font-weight:700;
  font-size: 1.5rem;
  border-radius:1px;
  border: #FFF 5px solid;
  transition: all 0.2s;
  white-space: nowrap;
}

.wbtn:hover {
  color:#FFF;
  background-color: #4BAD00;
}

.wbtn:focus {
  color:#fff;
}


.wbbtn {
  padding:1rem 2rem;
  color:#4BAD00;
  font-weight:700;
  font-size: 1.5rem;
  border-radius:1px;
  border: #FFF 5px solid;
  transition: all 0.2s;
  white-space: nowrap;
  background-color:#FFF;
}

.wbbtn:hover {
  color:#FFF;
  background-color: #4BAD00;
}

.wbbtn:focus {
  color:#fff;
}


.valign {
  height:100%;
  display:flex;
  align-items: center;
}

.client-logo {
  max-width:150px;
  max-height:75px;
  margin:0 auto;
}

.b-underline {
  border-bottom: 20px #000 solid;
}

.container {
  width:80%;
}

.margin150 {
  margin-top:150px;
}

.margin80 {
  margin-top:80px;
}

.margin60 {
  margin-top:60px;
}

.margin40 {
  margin-top:40px;
}

.grey-bg {
  background-color: #FAFAFA;
}

.uc-content {
  padding:8% 10% 10% 15%;
}

.uc-img {
  height:60vh;
}

.client-quote {
  font-weight:300;
  font-style:italic;
  font-size: 1.8rem;
  color: #333333;
  line-height:33px;
}

.cta {
  background: url('img/cta-back.jpg') left top no-repeat;
  background-size:cover;
  padding:8% 10%;
}

.foot-sep {
  margin-bottom:15px;
}

.clickSvg {
  cursor:pointer;
}

rect {
  transition: 0.3s all ease;
}

path {
  transition: 0.3s all ease;
}

polygon {
  transition: 0.3s all ease;
}

.square {
  padding:5% 5%;
  height:100%;
}

.square.middle {
  border-right: #BABABA 1px solid;
  border-left: #BABABA 1px solid;
}

.ftext {
  transition: all 0.5s;
  min-height:50px;
  min-width:300px;
  width:400px;
  border: 1px #333333 solid;
  padding-left:15px;
  color:#333;
  font-weight:bold;
}

.ftext:focus {
  border: 1px #4BAD00 solid;
}


/* Remove default checkbox */

[type="checkbox"]:not(:checked),
[type="checkbox"]:checked {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

[type="checkbox"] {
  /* checkbox aspect */
}

[type="checkbox"] + label {
  color: #000;
  font-size: .9rem;
  font-weight: normal;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  display: inline-block;
  height: 25px;
  line-height: 25px;
  -webkit-user-select: none;
  /* webkit (safari, chrome) browsers */
  -moz-user-select: none;
  /* mozilla browsers */
  -khtml-user-select: none;
  /* webkit (konqueror) browsers */
  -ms-user-select: none;
  /* IE10+ */
}

[type="checkbox"] + label:before,
[type="checkbox"]:not(.filled-in) + label:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  z-index: 0;
  border: 2px solid #5a5a5a;
  border-radius: 1px;
  margin-top: 2px;
  transition: .2s;
}

[type="checkbox"]:not(.filled-in) + label:after {
  border: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
}

[type="checkbox"]:not(:checked):disabled + label:before {
  border: none;
  background-color: rgba(0, 0, 0, 0.26);
}

[type="checkbox"].tabbed:focus + label:after {
  -webkit-transform: scale(1);
          transform: scale(1);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.1);
  background-color: rgba(0, 0, 0, 0.1);
}

[type="checkbox"]:checked + label:before {
  top: -4px;
  left: -5px;
  width: 12px;
  height: 22px;
  border-top: 2px solid transparent;
  border-left: 2px solid transparent;
  border-right: 2px solid #4BAD00;
  border-bottom: 2px solid #4BAD00;
  -webkit-transform: rotate(40deg);
          transform: rotate(40deg);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform-origin: 100% 100%;
          transform-origin: 100% 100%;
}

[type="checkbox"]:checked:disabled + label:before {
  border-right: 2px solid rgba(0, 0, 0, 0.26);
  border-bottom: 2px solid rgba(0, 0, 0, 0.26);
}

/* Indeterminate checkbox */
[type="checkbox"]:indeterminate + label:before {
  top: -11px;
  left: -12px;
  width: 10px;
  height: 22px;
  border-top: none;
  border-left: none;
  border-right: 2px solid #4BAD00;
  border-bottom: none;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform-origin: 100% 100%;
          transform-origin: 100% 100%;
}

[type="checkbox"]:indeterminate:disabled + label:before {
  border-right: 2px solid rgba(0, 0, 0, 0.26);
  background-color: transparent;
}

[type="checkbox"].filled-in + label:after {
  border-radius: 2px;
}

[type="checkbox"].filled-in + label:before,
[type="checkbox"].filled-in + label:after {
  content: '';
  left: 0;
  position: absolute;
  /* .1s delay is for check animation */
  transition: border .25s, background-color .25s, width .20s .1s, height .20s .1s, top .20s .1s, left .20s .1s;
  z-index: 1;
}

[type="checkbox"].filled-in:not(:checked) + label:before {
  width: 0;
  height: 0;
  border: 3px solid transparent;
  left: 6px;
  top: 10px;
  -webkit-transform: rotateZ(37deg);
  transform: rotateZ(37deg);
  -webkit-transform-origin: 20% 40%;
  transform-origin: 100% 100%;
}

[type="checkbox"].filled-in:not(:checked) + label:after {
  height: 20px;
  width: 20px;
  background-color: transparent;
  border: 2px solid #5a5a5a;
  top: 0px;
  z-index: 0;
}

[type="checkbox"].filled-in:checked + label:before {
  top: 0;
  left: 1px;
  width: 8px;
  height: 13px;
  border-top: 2px solid transparent;
  border-left: 2px solid transparent;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotateZ(37deg);
  transform: rotateZ(37deg);
  -webkit-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
}

[type="checkbox"].filled-in:checked + label:after {
  top: 0;
  width: 20px;
  height: 20px;
  border: 2px solid #4BAD00;
  background-color: #4BAD00;
  z-index: 0;
}

[type="checkbox"].filled-in.tabbed:focus + label:after {
  border-radius: 2px;
  border-color: #5a5a5a;
  background-color: rgba(0, 0, 0, 0.1);
}

[type="checkbox"].filled-in.tabbed:checked:focus + label:after {
  border-radius: 2px;
  background-color: #4BAD00;
  border-color: #4BAD00;
}

[type="checkbox"].filled-in:disabled:not(:checked) + label:before {
  background-color: transparent;
  border: 2px solid transparent;
}

[type="checkbox"].filled-in:disabled:not(:checked) + label:after {
  border-color: transparent;
  background-color: #BDBDBD;
}

[type="checkbox"].filled-in:disabled:checked + label:before {
  background-color: transparent;
}

[type="checkbox"].filled-in:disabled:checked + label:after {
  background-color: #BDBDBD;
  border-color: #BDBDBD;
}

/* Range
   ========================================================================== */
.range-field {
  position: relative;
}

input[type=range],
input[type=range] + .thumb {
  cursor: pointer;
}

input[type=range] {
  position: relative;
  background-color: transparent;
  border: none;
  outline: none;
  width: 100%;
  margin: 15px 0;
  padding: 0;
}

input[type=range]:focus {
  outline: none;
}

input[type=range] + .thumb {
  position: absolute;
  border: none;
  height: 0;
  width: 0;
  border-radius: 50%;
  background-color: #4bad00;
  top: 10px;
  margin-left: -6px;
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

input[type=range] + .thumb .value {
  display: block;
  width: 30px;
  text-align: center;
  color: #4bad00;
  font-size: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

input[type=range] + .thumb.active {
  border-radius: 50% 50% 50% 0;
}

input[type=range] + .thumb.active .value {
  color: #fff;
  margin-left: -1px;
  margin-top: 8px;
  font-size: 10px;
}

input[type=range] {
  -webkit-appearance: none;
}

input[type=range]::-webkit-slider-runnable-track {
  height: 3px;
  background: #ddd;
  border: none;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  border: none;
  height: 14px;
  width: 14px;
  border-radius: 50%;
  background-color: #4bad00;
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  margin: -5px 0 0 0;
  transition: .3s;
}

input[type=range]:focus::-webkit-slider-runnable-track {
  background: #ccc;
}

input[type=range] {
  /* fix for FF unable to apply focus style bug  */
  border: 1px solid white;
  /*required for proper track sizing in FF*/
}

input[type=range]::-moz-range-track {
  height: 3px;
  background: #ddd;
  border: none;
}

input[type=range]::-moz-range-thumb {
  border: none;
  height: 14px;
  width: 14px;
  border-radius: 50%;
  background: #4bad00;
  margin-top: -5px;
}

input[type=range]:-moz-focusring {
  outline: 1px solid #fff;
  outline-offset: -1px;
}

input[type=range]:focus::-moz-range-track {
  background: #ccc;
}

input[type=range]::-ms-track {
  height: 3px;
  background: transparent;
  border-color: transparent;
  border-width: 6px 0;
  /*remove default tick marks*/
  color: transparent;
}

input[type=range]::-ms-fill-lower {
  background: #777;
}

input[type=range]::-ms-fill-upper {
  background: #ddd;
}

input[type=range]::-ms-thumb {
  border: none;
  height: 14px;
  width: 14px;
  border-radius: 50%;
  background: #4bad00;
}

input[type=range]:focus::-ms-fill-lower {
  background: #888;
}

input[type=range]:focus::-ms-fill-upper {
  background: #ccc;
}

a {
  color:#4bad00;
  transition: 0.3s all ease;
}

@media screen and (max-width: 768px) {
  h1 {
    font-size:2.2rem;
  }
  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.8rem;
  }

  p {
    font-size:1.3rem;
    line-height:27px;
  }

  .mainLanding {
    background: url('img/jumbo-back-2-mobile.jpg') left top no-repeat;
    background-size:cover;
    padding:0 15px;
    min-height:0;
  }

  .LBSLanding {
    background: url('img/lbs-back.jpg') center center no-repeat;
    background-size:cover;
    padding:0 15px;
    min-height:0;
  }

  .cbtn {
    font-size:1rem;
  }

  .hbtn {
    font-size:1rem;
  }

  .wbtn {
    font-size:1rem;
  }

  .sidebar-toggle {
    right:25px;
  }

  .mobileClient {
    height:160px;
    background-color: #FAFAFA;
    width:100%;
  }

  .slick-slider {
    display: flex !important;
  }

  .margin150 {
    margin-top:100px;
  }

  .margin80 {
    margin-top:60px;
  }

  .margin60 {
    margin-top:40px;
  }

  .margin40 {
    margin-top:30px;
  }

  .margin30mobile {
    margin-top:30px;
  }

  .uc-content {
    padding: 10%;
  }

  .uc-img {
    height:40vh;
  }

  .client-quote {
    margin:20px 0;
    font-size: 1.5rem;
    line-height: 28px;
  }

  .cta {
    padding:20% 10%;
  }

  .square.middle {
    margin: 30px 0;
  }

  .ftext {
    width:100%;
    min-width:0;
  }
}
