:root {
  --button-primary: #3b83f7;
  --grey-dark: #393839;
  --secondary-brand-color: #89b6ff;
  --maroon-dark: #310100;
  --cd-squared-red: #6f111b;
  --smoke-white: #f0f0f0;
  --grey: grey;
  --dark-color: black;
  --maroon: #5c0100;
  --light-grey: #ddd;
}

.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;
}

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-form-formradioinput--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 12px;
  height: 12px;
}

.w-form-formradioinput--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-form-formradioinput--inputType-custom.w--redirected-checked {
  border-width: 4px;
  border-color: #3898ec;
}

body {
  color: #333;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  line-height: 140%;
}

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

h2 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: 700;
  line-height: 120%;
}

h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
  line-height: 120%;
}

p {
  margin-bottom: 10px;
  line-height: 175%;
}

a {
  color: var(--button-primary);
  font-weight: 500;
  text-decoration: none;
}

a:hover {
  color: var(--grey-dark);
  -webkit-text-stroke-color: var(--grey-dark);
  font-weight: 500;
  text-decoration: none;
}

a:focus {
  color: #6096d6;
}

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

.container {
  flex-direction: column;
  flex: 1;
  align-items: center;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.style-guide-grid {
  grid-column-gap: 40px;
  grid-row-gap: 41px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: minmax(0, .25fr);
  margin-top: 30px;
  margin-bottom: 30px;
  display: grid;
}

.style-guide-category {
  text-transform: uppercase;
  border-bottom: 1px solid #e6e6e6;
  margin-top: 20px;
  padding-bottom: 5px;
  font-weight: 700;
}

.style-guide-edit {
  text-transform: uppercase;
  border-bottom: 1px solid #e6e6e6;
  margin-top: 10px;
  margin-bottom: 10px;
}

.light-text {
  color: #fff;
  line-height: 140%;
}

.light-text:hover {
  color: var(--secondary-brand-color);
}

.style-guide-element {
  color: #fff;
  background-color: #3b83f7;
  margin-top: 3px;
  margin-bottom: 3px;
  padding: 3px 5px;
  font-size: 14px;
  font-weight: 300;
  display: inline-block;
}

.style-guide-class {
  color: #fff;
  background-color: #3b83f7;
  border-radius: 3px;
  padding: 3px 8px;
  font-size: 14px;
  font-weight: 300;
  display: inline-block;
}

.style-guide-class.tag-class {
  background-color: #cc55b8;
}

.style-guide-edit-wrap {
  opacity: .4;
}

.style-guide-edit-wrap:hover {
  opacity: 1;
}

.small-p {
  font-size: 14px;
  line-height: 175%;
}

.large-p {
  font-size: 22px;
  line-height: 175%;
}

.rich-text h1 {
  font-size: 50px;
}

.rich-text h2 {
  font-size: 38px;
}

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

.style-guide-color-wrap {
  background-color: var(--maroon-dark);
  justify-content: flex-start;
  align-items: center;
  height: 100px;
  margin-top: 30px;
  padding: 15px 30px;
  display: flex;
}

.style-guide-color-wrap.primary-color-background {
  background-color: var(--cd-squared-red);
}

.style-guide-color-wrap.secondary-color-background {
  background-color: var(--secondary-brand-color);
}

.style-guide-color-wrap.mid-grey-color-background {
  background-color: var(--grey-dark);
}

.style-guide-color-wrap.light-color-background {
  background-color: var(--smoke-white);
}

.style-guide-color-wrap.white-background {
  background-color: #fff;
}

.style-guide-color-wrap.light-grey-color-background {
  background-color: var(--grey);
}

.button {
  background-color: var(--cd-squared-red);
  color: #fff;
  text-align: center;
  -webkit-text-stroke-color: var(--button-primary);
  border-radius: 3px;
  margin-top: 0;
  padding: 15px 20px;
}

.button:hover {
  background-color: var(--grey-dark);
  color: #fff;
}

.button.ghost-button {
  border: 2px solid var(--button-primary);
  color: var(--button-primary);
  background-color: #0000;
}

.button.ghost-button:hover {
  border-color: var(--grey-dark);
  color: var(--grey-dark);
}

.button.ghost-button.invese-ghost {
  color: #fff;
  border-color: #fff;
}

.button.ghost-button.invese-ghost:hover {
  border-color: var(--secondary-brand-color);
  color: var(--secondary-brand-color);
}

.button.inverse-button {
  color: var(--button-primary);
  background-color: #fff;
}

.button.inverse-button:hover {
  color: var(--grey-dark);
}

.button.form-submit {
  margin-top: 15px;
  line-height: 140%;
}

.button.form-submit:hover {
  background-color: var(--grey-dark);
}

.button.l {
  text-align: center;
  padding: 20px 40px;
}

.button.blue {
  background-color: #11386f;
}

.style-guide-grid-item-wrap {
  grid-column-gap: 20px;
  grid-row-gap: 0px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: flex-start stretch;
  padding-top: 10px;
  display: grid;
}

.list {
  padding-left: 15px;
}

.list-item {
  margin-top: 10px;
  margin-bottom: 10px;
}

.form-field {
  background-color: #fff;
  border-radius: 3px;
  padding-top: 40px;
  padding-bottom: 40px;
  line-height: 140%;
}

.form-field.form-select {
  background-color: #fff;
}

.form-field.dropdown {
  padding-top: 0;
  padding-bottom: 0;
}

.form-lable {
  margin-top: 20px;
  line-height: 140%;
}

.form-checkbox {
  border-radius: 3px;
  width: 35px;
  height: 35px;
}

.style-guide-layout-demo {
  background-color: #d3d3d3;
  border: 1px solid #d3d3d3;
}

.style-guide-layout-demo.section-padding {
  margin-top: 30px;
}

.style-guide-white-div {
  background-color: #fff;
  width: 100%;
  height: 100%;
  padding: 20px;
}

.popup-background-wrap {
  z-index: 100;
  background-color: #000c;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0%;
}

.popup-card {
  text-align: center;
  background-color: #fff;
  border-radius: 5px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 450px;
  padding: 30px;
  display: flex;
  position: relative;
}

.style-guide-wrap {
  padding-top: 20px;
  line-height: 140%;
}

.close-popup-button {
  color: var(--dark-color);
  padding: 15px;
  font-size: 20px;
  text-decoration: none;
  position: absolute;
  inset: -5px -5px auto auto;
}

.style-guide-popup-wrap {
  background-color: var(--dark-color);
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 30px;
  padding: 22px;
  display: flex;
}

.checkbox-label {
  padding-bottom: 40px;
  padding-left: 10px;
  line-height: 140%;
}

.radio-button-label {
  line-height: 140%;
}

.brand {
  justify-content: space-between;
  align-items: stretch;
  padding-top: 17px;
  display: block;
}

.navbar {
  border-style: none none solid;
  border-width: 1px 1px 5px;
  border-color: black black var(--maroon);
  background-color: var(--maroon-dark);
  padding-top: 20px;
  padding-bottom: 20px;
  position: fixed;
  inset: 0% 0% auto;
}

.body {
  background-color: var(--maroon-dark);
}

.nav-links {
  color: #fff;
  text-align: center;
  font-weight: 300;
}

.nav-links:hover {
  color: var(--secondary-brand-color);
}

.spacer-50-30-px {
  width: 50px;
  height: 50px;
}

.section {
  mix-blend-mode: normal;
  background-image: url('../images/bg-library-alt.webp');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  padding-left: 50px;
  padding-right: 50px;
}

.section.hero {
  opacity: 1;
  background-image: url('../images/atl-skyline-bg.webp');
  background-repeat: no-repeat;
  background-size: cover;
  border-style: solid;
  border-width: 1px;
  margin-top: 270px;
}

.section.benefits {
  background-color: var(--smoke-white);
  background-image: none;
}

.section.header {
  background-color: var(--secondary-brand-color);
  background-image: none;
  margin-top: 270px;
}

.section.page-content {
  background-color: var(--smoke-white);
  background-image: none;
}

.grid-hero {
  grid-template-rows: auto;
  grid-template-columns: 1fr .75fr;
}

.grid-hero-cta {
  grid-template-columns: 1fr;
}

.img-hero-claudedavis {
  z-index: 1;
  max-height: 85%;
  position: static;
  inset: 0% 0% 0% auto;
}

.footer-dark {
  border-style: solid;
  border-width: 15px 1px 1px;
  border-color: var(--cd-squared-red) black black;
  background-color: var(--maroon-dark);
  padding: 50px 50px 15px;
  position: relative;
}

.footer-divider {
  background-color: var(--cd-squared-red);
  width: 100%;
  height: 1px;
  margin-top: 70px;
  margin-bottom: 40px;
}

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

.footer-copyright-center.white {
  color: #fff;
  margin-bottom: 100px;
  font-size: 18px;
  line-height: 120%;
}

.grid-5-col {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.grid-5-col.footer {
  grid-template-columns: .75fr 1.25fr 1fr .75fr 1.25fr;
}

.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;
}

.grid-5-rows {
  grid-template-rows: auto auto auto auto auto;
  grid-template-columns: 1fr;
}

.link-footer {
  color: #fff;
  font-size: 16px;
}

.link-footer:hover {
  color: var(--button-primary);
}

.logo-cd-squared-footer {
  text-align: left;
}

.text-block {
  color: #fff;
}

.wrapper-benefits {
  padding-top: 100px;
  padding-bottom: 100px;
}

.grid-3-rows {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr;
}

.grid-3-rows.benefits {
  grid-row-gap: 30px;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr;
}

.wrapper-img-benefits {
  display: flex;
}

.img-family, .img-save-time, .img-sleep-well {
  border: 5px solid var(--secondary-brand-color);
}

.spacer-200x50-px {
  width: 200px;
  height: 50px;
}

.grid-text-benefits {
  grid-template-columns: 1fr;
}

.wrapper.header {
  text-align: center;
  justify-content: space-between;
  align-items: center;
  height: 8rem;
  display: flex;
}

.wrapper.page-content {
  padding-top: 100px;
  padding-bottom: 60px;
}

.grid-4-col {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.grid-4-col.target-clients {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
}

.grid-4-col._4-steps {
  grid-template-columns: .25fr .25fr 2.25fr;
}

.wrapper-target-client {
  border-width: 4px 0;
  border-color: #333 var(--maroon-dark);
  background-color: #d1d1d1;
  padding-top: 40px;
}

.h2-header.target-client {
  text-align: center;
}

.h2-header.target-client.red {
  color: var(--cd-squared-red);
}

.spacer-target-client {
  width: 400px;
  height: 400px;
  padding-left: 20px;
  padding-right: 20px;
}

.thin-line-1-px {
  background-color: var(--grey);
  width: 100%;
  height: 1px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.spacer-content-bottom {
  height: 200px;
}

.paragraph {
  text-align: left;
}

.text-block-2 {
  text-align: justify;
}

.faq-tab {
  text-align: center;
  padding: 20px;
  font-weight: 700;
}

.faq-tabs-menu {
  border-bottom: 1px solid #333;
  justify-content: center;
  display: flex;
}

.tab-link-style {
  border: 1px solid var(--grey-dark);
}

.tabs-content {
  padding-top: 60px;
}

.tabs {
  background-color: #0000;
}

.text-block-3 {
  text-align: left;
}

.grid-2-col {
  grid-template-rows: auto;
}

.grid-2-col.attorney-profile {
  grid-template-columns: .5fr 1fr;
}

.grid-2-col.contact-us {
  grid-column-gap: 59px;
}

.wrapper-img-attorney-profile {
  background-color: #0000;
  padding-bottom: 40px;
}

.img-profile-claude-davis-ii {
  border: 20px solid var(--cd-squared-red);
  background-color: #0000;
}

.form.contact {
  width: 500px;
}

.checkbox-field {
  padding-top: 20px;
  display: flex;
}

.form-2 {
  padding-bottom: 60px;
}

.img-wills-probate, .img-wrongful-death, .img-business-litigation, .img-catastrophic-personal-injury, .img-commercial-trucking-accidents {
  border: 5px solid var(--secondary-brand-color);
}

.wrapper-square-200px {
  width: 200px;
  height: 200px;
}

.square-200px {
  width: 125px;
  height: 125px;
  margin-left: auto;
  margin-right: auto;
}

.square-200px.white {
  border: 20px solid var(--secondary-brand-color);
  background-color: var(--light-grey);
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 200px;
  display: flex;
}

.big-number {
  text-align: center;
  font-size: 90px;
  font-weight: 700;
}

.step-text {
  font-size: 24px;
  font-weight: 700;
}

.spacer-75px {
  width: 75px;
  height: 75px;
}

.step-title {
  font-size: 48px;
  font-weight: 700;
}

.step-title.red {
  color: var(--cd-squared-red);
}

.spacer-40px {
  width: 40px;
  height: 40px;
}

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

.spacer-250px {
  width: 250px;
  height: 250px;
}

@media screen and (max-width: 991px) {
  .rich-text h1 {
    font-size: 38px;
  }

  .rich-text h2 {
    font-size: 24px;
  }

  .brand {
    text-align: left;
  }

  .body {
    background-image: linear-gradient(#00000080, #00000080);
  }

  .nav-links {
    background-color: var(--maroon-dark);
  }

  .spacer-50-30-px {
    width: 30px;
    height: 30px;
  }

  .nav-menu {
    z-index: 5;
  }

  .section.hero, .section.header {
    margin-top: 220px;
  }

  .grid-hero {
    grid-template-columns: 1.25fr .75fr;
  }

  .grid-5-col.footer {
    grid-row-gap: 51px;
    grid-template-columns: .75fr 1.25fr 1fr;
  }

  .wrapper-img-benefits {
    flex-direction: column;
  }

  .wrapper.page-content {
    padding-top: 40px;
  }

  .grid-4-col.target-clients {
    grid-template-columns: 1fr;
  }

  .spacer-target-client {
    width: 700px;
  }

  .faq-tabs-menu {
    flex-direction: column;
  }

  .grid-2-col.attorney-profile, .grid-2-col.contact-us {
    grid-template-columns: 1fr;
  }

  .form.contact {
    width: 700px;
  }

  .grid {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
    grid-template-rows: auto auto auto auto auto auto auto auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
  }
}

@media screen and (max-width: 767px) {
  .rich-text h1 {
    font-size: 24px;
  }

  .rich-text h3, .rich-text h2 {
    font-size: 18px;
  }

  .rich-text.white {
    text-align: center;
    padding-top: 30px;
  }

  .style-guide-color-wrap {
    height: auto;
  }

  .button {
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

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

  .grid-5-col.footer {
    grid-template-columns: 1.25fr 1.25fr;
  }

  .wrapper.page-content {
    padding-top: 40px;
  }

  .grid-4-col._4-steps {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .spacer-target-client, .form.contact {
    width: 500px;
  }

  .step-text, .step-title, .wrapper-step-text {
    text-align: center;
  }
}

@media screen and (max-width: 479px) {
  .style-guide-grid {
    flex-flow: column;
    grid-template-columns: 1fr;
    display: flex;
  }

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

  .navbar {
    position: relative;
  }

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

  .section.hero, .section.header {
    margin-top: 0;
  }

  .grid-hero {
    grid-template-columns: 1fr;
    grid-template-areas: "."
                         "Area";
    align-self: stretch;
    justify-items: stretch;
  }

  .grid-hero-cta {
    grid-template-rows: 1fr auto;
    grid-template-columns: 1fr;
  }

  .grid-5-col.footer {
    grid-template-columns: 1.25fr;
  }

  .wrapper.page-content {
    padding-top: 40px;
  }

  .h1-header {
    font-size: 25px;
  }

  .spacer-target-client {
    width: 285px;
    height: 600px;
  }

  .text-block-2 {
    text-align: left;
  }

  .form.contact {
    width: 280px;
  }

  .wrapper-contact-details {
    text-align: center;
  }

  .spacer-250px {
    width: 1px;
    height: 1px;
  }

  .div-block {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-items: center;
  }
}

#w-node-dcb34fc7-c20b-1ad0-debb-58adaefc2958-3e348004 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-bfbdb882-fc7f-f88e-e7d7-c726404e3ec5-3e348004 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6102c662-27cd-1712-3270-84e85808db09-3e348004 {
  justify-self: start;
}

#w-node-dcb34fc7-c20b-1ad0-debb-58adaefc2959-3e348004 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: end center;
}

#w-node-edd5792d-9356-07c1-d668-68016ceaf9f3-3e348004 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-eeb18e40-089c-c5f2-7f48-8e7fdf6d36e4-3e348004 {
  place-self: center start;
}

#w-node-_807f93c4-a128-4e27-e431-4b833ae1cb5e-3e348004 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8b371c09-29fa-7115-749f-63b27101c3bd-3e348004 {
  place-self: center start;
}

#w-node-c56cf475-7e3b-a3ea-59c3-d0f9224032a6-3e348004, #w-node-b70a178f-e156-e804-5415-4c3a2bfe7bc8-3e348004 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_83974636-0b13-39c0-bbb5-e4c1ec441e6e-3e348004 {
  place-self: center start;
}

#w-node-a03dc644-c230-8f91-a7ae-7d3327c5b190-27c5b18d, #w-node-a03dc644-c230-8f91-a7ae-7d3327c5b191-27c5b18d, #w-node-a03dc644-c230-8f91-a7ae-7d3327c5b193-27c5b18d, #w-node-a03dc644-c230-8f91-a7ae-7d3327c5b195-27c5b18d, #w-node-a03dc644-c230-8f91-a7ae-7d3327c5b197-27c5b18d, #w-node-a03dc644-c230-8f91-a7ae-7d3327c5b199-27c5b18d, #w-node-a03dc644-c230-8f91-a7ae-7d3327c5b19b-27c5b18d, #w-node-a03dc644-c230-8f91-a7ae-7d3327c5b19c-27c5b18d, #w-node-a03dc644-c230-8f91-a7ae-7d3327c5b19e-27c5b18d, #w-node-a03dc644-c230-8f91-a7ae-7d3327c5b1a0-27c5b18d, #w-node-a03dc644-c230-8f91-a7ae-7d3327c5b1a2-27c5b18d, #w-node-a03dc644-c230-8f91-a7ae-7d3327c5b1a4-27c5b18d, #w-node-a03dc644-c230-8f91-a7ae-7d3327c5b1a6-27c5b18d, #w-node-a03dc644-c230-8f91-a7ae-7d3327c5b1a7-27c5b18d, #w-node-a03dc644-c230-8f91-a7ae-7d3327c5b1a9-27c5b18d, #w-node-a03dc644-c230-8f91-a7ae-7d3327c5b1ab-27c5b18d, #w-node-a03dc644-c230-8f91-a7ae-7d3327c5b1ad-27c5b18d, #w-node-a03dc644-c230-8f91-a7ae-7d3327c5b1af-27c5b18d, #w-node-a03dc644-c230-8f91-a7ae-7d3327c5b1b1-27c5b18d, #w-node-a03dc644-c230-8f91-a7ae-7d3327c5b1b2-27c5b18d, #w-node-a03dc644-c230-8f91-a7ae-7d3327c5b1b4-27c5b18d, #w-node-a03dc644-c230-8f91-a7ae-7d3327c5b1b6-27c5b18d, #w-node-a03dc644-c230-8f91-a7ae-7d3327c5b1b8-27c5b18d, #w-node-a03dc644-c230-8f91-a7ae-7d3327c5b1ba-27c5b18d, #w-node-a03dc644-c230-8f91-a7ae-7d3327c5b1bc-27c5b18d, #w-node-a03dc644-c230-8f91-a7ae-7d3327c5b1bd-27c5b18d, #w-node-a03dc644-c230-8f91-a7ae-7d3327c5b1be-27c5b18d, #w-node-a03dc644-c230-8f91-a7ae-7d3327c5b1c2-27c5b18d, #w-node-a03dc644-c230-8f91-a7ae-7d3327c5b1c9-27c5b18d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-af6ac8e3-b1ce-cda6-23dc-a32b43a6a065-3e348005 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-cef64361-1f9b-8732-7793-1d4785eeed97-3e348005 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c4313243-b51c-03bb-11ad-c431ebe2a80b-3e348005 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-d0d2d682-3502-a29f-1a22-871f47028af2-3e348005, #w-node-eb00ca3d-f0c1-8354-e9aa-1faf574614be-3e348005, #w-node-_85cb43b8-5298-9d0a-b169-853350d81ae0-3e348005, #w-node-_5ce572de-a6ee-b264-99b3-588be3f1debe-3e348005, #w-node-e573c9ae-1e4b-15b0-7098-638502628a9c-3e348005, #w-node-_0c02166c-4ee3-9762-cc8d-f567a47991b2-3e348005, #w-node-_31bfd8e3-b79a-c6a8-c644-de3e1d6aef06-3e348005, #w-node-_8101b2ee-d87b-6d50-ecc4-1cc6560df4db-3e348005, #w-node-aa9291ec-5ca1-3ae2-496b-ff742d602a68-3e348005, #w-node-_479385eb-f044-0d6d-9fb9-3510fe0092c5-3e348005, #w-node-_36d6a540-3dac-ba1b-4887-4e460e7ddc86-3e348005, #w-node-_58a77a61-8d2a-f298-bcf8-5b5d6bda4258-3e348005, #w-node-_84eebd00-708d-d564-7474-81a48d7f1aa8-3e348005, #w-node-c0ceb277-bbf2-2cf4-4072-7fa273a7e783-3e348005, #w-node-_293d8aee-201d-8e8e-7d11-7b9b1bf3932f-3e348005, #w-node-e02f6cf5-e81b-07a2-d153-c916403846e7-3e348005, #w-node-_90e05c14-0560-63b0-7156-ffcbe12cdec6-3e348005, #w-node-_90e05c14-0560-63b0-7156-ffcbe12cdec7-3e348005, #w-node-_40d4d6df-e38b-f778-5115-ea8f93d0542e-3e348005, #w-node-c9d7c3ab-d31b-4fe2-e290-666f73a76a6a-3e348005, #w-node-_1cb2eaff-c085-9ab3-df4a-1725ee4f484b-3e348005, #w-node-_1229091c-99d0-b728-5727-37785a9996e2-3e348005 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f637bbff-835b-0236-4124-4ac1eef82ac3-3e348005 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_826fbc41-7f9a-f875-b76e-3e9c3ff2002b-3e348005, #w-node-ed82fd76-b394-3b31-d285-0d24c40a28ca-3e348005, #w-node-_11717b33-079b-321a-8523-e173de28bfe2-3e348005 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e383549d-c8b3-87cd-ee42-73f99aa01117-3e348005 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_55db6e40-b97b-9254-09df-2929df1b67ad-3e348005, #w-node-_8a96fce1-c74f-35f2-c6f4-3587e7d0e79a-3e348005, #w-node-bfdc7d70-2863-8331-b4f9-ad395f381310-3e348005, #w-node-_8219438d-b20e-01aa-f124-d537d0821573-3e348005, #w-node-df52a5df-cf6e-cd43-ccd8-20633efad3fb-3e348005, #w-node-cd8a551e-24bb-f985-80c2-ed654c7036ec-3e348005, #w-node-c73ec5c5-9d1c-c71a-647d-93fd71def3a3-3e348005, #w-node-b28db8fa-48cc-0fc7-f454-c90e65fa4e38-3e348005 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_18765f94-c4e6-c755-ac1d-a3de06ce4dbc-3e348005 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_91cfe370-0245-0733-cc80-e0128461d2a5-3e348005, #w-node-_983a314a-baad-360b-c27c-560bd790abd0-3e348005, #w-node-dec986e8-2989-ac3d-9697-51959cdb817b-3e348005 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_539debc5-c3bf-e500-5373-a3259d80206f-3e348005 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-aecd07ed-cd8b-1716-e906-11a45aa52757-3e348005, #w-node-_432c5549-5a58-4527-4926-71dbf8e6a1d1-3e348005, #w-node-_165d79eb-b2a5-28c4-eb36-16dde57c961e-3e348005, #w-node-c962fc9a-3fcf-08e3-bdf2-4ecd4a9701dd-3e348005, #w-node-_448e0e5a-f5bb-b07f-46a7-e322d88554aa-3e348005, #w-node-_448e0e5a-f5bb-b07f-46a7-e322d88554ab-3e348005 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-bca97c44-ed2a-c4d2-234a-6c62ee4dc6b5-3e348005 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_65cb131a-038a-ef25-ea34-fb9ed9c178b0-3e348005, #w-node-_50c4eecd-635c-c0cb-6b83-c35774246b79-3e348005, #w-node-b95f9e28-dfe9-bd7a-fa55-72cb2018c598-67c1d18b, #w-node-be6f64f0-5a4b-7ba1-85c9-c7afd2159e4f-67c1d18b, #w-node-_0fb47818-68b1-a871-12cf-97e6c3187694-67c1d18b, #w-node-_4dfdc747-ca02-e3ea-0061-f22a99913d7d-67c1d18b, #w-node-a4845b60-e181-e698-a9c7-9bf6e8465981-581535cd {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_89279030-e861-2b4c-2a69-d7ffe9e85d92-581535cd {
  place-self: center start;
}

#w-node-_3d27573f-7906-33ef-4952-90092f5c067f-581535cd, #w-node-a4845b60-e181-e698-a9c7-9bf6e846598c-581535cd {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_715c6cc7-c75f-4811-2a0c-06792ba7a6fe-581535cd {
  place-self: center start;
}

#w-node-a4845b60-e181-e698-a9c7-9bf6e8465997-581535cd, #w-node-a4845b60-e181-e698-a9c7-9bf6e8465998-581535cd {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_846da31e-681c-225e-7d54-5fd96de6f32b-581535cd {
  place-self: center start;
}

#w-node-_52ca8d21-c3a0-6323-3b58-db0da26b4e95-581535cd {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_09324ba0-7e6a-7b94-e9ce-f96fc25c1c83-581535cd {
  place-self: center start;
}

#w-node-_52ca8d21-c3a0-6323-3b58-db0da26b4e9e-581535cd, #w-node-_52ca8d21-c3a0-6323-3b58-db0da26b4e9f-581535cd {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_87b5675c-759c-8703-94d2-3d07cee0edee-581535cd {
  place-self: center start;
}

#w-node-_52ca8d21-c3a0-6323-3b58-db0da26b4ea9-581535cd, #w-node-_52ca8d21-c3a0-6323-3b58-db0da26b4eaa-581535cd {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e7f409d9-51bf-3585-5672-a8b416e4ccf1-581535cd {
  place-self: center start;
}

#w-node-e35068b8-2656-038d-213e-c35c912959db-03d54bad, #w-node-_2a617ca4-7e7a-acb5-fa7b-12fb6d46755e-03d54bad, #w-node-_89315bdf-7158-8a11-f0ec-04ce4ad8377d-03d54bad, #w-node-_5830a0b2-dd5a-895f-acdd-d4b967c260bf-1ab2d2cd, #w-node-fa3f3fdf-6fe9-dfe2-61c8-a5955a4f2443-82fc34b6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_74985e2c-a6cf-5b54-35bf-3760355ce476-82fc34b6, #w-node-e604bfe9-94d6-c0e0-1023-41b58b7b0ef6-82fc34b6, #w-node-e7fe031a-5e11-ae31-037c-6ec744068fa5-82fc34b6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-d3c1db7c-0203-a5b6-6f8c-77af31dd45f8-82fc34b6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_271769ad-e397-8dbc-9ab6-7efb0d9619d2-82fc34b6, #w-node-_271769ad-e397-8dbc-9ab6-7efb0d9619d3-82fc34b6, #w-node-d3c1db7c-0203-a5b6-6f8c-77af31dd45f9-82fc34b6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_9b0857ac-90e0-ba01-c735-219124493017-82fc34b6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_79a0f9fc-665a-76ea-ad31-4cd0ef2b6dd9-82fc34b6, #w-node-_79a0f9fc-665a-76ea-ad31-4cd0ef2b6dda-82fc34b6, #w-node-_9b0857ac-90e0-ba01-c735-219124493018-82fc34b6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-ed152f10-baef-cdf4-dfc3-b62391ae6c52-82fc34b6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-cd1b4ccd-ce27-066f-759c-1780846a2473-82fc34b6, #w-node-cd1b4ccd-ce27-066f-759c-1780846a2474-82fc34b6, #w-node-ed152f10-baef-cdf4-dfc3-b62391ae6c53-82fc34b6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-af6ac8e3-b1ce-cda6-23dc-a32b43a6a065-59ba9a0b {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-cef64361-1f9b-8732-7793-1d4785eeed97-59ba9a0b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c4313243-b51c-03bb-11ad-c431ebe2a80b-59ba9a0b {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-d0d2d682-3502-a29f-1a22-871f47028af2-59ba9a0b, #w-node-eb00ca3d-f0c1-8354-e9aa-1faf574614be-59ba9a0b, #w-node-_85cb43b8-5298-9d0a-b169-853350d81ae0-59ba9a0b, #w-node-_5ce572de-a6ee-b264-99b3-588be3f1debe-59ba9a0b, #w-node-e573c9ae-1e4b-15b0-7098-638502628a9c-59ba9a0b, #w-node-_0c02166c-4ee3-9762-cc8d-f567a47991b2-59ba9a0b, #w-node-_31bfd8e3-b79a-c6a8-c644-de3e1d6aef06-59ba9a0b, #w-node-_8101b2ee-d87b-6d50-ecc4-1cc6560df4db-59ba9a0b, #w-node-aa9291ec-5ca1-3ae2-496b-ff742d602a68-59ba9a0b, #w-node-_479385eb-f044-0d6d-9fb9-3510fe0092c5-59ba9a0b, #w-node-_36d6a540-3dac-ba1b-4887-4e460e7ddc86-59ba9a0b, #w-node-_58a77a61-8d2a-f298-bcf8-5b5d6bda4258-59ba9a0b, #w-node-_84eebd00-708d-d564-7474-81a48d7f1aa8-59ba9a0b, #w-node-c0ceb277-bbf2-2cf4-4072-7fa273a7e783-59ba9a0b, #w-node-_293d8aee-201d-8e8e-7d11-7b9b1bf3932f-59ba9a0b, #w-node-e02f6cf5-e81b-07a2-d153-c916403846e7-59ba9a0b, #w-node-_90e05c14-0560-63b0-7156-ffcbe12cdec6-59ba9a0b, #w-node-_90e05c14-0560-63b0-7156-ffcbe12cdec7-59ba9a0b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f637bbff-835b-0236-4124-4ac1eef82ac3-59ba9a0b {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_826fbc41-7f9a-f875-b76e-3e9c3ff2002b-59ba9a0b, #w-node-ed82fd76-b394-3b31-d285-0d24c40a28ca-59ba9a0b, #w-node-_11717b33-079b-321a-8523-e173de28bfe2-59ba9a0b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e383549d-c8b3-87cd-ee42-73f99aa01117-59ba9a0b {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

@media screen and (max-width: 991px) {
  #w-node-_6102c662-27cd-1712-3270-84e85808db09-3e348004 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: start;
  }

  #w-node-a03dc644-c230-8f91-a7ae-7d3327c5b1bd-27c5b18d, #w-node-e35068b8-2656-038d-213e-c35c912959db-03d54bad {
    justify-self: center;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_6102c662-27cd-1712-3270-84e85808db09-3e348004 {
    justify-self: center;
  }

  #w-node-a03dc644-c230-8f91-a7ae-7d3327c5b1bd-27c5b18d {
    justify-self: auto;
  }

  #w-node-cd1b4ccd-ce27-066f-759c-1780846a2473-82fc34b6 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: center;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_6102c662-27cd-1712-3270-84e85808db09-3e348004, #w-node-a03dc644-c230-8f91-a7ae-7d3327c5b1bd-27c5b18d, #w-node-fbc94ba9-b795-1849-3249-f757b52c9372-1ab2d2cd {
    justify-self: center;
  }
}


