/*! HTML5 Boilerplate v9.0.1 | MIT License | https://html5boilerplate.com/ */
/* main.css 3.0.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */
/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Customize the background color to match your design.
 */
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */
textarea {
  resize: vertical;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
body {
  margin: 0;
  font-family: "Roboto", sans-serif;
}

* {
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: 700;
}
h1 b, h2 b, h3 b, h4 b, h5 b, h6 b {
  font-weight: 900;
}
h1 span, h2 span, h3 span, h4 span, h5 span, h6 span {
  font-weight: 300;
}

h1 {
  font-size: 5rem;
  line-height: 110%;
  text-transform: uppercase;
  margin: 0;
}
h1 em {
  font-weight: 400;
  font-size: 0.3em;
  font-style: normal;
  display: block;
  color: #FF8200;
  text-transform: uppercase;
  margin-top: -0.85em;
}
@media screen and (max-width: 1023px) {
  h1 {
    font-size: 4rem;
  }
}
@media screen and (max-width: 767px) {
  h1 {
    font-size: 2.5rem;
  }
  h1 em {
    margin-top: 0em;
    margin-bottom: 24px;
    font-size: 1rem;
  }
}
@media screen and (max-width: 450px) {
  h1 {
    font-size: 2rem;
  }
  h1 em {
    margin-top: -2px;
    margin-bottom: 6px;
  }
}

h2 {
  font-size: 2.5rem;
  line-height: 120%;
  text-transform: uppercase;
  margin: 0;
}
@media screen and (max-width: 1023px) {
  h2 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  h2 {
    font-size: 1.5rem;
  }
}

h3 {
  font-size: 1.5rem;
  line-height: 120%;
  text-transform: uppercase;
  margin: 0;
}
@media screen and (max-width: 1023px) {
  h3 {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  h3 {
    font-size: 1.125rem;
  }
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.btn {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  padding: 12px 20px;
  font-size: 1.25rem;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  color: #39393B;
  line-height: 1;
  transition: 0.2s ease-in-out;
  border-radius: 2px;
}
@media screen and (max-width: 1023px) {
  .btn {
    font-size: 1rem;
    padding: 8px 16px;
  }
}
.btn.btn--primary {
  background-color: #FF8200;
  color: white;
  padding: 16px 20px;
}
.btn.btn--primary:hover, .btn.btn--primary:focus {
  background: #cc6800;
  color: white;
}
.btn.btn--primary:active {
  background: #994e00;
  color: white;
}
@media screen and (max-width: 1023px) {
  .btn.btn--primary {
    font-size: 1rem;
    padding: 12px 16px;
  }
}
.btn.btn--secondary {
  background-color: #FFFFFF;
  border: 1px solid rgba(57, 57, 59, 0.1);
}
.btn.btn--secondary:hover, .btn.btn--secondary:focus {
  border: 1px solid #39393B;
}
.btn.btn--secondary:active {
  background: rgba(57, 57, 59, 0.1);
}
@media screen and (max-width: 1023px) {
  .btn.btn--secondary {
    font-size: 1rem;
    padding: 12px 16px;
  }
}
.btn.btn--phone {
  padding: 12px 20px 12px 48px;
  background: transparent;
  border: 1px solid #FF8200;
  color: #FFFFFF;
  position: relative;
}
.btn.btn--phone::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 20px;
  width: 20px;
  height: 20px;
  background-image: url("../img/icon-phone.svg");
  background-size: contain;
  transform: translateY(-50%);
}
.btn.btn--phone:hover, .btn.btn--phone:focus {
  background: #39393b;
  color: white;
}
.btn.btn--phone:active {
  background: rgb(31.9396551724, 31.9396551724, 33.0603448276);
}
@media screen and (max-width: 1023px) {
  .btn.btn--phone {
    font-size: 1rem;
    padding: 12px 16px 12px 36px;
  }
  .btn.btn--phone::before {
    left: 8px;
    width: 20px;
    height: 20px;
  }
}

.container {
  width: 100%;
  max-width: 1322px;
  margin: 0 auto;
}
.container.container--mid {
  max-width: 1166px;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100vw;
  padding: 28px 28px 28px 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}
@media screen and (max-width: 1023px) {
  header {
    padding: 16px;
  }
}

#brand {
  display: block;
  text-decoration: none;
}
#brand img {
  display: block;
  width: auto;
  height: 64px;
}
@media screen and (max-width: 1023px) {
  #brand img {
    height: 48px;
  }
}
@media screen and (max-width: 767px) {
  #brand img {
    height: 40px;
  }
}

#hero-wrapper {
  position: relative;
}

#hero {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 53vw;
  padding-top: 16vw;
  padding-bottom: 14vw;
  margin-bottom: -15vw;
  color: white;
  text-align: center;
  background-color: #39393B;
  background-image: url("../img/hero-bg.jpg");
  background-size: 100%;
  background-position: center top;
  -webkit-mask-image: url("../img/hero-mask.svg");
  mask-image: url("../img/hero-mask.svg");
  -webkit-mask-size: 100%;
  mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  mask-mode: alpha; /* important if using transparency */
}
@media screen and (max-width: 1023px) {
  #hero {
    height: 100vw;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    -webkit-mask-image: url("../img/hero-mask-mobile.svg");
    mask-image: url("../img/hero-mask-mobile.svg");
    background-size: cover;
    margin-bottom: -14.5vw;
  }
}
@media screen and (max-width: 600px) {
  #hero {
    padding-top: 48px;
  }
}

#hero-shadow {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  bottom: -8px;
  background-image: url("../img/hero-shadow.svg");
  background-size: 100%;
  background-repeat: no-repeat;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  #hero-shadow {
    background-image: url("../img/hero-shadow-mobile.svg");
    background-position: center bottom;
  }
}

#solutions {
  display: block;
  width: 100%;
  background: linear-gradient(to bottom, #F2F2F2 0%, white 100%);
  padding: 0 16px 72px;
}
@media screen and (max-width: 1023px) {
  #solutions {
    padding-bottom: 56px;
  }
}
@media screen and (max-width: 767px) {
  #solutions {
    padding-bottom: 48px;
  }
}

.solutions__header {
  display: block;
  padding: 96px 16px 88px;
}
@media screen and (max-width: 1023px) {
  .solutions__header {
    padding: 64px 16px 48px;
  }
}
@media screen and (max-width: 767px) {
  .solutions__header {
    padding: 48px 16px 32px;
  }
}

.solutions__inner {
  display: flex;
  flex-direction: row;
  column-gap: 50px;
  row-gap: 50px;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 1023px) {
  .solutions__inner {
    column-gap: 32px;
    row-gap: 32px;
  }
}
@media screen and (max-width: 767px) {
  .solutions__inner {
    column-gap: 24px;
    row-gap: 24px;
  }
}

.card {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 400px;
  margin: 0;
  padding: 24px 0 32px 70px;
  background: white;
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 1023px) {
  .card {
    padding: 24px 0 32px 64px;
  }
}
.card.card--cta {
  aspect-ratio: 400/367;
  padding: 77px 36px 122px 62px;
  color: white;
  align-items: flex-start;
  background-color: #FF8200;
  background-image: url("../img/card--cta-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: none;
  position: relative;
  -webkit-mask-image: url("../img/card-cta-mask.svg");
  mask-image: url("../img/card-cta-mask.svg");
  -webkit-mask-size: 100%;
  mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  mask-mode: alpha; /* important if using transparency */
}
.card.card--cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 24px;
  background: #39393B;
}
.card.card--cta h3 {
  font-size: 2.5rem;
  line-height: 120%;
  text-transform: uppercase;
  margin: 0;
}
.card.card--cta .btn.btn--secondary {
  border: none;
  background: #FFFFFF;
  color: #FF8200;
  transition: 0.2s ease-in-out;
  margin-top: 28px;
}
.card.card--cta .btn.btn--secondary:hover, .card.card--cta .btn.btn--secondary:focus {
  background: #FFFFFF;
  color: #39393B;
}
.card.card--cta .btn.btn--secondary:active {
  background: rgba(255, 255, 255, 0.9);
  color: #39393B;
}
@media screen and (max-width: 1023px) {
  .card.card--cta {
    padding: 77px 24px 96px 48px;
  }
  .card.card--cta h3 {
    font-size: 2.25rem;
  }
}
@media screen and (max-width: 767px) {
  .card.card--cta h3 {
    font-size: 2rem;
  }
}

.card__header {
  display: block;
  padding-bottom: 24px;
  padding-right: 48px;
  border-bottom: 1px solid rgba(57, 57, 59, 0.1);
  margin-bottom: 20px;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .card__header {
    padding-right: 32px;
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .card__header {
    padding-right: 24px;
    padding-bottom: 16px;
  }
}

.card__icon {
  position: absolute;
  top: 0;
  left: -94px;
  width: 72px;
  height: 72px;
  display: block;
}
@media screen and (max-width: 1023px) {
  .card__icon {
    left: -76px;
    width: 64px;
    height: 64px;
  }
}

.card__content {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding-right: 32px;
  row-gap: 32px;
}
.card__content p {
  margin: 0;
}
@media screen and (max-width: 1023px) {
  .card__content {
    row-gap: 24px;
  }
}

#contact {
  padding: 96px 32px 146px;
  background-color: #39393B;
  background-image: url("../img/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
}

.contact__inner {
  display: flex;
  flex-direction: row;
}
.contact__inner .contact-logo {
  display: block;
  width: 96px;
  height: auto;
}
.contact__inner .col-1 {
  width: 33.333%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: 32px;
}
.contact__inner .col-1 p {
  margin: 0;
}
.contact__inner .col-2 {
  width: 66.666%;
}
.contact__inner .wufoo .info h2 {
  display: none;
}
@media screen and (max-width: 1023px) {
  .contact__inner .col-1 {
    width: 25%;
    padding-right: 20px;
  }
  .contact__inner .col-2 {
    width: 75%;
  }
}
@media screen and (max-width: 767px) {
  .contact__inner {
    flex-direction: column;
  }
  .contact__inner .col-1 {
    width: 100%;
    margin-bottom: 32px;
  }
  .contact__inner .col-2 {
    width: 100%;
  }
}

footer {
  padding: 48px 16px;
  background: #39393B;
  color: #888;
  text-align: center;
  font-size: 0.8rem;
}

/* ==========================================================================
   Helper classes
   ========================================================================== */
/*
 * Hide visually and from screen readers
 */
.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */
.visually-hidden {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
 * Extends the .visually-hidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */
.visually-hidden.focusable:active,
.visually-hidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */
.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * The use of `table` rather than `block` is only necessary if using
 * `::before` to contain the top-margins of child elements.
 */
.clearfix::before,
.clearfix::after {
  content: "";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */
@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}
@media print, (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 1.25dppx), (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}
/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */
@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]::after {
    content: " (" attr(href) ")";
  }
  abbr[title]::after {
    content: " (" attr(title) ")";
  }
  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }
  pre {
    white-space: pre-wrap !important;
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}

/*# sourceMappingURL=style.css.map */
