:root {
  --off-white-grey: #ebebeb;
  --white: #fff;
  --logo-yellow: #faa31b;
  --dark-blue: #2c365e;
  --dark-grey: #3b3b3b;
}

.max-width-container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.body {
  background-color: var(--off-white-grey);
  min-height: 150vh;
  font-family: Noto Sans, sans-serif;
  overflow: visible;
}

.nav {
  background-color: var(--white);
}

.nav-container {
  justify-content: center;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
}

.logo-container {
  max-width: 200px;
}

.hero-section {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-image: linear-gradient(#000000b3, #000000b3), url('../images/store.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  grid-template-rows: auto;
  grid-template-columns: 2fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  display: flex;
}

.heading {
  color: var(--logo-yellow);
  text-align: center;
  flex-flow: column;
  margin-top: 0;
  margin-bottom: auto;
  font-size: 4.375rem;
  font-weight: 800;
  line-height: 100%;
  display: block;
}

.hero-content {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 60px;
  display: flex;
}

.paragraph {
  color: var(--off-white-grey);
  text-align: center;
  max-width: 710px;
  font-size: 1.25rem;
  line-height: 170%;
}

.subheading {
  color: var(--off-white-grey);
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 1.671rem;
  font-weight: 700;
  line-height: 100%;
}

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

.div-block {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.button-primary {
  background-color: var(--logo-yellow);
  text-transform: uppercase;
  border-radius: 6px;
  padding: 15px 25px;
  font-size: 1rem;
  font-weight: 700;
  transition: all .4s cubic-bezier(.645, .045, .355, 1);
}

.button-primary:hover {
  background-color: var(--dark-blue);
  box-shadow: 0 0 17px -1px var(--off-white-grey);
  transform: translate(2px, -2px);
}

.countdown-text {
  color: var(--off-white-grey);
  margin-bottom: 0;
  font-size: 30px;
  font-weight: 700;
  line-height: 100%;
  position: static;
}

.div-block-2 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.countdown-section {
  background-color: var(--dark-grey);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 60px;
  display: flex;
}

.section {
  color: var(--dark-grey);
  margin-top: 120px;
  padding-left: 60px;
  padding-right: 60px;
}

.section.blue {
  background-color: var(--dark-blue);
  color: var(--off-white-grey);
  padding-top: 60px;
  padding-bottom: 60px;
  display: none;
}

.paragraph-2 {
  font-size: 20px;
  line-height: 100%;
}

.body-text {
  font-size: 1.25rem;
  line-height: 140%;
}

.body-text.centered {
  text-align: center;
  cursor: default;
  font-size: 1.25rem;
}

.body-text.max-w-75 {
  max-width: 75%;
  font-size: 1.25rem;
}

.grid-display {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  margin-top: 60px;
  display: grid;
}

.service-card {
  background-color: var(--white);
  border-radius: 10px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding: 30px 15px;
  transition: box-shadow .3s, transform .3s;
  display: flex;
  box-shadow: 0 0 9px #0003;
}

.service-card:hover {
  transform: translate(2px, -5px);
  box-shadow: -4px 5px 9px #0003;
}

.card-icon {
  width: 23%;
}

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

.heading2 {
  text-align: center;
  cursor: default;
  font-size: 1.75rem;
}

.heading-4, .paragraph-4 {
  text-align: center;
}

.wink-image {
  z-index: -10;
  opacity: .07;
  width: 380px;
  position: absolute;
  inset: -60px -240px auto auto;
  transform: rotate(14deg);
}

.split-view {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.div__left {
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.form {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  max-width: 440px;
  display: block;
}

.form-label {
  font-size: 1.25rem;
  line-height: 100%;
}

.form-field {
  border-radius: 10px;
  height: 42px;
  margin-bottom: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 1.25rem;
  line-height: 100%;
}

.map {
  border-radius: 10px;
  margin-top: 60px;
}

.div_bottom {
  margin-top: 30px;
}

.footer-dark {
  background-color: var(--white);
  border-bottom: 1px solid #e4ebf3;
  margin-top: 120px;
  padding: 50px 60px 15px;
  position: relative;
  box-shadow: 0 0 5px #0003;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-wrapper {
  color: var(--dark-grey);
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.footer-content {
  grid-column-gap: 70px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: 1fr;
  display: grid;
}

.footer-block {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.title-small {
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
}

.footer-link {
  color: var(--dark-grey);
  margin-top: 12px;
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 16px;
  text-decoration: none;
}

.footer-link:hover {
  color: #1a1b1fbf;
}

.footer-social-block {
  justify-content: flex-start;
  align-items: center;
  margin-top: 12px;
  margin-left: -12px;
  display: flex;
}

.footer-social-link {
  margin-left: 12px;
}

.footer-divider {
  background-color: #e4ebf3;
  width: 100%;
  height: 1px;
  margin-top: 70px;
  margin-bottom: 15px;
}

.footer-copyright-center {
  text-align: center;
  font-size: 14px;
  line-height: 16px;
}

.footer-logo {
  width: 200px;
}

.heading-5, .heading-6, .heading-7 {
  font-size: 2.375rem;
}

.page-wrapper {
  overflow: hidden;
}

.success-message {
  background-color: var(--off-white-grey);
  color: var(--dark-grey);
}

.error-message {
  color: var(--dark-grey);
}

.loading-wrapper {
  background-color: var(--white);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0%;
  overflow: visible;
}

.image {
  width: 300px;
}

.lottie-animation {
  width: 150px;
  margin-top: 30px;
}

@media screen and (max-width: 991px) {
  .logo-container {
    max-width: 160px;
  }

  .body-text.max-w-75 {
    max-width: 75%;
  }

  .grid-display {
    grid-template-columns: 1fr 1fr;
  }

  .heading2 {
    text-align: center;
  }

  .form {
    max-width: none;
  }

  .container {
    max-width: 728px;
  }

  .footer-content {
    grid-column-gap: 60px;
  }

  .footer-logo {
    width: 160px;
  }

  .image {
    width: 260px;
  }
}

@media screen and (max-width: 767px) {
  .logo-container {
    max-width: 150px;
  }

  .section {
    margin-top: 60px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .grid-display {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .wink-image {
    opacity: .11;
  }

  .split-view {
    grid-template-columns: 1fr;
  }

  .map {
    margin-top: 30px;
  }

  .footer-dark {
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .footer-block {
    align-items: center;
  }

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

  .footer-link:hover {
    color: #1a1b1fbf;
  }

  .footer-social-block {
    margin-top: 20px;
    margin-left: -20px;
  }

  .footer-social-link {
    margin-left: 20px;
  }

  .footer-divider {
    margin-top: 60px;
  }

  .footer-logo {
    width: 150px;
  }
}

@media screen and (max-width: 479px) {
  .hero-content {
    max-width: 100%;
  }

  .section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .body-text.max-w-75, .container {
    max-width: none;
  }

  .loading-wrapper {
    padding-left: 30px;
    padding-right: 30px;
  }

  .lottie-animation {
    width: 110px;
  }
}

#w-node-_7fbbba68-0114-5b41-32e2-af4e795fac7d-e601eb49, #w-node-e18e764f-f51a-f4e1-2487-3ce84f68e14a-e601eb49, #w-node-_2c094c8d-dc9f-53e7-83ec-5797f0352ce3-e601eb49, #w-node-e3436068-80c2-ae95-f6dc-d246a4984822-e601eb49, #w-node-f2f0b5c3-84c8-5aa9-7572-dd358498f930-e601eb49, #w-node-_7fbbba68-0114-5b41-32e2-af4e795fac7d-44d13a67, #w-node-e18e764f-f51a-f4e1-2487-3ce84f68e14a-44d13a67, #w-node-_2c094c8d-dc9f-53e7-83ec-5797f0352ce3-44d13a67, #w-node-e3436068-80c2-ae95-f6dc-d246a4984822-44d13a67, #w-node-_5e09f460-3ec3-8a2b-dd1d-35a2eb59320c-44d13a67 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}


