.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: #161616;
  background-color: #fbfbfb;
  font-family: Poppins, sans-serif;
  font-size: 1em;
  line-height: 1.2em;
}

h1 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2em;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 35px;
  font-weight: 600;
  line-height: 1.3em;
}

h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.3em;
}

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2em;
}

p {
  color: #5a5a5a;
  margin-bottom: 0;
  line-height: 1.4em;
}

a {
  color: #e80d4f;
  background-color: rgba(0, 0, 0, 0);
  margin-bottom: 0;
  font-size: 1em;
  font-weight: 400;
  line-height: 1.4em;
  text-decoration: none;
}

ul, ol {
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 40px;
}

li {
  margin-top: 10px;
  margin-bottom: 10px;
}

label {
  margin-bottom: 5px;
  font-weight: 600;
  display: block;
}

.top-border {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border-top: 1px solid #e9e9e9;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: end;
  display: block;
}

.top-border.right-border {
  border-right: 1px solid #e9e9e9;
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
}

.flex-vertical {
  grid-column-gap: 3vh;
  grid-row-gap: 3vh;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.flex-vertical.margin-left {
  padding-left: 5vw;
}

.flex-vertical.margin-bottom {
  grid-row-gap: 40px;
}

.flex-vertical.spacing {
  padding-top: 30px;
  padding-bottom: 30px;
  padding-right: 30px;
}

.paragraph {
  color: #5a5a5a;
  line-height: 1.4em;
}

.paragraph.purple {
  font-size: 1em;
}

.accent {
  color: #f47c48;
  font-size: 1.3em;
  font-weight: 600;
  line-height: 1.4em;
}

.button {
  color: #fff;
  text-transform: uppercase;
  background-color: #e0d9dc;
  padding-left: 22px;
  padding-right: 22px;
  transition: background-color .2s;
}

.button:hover {
  background-color: #161616;
}

.button.navbar-margin-top {
  background-color: #f47c48;
  margin-top: 2vw;
}

.navbar {
  background-color: rgba(0, 0, 0, 0);
  padding-bottom: 2vw;
}

.grid-lines {
  z-index: -1;
  width: 100%;
  grid-column-gap: 0px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-left: 5vw;
  padding-right: 5vw;
  display: grid;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  overflow: visible;
}

.column {
  width: 100%;
  height: 100vh;
  border-right: 1px solid #e9e9e9;
}

.column.first-column {
  border-left: 1px solid #e9e9e9;
}

.grid {
  grid-column-gap: 0px;
  grid-row-gap: 10px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  padding-left: 5vw;
  padding-right: 5vw;
}

.grid.margin-top-40 {
  margin-top: 40px;
}

.grid.team-spacing {
  height: 45vh;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border-top: 1px solid #e9e9e9;
}

.grid.margins {
  margin-bottom: 0;
}

.grid.banner {
  grid-template-columns: 1fr 1fr 1.5fr .5fr 1fr 1fr;
}

.grid.horizontal-flex {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.container-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.image-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s;
  display: block;
}

.image-cover:hover {
  transform: scale(1.01);
}

.title {
  margin-bottom: 15px;
  padding-right: 60px;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.3em;
}

.subtitle {
  padding-right: 100px;
  font-size: 1.2em;
  line-height: 1.4em;
}

.button-secondary {
  color: #f47c48;
  text-transform: uppercase;
  background-color: #fbfbfb;
  border: 2px solid #f47c48;
  padding-left: 22px;
  padding-right: 22px;
}

.margin-top {
  margin-top: 15vh;
}

.grid-hero {
  grid-column-gap: 0px;
  grid-row-gap: 3em;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  padding-left: 5vw;
  padding-right: 5vw;
}

.section {
  margin-top: 20vh;
  margin-bottom: 20vh;
}

.section-blank {
  background-color: #fbfbfb;
  border-top: 1px solid #e9e9e9;
  border-bottom: 1px solid #e9e9e9;
  margin-top: 25vh;
  margin-bottom: 35vh;
}

.section-blank.no-border-top {
  border-top-style: none;
  margin-top: 10vh;
  margin-bottom: 15vh;
}

.section-blank.no-margin-bottom {
  margin-bottom: 15vh;
}

.section-blank.no-margin-top {
  margin-top: 5vh;
  margin-bottom: 15vh;
}

.square {
  width: 100%;
  height: 15vw;
  background-color: #f47c48;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: -.5px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.square._2 {
  width: 15vw;
  height: 15vw;
  color: #e80d4f;
}

.purple {
  color: #f47c48;
}

.negative-margin {
  margin-left: -100px;
}

.circle-container {
  width: 30vh;
  height: 30vh;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  display: flex;
  overflow: hidden;
}

.flex-horizontal-sb {
  width: 100%;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.flex-horizontal-sb.margin-bottom-20 {
  width: 100%;
  margin-bottom: 20px;
}

.flex-horizontal-sb.footer-text {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  text-align: left;
  justify-content: flex-start;
  padding: 0;
}

.little-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 20px;
  line-height: 1.3em;
}

.container-service {
  background-color: #fbfbfb;
  border-top: 1px solid #e9e9e9;
  border-bottom: 1px solid #e9e9e9;
  border-right: 1px solid #e9e9e9;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 25px 5vw;
  display: flex;
}

.container-service.border-first {
  border-left: 1px solid #e9e9e9;
}

.grid-with-row {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: 1fr auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  padding-left: 5vw;
  padding-right: 5vw;
}

.flex-vertical-sb {
  grid-column-gap: 3vh;
  grid-row-gap: 3vh;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.row {
  grid-column-gap: 16px;
  grid-row-gap: 0px;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-items: end;
  padding-right: 2vw;
  display: grid;
}

.row.right-border {
  border-right: 1px solid #e9e9e9;
}

.link-white {
  color: #fbfbfb;
  text-transform: uppercase;
  font-weight: 500;
}

.arrow {
  width: 100%;
  justify-content: flex-end;
  align-self: flex-end;
  margin-top: 10px;
  display: flex;
}

.right-border {
  width: 100%;
  height: 100%;
  border-right: 1px solid #e9e9e9;
}

.center-logo {
  justify-content: center;
  align-items: center;
  display: flex;
}

.center-logo.left-border {
  width: 100%;
  height: 100%;
  border-left: 1px solid #e9e9e9;
}

.team-text {
  color: #f47c48;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 28px;
  font-weight: 400;
}

.link {
  color: #f47c48;
  margin-right: 5px;
  padding-left: 10px;
}

.flex-horizontal {
  grid-column-gap: 2.75em;
  grid-row-gap: 2.75em;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.flex-horizontal.margin-responsive {
  align-items: flex-end;
  margin-bottom: 26px;
}

.grey {
  color: #5a5a5a;
  font-size: 1em;
  transition: color .2s;
}

.grey:hover {
  color: #e80d4f;
}

.margin-bottom {
  margin-bottom: 100px;
}

.footer-text {
  color: #5a5a5a;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.8em;
}

.footer-text.align-center {
  text-align: center;
  font-weight: 400;
}

.footer-text.underline {
  text-decoration: underline;
}

.contact-heading {
  margin-top: 18vh;
  margin-bottom: 5vh;
  font-size: 2.2em;
  font-weight: 400;
}

.loghi {
  mix-blend-mode: darken;
}

.responsive {
  display: none;
}

.flex-vertical-center {
  grid-column-gap: 5vh;
  grid-row-gap: 5vh;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.flex {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.social-link {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
}

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

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

.style-title {
  color: #ed0e51;
  font-size: 30px;
  line-height: 1.3em;
}

.flex-vertical-s {
  width: 100%;
  grid-column-gap: 3vh;
  grid-row-gap: 3vh;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.style-static {
  height: 40vh;
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  top: 25vh;
}

.text-button {
  color: #fff;
}

.text-field {
  margin-bottom: 20px;
}

.paragraph-big {
  font-size: 18px;
  line-height: 1.4em;
}

.form-block {
  width: 100%;
}

.grid-style-guide {
  grid-column-gap: 5vw;
  grid-row-gap: 5vw;
  grid-template-rows: auto;
  grid-template-columns: .25fr 1fr;
  padding-left: 10vw;
  padding-right: 10vw;
}

.button-link-block {
  height: 6vh;
  background-color: #e80d4f;
  justify-content: center;
  align-items: center;
  padding: 10px 18px;
  display: flex;
}

.wrapper-title-style {
  width: 100%;
  margin-top: 100px;
  margin-bottom: 10px;
}

.paragraph-small {
  font-size: 14px;
  line-height: 1.3em;
}

.textarea {
  background-color: #fbfbfb;
  margin-bottom: 20px;
}

.textarea::-ms-input-placeholder {
  color: #161616;
}

.textarea::placeholder {
  color: #161616;
}

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

.label-class {
  color: #fbfbfb;
  background-color: #161616;
  border-radius: 5px;
  margin-top: 20px;
  padding: 3px 10px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.8em;
}

.divider {
  width: 100%;
  height: .5px;
  background-color: #000;
  margin-top: 10px;
}

.select-field {
  background-color: #fbfbfb;
  margin-top: 10px;
  margin-bottom: 20px;
}

.container-form {
  margin-top: 18vh;
}

.success-message {
  background-color: #e80d4f;
}

.text-block {
  color: #fff;
}

.error-message {
  background-color: rgba(0, 0, 0, 0);
  border: 2px solid #e80d4f;
  margin-top: 20px;
  padding: 17px;
}

.utility-page-form {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.bottom-divider {
  border-bottom: 1px solid #24203f;
  margin-top: 100px;
  margin-bottom: 20px;
  padding-bottom: 40px;
}

.section-licenses {
  margin-top: 15vh;
  margin-bottom: 15vh;
  padding-left: 10vw;
  padding-right: 10vw;
  position: relative;
}

.section-licenses.full-width {
  padding-left: 0;
  padding-right: 0;
}

.grid-images {
  grid-column-gap: 2em;
  grid-row-gap: 2.25em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  align-items: center;
  margin-top: 20px;
}

.grid-images.dark-background {
  background-color: rgba(90, 90, 90, .1);
  border-radius: 20px;
  padding: 33px;
}

.paragraph-2 {
  color: #24203f;
  font-size: 1em;
  font-weight: 500;
  line-height: 1.5em;
  text-decoration: none;
}

.section-licensing {
  margin-top: 20vh;
  margin-bottom: 20vh;
  padding-left: 5vw;
  padding-right: 5vw;
}

.section-404 {
  margin-top: 20vh;
  margin-bottom: 20vh;
  padding-top: 20vh;
  padding-bottom: 20vh;
}

.text-span, .link-2 {
  color: #f47c48;
}

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

@media screen and (min-width: 1440px) {
  .button {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

@media screen and (min-width: 1920px) {
  .paragraph-2 {
    font-size: 1.2em;
  }
}

@media screen and (max-width: 991px) {
  h2 {
    font-size: 28px;
  }

  .flex-vertical.margin-left {
    grid-column-gap: 3vh;
    grid-row-gap: 3vh;
    padding-right: 40px;
  }

  .flex-vertical.margin-bottom {
    grid-row-gap: 30px;
    align-items: flex-start;
  }

  .accent {
    font-size: 1.1em;
  }

  .grid {
    grid-column-gap: 30px;
    grid-row-gap: 0px;
  }

  .grid.margin-top-40 {
    margin-top: 5vh;
  }

  .title {
    font-size: 1.9rem;
  }

  .subtitle {
    padding-right: 20px;
    font-size: 1em;
  }

  .grid-hero {
    grid-row-gap: 2.25em;
    grid-template-rows: 1fr auto;
  }

  .section {
    margin-top: 10vh;
    margin-bottom: 10vh;
  }

  .section-blank {
    margin-top: 15vh;
    margin-bottom: 15vh;
  }

  .square {
    display: none;
  }

  .negative-margin {
    margin-bottom: 0;
    margin-left: 0;
  }

  .circle-container {
    width: 25vh;
    height: 25vh;
  }

  .flex-horizontal-sb.margin-bottom-20 {
    display: flex;
  }

  .flex-horizontal-sb.footer-text {
    width: 70%;
    justify-content: space-between;
    padding: 0;
  }

  .container-service {
    border: 1px solid #e9e9e9;
  }

  .container-service.border-first {
    flex-flow: wrap;
    justify-content: center;
  }

  .flex-vertical-sb {
    grid-column-gap: 6vh;
    grid-row-gap: 6vh;
    align-items: flex-end;
  }

  .center-logo.left-border {
    border-left-style: none;
  }

  .link {
    padding-left: 5vw;
  }

  .flex-horizontal {
    display: flex;
  }

  .footer {
    background-color: #fbfbfb;
    border-top: 1px solid #e9e9e9;
    padding-top: 5vh;
  }

  .footer-text.align-center {
    text-align: left;
    font-weight: 600;
  }

  .contact-heading {
    margin-bottom: 5vh;
  }

  .section-licenses {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .section-licensing, .section-404 {
    margin-top: 10vh;
    margin-bottom: 10vh;
  }
}

@media screen and (max-width: 767px) {
  .flex-vertical.margin-bottom {
    grid-row-gap: 2vh;
  }

  .grid {
    grid-row-gap: 14px;
    grid-template-columns: 1fr 1fr;
  }

  .grid.margin-top-40 {
    flex-direction: column;
    align-items: stretch;
    margin-top: 5vh;
    display: block;
  }

  .grid.team-spacing {
    background-color: #fbfbfb;
    margin-top: 20px;
  }

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

  .title {
    font-size: 1.6rem;
  }

  .subtitle {
    padding-right: 0;
    font-size: .9em;
  }

  .grid-hero {
    grid-column-gap: 7vh;
    grid-row-gap: 7vh;
    grid-template-columns: 1fr 1fr;
  }

  .container-service {
    background-color: #fbfbfb;
  }

  .grid-with-row {
    grid-template-columns: 1fr 1fr;
  }

  .flex-vertical-sb {
    display: flex;
  }

  .row.right-border {
    grid-column-gap: 0px;
    grid-row-gap: 19px;
    padding-bottom: 13px;
    padding-left: 10px;
  }

  .row.hidden {
    justify-items: end;
  }

  .center-logo.right-border {
    justify-content: center;
  }

  .center-logo.left-border {
    border-left-style: none;
  }

  .flex-horizontal.margin-responsive {
    border-right-style: none;
    justify-content: flex-end;
    align-items: center;
  }

  .contact-heading {
    margin-top: 5vh;
    margin-bottom: 5vh;
  }

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

@media screen and (max-width: 479px) {
  h1 {
    font-size: 35px;
  }

  h2 {
    font-size: 25px;
  }

  h3 {
    font-size: 23px;
  }

  .top-border {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .top-border.right-border {
    display: none;
  }

  .flex-vertical {
    grid-column-gap: 3vh;
    grid-row-gap: 3vh;
  }

  .flex-vertical.margin-left {
    padding-left: 0;
    padding-right: 0;
  }

  .flex-vertical.margin-bottom {
    grid-column-gap: 4vh;
    grid-row-gap: 4vh;
  }

  .paragraph {
    font-size: 1em;
    line-height: 1.5em;
  }

  .accent {
    margin-top: 15vh;
  }

  .button {
    text-align: center;
    padding: 10px 15px;
    font-size: 12px;
    display: inline-block;
  }

  .button.responsive {
    text-transform: uppercase;
    margin-top: 40px;
    font-size: 15px;
    line-height: 1.4em;
  }

  .grid {
    flex-flow: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    align-content: center;
    justify-content: space-between;
    align-items: flex-start;
    justify-items: center;
    display: flex;
  }

  .grid.margin-top-40 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    margin-top: 0;
    overflow: visible;
  }

  .grid.team-spacing {
    height: auto;
    grid-row-gap: 30px;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    align-items: flex-end;
    margin-top: 0;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .grid.banner {
    grid-row-gap: 0px;
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1.5fr;
  }

  .grid.horizontal-flex {
    grid-column-gap: 20px;
    grid-row-gap: 0px;
    flex-direction: row;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    display: grid;
    overflow: visible;
  }

  .title {
    padding-right: 0;
  }

  .button-secondary {
    text-align: center;
    padding: 10px 15px;
    font-size: 14px;
  }

  .margin-top {
    margin-top: 5vh;
  }

  .grid-hero {
    grid-column-gap: 3vh;
    grid-row-gap: 3vh;
    flex-flow: column;
    grid-template-rows: 1fr auto auto;
    grid-template-columns: 1fr 1fr;
    align-content: center;
    justify-content: center;
    align-items: flex-start;
    justify-items: start;
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

  .section-blank {
    margin-top: 15vh;
  }

  .section-blank.no-margin-top {
    margin-bottom: 15vh;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .negative-margin {
    margin-top: 0;
  }

  .circle-container {
    width: 21vh;
    height: 22vh;
  }

  .flex-horizontal-sb.margin-bottom-20 {
    align-items: flex-end;
  }

  .flex-horizontal-sb.footer-text {
    grid-column-gap: 6vh;
    grid-row-gap: 6vh;
    justify-content: flex-start;
    padding-left: 0;
  }

  .grid-with-row {
    grid-template-rows: 1fr auto auto auto auto auto;
    grid-template-columns: 1fr 1fr;
    align-content: center;
    justify-content: center;
    align-items: center;
    justify-items: start;
    padding-left: 0;
    padding-right: 0;
  }

  .flex-vertical-sb {
    grid-column-gap: 4vh;
    grid-row-gap: 4vh;
  }

  .row.right-border {
    border-right-style: none;
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    justify-items: center;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .row.hidden {
    display: none;
  }

  .center-logo.right-border {
    justify-content: flex-start;
  }

  .center-logo.left-border {
    order: -1;
    justify-content: flex-start;
  }

  .team-text {
    font-size: 22px;
  }

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

  .contact-heading {
    margin-bottom: 5vh;
    font-size: 1.7em;
  }

  .loghi {
    max-width: 56%;
  }

  .responsive {
    display: block;
  }

  .flex-vertical-center {
    grid-column-gap: 3vh;
    grid-row-gap: 3vh;
    justify-content: center;
    align-items: flex-start;
    margin-top: 40px;
  }

  .brand {
    display: flex;
  }

  .brand.w--current {
    width: auto;
    justify-content: flex-start;
    align-items: center;
    padding-left: 0;
    display: flex;
  }

  .nav-menu {
    width: auto;
    text-align: right;
    justify-content: center;
    align-items: center;
    display: block;
  }

  .style-static {
    height: 20vh;
    display: none;
    position: relative;
    top: 0;
  }

  .grid-style-guide {
    grid-template-columns: 1fr;
  }

  .container-form {
    width: 100%;
  }

  .section-licenses {
    margin-top: 0;
    margin-bottom: 10vh;
  }
}

#w-node-dd238559-8e26-a85b-0eb7-527bbd19ed78-4788321d, #w-node-f7d56dc0-ab40-bfe7-8656-1eb47e323dfb-4788321d {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-e7b2a7f5-4d92-93cf-727b-5afaad8bedbf-4788321d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-dd5e772c-72fb-8f28-8ade-3d6fcdd1649f-4788321d {
  grid-area: span 2 / span 3 / span 2 / span 3;
}

#w-node-_08289d4d-2273-e2f5-788c-a63a8998d9b7-4788321d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-fa8ec9dd-f565-39ce-16a5-94b340d39079-4788321d {
  grid-area: span 1 / span 2 / span 1 / span 2;
  align-self: start;
}

#w-node-_9a69ac90-0a6f-2e59-8848-5991a1f7d88f-4788321d {
  grid-area: 1 / 4 / 2 / 7;
}

#w-node-_72c02718-36f9-6f67-6681-14259049d260-4788321d {
  grid-area: 1 / 5 / 2 / 7;
}

#w-node-_72c02718-36f9-6f67-6681-14259049d261-4788321d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1c153ade-0600-2cd6-f02d-d71fb6d3f2be-4788321d {
  grid-area: 1 / 2 / 2 / 4;
  align-self: center;
  justify-self: center;
}

#w-node-_10e60c22-a962-f4d2-9606-4685a8c53dac-4788321d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_00c4ec96-f241-2b14-795c-a58305ac95bd-4788321d {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: end;
}

#w-node-_732a474f-b489-26e9-b6f2-2dafb8628213-4788321d {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-b6f115e2-cb17-9743-6bf6-30aa6706aae1-4788321d {
  grid-area: 1 / 5 / 2 / 7;
}

#w-node-_90a9cc02-3293-17c8-f390-efd1966f7994-4788321d, #w-node-_7da33a6b-87d1-6bd5-3ddb-a2e7c745744b-4788321d, #w-node-e72577ec-3bc8-6d83-80b9-d156b8726120-4788321d {
  grid-area: span 1 / span 2 / span 1 / span 2;
  align-self: stretch;
  justify-self: center;
}

#w-node-c81aeb3e-5a8a-269a-d56a-aef82e0858cd-4788321d {
  grid-area: span 2 / span 3 / span 2 / span 3;
}

#w-node-_4ab96e60-a491-2be2-5550-b2de7f64dd79-4788321d {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-_1ac72e38-f7d4-4dae-a7d9-087e673fdf5d-4788321d, #w-node-f63ff279-74e6-2faa-72f6-566d597b47c9-4788321d {
  align-self: center;
}

#w-node-c05ac272-a2ce-974d-5f9d-b614679e3a85-4788321d {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_895104e8-464c-afe2-2532-ee05b0ae4dc2-4788321d, #w-node-a3212bb3-6738-224f-aeef-2402bd29b2e9-4788321d {
  align-self: center;
}

#w-node-_7b4557ed-5b9e-9803-f1ce-f9b16365ed6e-4788321d {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_93c15cbc-1673-69c5-f9ca-389a9e82dced-4788321d {
  grid-area: span 1 / span 2 / span 1 / span 2;
  align-self: center;
  justify-self: center;
}

#w-node-_32697dec-0a24-cf3a-29ea-47c9f09a0455-4788321d {
  grid-area: span 1 / span 3 / span 1 / span 3;
  align-self: center;
  justify-self: center;
}

#w-node-c6b168d3-5cb7-1afb-e662-ea70c1b46623-4788321d {
  align-self: end;
}

#w-node-_73579d67-8706-c761-2dcf-9b8aa6bf7b6e-4788321d {
  grid-area: span 1 / span 3 / span 1 / span 3;
  align-self: center;
  justify-self: center;
}

#w-node-_73579d67-8706-c761-2dcf-9b8aa6bf7b73-4788321d {
  align-self: end;
}

#w-node-_73579d67-8706-c761-2dcf-9b8aa6bf7b6c-4788321d {
  grid-area: span 1 / span 2 / span 1 / span 2;
  align-self: center;
  justify-self: center;
}

#w-node-_1c6900e3-9e02-6c4c-5a32-b9366fe46539-4788321d {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_2cff484c-8374-ffb2-d24a-dd1cd9fb06aa-4788321d {
  grid-area: 1 / 4 / 2 / 7;
}

#w-node-_58073e7d-401b-b401-7e96-b2958dcdeefb-8dcdeef9 {
  grid-area: span 1 / span 2 / span 1 / span 2;
  align-self: start;
  justify-self: start;
}

#w-node-_58073e7d-401b-b401-7e96-b2958dcdeefd-8dcdeef9, #w-node-_58073e7d-401b-b401-7e96-b2958dcdef06-8dcdeef9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
  justify-self: center;
}

#w-node-_58073e7d-401b-b401-7e96-b2958dcdef17-8dcdeef9 {
  grid-area: span 1 / span 3 / span 1 / span 3;
  align-self: end;
}

#w-node-_344713f8-ccbb-4660-a4f0-89cc716d42f7-716d42f5 {
  align-self: center;
  justify-self: center;
}

#w-node-_344713f8-ccbb-4660-a4f0-89cc716d42f9-716d42f5 {
  grid-area: 1 / 6 / 2 / 7;
  align-self: center;
  justify-self: center;
}

#w-node-_63bc2ad1f1ed996d1782bd8b00000000000b-4788321f {
  grid-area: span 1 / span 4 / span 1 / span 4;
}

#w-node-_5738977c-e712-d780-01c7-81bdb149f4e8-47883222, #w-node-_5738977c-e712-d780-01c7-81bdb149f4e9-47883222, #w-node-bc1efebb-22ec-9390-7de5-f5f4939f0440-47883222, #w-node-_5738977c-e712-d780-01c7-81bdb149f4ea-47883222, #w-node-_5738977c-e712-d780-01c7-81bdb149f4eb-47883222, #w-node-_5738977c-e712-d780-01c7-81bdb149f4ec-47883222, #w-node-_5eb70dee-8754-0885-cb42-848b450411e3-47883222, #w-node-accd0449-b3a2-317d-4b9e-2cb6c3a0cc5f-47883222, #w-node-f9636073-c0b4-9864-ff6b-9bb41b8e3c2f-47883222, #w-node-_969ea082-f0bb-cfb4-569a-b59a6c6bf66c-47883222, #w-node-_5738977c-e712-d780-01c7-81bdb149f525-47883222, #w-node-_2b10590c-4e91-f4c0-b09c-2b2868e81bc8-47883222, #w-node-_2209e31c-1fd1-185c-4ca3-26487d633468-47883222, #w-node-eb7cddb2-dbde-3e00-b518-bcbc90ea5514-47883222, #w-node-_52da61d7-cfb5-d4a1-3004-8f7bda10c673-47883222, #w-node-f61b21a5-1620-f97c-cf87-dfe5c9ef2908-47883222, #w-node-dfdf7411-99f1-c11c-d624-e623426af90d-47883222, #w-node-_18ee9f63-6d0b-7ad9-220c-4067c882b5df-47883222, #w-node-c7556efe-eea5-d079-4d5b-4bc017af414e-47883222, #w-node-ca7f717f-8f70-0fb1-b10b-46e601acf1da-47883222, #w-node-_5738977c-e712-d780-01c7-81bdb149f533-47883222, #w-node-_5738977c-e712-d780-01c7-81bdb149f534-47883222, #w-node-_5738977c-e712-d780-01c7-81bdb149f537-47883222, #w-node-b12998aa-648e-bac1-788e-ab859faafb0a-47883222 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (min-width: 1440px) {
  #w-node-_9a69ac90-0a6f-2e59-8848-5991a1f7d88f-4788321d {
    grid-area: 1 / 4 / 2 / 7;
  }
}

@media screen and (max-width: 991px) {
  #w-node-dd5e772c-72fb-8f28-8ade-3d6fcdd1649f-4788321d {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }

  #w-node-fa8ec9dd-f565-39ce-16a5-94b340d39079-4788321d {
    grid-area: span 1 / span 3 / span 1 / span 3;
    align-self: start;
  }

  #w-node-_9a69ac90-0a6f-2e59-8848-5991a1f7d88f-4788321d {
    grid-area: 1 / 3 / 2 / 7;
  }

  #w-node-_72c02718-36f9-6f67-6681-14259049d260-4788321d {
    grid-area: 1 / 4 / 2 / 7;
  }

  #w-node-_1c153ade-0600-2cd6-f02d-d71fb6d3f2be-4788321d {
    grid-area: 1 / 1 / 2 / 4;
    align-self: center;
    justify-self: center;
  }

  #w-node-_00c4ec96-f241-2b14-795c-a58305ac95bd-4788321d {
    grid-area: span 1 / span 2 / span 1 / span 2;
    align-self: end;
  }

  #w-node-_732a474f-b489-26e9-b6f2-2dafb8628213-4788321d, #w-node-b6f115e2-cb17-9743-6bf6-30aa6706aae1-4788321d {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }

  #w-node-_90a9cc02-3293-17c8-f390-efd1966f7994-4788321d, #w-node-_7da33a6b-87d1-6bd5-3ddb-a2e7c745744b-4788321d {
    grid-area: span 1 / span 3 / span 1 / span 3;
    align-self: stretch;
    justify-self: center;
  }

  #w-node-e72577ec-3bc8-6d83-80b9-d156b8726120-4788321d {
    grid-area: span 1 / span 6 / span 1 / span 6;
    align-self: stretch;
    justify-self: center;
  }

  #w-node-e6101890-37c8-445b-5f70-c9f0e6120557-4788321d {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_32697dec-0a24-cf3a-29ea-47c9f09a0455-4788321d {
    grid-area: span 1 / span 4 / span 1 / span 4;
    align-self: center;
    justify-self: center;
  }

  #w-node-c6b168d3-5cb7-1afb-e662-ea70c1b46623-4788321d {
    grid-area: span 1 / span 6 / span 1 / span 6;
    justify-self: end;
  }

  #w-node-_73579d67-8706-c761-2dcf-9b8aa6bf7b6e-4788321d {
    grid-area: span 1 / span 5 / span 1 / span 5;
    align-self: center;
    justify-self: center;
  }

  #w-node-_73579d67-8706-c761-2dcf-9b8aa6bf7b73-4788321d {
    grid-area: 2 / 6 / 3 / 8;
  }

  #w-node-_73579d67-8706-c761-2dcf-9b8aa6bf7b6c-4788321d {
    grid-area: span 1 / span 2 / span 1 / span 2;
    align-self: center;
    justify-self: center;
  }

  #w-node-_1c6900e3-9e02-6c4c-5a32-b9366fe46539-4788321d {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }

  #w-node-_58073e7d-401b-b401-7e96-b2958dcdeefb-8dcdeef9 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: center;
    justify-self: start;
  }

  #w-node-_58073e7d-401b-b401-7e96-b2958dcdeefd-8dcdeef9 {
    grid-area: span 1 / span 3 / span 1 / span 3;
    align-self: stretch;
    justify-self: stretch;
  }

  #w-node-_58073e7d-401b-b401-7e96-b2958dcdef06-8dcdeef9 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    align-self: stretch;
    justify-self: stretch;
  }

  #w-node-_58073e7d-401b-b401-7e96-b2958dcdef17-8dcdeef9 {
    grid-area: span 1 / span 3 / span 1 / span 3;
    align-self: stretch;
    justify-self: stretch;
  }

  #w-node-_344713f8-ccbb-4660-a4f0-89cc716d42f7-716d42f5 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: center;
    justify-self: center;
  }

  #w-node-_344713f8-ccbb-4660-a4f0-89cc716d42f9-716d42f5 {
    grid-area: 1 / 5 / 2 / 7;
    align-self: center;
    justify-self: center;
  }
}

@media screen and (max-width: 767px) {
  #w-node-dd238559-8e26-a85b-0eb7-527bbd19ed78-4788321d {
    grid-column: span 1 / span 1;
  }

  #w-node-dd5e772c-72fb-8f28-8ade-3d6fcdd1649f-4788321d {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-fa8ec9dd-f565-39ce-16a5-94b340d39079-4788321d, #w-node-_72c02718-36f9-6f67-6681-14259049d260-4788321d {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_1c153ade-0600-2cd6-f02d-d71fb6d3f2be-4788321d {
    grid-area: span 1 / span 2 / span 1 / span 2;
    align-self: center;
    justify-self: center;
  }

  #w-node-_732a474f-b489-26e9-b6f2-2dafb8628213-4788321d, #w-node-b6f115e2-cb17-9743-6bf6-30aa6706aae1-4788321d {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_90a9cc02-3293-17c8-f390-efd1966f7994-4788321d, #w-node-_7da33a6b-87d1-6bd5-3ddb-a2e7c745744b-4788321d, #w-node-e72577ec-3bc8-6d83-80b9-d156b8726120-4788321d {
    grid-area: span 1 / span 2 / span 1 / span 2;
    align-self: stretch;
    justify-self: center;
  }

  #w-node-c81aeb3e-5a8a-269a-d56a-aef82e0858cd-4788321d {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_4ab96e60-a491-2be2-5550-b2de7f64dd79-4788321d {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: end;
  }

  #w-node-c05ac272-a2ce-974d-5f9d-b614679e3a85-4788321d {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_7b4557ed-5b9e-9803-f1ce-f9b16365ed6e-4788321d {
    grid-column: span 2 / span 2;
  }

  #w-node-_93c15cbc-1673-69c5-f9ca-389a9e82dced-4788321d {
    grid-area: span 1 / span 6 / span 1 / span 6;
  }

  #w-node-_32697dec-0a24-cf3a-29ea-47c9f09a0455-4788321d {
    grid-area: span 1 / span 6 / span 1 / span 6;
    align-self: center;
    justify-self: center;
  }

  #w-node-c6b168d3-5cb7-1afb-e662-ea70c1b46623-4788321d {
    grid-area: span 1 / span 6 / span 1 / span 6;
  }

  #w-node-_73579d67-8706-c761-2dcf-9b8aa6bf7b6e-4788321d {
    grid-area: span 1 / span 6 / span 1 / span 6;
    align-self: center;
    justify-self: center;
  }

  #w-node-_73579d67-8706-c761-2dcf-9b8aa6bf7b73-4788321d {
    grid-area: span 1 / span 6 / span 1 / span 6;
  }

  #w-node-_73579d67-8706-c761-2dcf-9b8aa6bf7b6c-4788321d {
    order: -9999;
    grid-area: span 1 / span 6 / span 1 / span 6;
    align-self: center;
    justify-self: center;
  }

  #w-node-_1c6900e3-9e02-6c4c-5a32-b9366fe46539-4788321d, #w-node-_2cff484c-8374-ffb2-d24a-dd1cd9fb06aa-4788321d {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }

  #w-node-_58073e7d-401b-b401-7e96-b2958dcdeefb-8dcdeef9 {
    grid-column: span 2 / span 2;
  }

  #w-node-_58073e7d-401b-b401-7e96-b2958dcdeefd-8dcdeef9, #w-node-_58073e7d-401b-b401-7e96-b2958dcdef06-8dcdeef9 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    align-self: stretch;
    justify-self: stretch;
  }

  #w-node-_344713f8-ccbb-4660-a4f0-89cc716d42f7-716d42f5 {
    grid-column: span 1 / span 1;
    justify-self: start;
  }

  #w-node-_344713f8-ccbb-4660-a4f0-89cc716d42f9-716d42f5 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: end;
  }
}

@media screen and (max-width: 479px) {
  #w-node-dd238559-8e26-a85b-0eb7-527bbd19ed78-4788321d, #w-node-dd5e772c-72fb-8f28-8ade-3d6fcdd1649f-4788321d {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-fa8ec9dd-f565-39ce-16a5-94b340d39079-4788321d {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }

  #w-node-_9a69ac90-0a6f-2e59-8848-5991a1f7d88f-4788321d, #w-node-_72c02718-36f9-6f67-6681-14259049d260-4788321d {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-_1c153ade-0600-2cd6-f02d-d71fb6d3f2be-4788321d {
    grid-area: span 1 / span 4 / span 1 / span 4;
    align-self: center;
    justify-self: center;
  }

  #w-node-b6f115e2-cb17-9743-6bf6-30aa6706aae1-4788321d {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-_90a9cc02-3293-17c8-f390-efd1966f7994-4788321d {
    grid-area: 2 / 1 / 3 / 2;
    align-self: stretch;
    justify-self: center;
  }

  #w-node-_7da33a6b-87d1-6bd5-3ddb-a2e7c745744b-4788321d {
    grid-area: 1 / 1 / 2 / 2;
    align-self: stretch;
    justify-self: center;
  }

  #w-node-e72577ec-3bc8-6d83-80b9-d156b8726120-4788321d {
    grid-area: 3 / 1 / 4 / 2;
    align-self: stretch;
    justify-self: center;
  }

  #w-node-c81aeb3e-5a8a-269a-d56a-aef82e0858cd-4788321d {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_4ab96e60-a491-2be2-5550-b2de7f64dd79-4788321d {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: end;
  }

  #w-node-c05ac272-a2ce-974d-5f9d-b614679e3a85-4788321d {
    grid-area: span 2 / span 2 / span 2 / span 2;
  }

  #w-node-_895104e8-464c-afe2-2532-ee05b0ae4dc2-4788321d {
    grid-area: span 1 / span 2 / span 1 / span 2;
    align-self: center;
    justify-self: center;
  }

  #w-node-a3212bb3-6738-224f-aeef-2402bd29b2e9-4788321d {
    grid-area: span 1 / span 2 / span 1 / span 2;
    align-self: center;
  }

  #w-node-e6101890-37c8-445b-5f70-c9f0e6120557-4788321d {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_93c15cbc-1673-69c5-f9ca-389a9e82dced-4788321d {
    grid-area: span 1 / span 4 / span 1 / span 4;
    align-self: center;
    justify-self: center;
  }

  #w-node-c6b168d3-5cb7-1afb-e662-ea70c1b46623-4788321d {
    grid-area: span 1 / span 4 / span 1 / span 4;
    justify-self: end;
  }

  #w-node-_73579d67-8706-c761-2dcf-9b8aa6bf7b6e-4788321d {
    grid-area: span 1 / span 4 / span 1 / span 4;
    align-self: center;
    justify-self: center;
  }

  #w-node-_73579d67-8706-c761-2dcf-9b8aa6bf7b73-4788321d {
    grid-area: 3 / 1 / 4 / 5;
    justify-self: end;
  }

  #w-node-_73579d67-8706-c761-2dcf-9b8aa6bf7b6c-4788321d {
    grid-area: 1 / 1 / 2 / 5;
    align-self: center;
    justify-self: start;
  }

  #w-node-_1c6900e3-9e02-6c4c-5a32-b9366fe46539-4788321d {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-_58073e7d-401b-b401-7e96-b2958dcdeefb-8dcdeef9 {
    grid-area: span 1 / span 4 / span 1 / span 4;
    align-self: center;
    justify-self: start;
  }

  #w-node-_58073e7d-401b-b401-7e96-b2958dcdeefd-8dcdeef9, #w-node-_58073e7d-401b-b401-7e96-b2958dcdef06-8dcdeef9, #w-node-_58073e7d-401b-b401-7e96-b2958dcdef17-8dcdeef9 {
    grid-area: span 1 / span 4 / span 1 / span 4;
    align-self: stretch;
    justify-self: stretch;
  }

  #w-node-_344713f8-ccbb-4660-a4f0-89cc716d42f7-716d42f5 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    align-self: center;
    justify-self: center;
  }

  #w-node-_344713f8-ccbb-4660-a4f0-89cc716d42f9-716d42f5 {
    grid-area: 1 / 3 / 2 / 5;
    align-self: center;
    justify-self: center;
  }
}


