@charset "UTF-8";
body {
  background-color: #000000;
  color: #fff;
  line-height: 1.2em;
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0 0 10vh 0;
}

@media (min-width: 600px) {
  body {
    padding: 0;
  }
}

h1, h2, h3, h4, h5, h6 {
  text-transform: uppercase;
  line-height: 1.2em;
}

h2 {
  text-align: center;
  font-size: 5vw;
  line-height: 1em;
}

@media (min-width: 600px) {
  h2 {
    font-size: 3vw;
  }
}

@media (min-width: 1200px) {
  h2 {
    font-size: 36px;
  }
}

h3 {
  size: 5vw;
  weight: bold;
  text-transform: none;
  color: #5188ff;
}

@media (min-width: 600px) {
  h3 {
    font-size: 3vw;
  }
}

@media (min-width: 1200px) {
  h3 {
    font-size: 36px;
  }
}

h3 + h4 {
  -webkit-margin-before: 0;
          margin-block-start: 0;
}

h3:target {
  -webkit-animation: yellow-fade 3s;
          animation: yellow-fade 3s;
}

h3:target::before {
  content: "";
  display: block;
  height: 20vw;
  margin-top: -20vw;
}

@-webkit-keyframes yellow-fade {
  0% {
    color: #ffffff;
  }
  100% {
    color: auto;
  }
}

@keyframes yellow-fade {
  0% {
    color: #ffffff;
  }
  100% {
    color: auto;
  }
}

h3, h4 {
  -webkit-margin-before: 1.5em;
          margin-block-start: 1.5em;
  -webkit-margin-after: 0;
          margin-block-end: 0;
}

h4 {
  font-weight: normal;
  font-size: 1.2em;
}

p {
  line-height: 1.5em;
  -webkit-margin-before: 1em;
          margin-block-start: 1em;
}

.spacey li {
  -webkit-margin-before: 1em;
          margin-block-start: 1em;
}

a {
  color: #ffee00;
  font-weight: bold;
}

a:hover {
  color: #ffffff;
}

nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  font-size: 5vw;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 90;
  -webkit-transition: .5s;
  transition: .5s;
}

@media (min-width: 600px) {
  nav {
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    font-size: 1.5vw;
  }
}

@media (min-width: 1200px) {
  nav {
    font-size: 14px;
  }
}

nav.scrolled {
  background-color: rgba(0, 51, 161, 0.6);
}

nav.scrolled #home-button {
  color: #ffffff;
}

nav span {
  font-size: .8em;
  z-index: 110;
}

nav #menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 100;
  top: 0;
  left: -100vw;
  width: 100vw;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 10vh 0 5vh 0;
  margin: 0;
  -webkit-transition: .5s;
  transition: .5s;
}

@media (min-width: 600px) {
  nav #menu {
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
    left: auto;
    position: relative;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: auto;
    padding: 0;
    background-color: transparent;
  }
}

nav #menu.viz {
  left: 0;
}

nav #menu li {
  display: inherit;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

nav #menu li a {
  text-decoration: none;
  text-transform: uppercase;
  color: #fff;
  padding: 1em 2em;
  width: 100vw;
  -webkit-transition: .5s;
  transition: .5s;
}

@media (min-width: 600px) {
  nav #menu li a {
    width: auto;
    padding: 1.2em 1.5em;
    margin-top: 3px;
  }
}

nav #menu li a.active {
  border: 3px white solid;
  width: 0 0 0 8px;
}

@media (min-width: 600px) {
  nav #menu li a.active {
    margin-top: 0;
    border-width: 3px 0 0 0;
  }
}

nav #menu li a:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

nav #home-button {
  cursor: pointer;
  -webkit-transition: .5s;
  transition: .5s;
  padding: 1em 2em;
  margin: 0;
  color: #0033A1;
}

nav #home-button svg {
  height: 1.5em;
}

nav #home-button:hover {
  padding-left: 3em;
}

nav .index #home-button {
  cursor: default;
}

nav .index #home-button:hover {
  padding-left: 2em;
}

#sticky {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100vw;
  height: 10vh;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #ffee00;
  color: #000000;
  font-weight: bold;
  text-align: right;
  font-size: 3.5vw;
  line-height: 1.2em;
  padding: 0 2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  text-transform: uppercase;
  z-index: 150;
  cursor: pointer;
}

@media (min-width: 600px) {
  #sticky {
    position: absolute;
    font-size: 1.5vw;
    height: 3vw;
    bottom: -2em;
    width: auto;
  }
  #sticky br {
    display: none;
  }
}

#sticky svg {
  margin-left: 1em;
}

.menu-closer, .contact-closer {
  position: absolute;
  top: .5em;
  right: .5em;
}

.menu-trigger, .menu-closer, .contact-closer {
  padding: .2em;
  margin-right: .5em;
  width: 1em;
  height: 1em;
  display: block;
  cursor: pointer;
  border-radius: .2em;
  -webkit-transition: .5s;
  transition: .5s;
  display: block;
}

@media (min-width: 600px) {
  .menu-trigger, .menu-closer, .contact-closer {
    display: none;
  }
}

.menu-trigger:hover, .menu-closer:hover, .contact-closer:hover {
  background-color: rgba(255, 255, 255, 0.8);
  color: #000;
}

svg.contact-closer {
  height: 2em;
  width: 2em;
}

svg {
  height: 1em;
  fill: currentColor;
}

.butt {
  border-radius: 2000px;
  padding: .7em 2.4em;
  text-decoration: none;
  display: inline-block;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  font-weight: bold;
  -webkit-transition: .5s;
  transition: .5s;
  font-size: inherit;
  font-family: inherit;
  text-transform: uppercase;
}

.butt.ghost {
  color: #ffffff;
  border: 1px solid #ffffff;
  background-color: transparent;
}

.butt.ghost:hover {
  background-color: #ffffff;
  color: #000;
}

section {
  padding: 0 10vw;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 600px) {
  section {
    padding: 0 4vw;
  }
}

#hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 90vh;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100vw;
}

@media (min-width: 600px) {
  #hero {
    display: -ms-grid;
    display: grid;
        grid-template-areas: 'statement checks' 'action .';
    -ms-grid-columns: 47% 47%;
        grid-template-columns: 47% 47%;
    -ms-grid-rows: auto auto;
        grid-template-rows: auto auto;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-line-pack: center;
        align-content: center;
    height: 100vh;
    min-height: 50vw;
  }
}

#hero:after {
  content: "";
  background-color: #fff;
  -webkit-mask-image: url("lts-chevrons.svg");
          mask-image: url("lts-chevrons.svg");
  -webkit-mask-size: 200vh;
          mask-size: 200vh;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: right -400px;
          mask-position: right -400px;
  background-size: 200vh;
  opacity: 0.1;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  position: absolute;
  z-index: -1;
  min-height: 150vw;
}

@media (min-width: 600px) {
  #hero:after {
    min-height: 90vh;
  }
}

#hero #statement {
  -ms-grid-row: 2;
  -ms-grid-row-span: 3;
  -ms-grid-column: 2;
  -ms-grid-column-span: 2;
  grid-area: statement;
}

#hero h1 {
  line-height: 1.2em;
  font-size: 6.2vw;
}

@media (min-width: 600px) {
  #hero h1 {
    font-size: 3.3vw;
  }
}

@media (min-width: 1200px) {
  #hero h1 {
    font-size: 40px;
  }
}

#hero h1 svg {
  height: .7em;
}

#hero #checks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  list-style: none;
  padding-left: 0;
  font-size: 3.5vw;
}

@media (min-width: 600px) {
  #hero #checks {
    font-size: 1.8vw;
    line-height: 2.5em;
  }
}

@media (min-width: 1200px) {
  #hero #checks {
    font-size: 20px;
    grid-area: checks;
  }
}

#hero #checks li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-animation: .7s 0s 1 slideInFromLeft;
          animation: .7s 0s 1 slideInFromLeft;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

#hero #checks li:nth-child(1) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

#hero #checks li:nth-child(2) {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

#hero #checks li:nth-child(3) {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}

#hero #checks li:nth-child(4) {
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}

#hero #checks li:nth-child(5) {
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
}

#hero #checks li:nth-child(6) {
  -webkit-animation-delay: 6s;
          animation-delay: 6s;
}

#hero #checks li:nth-child(7) {
  -webkit-animation-delay: 7s;
          animation-delay: 7s;
}

#hero #checks li svg {
  height: 1.5em;
  margin-right: .5em;
  fill: #ffffff;
}

#hero #action {
  grid-area: action;
  font-size: 4vw;
}

@media (min-width: 600px) {
  #hero #action {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-line-pack: start;
        align-content: start;
    font-size: 2vw;
  }
}

@media (min-width: 1200px) {
  #hero #action {
    font-size: 24px;
  }
}

.scroll-please {
  margin-top: -10vh;
  font-size: 4em;
  color: rgba(255, 255, 255, 0.5);
  -webkit-animation: bounce 5s infinite;
  animation: bounce 5s infinite;
  cursor: pointer;
  -webkit-transition: .5s;
  transition: .5s;
}

.scroll-please:hover {
  color: white;
}

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
}

@-webkit-keyframes slideInFromLeft {
  0% {
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInFromLeft {
  0% {
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

.shide {
  display: none;
}

@media (min-width: 600px) {
  .shide {
    display: inline-block;
  }
}

.hlogos, .vlogos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.hlogos img, .hlogos svg, .vlogos img, .vlogos svg {
  width: 20%;
  height: 20%;
  margin: .5em;
}

.hlogos img:first-child, .hlogos svg:first-child, .vlogos img:first-child, .vlogos svg:first-child {
  margin-left: 0;
}

.hlogos img:last-child, .hlogos svg:last-child, .vlogos img:last-child, .vlogos svg:last-child {
  margin-right: 0;
}

#landing-logos, #landing-services, #landing-kudos, #success-copy {
  padding-top: 2em;
}

#landing-kudos, #services-residential-testimonials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#services-residential-testimonials {
  display: relative;
  margin-top: 10vh;
}

#services-residential-testimonials h1 {
  line-height: 1.2em;
  font-size: 10vw;
}

@media (min-width: 600px) {
  #services-residential-testimonials h1 {
    font-size: 6vw;
  }
}

@media (min-width: 1200px) {
  #services-residential-testimonials h1 {
    font-size: 90px;
  }
}

.kudo {
  margin: 5px -10vw;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.1);
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  padding: 1em;
}

@media (min-width: 600px) {
  .kudo {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 27%;
            flex: 1 0 27%;
    margin: 5px;
  }
}

.kudo .quote {
  text-align: left;
  position: relative;
  font-size: 1.2em;
  line-height: 1.5em;
  padding-left: 2em;
}

.kudo .quote::before {
  content: '“';
  font-weight: bold;
  color: rgba(255, 255, 255, 0.2);
  font-size: 4em;
  position: absolute;
  top: .2em;
  left: -.05em;
}

.kudo .cred {
  text-align: right;
  margin-top: 1.5em;
  font-size: .8em;
}

.kudo .cred::before {
  content: '-';
}

.timeline {
  list-style: none;
  font-size: 4vw;
  position: relative;
  padding: 0;
  z-index: 0;
}

@media (min-width: 600px) {
  .timeline {
    font-size: 2vw;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.timeline::before {
  content: '';
  position: absolute;
  width: 3px;
  background-color: #0033A1;
  top: 1em;
  bottom: 1em;
  left: 0;
  margin-left: -3px;
}

@media (min-width: 600px) {
  .timeline::before {
    bottom: 0;
    right: 0;
    top: auto;
    width: 88%;
    height: 3px;
  }
}

.timeline li {
  line-height: 2em;
  position: relative;
  margin-left: -1px;
  padding-left: 2em;
  cursor: pointer;
  display: block;
}

@media (min-width: 600px) {
  .timeline li {
    width: 11%;
    margin: 0;
    padding: 0;
    line-height: 1em;
  }
}

@media (min-width: 600px) {
  .timeline li span {
    display: block;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    -webkit-transform-origin: 0% 0%;
            transform-origin: 0% 0%;
    position: absolute;
    bottom: .5em;
  }
}

.timeline li::after {
  content: '';
  position: absolute;
  left: -.5em;
  top: .5em;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  background-color: #0033A1;
  -webkit-transition: .3s;
  transition: .3s;
}

@media (min-width: 600px) {
  .timeline li::after {
    left: 0;
    top: auto;
    bottom: -.5em;
    left: -.5em;
  }
}

.timeline li:hover::after {
  background-color: #ffffff;
}

.timeline li a {
  font-weight: normal;
  color: #ffffff;
  text-decoration: none;
}

#services-hero {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
      grid-template-areas: ". ." ". ." ". .";
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-height: 50vw;
  padding-top: 15vw;
}

#services-hero img {
  width: 60%;
  max-width: 600px;
  margin: 0 auto;
  border-radius: 50%;
}

#services-hero p {
  text-align: center;
  font-size: 1.2em;
  padding: 0 2em;
}

#services-hero h1 {
  line-height: 1.2em;
  font-size: 5vw;
  text-align: center;
  width: 100%;
  position: relative;
  margin: 0;
}

@media (min-width: 600px) {
  #services-hero h1 {
    font-size: 4vw;
  }
}

@media (min-width: 1200px) {
  #services-hero h1 {
    font-size: 41px;
  }
}

.green {
  color: #0c0;
}

#services-list h1 {
  line-height: 1.2em;
  font-size: 7vw;
}

@media (min-width: 600px) {
  #services-list h1 {
    font-size: 4vw;
  }
}

@media (min-width: 1200px) {
  #services-list h1 {
    font-size: 48px;
  }
}

#contact {
  position: fixed;
  left: -250vw;
  top: 0;
  padding: 0;
  z-index: 1000;
  -webkit-transition: 1s;
  transition: 1s;
}

#contact #contact-scroller {
  height: 100vh;
  width: 100vw;
  overflow: scroll;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 2em;
}

#contact.viz {
  left: 0;
}

#contact #contact-container {
  height: 100vh;
  width: 100vw;
  position: relative;
  background: #0034A1;
  background: radial-gradient(ellipse at center, #0034A1, #000000);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
}

#contact #contact-container::before {
  content: '';
  background-color: #000000;
  image: url("lts-chevrons.svg");
  size: 200vh;
  repeat: no-repeat;
  position: right -400px;
  position: absolute;
  top: -2em;
  width: 100vw;
  height: 100vh;
  right: -100vw;
}

#contact #contact-container .contact-closer {
  display: block;
}

#contact label {
  padding: .5em 0 0;
}

#contact label, #contact .contact-info, #contact input, #contact textarea, #contact .butt {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
}

@media (min-width: 600px) {
  #contact label, #contact .contact-info, #contact input, #contact textarea, #contact .butt {
    width: 50%;
    margin: 0 auto;
  }
}

#contact h2 {
  background-color: #0033A1;
  color: #ffee00;
  padding: .5em 1em;
  margin: .5em -1em;
}

#contact .contact-info svg {
  width: 70%;
  height: auto;
  margin: 0 auto;
}

#contact .contact-info, #contact #message-status {
  text-align: center;
}

#contact #message-status {
  padding: 3em;
}

#contact input, #contact textarea {
  border: none;
  padding: .5em 1em;
  background-color: rgba(255, 255, 255, 0.5);
  color: #000;
  font: inherit;
  -webkit-transition: .5s;
  transition: .5s;
}

#contact input::-webkit-input-placeholder, #contact textarea::-webkit-input-placeholder {
  color: rgba(0, 51, 161, 0.8);
}

#contact input:-ms-input-placeholder, #contact textarea:-ms-input-placeholder {
  color: rgba(0, 51, 161, 0.8);
}

#contact input::-ms-input-placeholder, #contact textarea::-ms-input-placeholder {
  color: rgba(0, 51, 161, 0.8);
}

#contact input::placeholder, #contact textarea::placeholder {
  color: rgba(0, 51, 161, 0.8);
}

#contact input:required, #contact textarea:required {
  border-left: 4px solid #5188ff;
  background-color: rgba(255, 255, 255, 0.7);
}

#contact input:valid, #contact textarea:valid {
  border: 0;
}

#contact input:focus, #contact textarea:focus {
  background-color: #ffffff;
}

#contact textarea {
  height: 5em;
}

#contact .butt {
  top: 1em;
  bottom: 2em;
}

#contact .butt svg {
  height: 1em;
  width: auto;
}

#contact #message-status {
  display: none;
}

#success-hero {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -ms-grid;
  display: grid;
  grid-gap: 1em 10%;
      grid-template-areas: 'logo1 logo2 logo3 logo4' 'logo5 statement statement logo6' 'logo7 statement statement logo8' 'logo9 statement statement logo10' 'logo11 logo12 logo13 logo14' 'logo15 logo16 logo17 logo18';
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr 1fr;
  -ms-grid-rows: auto auto auto auto auto auto;
      grid-template-rows: auto auto auto auto auto auto;
  justify-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 15vw;
}

#success-hero .statement {
  -ms-grid-row: 2;
  -ms-grid-row-span: 3;
  -ms-grid-column: 2;
  -ms-grid-column-span: 2;
  grid-area: statement;
}

#success-hero div {
  width: 100%;
}

#success-hero h1 {
  line-height: 1.2em;
  font-size: 6vw;
  text-align: center;
}

@media (min-width: 600px) {
  #success-hero h1 {
    font-size: 4vw;
  }
}

@media (min-width: 1200px) {
  #success-hero h1 {
    font-size: 48px;
  }
}

#success-hero img {
  height: 100%;
  width: 100%;
}

#commitment-hero {
  min-height: 50vh;
  padding-top: 15vw;
  position: relative;
}

#commitment-hero::before {
  content: '';
  z-index: -100;
  top: 0;
  left: 0;
  position: absolute;
  width: 100vw;
  height: 70vh;
  opacity: .2;
  background-image: url("lts-flow-chart.svg");
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: right top;
}

#commitment-hero h1 {
  line-height: 1.2em;
  font-size: 7vw;
}

@media (min-width: 600px) {
  #commitment-hero h1 {
    font-size: 4vw;
    width: 66vw;
  }
}

@media (min-width: 1200px) {
  #commitment-hero h1 {
    font-size: 48px;
  }
}

#commitment-hero p {
  font-size: 1.2em;
}

@media (min-width: 600px) {
  #commitment-hero p {
    width: 66vw;
  }
}

.block {
  padding-left: 2em;
  border-left: .5em solid #999999;
}

.modal-wrapper {
  z-index: 199;
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
}

.modal-wrapper .modal {
  position: fixed;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 200;
  width: 50vw;
  height: 50vh;
  background-color: #fff;
}

.modal-wrapper .modal h2, .modal-wrapper .modal a, .modal-wrapper .modal a:link, .modal-wrapper .modal a:visited {
  color: #000;
  text-decoration: none;
}

.modal-wrapper .modal a {
  padding: .3em;
}
/*# sourceMappingURL=a.css.map */