.w-layout-grid {
  display: -ms-grid;
  display: grid;
  grid-auto-columns: 1fr;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
  grid-row-gap: 16px;
  grid-column-gap: 16px;
}

body {
  font-family: 'Sf pro display', sans-serif;
  color: #333;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 1.5px;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 38px;
  line-height: 44px;
  font-weight: bold;
}

ul {
  margin-top: 20px;
  margin-bottom: 10px;
  padding-left: 0px;
}

ol {
  margin-top: 0px;
  margin-bottom: 10px;
  padding-top: 20px;
  padding-left: 0px;
}

li {
  margin-top: 5px;
  padding-left: 40px;
  background-image: url('../images/el-check.svg');
  background-position: 0% 30%;
  background-size: auto;
  background-repeat: no-repeat;
  list-style-type: none;
}

.section-base {
  position: relative;
  padding-top: 100px;
  padding-bottom: 80px;
  background-color: #fffefd;
}

.section-base.bg--pattern {
  background-color: rgba(17, 126, 226, 0.05);
  background-image: url('../images/bg-pattern.png');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.section-base.bg--pattern.about {
  overflow: hidden;
  padding-top: 140px;
}

.section-base.linear--orange {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(76%, #ffa24d), to(#fff));
  background-image: linear-gradient(180deg, #ffa24d 76%, #fff);
}

.section-base.linear--orange.reverse {
  padding-top: 120px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(38%, #ffa24d));
  background-image: linear-gradient(180deg, #fff, #ffa24d 38%);
}

.section-base.linear--orange.reverse.tri {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(15%, #ffa24d), color-stop(80%, #ffa24d), color-stop(99%, #fff));
  background-image: linear-gradient(180deg, #fff, #ffa24d 15%, #ffa24d 80%, #fff 99%);
}

.section-base.linear--blue {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(33%, #1179d8));
  background-image: linear-gradient(180deg, #fff, #1179d8 33%);
}

.section-base.linear--blue.reverse {
  padding-top: 120px;
  padding-bottom: 140px;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(85%, #1179d8), to(#fff));
  background-image: linear-gradient(180deg, #1179d8 85%, #fff);
}

.section-base.linear--blue.reverse.tri {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(20%, #1179d8), color-stop(85%, #1179d8), to(#fff));
  background-image: linear-gradient(180deg, #fff, #1179d8 20%, #1179d8 85%, #fff);
}

.section-base.linear--blue.no-pad-bot {
  padding-bottom: 0px;
}

.section-base.hero {
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100vh;
  min-height: 600px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-image: url('../images/hero-bg.jpg');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
}

.section-base.navbar {
  position: fixed;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: auto;
  z-index: 999;
  padding-top: 0px;
  padding-bottom: 0px;
}

.section-base.even {
  padding-top: 80px;
  text-align: center;
}

.section-base.map {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url('../images/orange-powder-explosion-2-tnfd.jpg'), url('../images/blue_powder_explosion5896.jpg');
  background-position: -60% 50%, 165% 50%;
  background-size: 50vw, 50vw;
  background-repeat: no-repeat, no-repeat;
}

.section-base.testimonials {
  padding-top: 80px;
}

.section-base.cta {
  padding-top: 80px;
  background-image: url('../images/bg-cta.jpg');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.section-base.contact {
  padding-top: 40px;
  padding-bottom: 40px;
}

.section-base.footer {
  padding-top: 20px;
  padding-bottom: 40px;
  border-top: 1px solid rgba(18, 40, 83, 0.1);
}

.container {
  position: relative;
  max-width: 1140px;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.container.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.container.fluid {
  max-width: 100%;
}

.ui-container {
  margin-top: 10px;
  padding: 20px;
}

.block-header {
  margin-bottom: 20px;
  font-size: 40px;
  line-height: 48px;
  font-weight: 800;
}

.block-header.large {
  font-size: 60px;
  line-height: 70px;
}

.block-header.large.color--white.header-hero {
  width: 900px;
  margin-right: auto;
  margin-left: auto;
}

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

.block-header.text-center.color--white.cta {
  margin-top: 0px;
}

.nav-text {
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-text.top {
  font-size: 16px;
  line-height: 26px;
  text-transform: none;
}

.nav-text.md {
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
}

.nav-text.md.italic {
  font-style: italic;
}

.nav-text.color--dark-blue.border {
  padding-right: 40px;
  padding-left: 40px;
}

.nav-text.color--dark-blue.padding {
  padding-right: 40px;
  padding-left: 40px;
}

.nav-text.color--dark-blue.padding.border {
  border-right: 1px solid rgba(18, 40, 83, 0.1);
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

.body {
  letter-spacing: 1.5px;
}

.contact-det {
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
}

.color--light-blue {
  color: #1179d8;
}

.color--light-blue.text--italic.text--bold {
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  text-decoration: none;
}

.color--light-blue.text--italic.text--bold:hover {
  color: #ffa24d;
}

.color--dark-blue {
  color: #122853;
}

.color--dark-blue.md {
  font-weight: 500;
}

.color--dark-blue.text--medium.lg.test-text {
  margin-top: 20px;
  margin-bottom: 20px;
}

.color--dark-blue.text--medium.test-text {
  margin-top: 20px;
  margin-bottom: 20px;
}

.color--dark-blue.block-header.text-center {
  text-align: center;
}

.color--orange {
  color: #ffa24d;
}

.text--italic {
  font-style: italic;
}

.text--bold {
  font-weight: 700;
}

.color--white {
  color: #fff;
}

.color--white.bg {
  padding-left: 10px;
  background-color: #122853;
}

.color--white.text--medium {
  display: inline;
}

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

.color--white.text--center.ceo {
  margin-top: 40px;
}

.color--white.ceo {
  margin-top: 30px;
}

.color--grey {
  color: #919aaa;
}

.overlay {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
}

.overlay.linear--blue-orange {
  background-image: linear-gradient(85deg, #ffa24d 9%, rgba(17, 121, 216, 0.9));
  opacity: 0.95;
}

.overlay.drak--blue {
  background-color: #122853;
  opacity: 0.5;
}

.ui-button-container {
  margin-top: 20px;
}

.block-teaser {
  font-size: 20px;
  line-height: 26px;
}

.block-teaser.color--white.hero {
  margin-top: 25px;
  margin-bottom: 40px;
}

.btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: auto;
  height: 50px;
  max-width: 275px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.btn.bg--orange {
  background-color: #ffa24d;
}

.btn.bg--orange.color--white {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

.btn.bg--orange.color--white:hover {
  background-color: #f68c2b;
}

.btn.bg--orange.color--white.left {
  margin-top: 20px;
  margin-left: 0px;
}

.btn.bg--blue {
  background-color: #3292e9;
}

.btn.bg--blue.color--white {
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

.btn.bg--blue.color--white:hover {
  background-color: #3292e9;
}

.btn.bg--blue.color--white.left {
  margin-top: 15px;
  margin-left: 0px;
}

.btn.bg--blue.color--white.left:hover {
  background-color: #4ba4f5;
}

.hero-wave {
  position: absolute;
}

.hero-wave.left {
  left: 0%;
  top: auto;
  right: auto;
  bottom: -120px;
}

.hero-wave.right {
  left: auto;
  top: auto;
  right: 0%;
  bottom: -100px;
}

.hero-wave.bottom {
  left: 0%;
  top: auto;
  right: 0%;
  bottom: -10vw;
  width: 100%;
  max-width: none;
}

.navbar {
  background-color: transparent;
}

.nav-top {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#1081e8), to(#1462aa));
  background-image: linear-gradient(180deg, #1081e8, #1462aa);
}

.nav-top.gutter {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: transparent;
  background-image: none;
}

.nav-bot {
  background-color: #fff;
  box-shadow: 1px 1px 16px 0 rgba(18, 40, 83, 0.1);
}

.nav-text-link-left {
  padding: 16px 30px;
  text-align: center;
  text-decoration: none;
}

.nav-text-link-left.bg--blue {
  background-color: #e7f2fb;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

.nav-text-link-left.bg--blue:hover {
  background-color: #c6e5ff;
}

.nav-text-link-left.bg--orange {
  background-color: #fff6ed;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

.nav-text-link-left.bg--orange:hover {
  background-color: #ffe0c0;
}

.nav-text-link-right {
  padding: 16px 25px;
  text-decoration: none;
}

.nav-text-link-right.border {
  border-right: 1px solid rgba(18, 40, 83, 0.1);
}

.nav-text-link-right.color--dark-blue {
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

.nav-text-link-right.color--dark-blue:hover {
  color: #ffa24d;
}

.brand {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.nav-top-text {
  width: 375px;
}

.nav-top-text.nav-text.lowercase {
  text-transform: none;
}

.nav-top-text.nav-text.lowercase.color--white {
  width: 350px;
}

.nav-logo {
  width: 275px;
  margin-right: 30px;
}

.nav-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.grid-con {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-column-gap: 60px;
  grid-row-gap: 30px;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.grid-left {
  position: relative;
}

.grid-left.content {
  padding-right: 60px;
}

.grid-right {
  position: relative;
}

.grid-right.content {
  padding-left: 60px;
}

.link {
  width: 60px;
  height: 60px;
}

.social-con {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 50px;
  height: 50px;
  margin-right: 10px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 6px;
  background-color: #419dd8;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

.social-con:hover {
  background-color: #122853;
}

.social-con.hide {
  display: none;
}

.social-icon {
  width: 25px;
}

.list-item {
  padding-left: 40px;
}

.block-image {
  position: relative;
  width: 100%;
  border-radius: 10px;
}

.block-image.honest {
  width: 400px;
}

.el-circle {
  position: absolute;
  left: 0%;
  top: 0%;
  right: auto;
  bottom: auto;
}

.el-circle.tools {
  left: -35px;
  top: 50px;
}

.el-circle.time {
  left: 50px;
  top: auto;
  right: auto;
  bottom: 50px;
}

.el-circle.secured {
  left: 40%;
  top: -35px;
  right: 0%;
  bottom: auto;
}

.el-circle.award {
  left: auto;
  top: auto;
  right: 75px;
  bottom: -50px;
}

.el-circle.pig {
  left: auto;
  top: -50px;
  right: -3vw;
  bottom: auto;
}

.grid {
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.el-pattern {
  position: absolute;
  left: auto;
  top: auto;
  right: 0%;
  bottom: 0%;
}

.el-pattern.left {
  left: 0%;
  top: 0%;
  right: auto;
  bottom: auto;
}

.el-pattern.top {
  left: 10%;
  top: 10%;
  right: 0%;
  bottom: auto;
}

.text--medium {
  font-weight: 500;
}

.logos-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.nav-footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.contact-footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.contact-footer__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 340px;
  padding: 20px 30px 20px 40px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 12px;
  font-size: 16px;
  text-decoration: none;
}

.contact-footer__item.color--dark-blue.text--bold {
  background-color: #f3f3f5;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

.contact-footer__item.color--dark-blue.text--bold:hover {
  background-color: #ededef;
}

.contact-footer__item.color--dark-blue.text--bold.gap {
  margin-right: 10px;
}

.contact-icon {
  margin-right: 20px;
}

.copyright {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.sm {
  font-size: 16px;
}

.testimonials-base {
  margin-top: 60px;
}

.test-card {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: 550px;
  margin-bottom: 20px;
  padding: 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  border-style: solid;
  border-width: 1px;
  border-color: rgba(18, 40, 83, 0.1);
  border-radius: 25px;
}

.lg {
  font-size: 20px;
}

.el-cert {
  width: 172px;
}

.nav-social {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.nav-links {
  display: none;
}

.coupon-base {
  position: fixed;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 9999;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: rgba(18, 40, 83, 0.75);
}

.coupon-base.hide {
  display: none;
}

.link-2 {
  display: block;
}

.download-coupon.nav-text.color--white {
  display: block;
  margin-top: 10px;
}

.close-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 30px;
  height: 30px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.close-btn.color--white {
  margin-bottom: 10px;
  margin-left: auto;
  border-radius: 50%;
  background-color: #122853;
  cursor: pointer;
}

.hide {
  display: none;
}

.grid-2 {
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
}

.el-map {
  display: block;
  width: 65vw;
  margin: 10px auto;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

.el-map:hover {
  box-shadow: 1px 1px 15px 1px rgba(18, 40, 83, 0.5);
}

.big--letter {
  font-size: 65px;
}

.honest-quote {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.el-white {
  display: inline;
  width: 30px;
  margin-right: 10px;
  margin-bottom: 10px;
  -webkit-filter: invert(100%) brightness(200%) grayscale(100%);
  filter: invert(100%) brightness(200%) grayscale(100%);
}

.el-white.right {
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: 10px;
  float: none;
}

@media screen and (max-width: 991px) {
  .container {
    padding-right: 20px;
    padding-left: 20px;
  }

  .container.container--nav {
    padding-right: 0px;
    padding-left: 0px;
  }

  .block-header.large.color--white.header-hero {
    width: auto;
  }

  .btn.bg--orange.color--white {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  .btn.bg--orange.color--white.nav-btn {
    width: 100%;
    max-width: none;
    margin-top: 20px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    border-radius: 0px;
  }

  .nav-top {
    display: block;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .nav-top.gutter {
    display: block;
    padding-right: 20px;
    padding-left: 20px;
    background-color: transparent;
    background-image: none;
  }

  .nav-bot {
    display: none;
  }

  .nav-text-link-left.bg--blue {
    display: block;
  }

  .nav-text-link-left.bg--orange {
    display: block;
  }

  .nav-text-link-right.color--dark-blue {
    display: block;
  }

  .nav-logo {
    width: 250px;
    margin-right: 20px;
  }

  .nav-menu {
    display: block;
    width: 50vw;
    margin-top: 68px;
    background-color: #fff;
  }

  .grid-con.faith {
    grid-column-gap: 20px;
  }

  .grid-con.honest {
    grid-column-gap: 40px;
  }

  .grid-left.content {
    padding-right: 0px;
  }

  .grid-right.content {
    padding-left: 0px;
  }

  .el-circle.tools {
    top: 100px;
  }

  .el-circle.time {
    bottom: 0px;
    width: 50px;
  }

  .el-circle.secured {
    left: 15%;
  }

  .el-circle.award {
    right: 40px;
    width: 80px;
  }

  .el-circle.pig {
    right: 0px;
    width: 80px;
  }

  .logos-container {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .customer-img {
    margin-right: 20px;
    margin-bottom: 40px;
    margin-left: 20px;
  }

  .contact-footer {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .contact-footer__item.color--dark-blue.text--bold {
    margin-right: 10px;
    margin-bottom: 20px;
    margin-left: 10px;
  }

  .copyright {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    text-align: center;
  }

  .test-card {
    min-height: 600px;
  }

  .icon {
    color: #c6e5ff;
    font-size: 30px;
    line-height: 20px;
  }

  .menu-button {
    margin-top: 5px;
    padding: 10px 7px 7px;
    border-radius: 5px;
  }

  .menu-button.w--open {
    background-color: #419dd8;
  }

  .nav-social {
    margin-top: 20px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .nav-links {
    display: block;
  }

  .el-map {
    width: 75vw;
  }
}

@media screen and (max-width: 767px) {
  .section-base {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section-base.bg--pattern.about {
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .section-base.linear--orange {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section-base.linear--orange.reverse {
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .section-base.linear--blue.reverse {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section-base.linear--blue.no-pad-bot {
    padding-bottom: 0px;
  }

  .section-base.navbar {
    height: 67px;
  }

  .section-base.even {
    padding-top: 60px;
  }

  .section-base.testimonials {
    padding-top: 60px;
  }

  .block-header.large.color--white.header-hero {
    font-size: 40px;
    line-height: 60px;
  }

  .nav-text.color--dark-blue.padding.border.footer {
    width: 50%;
    margin-bottom: 15px;
    text-align: center;
  }

  .block-teaser.color--white.hero {
    font-size: 18px;
  }

  .btn.bg--blue.color--white.left {
    margin-top: 20px;
  }

  .nav-top {
    height: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-top.gutter {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .brand {
    display: block;
    margin-top: 5px;
  }

  .nav-top-text.nav-text.lowercase.color--white {
    display: none;
  }

  .nav-logo {
    width: 250px;
  }

  .nav-menu {
    width: 75vw;
    margin-top: 58px;
  }

  .grid-con {
    grid-row-gap: 50px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .grid-con.faith {
    grid-row-gap: 50px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .grid-con.service {
    grid-row-gap: 30px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .block-image.honest {
    display: block;
    width: 80%;
    margin-right: auto;
    margin-left: auto;
  }

  .el-circle.tools {
    display: none;
  }

  .el-circle.time {
    left: 10px;
  }

  .el-circle.secured {
    left: 15%;
  }

  .el-circle.pig {
    display: none;
  }

  .el-pattern.top {
    left: 0%;
  }

  .nav-footer {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .el-cert {
    margin-top: 20px;
  }

  .menu-button {
    margin-top: 5px;
  }

  .coupon-base {
    padding-right: 40px;
    padding-left: 40px;
  }

  .el-map {
    width: 85vw;
  }
}

@media screen and (max-width: 479px) {
  .section-base.hero {
    min-height: 600px;
  }

  .block-header.large.color--white.header-hero {
    line-height: 50px;
  }

  .nav-top.gutter {
    padding-right: 10px;
    padding-left: 20px;
  }

  .brand {
    margin-top: 10px;
    padding-left: 0px;
  }

  .nav-logo {
    width: 225px;
    margin-right: 0px;
  }

  .nav-menu {
    width: 101vw;
    margin-top: 57px;
  }

  .block-image.honest {
    width: 100%;
  }

  .test-card {
    height: auto;
    min-height: 500px;
  }

  .el-cert {
    margin-top: 40px;
  }

  .menu-button {
    margin-top: 7px;
  }

  .coupon-base {
    padding-right: 10px;
    padding-left: 10px;
  }

  .el-map {
    width: 100vw;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_449d3fd3-dad7-424a-f638-e7ca3aaf078a-fbd5e456 {
    -webkit-box-ordinal-group: -9998;
    -webkit-order: -9999;
    -ms-flex-order: -9999;
    order: -9999;
  }

  #w-node-_16c92d5e-4348-d73e-9dff-179eb78b1617-fbd5e456 {
    -webkit-box-ordinal-group: -9998;
    -webkit-order: -9999;
    -ms-flex-order: -9999;
    order: -9999;
  }

  #w-node-_88969b62-d4d8-f908-88ae-cdd0c8eaf39a-fbd5e456 {
    -webkit-box-ordinal-group: -9998;
    -webkit-order: -9999;
    -ms-flex-order: -9999;
    order: -9999;
  }
}

@font-face {
  font-family: 'Sf pro display';
  src: url('../fonts/SF-Pro-Display-Black.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Sf pro display';
  src: url('../fonts/SF-Pro-Display-BoldItalic.woff') format('woff');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Sf pro display';
  src: url('../fonts/SF-Pro-Display-Heavy.woff') format('woff');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Sf pro display';
  src: url('../fonts/SF-Pro-Display-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Sf pro display';
  src: url('../fonts/SF-Pro-Display-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Sf pro display';
  src: url('../fonts/SF-Pro-Display-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}