:root {
  --800: #f0f0f0;
  --white-smoke: #111;
  --900: #f8f8f8;
  --black: white;
  --white: black;
  --700: #e8e8e8;
  --600: #e0e0e0;
  --500: #d8d8d8;
  --400: #d0d0d0;
  --300: silver;
  --200: #b8b8b8;
  --100: #b0b0b0;
  --50-501: #373737;
  --accent-1: #367588;
  --accent-2: #cb9d06;
  --success: #4caf50;
  --error: #f44336;
}

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

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

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

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

body {
  background-color: var(--800);
  color: var(--white-smoke);
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  line-height: 120%;
  display: flex;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 5rem;
  font-weight: 700;
  line-height: 120%;
}

h2 {
  color: var(--white-smoke);
  margin-top: 20px;
  margin-bottom: 30px;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 120%;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 120%;
}

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 120%;
}

p {
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 120%;
}

a {
  color: var(--white-smoke);
  cursor: pointer;
  font-size: 1rem;
  line-height: 120%;
  text-decoration: none;
  transition: opacity .3s;
}

a:hover {
  opacity: .7;
}

.body {
  background-color: var(--900);
  color: var(--white-smoke);
  font-family: Montserrat, sans-serif;
  font-size: 16px;
}

.row {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.color-swatch {
  border: 2px solid #4a4a4a;
  width: 100px;
  height: 100px;
}

.color-swatch._1 {
  background-color: var(--black);
}

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

.color-swatch._3 {
  background-color: var(--white-smoke);
}

.color-swatch._4 {
  background-color: var(--900);
}

.color-swatch._5 {
  background-color: var(--800);
}

.color-swatch._6 {
  background-color: var(--700);
}

.color-swatch._7 {
  background-color: var(--600);
}

.color-swatch._8 {
  background-color: var(--500);
}

.color-swatch._9 {
  background-color: var(--400);
}

.color-swatch._10 {
  background-color: var(--300);
}

.color-swatch._11 {
  background-color: var(--200);
}

.color-swatch._12 {
  background-color: var(--100);
}

.color-swatch._13 {
  background-color: var(--50-501);
}

.color-swatch._14 {
  background-color: var(--accent-1);
}

.color-swatch._15 {
  background-color: var(--accent-2);
}

.settings-heading {
  border-bottom: 2px solid var(--white-smoke);
  font-size: 2rem;
}

.button {
  border-radius: 8px;
  padding: 14px 20px;
}

.button.primary {
  background-color: var(--accent-1);
  color: var(--black);
}

.button.primary.hero-btn {
  margin-top: 30px;
  transform: scale(1.2);
}

.button.primary.form-submit {
  min-width: 200px;
}

.button.secondary {
  background-color: var(--accent-2);
  color: var(--black);
}

.button.secondary.hero-btn {
  letter-spacing: 1px;
  margin-top: 30px;
  margin-left: 40px;
  transform: scale(1.2);
}

.button.outline {
  border: 2px solid var(--white-smoke);
  color: var(--white-smoke);
  background-color: #0000;
}

.sh3 {
  box-shadow: 0 8px 20px #00000080;
}

.sh3.shadow-swatch {
  width: 101px;
}

.sh0 {
  box-shadow: 0 2px 5px 0 var(--black);
}

.sh0.shadow-swatch {
  width: 101px;
}

.sh1 {
  box-shadow: 0 4px 10px #00000040;
}

.sh1.shadow-swatch {
  width: 101px;
}

.sh2 {
  box-shadow: 0 6px 15px #00000061;
}

.sh2.shadow-swatch {
  width: 101px;
}

.shtxt {
  text-shadow: 2px 2px 6px #00000021;
}

.shtxt.hero-name {
  color: var(--900);
  text-align: left;
  letter-spacing: 5px;
  text-transform: uppercase;
  font-size: 4.5rem;
  line-height: 90%;
}

.shtxt.hero-description {
  color: var(--black);
  text-align: left;
  letter-spacing: 1px;
  max-width: 400px;
  font-size: 1.5rem;
  font-style: italic;
}

.shtxt.hero-list {
  margin-top: 20px;
  font-size: 1.2rem;
}

.shadow-swatch {
  border: 2px solid #000;
  width: 100px;
  height: 100px;
}

.spacer {
  width: 100%;
  height: 100px;
}

.navbar {
  background-color: var(--900);
  flex-direction: column;
  align-items: center;
  width: 250px;
  height: 100vh;
  padding: 30px;
  display: flex;
  position: sticky;
  top: 0;
  box-shadow: 0 8px 20px #00000040;
}

.page-content {
  flex: 1;
  overflow: scroll;
}

.section {
  margin-bottom: 50px;
  padding: 30px;
}

.section.hero {
  color: var(--800);
  background-image: radial-gradient(circle at 100% 0, #cb9d060f, #fff0), radial-gradient(circle at 0%, #00000073, #0000), url('../images/microsoft-365-TLiWhlDEJwA-unsplash-min.jpg');
  background-position: 0 0, 0 0, 50%;
  background-size: auto, auto, cover;
  background-attachment: scroll, scroll, scroll;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
  box-shadow: 0 20px 20px -20px #0003;
}

.section.certifications {
  background-image: radial-gradient(circle closest-corner at 0% 50%, transparent 100%, var(--800)), url('../images/YellowOchre1.jpeg');
  background-position: 0 0, 0 0;
  background-size: auto, auto;
  background-attachment: scroll, fixed;
}

.container.hero {
  width: 100%;
  padding-left: 30px;
  padding-right: 30px;
}

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

.container.certifications {
  padding: 30px;
}

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

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

.body-no-navbar {
  flex-direction: column;
}

.nav-headshot {
  border: 5px solid var(--accent-2);
  background-color: var(--white-smoke);
  border-radius: 200px;
  width: 100px;
  height: 100px;
  overflow: hidden;
}

.nav-name {
  white-space: nowrap;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.nav-socials {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.social {
  background-color: var(--600);
  border-radius: 200px;
  width: 30px;
  height: 30px;
}

.nav-links {
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  padding-top: 20px;
  display: flex;
  overflow: scroll;
}

.nav-link {
  grid-column-gap: 20px;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  transition-property: all;
  display: flex;
}

.nav-link.w--current {
  opacity: .6;
  font-weight: 500;
}

.nav-link-icon {
  width: 20px;
  height: 20px;
}

.nav-link-text {
  white-space: nowrap;
  width: 150px;
  font-size: 1.2rem;
}

.nav-link-text.hidden {
  display: none;
}

.nav-footer {
  flex-direction: column;
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.copyright {
  text-align: center;
  font-size: 14px;
}

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

.project-thumbnail {
  cursor: pointer;
  flex: 1;
}

.image {
  object-fit: cover;
  width: 200px;
  height: 100px;
}

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

.image-2 {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.image-3 {
  color: #fff;
  -webkit-text-stroke-width: 6px;
  -webkit-text-stroke-color: #fee;
  background-color: #936c6c;
}

.image-4 {
  color: #fff;
  -webkit-text-stroke-color: #fff;
}

.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.center.light {
  margin-bottom: 35px;
  font-size: 3rem;
  font-weight: 500;
}

.right {
  text-align: right;
  display: inline-block;
}

.project-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.project-list {
  border-radius: 12px;
  height: 200px;
  display: flex;
  overflow: hidden;
}

.project-expanded {
  width: 100%;
  margin-top: 40px;
}

.grid {
  grid-column-gap: 16px;
  grid-template-rows: auto;
  min-height: 50vh;
}

.project-image-slider {
  object-fit: cover;
  border-radius: 8px;
  width: 100%;
  height: 100%;
}

.collection-list-wrapper {
  border-radius: 12px;
}

.project-text-pagination {
  grid-column-gap: 10px;
  flex: 1;
  align-items: flex-end;
  display: flex;
}

.project-pagination-item {
  opacity: .4;
  cursor: pointer;
  flex: 1;
  justify-content: center;
  align-items: center;
  transition: all .3s;
  display: flex;
  position: relative;
}

.project-pagination-item:hover {
  opacity: 1;
  transform: scale(1.05);
}

.project-pagination-item.active {
  opacity: 1;
}

.project-title {
  color: var(--white-smoke);
  text-align: center;
}

.div-block {
  flex-direction: column;
  display: flex;
}

.project-text-category {
  color: var(--accent-2);
  text-align: center;
  margin-bottom: 30px;
  font-style: italic;
}

.project-pagination-number {
  z-index: 1;
  background-color: var(--accent-1);
  color: var(--black);
  border-radius: 200px;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  font-size: 20px;
  display: flex;
  position: relative;
}

.project-text-wrapper {
  width: 100%;
  display: flex;
  overflow: hidden;
}

.project-text {
  flex: none;
  width: 100%;
}

.project-image-slider-wrapper {
  position: relative;
}

.project-arrow {
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0% -30px 0% auto;
}

.project-arrow.back {
  left: -20px;
  right: auto;
}

.arrow {
  background-color: var(--200);
  opacity: .6;
  cursor: pointer;
  border-radius: 200px;
  width: 60px;
  height: 60px;
  padding: 8px;
  transition: all .2s, opacity .3s;
  box-shadow: 0 2px 20px -8px #000;
}

.arrow:hover {
  opacity: 1;
  transform: scale(1.05);
}

.arrow.back {
  width: 40px;
  height: 40px;
}

.project-pagination-line {
  background-color: var(--accent-1);
  border-radius: 20px;
  width: 100%;
  height: 8px;
  position: absolute;
}

.certification {
  background-color: var(--900);
  border-radius: 8px;
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  min-width: 30%;
  max-width: 50%;
  display: flex;
  box-shadow: 0 8px 20px #0000003b;
}

.certification-list {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: row-reverse wrap;
  display: flex;
}

.cert-name {
  text-align: center;
  font-size: 18px;
}

.cert-authority {
  color: #111111b3;
  text-align: center;
  margin-bottom: 15px;
  font-style: italic;
}

.image-5 {
  object-fit: contain;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  width: 100%;
  height: auto;
  max-height: 200px;
  padding-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
}

.cert-date {
  color: var(--accent-2);
}

.div-block-2 {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding: 20px;
  display: flex;
}

.right-div {
  flex-direction: column;
  justify-content: flex-end;
  display: flex;
}

.nav-toggle {
  cursor: pointer;
  border-radius: 200px;
  width: 40px;
  height: 40px;
  transition: opacity .2s;
  position: absolute;
  inset: 50% -20px auto auto;
  box-shadow: 0 2px 5px #0003;
}

.nav-toggle:hover {
  opacity: .8;
}

.nav-toggle-img {
  background-color: var(--accent-2);
  border-radius: 100px;
  padding: 10px;
  transition: all .3s;
}

.div-block-3 {
  height: 50px;
}

.about {
  max-width: 800px;
  font-size: 1.1rem;
  line-height: 130%;
}

.form-row {
  grid-column-gap: 20px;
  display: flex;
}

.text-field {
  color: var(--white-smoke);
  border: 0 #000;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 24px;
  font-size: 1.1rem;
  box-shadow: 0 2px 12px -7px #0003;
}

.text-field:focus {
  outline-offset: 0px;
  outline: 3px #333;
  box-shadow: 0 2px 12px 3px #0003;
}

.text-field.text-area {
  width: 100%;
  height: 150px;
}

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

.success {
  background-color: var(--success);
  color: var(--white-smoke);
  border-radius: 12px;
  padding-bottom: 30px;
}

.error {
  text-align: center;
  border-radius: 12px;
  padding-top: 20px;
  padding-bottom: 30px;
}

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

.sub-heading {
  text-align: center;
  margin-bottom: 30px;
}

.sub-heading.left {
  text-align: left;
}

.sub-heading.right {
  text-align: right;
}

.form-block {
  align-self: stretch;
}

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

.resume-image {
  object-fit: cover;
  border-radius: 8px;
  width: 100%;
  height: 300px;
}

.download {
  grid-row-gap: 5px;
  background-color: var(--900);
  cursor: pointer;
  border-radius: 12px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 35px 60px;
  transition: opacity .2s;
  display: flex;
  box-shadow: 0 4px 10px #00000040;
}

.download:hover {
  opacity: .6;
}

.download-icon {
  color: var(--accent-1);
  width: 30px;
}

.div-block-5 {
  background-image: url('../images/microsoft-365-TLiWhlDEJwA-unsplash-min.jpg');
  background-position: 50%;
  background-size: cover;
  border-radius: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-5.sh1 {
  background-position: 50% 0;
  background-attachment: fixed;
  align-self: stretch;
  height: 400px;
}

.text-block-3 {
  color: var(--accent-1);
}

.div-block-6 {
  display: flex;
  position: relative;
}

.image-6 {
  object-fit: cover;
  width: 50vw;
  height: 300px;
  display: none;
}

.paragraph {
  font-style: italic;
}

.grid-3 {
  grid-column-gap: 0px;
  background-color: var(--900);
  grid-template-rows: auto;
}

.grid-3.sh1 {
  border-radius: 12px;
}

.div-block-7 {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 30px 0 30px 50px;
  display: flex;
}

.div-block-8 {
  position: relative;
}

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

.div-block-10 {
  background-color: var(--success);
  flex: 1;
  height: 100%;
  margin-left: -50px;
}

.div-block-11 {
  background-color: var(--error);
  width: 100px;
  height: 100%;
  transform: skew(-20deg);
}

.div-block-12 {
  flex-direction: row;
  width: 100%;
  min-height: 500px;
  display: flex;
}

.text-block-4, .link {
  color: var(--accent-1);
}

.footer {
  background-color: var(--white-smoke);
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 29px;
  display: flex;
}

.image-7 {
  width: 50px;
  height: auto;
  transform: rotate(-90deg);
}

.text-block-5 {
  color: var(--black);
}

.link-block {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.html-embed-2 {
  flex: 1;
}

.root {
  flex: 1;
  max-width: 100vw;
  display: flex;
}

.button-2 {
  background-color: var(--black);
  border-radius: 50px;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  right: -25px;
  box-shadow: 0 2px 5px #0003;
}

.image-8 {
  opacity: .11;
}

.project-cards {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  display: flex;
  overflow: hidden;
}

.project-card {
  background-image: linear-gradient(0deg, #000, #0000 28%), url('../images/microsoft-365-TLiWhlDEJwA-unsplash-min.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  border-radius: 10px;
  flex: none;
  justify-content: flex-start;
  align-items: flex-end;
  width: 400px;
  height: 200px;
  padding: 16px;
  display: flex;
  box-shadow: 0 2px 5px #0003;
}

.text-block-6 {
  color: var(--black);
  font-size: 22px;
  font-weight: 300;
}

.dots {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: center;
  align-items: center;
  margin-top: 13px;
  margin-bottom: 13px;
  display: flex;
}

.dot {
  background-color: var(--400);
  border-radius: 100px;
  width: 15px;
  height: 15px;
}

.dot.active {
  background-color: var(--accent-2);
  width: 45px;
}

.tags {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  display: flex;
}

.tag {
  background-color: var(--600);
  border-radius: 100px;
  padding: 10px 15px;
  font-size: 14px;
}

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

.heading {
  font-weight: 400;
}

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

.new-arrow {
  background-color: var(--accent-2);
  border-radius: 200px;
  width: 30px;
  height: 30px;
  margin-left: 10px;
  padding: 4px;
}

.div-block-14 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.figma {
  width: 30px;
  height: 30px;
}

.div-block-15 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.text-block-7 {
  text-decoration: underline;
}

.div-block-16 {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.small {
  margin-top: 25px;
  font-size: 2.5rem;
  font-weight: 400;
}

.text-block-8 {
  background-color: var(--accent-2);
  color: var(--black);
  border-radius: 200px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin-right: 30px;
  padding: 10px;
  font-size: 2rem;
  font-weight: 300;
  display: flex;
}

.gallery1xn {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 10px;
  display: grid;
}

.galleryimage {
  object-fit: cover;
  border-radius: 30px;
  width: 100%;
  box-shadow: 0 2px 5px #0003;
}

.gallery2xn {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 10px;
  display: grid;
}

@media screen and (max-width: 991px) {
  .navbar {
    z-index: 999;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
  }

  .page-content {
    margin-left: 100px;
  }

  .section.certifications {
    background-image: radial-gradient(circle closest-corner at 0% 50%, transparent 60%, var(--800) 60%), url('../images/YellowOchre1.jpeg');
    background-position: 0 0, 0 0;
    background-size: auto, auto;
    background-attachment: scroll, fixed;
  }

  .container.certifications {
    padding: 0;
  }

  .project-list {
    height: 100px;
  }

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

  .certification-list {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .image-5 {
    object-position: 50% 50%;
    width: 50%;
  }

  .div-block-5.sh1 {
    height: 350px;
  }

  .div-block-7 {
    padding-left: 30px;
  }

  .div-block-12 {
    min-height: 300px;
  }

  .html-embed-2 {
    object-fit: cover;
    object-position: 50% 50%;
  }

  .tmp {
    background-color: var(--100);
    width: 100px;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
  }
}

@media screen and (max-width: 767px) {
  h2 {
    font-size: 2.5rem;
  }

  .shtxt.hero-name {
    font-size: 3rem;
  }

  .shtxt.hero-description {
    font-size: 1.2rem;
  }

  .navbar {
    display: none;
  }

  .page-content {
    margin-left: 0;
  }

  .section {
    width: 100vw;
  }

  .hero-list-item {
    font-size: 1rem;
  }

  .project-arrow {
    right: -20px;
  }

  .arrow {
    width: 40px;
    height: 40px;
  }

  .certification {
    min-width: auto;
    max-width: none;
  }

  .image-5 {
    width: 100%;
  }

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

  .div-block-7 {
    padding-right: 30px;
  }

  .div-block-12 {
    min-height: 200px;
    display: none;
  }
}

@media screen and (max-width: 479px) {
  h2 {
    font-size: 2.2rem;
  }

  .button.primary.form-submit.sh1 {
    width: 100%;
  }

  .button.secondary.hero-btn.sh2 {
    margin-left: 0;
  }

  .shtxt.hero-name {
    text-align: center;
    font-size: 2.5rem;
  }

  .shtxt.hero-description {
    text-align: center;
    font-size: 1.1rem;
  }

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

  .section.hero {
    width: 100vw;
  }

  .container.hero {
    flex-direction: column;
    align-items: center;
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

  .project-thumbnail {
    cursor: pointer;
    flex: 0 auto;
    width: 75px;
    height: 75px;
  }

  .project-img {
    border-radius: 200px;
  }

  .project-list {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    border-radius: 0;
    flex-wrap: wrap;
    justify-content: flex-start;
    height: auto;
  }

  .collection-list-wrapper.sh1 {
    box-shadow: none;
  }

  .project-text-pagination {
    justify-content: center;
  }

  .project-pagination-item {
    flex: 0 auto;
  }

  .project-text {
    text-align: center;
  }

  .project-arrow {
    right: -15px;
  }

  .project-arrow.back {
    left: -15px;
  }

  .image-5 {
    max-height: 150px;
  }

  .about {
    font-size: 1rem;
  }

  .form-row {
    flex-direction: column;
  }

  .paragraph {
    text-align: center;
    margin-bottom: 30px;
  }

  .text-block-4 {
    text-align: center;
  }
}

#w-node-_381a2c20-c1a7-e512-22d0-4470f1ab30f8-db383e9f, #w-node-_64269b26-9ad1-21c3-4624-a4a064d0ea1c-db383e9f, #w-node-ecccca6a-4314-c5ae-1e93-f5d746b96de1-db383e9f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}


