:root {
  --fresh: #f7ef6a;
  --black: #192024;
  --white-smoke-2: #f0f0f0;
  --sunshine: #465c8b;
  --vermillion: #93c178;
  --clean: #dfdce3;
  --steel-blue: #3b99d9;
  --white-smoke-3: #edeff2;
  --steel-blue-2: #2e80b6;
  --dark-khaki: #a8d069;
  --medium-sea-green: #30ad64;
  --light-sea-green: #25ccbf;
  --light-sea-green-2: #20ac99;
  --sandy-brown: #f8c740;
  --goldenrod: #e2a62b;
  --khaki: #face6a;
  --sandy-brown-2: #e4b962;
  --salmon: #fd7072;
  --indian-red: #cf404d;
  --tan: #d39f9a;
  --dim-gray: #735260;
  --indian-red-2: #af4173;
  --brown: #822e50;
  --tomato: #e64c40;
  --firebrick: #bf3a30;
  --salmon-2: #fc7d64;
  --white-smoke: #ecf0f1;
  --silver: #bec3c7;
  --dim-gray-2: #49647b;
  --dark-slate-gray: #2d3e4f;
  --dark-slate-gray-2: #404047;
  --cadet-blue: #668cad;
  --pale-turquoise: #bfe0ff;
  --light-sky-blue: #69b9ff;
  --dodger-blue: #2e9dff;
  --dim-gray-3: #676770;
  --light-slate-gray: #8e8e9c;
}

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

body {
  color: #6a859c;
  background-color: #edeff2;
  font-family: Open Sans, sans-serif;
  font-size: 16px;
  line-height: 20px;
}

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

h2 {
  color: #676770;
  text-align: center;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: 300;
  line-height: 36px;
}

h3 {
  color: #676770;
  letter-spacing: 7px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
}

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

h5 {
  color: #676770;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 300;
  line-height: 20px;
}

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

p {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 300;
  line-height: 25px;
}

.button {
  background-color: var(--fresh);
  color: var(--black);
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 0;
  margin-left: 10px;
  margin-right: 10px;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 300;
  line-height: 21px;
  text-decoration: none;
  transition: background-color .3s;
  display: inline-block;
}

.button:hover {
  background-color: #2e9dff;
}

.button.w--current {
  background-color: #2e80b6;
}

.button.full-width {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  display: block;
}

.button.tab {
  background-color: #92a0ad;
  margin-left: 8px;
  margin-right: 8px;
}

.button.tab:hover, .button.tab.w--current {
  background-color: #2e80b6;
}

.navigation-link {
  color: var(--white-smoke-2);
  transition: all .3s ease-in-out;
}

.navigation-link:hover {
  color: #2e9dff;
}

.navigation-link.w--current {
  color: var(--fresh);
}

.navigation-bar {
  background-color: #465c8b;
}

.brand-text {
  color: var(--white-smoke-2);
  text-align: left;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Open Sans, sans-serif;
  font-size: 25px;
  font-weight: 300;
  line-height: 25px;
}

.brand-link {
  padding-top: 16px;
  padding-bottom: 16px;
}

.brand-link.w--current {
  justify-content: center;
  display: flex;
}

.section {
  color: var(--sunshine);
  text-align: center;
  background-color: #fff;
  padding: 80px 10px;
  display: block;
  position: relative;
}

.section.accent {
  background-color: #192024;
  display: none;
}

.white-box {
  border: 1px solid var(--vermillion);
  text-align: center;
  background-color: #fff;
  border-radius: 5px;
  padding: 15px;
}

.white-box.transparent {
  background-color: rgba(0, 0, 0, 0);
  border-style: none;
}

.hero-section {
  padding-top: 242px;
  padding-bottom: 242px;
}

.hero-section.centered {
  background-color: var(--clean);
  text-align: center;
  border-bottom: 0 solid #69b9ff;
  flex: 1;
  padding-top: 20px;
  padding-bottom: 195px;
}

.hero-section.centered.pricing {
  justify-content: center;
  display: flex;
}

.hero-heading {
  color: var(--steel-blue);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 30px;
  font-size: 60px;
  font-weight: 300;
  line-height: 60px;
  display: none;
}

.hero-subheading {
  color: #2e9dff;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 40px;
  font-size: 25px;
  font-weight: 300;
  line-height: 25px;
  display: none;
}

.hollow-button {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid #fff;
  border-radius: 4px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 10px 30px;
  font-weight: 300;
  line-height: 21px;
  text-decoration: none;
  transition: background-color .3s, border .3s, color .3s;
  display: inline-block;
}

.hollow-button:hover {
  color: #2e9dff;
  border-color: #2e9dff;
}

.hollow-button.all-caps {
  text-transform: uppercase;
}

.section-heading {
  margin-top: 0;
  margin-bottom: 16px;
}

.section-heading.centered {
  color: var(--sunshine);
  text-align: center;
  letter-spacing: 5px;
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 300;
}

.section-heading.centered.white {
  color: #fff;
}

.section-subheading.center {
  color: #8e8e9c;
  text-align: center;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 300;
  display: none;
}

.section-subheading.center.off-white {
  color: #e8e8e8;
  padding-bottom: 0;
}

.section-title-group {
  margin-bottom: 60px;
  font-size: 18px;
}

.form-field {
  height: 45px;
  border: 0 solid #000;
  border-radius: 3px;
  margin-bottom: 17px;
  box-shadow: 0 0 0 1px rgba(64, 64, 71, .3);
}

.form-field.text-area {
  height: 110px;
}

.form-wrapper {
  display: none;
}

.footer {
  padding-top: 35px;
  padding-bottom: 35px;
}

.footer.center {
  text-align: center;
  background-color: #383838;
  border-top: 1px solid #000;
  flex: 1;
  display: flex;
}

.footer-text {
  color: #9e9e9e;
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 16px;
}

.grid-image {
  width: 35%;
  background-color: #69b9ff;
  border: 10px solid #fff;
  border-radius: 50%;
  margin: 20px auto;
  padding: 20px;
  display: block;
  box-shadow: 0 0 0 1px #2e9dff;
}

.info-icon {
  float: left;
}

.footer-link {
  color: #668cad;
  border-bottom: 1px solid #d5d5e0;
  margin-bottom: 6px;
  padding-bottom: 10px;
  font-size: 14px;
  font-weight: 300;
  text-decoration: none;
  display: block;
}

.footer-link:hover {
  color: rgba(0, 140, 255, .84);
}

.footer-link.with-icon {
  margin-left: 30px;
}

.footer-link-wrapper {
  display: block;
}

.tab-menu {
  text-align: center;
  margin-bottom: 40px;
}

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

.fullwidth-image {
  width: 100%;
  margin-bottom: 20px;
}

.white-text {
  color: #fff;
  margin-bottom: 20px;
}

.form {
  margin-top: 40px;
}

.spc {
  display: none;
}

.container {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.div-block {
  margin-top: 20px;
}

.div-block-2 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: minmax(400px, 2px);
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.columns {
  justify-content: center;
  display: flex;
}

.body {
  background-color: var(--white-smoke-2);
  flex-direction: column;
  display: flex;
}

.container-3 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex: 1;
  grid-template: "."
                 "."
                 "."
                 "."
                 "."
                 "."
                 "."
                 / 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  justify-content: space-around;
  display: grid;
}

.desc {
  border: 1px solid var(--vermillion);
  background-color: var(--sunshine);
  color: var(--white-smoke-2);
  text-align: center;
  padding-top: 10px;
}

.paragraph {
  border: 0 solid #000;
}

.paragraph-2 {
  text-align: justify;
  padding-left: 5px;
  font-size: 14px;
}

.type {
  border: 1px solid var(--vermillion);
}

.heading {
  margin-bottom: 0;
}

.text-block {
  border-style: solid;
  border-width: 1px 1px 2px;
  border-color: var(--vermillion);
  color: var(--sunshine);
  padding-top: 10px;
}

.halfborders {
  border-style: none none solid solid;
  border-width: 1px 0 2px 1px;
  border-color: var(--vermillion);
  color: var(--sunshine);
  padding-top: 10px;
  padding-bottom: 10px;
}

.halfborders.end {
  border-right-style: solid;
  border-right-width: 1px;
}

.button-2 {
  background-color: var(--fresh);
  color: var(--sunshine);
  justify-content: center;
  margin-left: 20px;
  margin-right: 20px;
  font-weight: 400;
  display: flex;
}

.div-block-3 {
  border-top: 1px solid #000;
}

.heading-2 {
  color: var(--sunshine);
  margin-bottom: 0;
}

.body-2 {
  flex-direction: column;
  display: flex;
}

.text-block-2, .text-block-3, .text-block-4, .text-block-5, .text-block-6 {
  text-align: center;
}

.div-block-4 {
  display: flex;
}

.section-2 {
  flex-direction: column;
  margin-left: 20px;
  margin-right: 20px;
  padding-top: 20px;
  display: flex;
}

.paragraph-3 {
  text-align: center;
  padding-left: 40px;
  padding-right: 40px;
  font-size: 24px;
  line-height: 40px;
}

.div-block-5 {
  justify-content: center;
  padding-top: 0;
  padding-bottom: 20px;
  display: flex;
}

.body-3 {
  flex-direction: column;
  display: flex;
}

.section-3, .map, .paragraph-5 {
  display: none;
}

.body-4 {
  flex-direction: column;
  display: flex;
}

.link {
  color: var(--vermillion);
}

.text-block-9 {
  padding-top: 40px;
}

.section-4 {
  display: none;
}

.link-2 {
  color: var(--vermillion);
}

.button-4 {
  background-color: var(--fresh);
  color: var(--black);
  text-align: center;
  padding-top: 5px;
  padding-bottom: 5px;
}

.columns-2 {
  justify-content: center;
  display: flex;
}

.paragraph-6 {
  font-size: 24px;
}

.heading-4, .heading-5 {
  color: var(--sunshine);
}

.text-span {
  color: var(--fresh);
}

.columns-3 {
  display: none;
}

@media screen and (max-width: 991px) {
  .navigation-link {
    color: rgba(255, 255, 255, .52);
  }

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

  .hamburger-button.w--open, .navigation-menu {
    background-color: #3b99d9;
  }

  .hero-section.centered {
    padding-top: 144px;
    padding-bottom: 144px;
  }

  .grid-image {
    width: 50%;
    padding: 15px;
  }
}

@media screen and (max-width: 767px) {
  .button.full-width {
    margin-left: auto;
    margin-right: auto;
  }

  .button.tab {
    font-size: 12px;
  }

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

  .hero-section.centered {
    padding-top: 119px;
    padding-bottom: 119px;
  }

  .hero-heading {
    margin-bottom: 15px;
    font-size: 50px;
  }

  .hero-subheading {
    font-size: 18px;
  }

  .form-field.text-area {
    display: block;
  }

  .grid-image {
    width: 20%;
    padding: 20px;
  }

  .spc {
    margin-bottom: 30px;
  }

  .icon {
    color: var(--white-smoke-2);
  }
}

@media screen and (max-width: 479px) {
  .button {
    margin-bottom: 25px;
  }

  .hamburger-button {
    display: flex;
  }

  .hamburger-button.w--open {
    background-color: var(--sunshine);
  }

  .navigation-menu {
    background-color: rgba(70, 92, 139, .91);
  }

  .section {
    padding-top: 0;
    display: block;
  }

  .section.accent {
    display: none;
  }

  .white-box {
    padding: 0;
  }

  .hero-section.centered {
    background-color: #fff;
    padding-top: 40px;
    padding-bottom: 0;
  }

  .hero-section.centered.pricing {
    display: none;
  }

  .section-heading.centered {
    margin-top: 0;
    padding: 20px 20px 0;
  }

  .section-subheading.center {
    line-height: 30px;
    display: none;
  }

  .form-wrapper {
    display: none;
  }

  .footer {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .footer.center {
    flex: 1;
    padding-bottom: 60px;
    display: block;
  }

  .grid-image {
    width: 35%;
  }

  .spc {
    display: none;
  }

  .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .div-block-2 {
    display: none;
  }

  .container-2 {
    flex: 1;
  }

  .desc {
    color: var(--sunshine);
    background-color: rgba(147, 193, 120, .3);
    border-style: none;
  }

  .desc.mobile {
    color: var(--sunshine);
    background-color: rgba(147, 193, 120, .28);
    border-style: none;
  }

  .centered {
    flex-direction: column;
    padding-top: 40px;
    padding-bottom: 60px;
    display: flex;
  }

  .heading-3 {
    color: var(--sunshine);
    text-align: center;
  }

  .button-3 {
    background-color: var(--fresh);
    color: var(--sunshine);
    text-align: center;
    margin-top: 10px;
    margin-left: 25%;
    margin-right: 25%;
  }

  .grid {
    grid-column-gap: 0px;
    grid-row-gap: 5px;
    grid-template-rows: auto auto auto auto auto auto;
    margin-left: 10px;
    margin-right: 10px;
  }

  .text-block-2, .text-block-3, .text-block-4, .text-block-5, .text-block-6 {
    color: var(--sunshine);
  }

  .text-block-7, .text-block-8 {
    color: var(--sunshine);
    text-align: center;
  }

  .section-2 {
    display: none;
  }

  .section-3 {
    flex: 0 auto;
    margin-left: 10px;
    margin-right: 10px;
    padding-top: 40px;
    display: block;
  }

  .container-4 {
    flex-direction: column;
    display: flex;
  }

  .paragraph-4 {
    direction: ltr;
    color: var(--sunshine);
    text-align: justify;
    white-space: normal;
    font-size: 24px;
    line-height: 30px;
  }

  .image {
    padding-top: 20px;
  }

  .image-2 {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .map, .paragraph-5 {
    display: none;
  }

  .body-4 {
    flex-direction: column;
    display: flex;
  }

  .link {
    color: var(--vermillion);
    font-size: 18px;
    display: block;
  }

  .text-block-9 {
    padding-top: 40px;
    font-size: 18px;
  }

  .section-4 {
    display: block;
  }

  .container-5 {
    background-color: var(--white-smoke-3);
  }

  .text-block-10 {
    font-size: 18px;
  }

  .link-2 {
    color: var(--vermillion);
    font-size: 18px;
  }

  .button-4 {
    background-color: var(--fresh);
    color: var(--black);
    text-align: center;
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .paragraph-6 {
    text-align: justify;
  }

  .columns-3 {
    display: block;
  }
}

#w-node-f5b00f21-3ea5-6064-5911-f8f34e12d38f-bf10537a, #w-node-_4f550be9-93b5-1fd3-d30e-83aa9b4f79a4-bf10537a, #w-node-a7c34e7b-6638-c6b9-8a41-b912ec147f8e-bf10537a {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e2eb8464-e4ac-c599-59c0-90a9ce74b055-0b997434 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_5e80e16f-8c56-cf7e-da8d-97ee516fa001-0b997434, #w-node-_1aef9f5d-8a1c-d785-574f-36ba35a50dd8-0b997434, #w-node-_4cc77aaa-0057-0edc-43c0-dd9fbab6fef2-0b997434, #w-node-_83dd72fb-7d37-7317-d031-ac629c740e46-0b997434, #w-node-b2a585f9-4ddd-d6ae-5e2e-80cea71d9499-0b997434, #w-node-f9e34fc1-e7aa-7dc9-80e5-39faf836e319-0b997434, #w-node-d3cc816d-19f3-677a-46c2-11155cbafd44-0b997434, #w-node-b908b561-815f-821a-54da-d2f653765d4c-0b997434, #w-node-df6c5289-42ae-47c7-0ff8-4dc8e894589b-0b997434, #w-node-a0eed02a-4af3-3f6e-4acd-9e4fe4e3f7de-0b997434, #w-node-e74909e3-f3ff-fe1e-d1e2-d4635a3f4fc5-0b997434, #w-node-_7dddc648-ef76-950c-c5c3-069684fa9caf-0b997434, #w-node-_208e5355-5328-ef0d-7e23-088e6a9bcc96-0b997434, #w-node-fb39b24e-15aa-4edf-ba62-3984a57726d6-0b997434, #w-node-c3f7d179-cae1-8142-41c0-3e46c82f3ed5-0b997434, #w-node-_1e628fcf-5c98-719d-a157-43b43de3d222-0b997434, #w-node-_5ea93daf-7682-f0eb-6e2b-47669abf5bdb-0b997434, #w-node-f77b49b9-8307-d9ed-59c5-6862d52d806f-0b997434, #w-node-_946d6d7b-1885-ea50-6ef9-3ee72489c831-0b997434, #w-node-_954af8e5-ef7a-b16f-e2c4-fd6625fcc6a1-0b997434, #w-node-_16d37bf8-10cf-1258-51c1-e46839793320-0b997434, #w-node-bcf06740-d75d-f85c-aaeb-1ee0451f6ddf-0b997434, #w-node-a1112f58-ffe5-6fe2-0a33-1d715f063e4a-0b997434, #w-node-eb2dc31f-e8bc-e3f0-c9a7-65dd769ed61d-0b997434, #w-node-aefc9237-663c-2356-05a9-1e355e5819d8-0b997434, #w-node-_03899119-ddc2-1800-26fc-a26cc0ae2f1e-0b997434, #w-node-a602c8ce-f320-2aab-2adf-606d5ca932b3-0b997434, #w-node-_10da41f2-27bd-5cae-d818-4ae4336daed5-0b997434, #w-node-d3e1d95d-ec0b-ac0a-68ad-d8a13390ec5e-0b997434, #w-node-_9d471695-f548-2d43-6cd4-98256fbe6e29-0b997434, #w-node-eb2d8ce9-5168-104c-b377-6a0a05e63a5e-0b997434 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 479px) {
  #w-node-_9e309aae-c66d-c90a-a24a-f9a7d13cae00-0b997434, #w-node-_8eaad92b-e93f-a9d7-2885-943c434d61f5-0b997434, #w-node-_8fa47a3c-e584-2296-ad84-2df4c91b6043-0b997434, #w-node-_5057f5a0-d24f-8196-62c4-3910898db172-0b997434, #w-node-_14e3299b-15cd-5698-6741-665f4b4ebab4-0b997434, #w-node-b42504fb-12e9-1772-57bf-822bc15fb203-0b997434, #w-node-e639500b-49d7-a9ae-e5f3-8db855c30c47-0b997434, #w-node-_8236d959-f24d-a105-9fd5-094173222843-0b997434, #w-node-_01a6c2db-7e1e-b235-b608-b607880fb56c-0b997434, #w-node-acea3ca2-89e8-9d8e-c182-5e5c79beb022-0b997434, #w-node-_8da26357-87a9-cfa9-4642-8acd2ee8d305-0b997434, #w-node-b36ccd17-f62f-92c8-4d9b-ee7ea1f8486c-0b997434, #w-node-_501a7c8b-c9a2-d951-4bb0-62fa07de2483-0b997434 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_501a7c8b-c9a2-d951-4bb0-62fa07de2485-0b997434 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: center;
  }

  #w-node-_501a7c8b-c9a2-d951-4bb0-62fa07de2487-0b997434 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_501a7c8b-c9a2-d951-4bb0-62fa07de2489-0b997434 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: center;
  }

  #w-node-_501a7c8b-c9a2-d951-4bb0-62fa07de248b-0b997434 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_501a7c8b-c9a2-d951-4bb0-62fa07de248d-0b997434 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: center;
  }

  #w-node-_501a7c8b-c9a2-d951-4bb0-62fa07de248f-0b997434 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_501a7c8b-c9a2-d951-4bb0-62fa07de2491-0b997434 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: center;
  }

  #w-node-_501a7c8b-c9a2-d951-4bb0-62fa07de2493-0b997434 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_501a7c8b-c9a2-d951-4bb0-62fa07de2495-0b997434 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: center;
  }

  #w-node-_501a7c8b-c9a2-d951-4bb0-62fa07de2496-0b997434 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_501a7c8b-c9a2-d951-4bb0-62fa07de2498-0b997434 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: center;
  }

  #w-node-_51080a68-bc40-e590-42d8-ac7d9b5ae94b-0b997434 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_51080a68-bc40-e590-42d8-ac7d9b5ae94d-0b997434, #w-node-_51080a68-bc40-e590-42d8-ac7d9b5ae94f-0b997434, #w-node-_51080a68-bc40-e590-42d8-ac7d9b5ae951-0b997434 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: center;
  }

  #w-node-_51080a68-bc40-e590-42d8-ac7d9b5ae953-0b997434 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_51080a68-bc40-e590-42d8-ac7d9b5ae955-0b997434 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: center;
  }

  #w-node-_51080a68-bc40-e590-42d8-ac7d9b5ae957-0b997434 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_51080a68-bc40-e590-42d8-ac7d9b5ae959-0b997434 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: center;
  }

  #w-node-_51080a68-bc40-e590-42d8-ac7d9b5ae95b-0b997434 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_51080a68-bc40-e590-42d8-ac7d9b5ae95d-0b997434 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: center;
  }

  #w-node-_51080a68-bc40-e590-42d8-ac7d9b5ae95e-0b997434 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_51080a68-bc40-e590-42d8-ac7d9b5ae960-0b997434 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: center;
  }
}


