:root {
  --dark-turquoise: #0cc;
  --dark-cyan: #099;
  --gold: #ffdb6d;
  --dark-slate-gray-2: #35373b;
  --dark-slate-gray: #282b30;
  --steel-blue: #2284bd;
  --black: #1e2024;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-layout-layout {
  grid-row-gap: 20px;
  grid-column-gap: 20px;
  grid-auto-columns: 1fr;
  justify-content: center;
  padding: 20px;
}

.w-layout-cell {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  color: #333;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

h1 {
  color: #2284bd;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Roboto, sans-serif;
  font-size: 25px;
  font-weight: 100;
  line-height: 44px;
}

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: 700;
  line-height: 36px;
}

h3 {
  color: #77818c;
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 20px;
  font-family: Roboto, sans-serif;
  font-size: 28px;
  font-weight: 300;
  line-height: 30px;
}

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

h5 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
}

p {
  color: #77818c;
  margin-top: 0;
  margin-bottom: 5px;
  font-family: Roboto, sans-serif;
  font-size: 13px;
  line-height: 22px;
}

.button {
  color: #fff;
  text-align: center;
  background-color: #000;
  border: 2px solid #000;
  border-radius: 3px;
  margin-top: 15px;
  padding: 4px 15px;
  font-family: Roboto, sans-serif;
  text-decoration: none;
  display: inline-block;
}

.button:hover {
  background-color: #4d4d4d;
}

.button.white-lined {
  background-color: #0000;
  border-color: #fff;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  transition: background-color .5s, border-color .5s;
}

.button.white-lined:hover {
  border-color: var(--dark-turquoise);
  background-color: var(--dark-cyan);
}

.button.white-lined.w--current:hover {
  border-color: var(--dark-turquoise);
}

.button.pricing-button {
  transition: background-color .5s, border-color .5s;
}

.button.pricing-button:hover, .button.pricing-button.active {
  background-color: #2284bd;
  border-color: #2284bd;
}

.button.pricing-button.active:hover {
  background-color: #000;
  border-color: #000;
}

.button.divider-button {
  border-color: var(--dark-cyan);
  background-color: var(--dark-cyan);
  border-radius: 0;
  width: 120px;
  margin-top: 44px;
  margin-left: auto;
  margin-right: auto;
  transition: box-shadow .2s, background-color .5s;
  display: block;
}

.button.divider-button:hover {
  color: #fff;
  background-color: #099;
  border-style: none;
  border-color: #000;
  box-shadow: 0 4px 6px #000;
}

.button.faded {
  color: #77818c;
  text-align: center;
  background-color: #ebeced;
  border-style: solid;
  border-color: #ebeced;
  transition: background-color .5s, border-color .5s;
}

.button.faded:hover {
  border-color: var(--gold);
  background-color: var(--dark-cyan);
  opacity: 1;
  color: #fff;
}

.top-section {
  background-color: #5c5c5c;
  height: 550px;
}

.navbar {
  z-index: 900;
  background-color: #fff;
  border-bottom: 1px solid #dbdbdb;
  padding-top: 12px;
  padding-bottom: 12px;
  transition: background-color .5s, padding-bottom .5s, padding-top .5s;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
}

.navbar:hover {
  background-color: #f7f7f7;
  padding-top: 20px;
  padding-bottom: 20px;
}

.page-content {
  background-color: #f5f5f5;
  padding-top: 40px;
  padding-bottom: 33px;
  display: block;
  overflow: visible;
}

.page-content.intro {
  background-color: #fff;
  padding-top: 37px;
  padding-bottom: 54px;
}

.left-column {
  padding-left: 0;
  padding-right: 0;
}

.right-column {
  flex-flow: wrap;
  place-content: stretch space-between;
  align-items: stretch;
  padding-left: 0;
  padding-right: 0;
  display: block;
}

.slider-3 {
  height: 750px;
}

.slider-3.dtpslide {
  flex-direction: column;
  flex: 12 0 auto;
  order: 0;
  justify-content: center;
  align-self: flex-start;
  height: 750px;
  display: block;
}

.text-block {
  background-color: #fff;
  border-top: 1px solid #dbdbdb;
  border-bottom: 1px #dbdbdb;
  height: 250px;
  padding: 25px 20px 20px;
  transition: background-color .5s, border-color .5s;
}

.text-block:hover {
  background-color: #35373b;
  border-top-color: #1e2024;
}

.text-block.end {
  border-bottom-style: solid;
  padding-top: 10px;
  padding-bottom: 10px;
}

.text-block.right-aligned {
  text-align: right;
  height: 250px;
  min-height: 33%;
  padding: 20px;
  position: static;
}

.map {
  height: 750px;
}

.contact-column {
  text-align: left;
  background-color: #ededed;
  height: 100%;
  margin-bottom: 0;
  padding: 20px;
  transition: background-color .5s;
}

.contact-column:hover {
  background-color: #35373b;
}

.nav-link {
  opacity: .4;
  color: #000;
  border: 2px solid #0000;
  border-radius: 3px;
  margin-top: 7px;
  margin-right: 3px;
  padding: 5px 15px;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  font-weight: 600;
  transition: background-color .5s;
}

.nav-link:hover {
  border: 2px solid var(--gold);
  background-color: var(--dark-cyan);
  opacity: 1;
  color: #fff;
  border-radius: 0;
}

.nav-link.w--current {
  color: #000;
  margin-top: 7px;
}

.nav-link.w--current:hover {
  color: #fff;
}

.top-slider {
  background-color: #4d4d4d;
  width: 100%;
  height: 100%;
}

.top-slide {
  background-image: linear-gradient(#0000001c, #0000001c), url('../images/bg10.jpg');
  background-position: 0 0, 100%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  padding-top: 120px;
}

.top-slide._2 {
  background-image: url('../images/bg7-2.jpg');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
}

.top-slide._3 {
  background-image: url('../images/bg5-2.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.top-slide-container {
  text-align: center;
  padding-left: 30px;
  padding-right: 30px;
}

.slider-title {
  color: #fff;
  text-transform: uppercase;
  text-shadow: 0 0 4px #0006;
  border-top: 3px solid #fff;
  border-bottom: 3px solid #fff;
  margin-bottom: 40px;
  padding-top: 25px;
  padding-bottom: 25px;
  font-family: museo-sans, sans-serif;
  font-size: 36px;
  font-weight: 700;
}

.slider-subtitle {
  color: #fff;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-family: Roboto, sans-serif;
  font-size: 13px;
}

.info-block {
  color: #000;
  text-align: center;
  background-color: #fff;
  border: 2px solid #d1d1d1;
  border-radius: 3px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  height: 180px;
  padding: 30px 10px;
  text-decoration: none;
  transition: background-color .5s, border-color .5s;
  display: block;
}

.info-block:hover {
  background-color: #ffd33461;
  border-width: 2px;
  border-color: #fff;
  border-radius: 0;
}

.icon-block {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: #fff;
  border: 2px solid #e3e3e3;
  border-radius: 100px;
  justify-content: center;
  align-items: flex-start;
  width: 90px;
  height: 90px;
  margin: -73px auto -17px;
  padding: 21px 20px 0;
  display: flex;
  box-shadow: 0 0 0 3px #f2f2f2;
}

.icon-block.why {
  margin-top: -110px;
}

.slider-2-slide {
  background-image: url('../images/joanna-kosinska-129039-unsplash.jpg');
  background-position: 0 0;
  background-size: cover;
}

.slider-2-slide._2 {
  background-image: url('../images/bg14.jpg');
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: cover;
}

.slider-2-slide._3 {
  background-image: url('../images/gareth-harper-128701-unsplash.jpg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.text-container {
  float: left;
  width: 100%;
  max-width: 550px;
}

.text-container.right-aligned {
  float: right;
  width: auto;
}

.text-container.right-aligned.contbox {
  float: none;
  margin-left: auto;
}

.pricing-box {
  opacity: .85;
  color: #fff;
  text-align: center;
  min-height: 500px;
}

.pricing-box:hover {
  opacity: .95;
}

.pricing-box.active {
  opacity: 1;
}

.pricing-column {
  padding-left: 0;
  padding-right: 0;
}

.pricing-title {
  color: #fff;
  letter-spacing: 0;
  text-transform: uppercase;
  background-color: #1e2024;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 20px;
  padding-bottom: 20px;
  font-family: Roboto, sans-serif;
  font-weight: 700;
}

.pricing-title.price {
  background-color: #363b40;
  padding-bottom: 10px;
  font-size: 34px;
  font-weight: 900;
}

.pricing-title.price-description {
  color: #fff6;
  text-transform: uppercase;
  background-color: #363b40;
  padding-top: 0;
  padding-bottom: 10px;
  font-size: 10px;
}

.pricing-box-list-item {
  background-color: #fff;
  border: 1px solid #cfcfcf;
  border-top-style: none;
  padding-top: 5px;
  padding-bottom: 5px;
}

.pricing-box-list-item:hover {
  background-color: #edf0f2e6;
}

.pricing-box-list-item.end {
  padding-top: 30px;
  padding-bottom: 45px;
}

.pricing-box-list-item.end:hover {
  background-color: #edf0f2e6;
}

.pricing-feature-text {
  color: #9c9da6;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.section-intro-block {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  text-transform: uppercase;
  border-top: 3px solid #ededed;
  border-bottom: 3px solid #ededed;
  margin-top: 0;
  padding-top: 20px;
  padding-bottom: 23px;
  font-family: Roboto, sans-serif;
  font-size: 40px;
  font-weight: 300;
}

.section-title._2 {
  text-transform: uppercase;
  border-top-style: none;
  border-bottom-style: none;
  margin-bottom: 0;
  padding-top: 0;
  font-size: 13px;
  font-weight: 700;
}

.bottom-footer {
  text-align: center;
  background-color: #1a1b1c;
  padding: 30px 50px;
}

.some-block {
  float: left;
  background-color: #35373b;
  border-radius: 30px;
  width: 40px;
  height: 40px;
  margin-right: 8px;
  padding-top: 10px;
  padding-left: 10px;
  padding-right: 10px;
  transition: background-color .5s;
  display: block;
}

.some-block:hover {
  background-color: var(--dark-cyan);
}

.some-block.email {
  display: none;
}

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

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

.slider-navigation {
  opacity: .4;
  padding-top: 50px;
  padding-bottom: 50px;
  transition: opacity .5s;
}

.slider-navigation:hover {
  opacity: 1;
}

.slider-arrow {
  border: 0px solid var(--dark-cyan);
  background-color: #0003;
  border-radius: 3px;
  width: 40px;
  height: 40px;
  padding-top: 8px;
  font-size: 22px;
  transition: background-color .5s, border-radius .5s, font-size .5s;
}

.slider-arrow:hover {
  border: 0px solid var(--dark-cyan);
  background-color: var(--dark-turquoise);
  border-radius: 30px;
}

.slider-arrow.testimonials {
  border-width: 0;
  border-radius: 3px;
  margin-top: 110px;
}

.slider-arrow.testimonials:hover, .slider-arrow.testimonials.right:hover {
  border-radius: 30px;
}

.testimonials-section {
  padding-top: 120px;
}

.testimonial-slider {
  background-color: #fff0;
  height: 290px;
}

.testimonial-slide {
  background-color: #fff0;
  padding-top: 91px;
  overflow: visible;
}

.testimonial-photos-row {
  margin-bottom: 50px;
}

.testimonial-photo {
  opacity: .5;
}

.testimonial-photo.active {
  opacity: 1;
}

.testimonial-text-block {
  text-align: center;
  padding-left: 100px;
  padding-right: 100px;
}

.testimonial-title {
  font-family: Roboto, sans-serif;
  font-size: 22px;
  display: inline-block;
}

.testimonial-text {
  margin-bottom: 25px;
  font-family: museo-sans, sans-serif;
  font-size: 19px;
  font-style: normal;
  line-height: 25px;
}

.contact-title {
  color: #77818c;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 40px;
  font-family: Roboto, sans-serif;
  font-size: 45px;
  font-weight: 300;
}

.contact-title._2 {
  text-transform: uppercase;
  margin-bottom: 0;
  padding-left: 3px;
  font-size: 13px;
  font-weight: 700;
}

.field {
  border: 2px solid #fff;
  height: 50px;
  font-family: Roboto, sans-serif;
  box-shadow: inset 0 0 #ffffff80, 0 0 #000;
}

.field:hover {
  background-color: #e6e6e6;
}

.field:active {
  border-color: #359edb;
}

.field:focus {
  color: #000;
  border-color: #359edb;
}

.field.area {
  height: 150px;
  padding-top: 14px;
}

.submit-button {
  color: #fff;
  text-transform: uppercase;
  background-color: #77818c;
  border: 2px solid #77818c;
  width: 100%;
  font-family: Roboto, sans-serif;
  font-size: 13px;
  font-weight: 900;
  transition: background-color .5s;
}

.submit-button:hover {
  border-color: var(--gold);
  background-color: var(--dark-cyan);
  color: #fff;
}

.divider-with-symbol {
  background-color: #e3e3e3;
  width: 100%;
  height: 1px;
  margin-bottom: 20px;
}

.divider-symbol {
  background-color: #fff;
  border: 1px solid #e3e3e3;
  border-radius: 50px;
  width: 50px;
  height: 50px;
  margin-bottom: -22px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 11px;
  padding-left: 13px;
  padding-right: 13px;
  display: block;
  position: relative;
}

.divider-container {
  text-align: center;
  height: auto;
  margin-top: 50px;
}

.slider-3-slide {
  background-image: url('../images/bg1.jpg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.slider-3-slide._2 {
  background-image: url('../images/bg2.jpg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.slider-3-slide._3 {
  background-image: url('../images/bg6.jpg');
}

.divider-icon {
  opacity: .2;
}

.pricing-row {
  margin-bottom: 70px;
}

.important-text {
  font-weight: 900;
}

.intro-title {
  color: #25282b;
  text-transform: none;
  margin-bottom: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  font-weight: 400;
}

.link {
  color: #396491;
  font-family: Roboto, sans-serif;
  font-size: 13px;
  text-decoration: none;
}

.link:hover {
  color: #006fe6;
}

.link.testimonial-url {
  color: #b4c2d1;
  text-align: center;
  display: block;
}

.link.testimonial-url:hover {
  color: #2284bd;
}

.footer-bottom-text {
  opacity: .5;
  color: #aab3bd;
  letter-spacing: 1px;
  margin-top: 12px;
  font-size: 12px;
}

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

.important-text-grey {
  color: #ededed;
}

.success-bg {
  background-color: var(--dark-cyan);
  text-align: center;
  border-radius: 3px;
  padding-top: 13px;
}

.success-text {
  color: #fff;
  font-size: 16px;
}

.error-bg {
  text-align: center;
  background-color: #ff0004;
  padding-top: 14px;
}

.fixed-nav {
  z-index: 1000;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.header {
  z-index: 4000;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.image {
  margin-top: 5px;
}

.image-2 {
  clear: both;
  margin-top: 52px;
  margin-bottom: 41px;
  display: inline-block;
}

.image-2.small, .image-2.mid, .container {
  display: none;
}

.paragraph, .paragraph-2 {
  font-family: museo-sans, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

.div-block {
  flex-flow: column wrap;
  justify-content: space-between;
  align-items: stretch;
  width: auto;
  height: 100%;
  min-height: 743px;
  max-height: none;
  display: block;
  overflow: visible;
}

.html-embed {
  flex: 1;
  height: 100%;
}

.html-embed.map {
  height: 743px;
  display: block;
}

.boxhead {
  color: #fff;
  text-align: right;
  justify-content: flex-end;
  align-items: flex-start;
  margin-top: 24px;
  margin-right: 8px;
  font-family: museo-sans, sans-serif;
  font-size: 100px;
  font-weight: 700;
  display: flex;
}

.boxhead.left {
  text-align: left;
  justify-content: flex-start;
  margin-top: 40px;
  margin-left: 30px;
  margin-right: 30px;
  font-size: 66px;
  display: block;
  overflow: visible;
}

.boxhead.left.adj {
  margin-left: 24px;
}

.boxhead.right {
  color: #fff;
  -webkit-text-stroke-color: #00140f;
  text-transform: none;
  margin-top: 40px;
  margin-right: 30px;
  font-size: 36px;
  font-weight: 300;
  line-height: 37px;
  display: block;
}

.boxhead.right.black {
  color: #000;
}

.appicon {
  width: auto;
  height: 30px;
  margin-right: 7px;
}

.appicon.tiny {
  display: none;
}

.image-3 {
  width: auto;
  height: 30px;
}

.image-4 {
  height: 30px;
  margin-right: 7px;
}

.image-4.tiny {
  display: none;
}

.image-5 {
  height: 30px;
  margin-right: 7px;
}

.image-5.tiny {
  display: none;
}

.slider-2, .slider-4 {
  height: 750px;
}

.slider-4-slide {
  background-image: linear-gradient(#0000001a, #0000001a), url('../images/bg13.jpg');
  background-position: 0 0, 10%;
  background-size: auto, cover;
}

.slider-4-slide._2 {
  background-image: url('../images/bg12.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.slider-4-slide._3 {
  background-image: linear-gradient(#00000042, #00000042), url('../images/bg11.jpg');
  background-position: 0 0, 100%;
  background-size: auto, cover;
}

.paragraph-3, .paragraph-4 {
  font-family: museo-sans, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

.image-6 {
  margin-right: 7px;
}

.image-6.tiny {
  display: none;
}

.subhead {
  color: #fff;
  margin-left: 30px;
  font-family: museo-sans, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 30px;
}

.subhead.sub-right {
  text-align: right;
  margin-right: 30px;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.text-block-2, .heading {
  font-family: museo-sans, sans-serif;
}

.bold-text {
  font-family: museo-sans, sans-serif;
  font-weight: 700;
}

.bold-text-2 {
  font-family: museo-sans, sans-serif;
  font-size: 28px;
}

.paragraph-5, .paragraph-6, .paragraph-7 {
  font-family: museo-sans, sans-serif;
  font-size: 16px;
  font-weight: 300;
}

.paragraph-8 {
  font-family: museo-sans, sans-serif;
  font-size: 16px;
}

.paragraph-9, .paragraph-10 {
  font-family: museo-sans, sans-serif;
  font-size: 16px;
  font-weight: 300;
}

.paragraph-11 {
  justify-content: flex-start;
  font-family: museo-sans, sans-serif;
  font-size: 16px;
  font-weight: 300;
  display: block;
}

.heading-2 {
  color: #77818c;
  font-family: museo-sans, sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 28px;
}

.text-block-3 {
  clear: none;
  color: #77818c;
  font-family: museo-sans, sans-serif;
  font-weight: 300;
}

.left30 {
  color: #fff;
  margin-left: 31px;
  font-family: museo-sans, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 26px;
}

.paragraph-12, .paragraph-13 {
  font-family: museo-sans, sans-serif;
  font-size: 16px;
  font-weight: 300;
}

.right30 {
  color: #fff;
  text-align: right;
  margin-left: 0;
  margin-right: 30px;
  font-family: museo-sans, sans-serif;
  font-size: 20px;
  line-height: 26px;
}

.paragraph-14 {
  margin-top: 10px;
  padding-left: 9px;
  font-family: museo-sans, sans-serif;
  font-size: 15px;
}

.heading-3 {
  color: #282b30;
  text-align: center;
  border-top: 3px solid #ededed;
  border-bottom: 3px solid #ededed;
  margin-top: 63px;
  margin-bottom: 49px;
  padding-top: 15px;
  padding-bottom: 15px;
  font-size: 40px;
}

.heading-4 {
  color: #282b30;
  text-align: center;
  text-transform: none;
  font-weight: 700;
}

.heading-5 {
  color: #282b30;
  text-align: center;
  font-size: 20px;
  line-height: 30px;
}

.column {
  border-left: 3px solid #0000001a;
}

.image-7 {
  text-align: center;
  border: 3px solid #ededed;
  border-radius: 50px;
  width: 100px;
  height: 100px;
  display: inline-block;
  position: relative;
}

.div-block-2 {
  text-align: center;
}

.section {
  background-color: #50a699;
  padding-top: 0;
  padding-bottom: 20px;
}

.bold-text-3, .bold-text-4 {
  font-weight: 300;
}

.section-2, .section-3 {
  display: none;
}

.text-block-4 {
  color: #fff;
  font-family: museo-sans, sans-serif;
  font-size: 17px;
  line-height: 25px;
  position: static;
  inset: 0% 0% auto auto;
}

.text-block-4.black {
  color: #000;
}

.cell {
  justify-content: flex-end;
  align-items: flex-start;
}

.quick-stack {
  margin-left: 220px;
  margin-right: 220px;
  padding-bottom: 63px;
  padding-left: 20px;
  padding-right: 20px;
}

.cell-2, .cell-3, .cell-4, .cell-5 {
  align-items: flex-end;
}

.paragraph-15 {
  margin-top: 10px;
  font-family: museo-sans, sans-serif;
  font-size: 15px;
}

.section-4 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: #ffec915c;
  flex-flow: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: flex-start;
  height: 230px;
  margin-top: 0;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
}

.section-4.second {
  flex-flow: column;
  height: 350px;
}

.section-4.faq {
  flex-flow: column;
  height: auto;
}

.heading-15 {
  border-top: 1px solid var(--dark-slate-gray-2);
  margin-top: 12px;
  padding-top: 17px;
  font-family: museo-sans, sans-serif;
  font-weight: 300;
}

.heading-15.noline {
  border-top-width: 0;
}

.bold-text-7 {
  color: #00140f;
  text-transform: none;
  font-weight: 700;
}

.paragraph-16 {
  color: #111314;
  font-family: museo-sans, sans-serif;
  font-size: 18px;
  line-height: 30px;
}

.section-5 {
  text-align: center;
  background-image: url('../images/bg5-2.jpg');
  background-position: 50% 39%;
  background-size: cover;
  height: 435px;
  margin-top: 0;
}

.heading-16 {
  color: #fff;
  border-bottom: 2px solid #fff;
  margin-left: 220px;
  margin-right: 220px;
  padding-bottom: 10px;
  font-family: museo-sans, sans-serif;
  font-size: 32px;
  font-weight: 700;
}

.container-3 {
  text-align: left;
  border-top: 2px solid #4e4e4e;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  height: 490px;
  display: block;
}

.quick-stack-2 {
  flex: 0 auto;
  align-self: center;
  height: 130px;
}

.heading-17 {
  text-align: center;
  vertical-align: top;
  object-fit: fill;
  order: -1;
  align-self: flex-start;
  width: 350px;
  margin-left: auto;
  margin-right: auto;
  padding: 5px;
  font-family: museo-sans, sans-serif;
  font-size: 22px;
  font-weight: 400;
  display: block;
}

.div-block-4 {
  text-align: center;
  background-color: #fff;
  justify-content: flex-start;
  align-items: center;
  width: 242px;
  margin-top: -45px;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
  position: relative;
}

.image-8 {
  margin-top: 10px;
}

.list {
  font-family: museo-sans, sans-serif;
  font-size: 18px;
}

.text-span, .text-span-2, .text-span-3, .text-span-4, .text-span-5, .text-span-6 {
  line-height: 30px;
}

.div-block-5 {
  border-bottom: 1px dashed #4d4d4d;
  margin-top: 10px;
}

.paragraph-17 {
  border-bottom: 0px solid var(--dark-slate-gray);
  color: var(--dark-slate-gray);
  font-family: museo-sans, sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.paragraph-18 {
  border-bottom: 0px solid var(--dark-slate-gray);
  color: var(--dark-slate-gray);
  margin-bottom: 10px;
  font-family: museo-sans, sans-serif;
  font-size: 16px;
  line-height: 23px;
}

.container-4 {
  box-sizing: border-box;
  object-fit: fill;
  flex-flow: column;
  justify-content: space-between;
  align-self: stretch;
  align-items: flex-start;
  display: flex;
}

.field-label, .field-label-2 {
  font-family: museo-sans, sans-serif;
  font-size: 16px;
}

.submit-button-2 {
  background-color: var(--dark-cyan);
  font-family: museo-sans, sans-serif;
}

.field-label-3 {
  font-family: museo-sans, sans-serif;
  font-size: 16px;
}

.textarea {
  font-family: museo-sans, sans-serif;
}

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

.div-block-6, .div-block-7, .div-block-8, .div-block-9, .div-block-10, .div-block-11 {
  margin-top: -140px;
  position: absolute;
}

.div-block-12 {
  height: 91px;
  margin-top: -114px;
  position: static;
}

.paragraph-19 {
  text-align: right;
  font-family: Roboto, sans-serif;
  font-size: 17px;
  font-style: italic;
  font-weight: 300;
}

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

html.w-mod-js [data-ix="nav-display-none"] {
  opacity: 0;
  display: none;
}

@media screen and (max-width: 991px) {
  h3 {
    color: #aab4bf;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 25px;
  }

  .button.faded {
    color: #fff;
    background-color: #2284bd;
    border-color: #2284bd;
    display: none;
  }

  .button.faded:hover {
    background-color: #0000;
  }

  .button.faded.topbutton {
    display: inline-block;
  }

  .page-content {
    padding: 70px 30px 20px;
  }

  .page-content.intro {
    padding-top: 90px;
    padding-bottom: 70px;
  }

  .slider-3 {
    height: 600px;
  }

  .text-block {
    height: 250px;
    padding-top: 20px;
    padding-left: 20px;
  }

  .text-block:hover {
    background-color: #282b30;
    border-top-color: #dbdbdb;
  }

  .text-block.end {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .text-block.right-aligned {
    height: 250px;
    margin-top: 0;
    padding-right: 30px;
  }

  .map {
    height: 600px;
  }

  .contact-column {
    height: 770px;
    padding-top: 50px;
    padding-right: 30px;
  }

  .logo-container {
    padding-top: 7px;
  }

  .nav-link {
    background-color: var(--dark-cyan);
    opacity: 1;
    color: #fff;
    border-style: none none solid;
    border-color: #000 #000 #262626;
    border-bottom-width: 1px;
    border-radius: 0;
    width: 100%;
    max-width: 991px;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    padding-top: 22px;
    padding-bottom: 22px;
    padding-left: 25px;
    font-size: 16px;
  }

  .nav-link:hover {
    background-color: var(--dark-cyan);
    color: var(--gold);
    border-width: 0 0 1px;
    border-bottom-style: solid;
    border-bottom-color: #000;
  }

  .nav-link.w--current {
    color: #b8b8b8;
    width: 100%;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .nav-link.w--current:hover {
    color: #fff;
  }

  .top-slide-container {
    padding-left: 50px;
    padding-right: 50px;
  }

  .slider-title {
    font-size: 40px;
  }

  .info-block {
    height: 194px;
    padding-bottom: 20px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .icon-block {
    margin-top: -65px;
    margin-bottom: 22px;
    padding-bottom: 0;
  }

  .icon-block.why {
    margin-top: -94px;
    margin-bottom: -48px;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .slider-2-slide._2 {
    background-image: linear-gradient(#0000005e, #0000005e), url('../images/bg14.jpg');
    background-position: 0 0, 0 100%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
  }

  .text-container {
    width: 330px;
  }

  .text-container.right-aligned {
    margin-left: 0;
    padding-left: 0;
  }

  .text-container.right-aligned.contbox {
    padding-left: 0;
  }

  .pricing-box-list-item.end {
    padding-top: 15px;
  }

  .section-title {
    font-size: 36px;
  }

  .section-title._2 {
    padding-bottom: 10px;
  }

  .some-block {
    background-color: #2284bd;
  }

  .some-block:hover {
    background-color: #35373b;
  }

  .slider-arrow {
    margin-top: 400px;
  }

  .slider-arrow.testimonials, .slider-arrow.testimonials.right {
    margin-top: 100px;
  }

  .testimonials-section {
    padding-top: 70px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .testimonial-slider {
    height: 230px;
  }

  .testimonial-slide {
    padding-top: 82px;
  }

  .testimonial-text-block {
    margin-top: 49px;
  }

  .testimonial-text {
    margin-bottom: -15px;
    padding-top: 0;
    font-size: 16px;
    line-height: 19px;
  }

  .full-testimonial-content {
    margin-top: -84px;
  }

  .menu-icon {
    float: right;
    font-size: 25px;
  }

  .menu-button {
    background-color: var(--dark-cyan);
    padding-top: 14px;
    padding-bottom: 12px;
    padding-right: 20px;
  }

  .menu-button:hover {
    background-color: var(--gold);
    border-radius: 3px;
  }

  .menu-button.w--open {
    background-color: var(--dark-cyan);
    border-radius: 3px;
  }

  .menu-text {
    float: right;
    color: #fff;
    margin-top: -4px;
    margin-bottom: 0;
    margin-right: 13px;
    font-size: 15px;
    font-weight: 600;
    display: inline-block;
  }

  .contact-title {
    font-size: 35px;
  }

  .submit-button {
    background-color: #77818c;
    border-color: #2284bd #2284bd #2284bd #77818c;
  }

  .submit-button:hover {
    border-left-color: var(--gold);
    background-color: var(--dark-cyan);
  }

  .pricing-row {
    margin-bottom: 0;
  }

  .intro-title {
    margin-top: 15px;
    font-size: 16px;
  }

  .important-text-white, .important-text-grey {
    color: #4e5a61;
  }

  .top-column {
    padding-left: 5px;
    padding-right: 5px;
  }

  .nav-menu-container {
    background-color: #f0f0f0;
    border-top: 1px solid #bdbdbd;
    padding-bottom: 20px;
    padding-left: 0;
  }

  .image-2 {
    margin: -47px auto 17px;
    display: block;
  }

  .image-2.mid {
    display: inline-block;
  }

  .html-embed.map {
    height: 770px;
  }

  .boxhead.left {
    font-size: 48px;
  }

  .boxhead.right {
    font-size: 32px;
  }

  .appicon {
    height: 20px;
    margin-right: 3px;
    display: inline-block;
  }

  .image-4, .image-5 {
    display: inline-block;
  }

  .slider-2 {
    height: 750px;
  }

  .slider-4 {
    height: 600px;
  }

  .slider-4.trans-slide {
    height: 750px;
  }

  .slider-4-slide {
    background-image: linear-gradient(#0000005c, #0000005c), url('../images/bg13.jpg');
    background-position: 0 0, 10%;
    background-size: auto, cover;
  }

  .image-6 {
    display: inline-block;
  }

  .subhead {
    margin-right: 15px;
    font-size: 20px;
    line-height: 20px;
  }

  .subhead.sub-right {
    font-size: 20px;
  }

  .bold-text-2 {
    font-size: 20px;
    line-height: 20px;
  }

  .paragraph-5 {
    margin-left: 0;
    font-size: 16px;
  }

  .left30, .right30 {
    font-size: 18px;
    line-height: 20px;
  }

  .paragraph-14 {
    font-size: 13px;
  }

  .heading-4 {
    font-size: 21px;
  }

  .heading-5 {
    font-size: 16px;
  }

  .heading-6 {
    font-size: 22px;
  }

  .bold-text-5 {
    font-size: 20px;
  }

  .heading-7, .heading-8, .heading-9 {
    font-size: 22px;
  }

  .heading-10 {
    font-size: 23px;
  }

  .heading-11 {
    font-size: 22px;
  }

  .heading-12 {
    margin-bottom: 0;
    font-size: 23px;
  }

  .heading-13 {
    margin-bottom: 0;
    font-size: 22px;
  }

  .heading-14 {
    margin-bottom: 0;
    margin-left: 0;
    font-size: 22px;
  }

  .container-2 {
    margin-bottom: -78px;
    padding-bottom: 0;
  }

  .section-2, .section-3 {
    display: none;
  }

  .link-block {
    margin-top: 1px;
  }

  .link-block.w--current {
    margin-top: 9px;
  }

  .quick-stack {
    margin-left: 40px;
    margin-right: 40px;
  }

  .paragraph-15 {
    font-size: 13px;
  }

  .section-4.faq {
    padding-bottom: 0;
  }

  .section-5 {
    padding-top: 88px;
  }

  .heading-16 {
    margin-top: 0;
    padding-top: 0;
    font-size: 24px;
  }

  .container-4 {
    margin-top: -79px;
  }

  .paragraph-19 {
    margin-top: 20px;
    font-size: 15px;
  }
}

@media screen and (max-width: 767px) {
  .button.white-lined {
    margin-top: 0;
  }

  .button.faded.topbutton {
    background-color: var(--dark-cyan);
  }

  .top-section {
    height: 480px;
  }

  .navbar {
    padding-left: 10px;
    padding-right: 18px;
  }

  .page-content {
    height: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .page-content.intro {
    margin-top: -1px;
    padding-top: 60px;
    padding-bottom: 50px;
    display: none;
  }

  .left-column {
    z-index: 1000;
  }

  .right-column {
    z-index: 1000;
    clear: none;
    position: relative;
  }

  .slider-3 {
    height: 300px;
  }

  .slider-3.dtpslide {
    display: none;
  }

  .text-block {
    flex-direction: column;
    justify-content: center;
    height: auto;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-right: 30px;
    display: flex;
  }

  .text-block.right-aligned {
    text-align: left;
    flex-direction: column;
    justify-content: center;
    height: 200px;
    min-height: 0%;
    padding-right: 20px;
    display: flex;
  }

  .map {
    height: 300px;
  }

  .contact-column {
    text-align: center;
    margin-bottom: 0;
    padding-right: 20px;
  }

  .nav-link {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .top-slide {
    padding-top: 70px;
  }

  .top-slide-container {
    padding-left: 50px;
    padding-right: 50px;
  }

  .slider-title {
    margin-bottom: 20px;
    font-size: 33px;
  }

  .info-block {
    height: 200px;
    margin-bottom: 21px;
    padding-bottom: 30px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .icon-block {
    margin-top: -36px;
  }

  .text-container {
    width: 100%;
  }

  .text-container.right-aligned {
    float: left;
    padding-left: 0;
  }

  .text-container.right-aligned.contbox {
    padding-left: 0;
  }

  .pricing-box {
    margin-bottom: 30px;
  }

  .pricing-box-list-item {
    padding-top: 3px;
    padding-bottom: 3px;
  }

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

  .some-block {
    float: none;
    display: inline-block;
  }

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

  .slider-navigation {
    padding-top: 50px;
  }

  .slider-arrow.testimonials, .slider-arrow.testimonials.right {
    margin-top: 75px;
  }

  .testimonials-section {
    padding-top: 50px;
    padding-bottom: 78px;
  }

  .testimonial-slider {
    height: 250px;
  }

  .testimonial-photo {
    height: 100px;
    margin-bottom: 30px;
  }

  .testimonial-photo-column {
    text-align: center;
  }

  .testimonial-text {
    margin-top: 14px;
    margin-bottom: 2px;
    padding-top: 5px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 13px;
    line-height: 17px;
  }

  .full-testimonial-content {
    margin-top: -94px;
  }

  .menu-button {
    background-color: var(--dark-cyan);
  }

  .menu-text {
    color: #fff;
  }

  .divider-container {
    margin-top: 0;
  }

  .intro-title {
    font-size: 25px;
  }

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

  .testimonial-navigation {
    opacity: .1;
    margin-top: 7px;
    margin-bottom: 0;
    padding-top: 12px;
    padding-bottom: 0;
  }

  .image {
    margin-top: 9px;
    margin-left: 20px;
  }

  .image-2 {
    margin-top: -37px;
    display: block;
  }

  .image-2.small {
    display: none;
  }

  .image-2.mid {
    display: inline-block;
  }

  .appicon.tiny, .image-4.tiny, .image-5.tiny {
    display: none;
  }

  .slider-2 {
    height: 300px;
  }

  .slider-4 {
    height: 350px;
  }

  .slider-4.trans-slide, .image-6.tiny {
    display: none;
  }

  .paragraph-14 {
    margin-bottom: 20px;
    line-height: 17px;
  }

  .column {
    border-top: 3px solid #35373b12;
    border-left-style: none;
    border-left-width: 0;
  }

  .div-block-2 {
    margin-top: 0;
  }

  .div-block-2.andrew {
    margin-top: 33px;
  }

  .grid {
    grid-column-gap: 48px;
    grid-template-columns: 1fr;
    grid-template-areas: ".";
  }

  .section-2, .section-3 {
    display: block;
  }

  .link-block.w--current {
    margin-top: 2px;
  }

  .div-block-3 {
    text-align: center;
    display: inline-block;
  }

  .left-arrow, .right-arrow-2 {
    margin-top: 40px;
  }

  .quick-stack {
    margin-left: 20px;
    margin-right: 20px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .paragraph-15 {
    line-height: 17px;
  }

  .section-4 {
    padding-top: 0;
    padding-left: 30px;
    padding-right: 30px;
  }

  .section-4.second {
    background-color: #fff;
    margin-bottom: 51px;
    padding-top: 113px;
  }

  .bold-text-7 {
    font-size: 22px;
  }

  .paragraph-16 {
    font-size: 15px;
    line-height: 23px;
  }

  .heading-16 {
    text-align: center;
    border-bottom-width: 0;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .list {
    font-size: 16px;
    line-height: 12px;
  }

  .paragraph-18 {
    font-size: 14px;
    line-height: 21px;
  }

  .paragraph-19 {
    text-align: center;
    margin-top: 4px;
    font-size: 13px;
  }

  .container-6 {
    margin-bottom: 33px;
  }

  .list-item {
    line-height: 10px;
  }
}

@media screen and (max-width: 479px) {
  h3 {
    font-size: 30px;
    line-height: 28px;
  }

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

  .button.divider-button {
    width: 100%;
  }

  .top-section {
    height: 350px;
  }

  .navbar {
    padding-left: 10px;
    padding-right: 10px;
  }

  .page-content {
    padding: 30px 25px 5px;
  }

  .page-content.intro {
    padding: 50px 25px 30px;
  }

  .slider-3 {
    height: 300px;
  }

  .text-block {
    padding-left: 25px;
    padding-right: 25px;
  }

  .text-block.right-aligned {
    flex-direction: row;
    height: 270px;
    display: block;
  }

  .text-block.right-aligned.midtext {
    flex-direction: column;
    height: 230px;
    display: flex;
  }

  .contact-column {
    height: auto;
    margin-bottom: 0;
    padding: 30px 25px 20px;
  }

  .top-slide {
    padding-top: 50px;
  }

  .top-slide-container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .slider-title {
    margin-top: 10px;
    margin-bottom: 25px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 15px;
    line-height: 15px;
  }

  .slider-subtitle {
    margin-bottom: 0;
    font-size: 10px;
  }

  .info-block {
    height: 230px;
    margin-bottom: 20px;
    padding-bottom: 25px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .icon-block.why {
    display: none;
  }

  .text-container.right-aligned {
    float: none;
    width: auto;
    padding-left: 0;
  }

  .text-container.right-aligned.contbox {
    padding-left: 0;
  }

  .pricing-box {
    min-height: 0;
  }

  .pricing-title {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .pricing-title.price-description {
    padding-bottom: 5px;
  }

  .pricing-box-list-item.end {
    padding-bottom: 20px;
  }

  .pricing-feature-text {
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 13px;
  }

  .section-intro-block {
    margin-bottom: 30px;
  }

  .section-title {
    margin-bottom: 56px;
    padding-bottom: 13px;
    padding-left: 12px;
    padding-right: 12px;
    font-size: 25px;
    line-height: 25px;
  }

  .slider-navigation {
    padding-top: 30px;
    padding-bottom: 40px;
  }

  .slider-arrow {
    margin-top: 180px;
  }

  .slider-arrow.testimonials {
    margin-left: 0;
  }

  .slider-arrow.testimonials.right {
    margin-left: 40px;
  }

  .testimonials-section {
    margin-bottom: 49px;
    padding: 30px 25px 0;
  }

  .testimonial-slider {
    height: 230px;
  }

  .testimonial-text-block {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 11px;
    line-height: 17px;
  }

  .testimonial-title {
    margin-bottom: 3px;
  }

  .testimonial-text {
    margin-bottom: 15px;
    padding-bottom: 10px;
    font-size: 14px;
    font-weight: 300;
    line-height: 18px;
  }

  .menu-button {
    border: 1px solid var(--dark-cyan);
    background-color: #0000;
    margin-top: -3px;
    padding-top: 16px;
  }

  .menu-button.w--open {
    margin-top: 0;
  }

  .contact-title {
    margin-bottom: 20px;
    font-size: 25px;
    line-height: 25px;
  }

  .link.testimonial-url {
    color: #2284bd;
  }

  .link.testimonial-url:hover {
    color: #000;
  }

  .footer-bottom-text {
    line-height: 18px;
  }

  .top-column {
    padding-left: 0;
    padding-right: 0;
  }

  .testimonial-navigation {
    margin-top: 0;
    padding-top: 68px;
    display: none;
    inset: 69px 0% 0%;
  }

  .image-2 {
    max-width: 70%;
    max-height: 10%;
    margin-bottom: 8px;
  }

  .image-2.small {
    display: inline-block;
  }

  .image-2.mid {
    display: none;
  }

  .boxhead.left {
    text-align: center;
    margin-top: 10px;
    font-size: 36px;
    line-height: 40px;
  }

  .boxhead.left.adj {
    margin-right: 24px;
  }

  .boxhead.right {
    text-align: center;
    margin-top: 10px;
    margin-left: 30px;
    font-size: 36px;
    line-height: 40px;
  }

  .appicon {
    display: none;
  }

  .appicon.tiny {
    height: 15px;
    display: inline-block;
  }

  .image-4 {
    display: none;
  }

  .image-4.tiny {
    height: 15px;
    display: inline-block;
  }

  .image-5 {
    display: none;
  }

  .image-5.tiny {
    height: 15px;
    display: inline-block;
  }

  .slider-2, .slider-4 {
    height: 250px;
  }

  .image-6 {
    display: none;
  }

  .image-6.tiny {
    height: 15px;
    margin-right: 4px;
    display: inline-block;
  }

  .subhead {
    text-align: center;
    margin-top: 0;
    margin-bottom: 2px;
  }

  .subhead.sub-right {
    text-align: center;
  }

  .left30 {
    text-align: center;
    margin-top: 12px;
    margin-left: 0;
    font-size: 14px;
    line-height: 16px;
  }

  .paragraph-12 {
    padding-right: 6px;
  }

  .right30 {
    text-align: center;
    margin-left: 30px;
  }

  .heading-3 {
    margin-bottom: 28px;
    padding-top: 15px;
    padding-bottom: 10px;
    font-size: 20px;
    line-height: 20px;
  }

  .heading-12 {
    padding-right: 36px;
  }

  .bold-text-6 {
    font-size: 30px;
    line-height: 20px;
  }

  .section-4 {
    height: 290px;
  }

  .section-4.second {
    padding-top: 88px;
  }

  .heading-16 {
    font-size: 19px;
    line-height: 25px;
  }

  .list {
    padding-left: 0;
  }

  .text-span, .text-span-2, .text-span-3, .text-span-4, .text-span-5, .text-span-6 {
    line-height: 20px;
  }

  .paragraph-18 {
    font-size: 13px;
  }

  .list-item-2 {
    line-height: 20px;
  }

  .bold-text-8 {
    font-size: 14px;
  }
}

#w-node-_60642d5f-e28e-369e-e70b-4ac83d6daef3-eb9dc0bc, #w-node-a7c6b4e8-b6e6-9fa2-c9ee-4c3078a65480-eb9dc0bc, #w-node-c0f4cc78-f7c8-45c1-33d6-11d5c02c0406-eb9dc0bc, #w-node-acf619db-08b2-41d8-696a-e7507dc7508b-eb9dc0bc {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-afd7a40c-937d-82f7-ebac-1e561839cfc9-1839cfc7 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

@media screen and (max-width: 479px) {
  #w-node-_60642d5f-e28e-369e-e70b-4ac83d6daef3-eb9dc0bc, #w-node-a7c6b4e8-b6e6-9fa2-c9ee-4c3078a65480-eb9dc0bc, #w-node-c0f4cc78-f7c8-45c1-33d6-11d5c02c0406-eb9dc0bc, #w-node-acf619db-08b2-41d8-696a-e7507dc7508b-eb9dc0bc {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }
}


