.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-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

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

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

a {
  text-decoration: underline;
}

.body {
  color: #000;
  background-color: rgba(0, 0, 0, 0);
  font-family: Inter, sans-serif;
  font-weight: 400;
}

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

.bg-main-gray {
  background-color: #f1f1f1;
}

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

.text-color-dark-gray {
  z-index: 2;
  color: #848484;
  text-decoration: none;
  position: relative;
}

.text-color-dark-gray.line {
  line-height: 3;
}

.bg-dark-gray {
  background-color: #848484;
}

.brand {
  width: 58px;
}

.navbar {
  width: 100%;
  background-color: rgba(0, 0, 0, 0);
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: block;
}

.container {
  height: 100vh;
  justify-content: space-around;
  align-items: center;
  display: flex;
}

.nav-menu {
  text-transform: uppercase;
  flex-direction: column;
  align-items: stretch;
  font-size: 16px;
  font-weight: 700;
  display: flex;
}

.main-grid {
  width: 100%;
  height: 100%;
  grid-template-rows: auto auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  align-items: start;
}

.main-grid.space-top {
  padding-top: 40px;
}

.main-grid.space-top.grid {
  grid-template-rows: auto;
}

.main-grid.titles {
  width: auto;
  height: auto;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto auto;
  justify-content: space-between;
  align-items: start;
  padding-bottom: 40px;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 50px;
  right: 50px;
}

.main-grid._100vh {
  height: 100vh;
  grid-template-rows: auto auto auto;
}

.main-nav {
  width: 100%;
  padding-left: 50px;
  padding-right: 50px;
}

.flex {
  width: 100%;
  border: 1px #000;
  flex-direction: row;
  flex: 1;
  justify-content: flex-start;
  align-items: flex-start;
  line-height: 0;
  text-decoration: none;
  display: flex;
  position: static;
}

.flex.align-right {
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-end;
  margin-bottom: 20px;
  margin-right: 50px;
  position: static;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.flex.align-right.align-bottom {
  position: absolute;
}

.flex.vert {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-direction: column;
  align-items: flex-start;
}

.flex.space-margin {
  margin-bottom: 38px;
}

.flex._1 {
  flex-flow: row;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  margin-left: 2%;
  display: none;
}

.flex.align-center {
  justify-content: center;
  margin-bottom: 20px;
}

.flex.align-bottom {
  margin-bottom: 20px;
}

.heading-xlarge {
  letter-spacing: -.8vh;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 20vh;
  font-weight: 900;
  line-height: .8;
}

.image-hero {
  width: 100%;
  height: 100%;
  text-align: center;
  object-fit: cover;
  margin-left: auto;
  margin-right: auto;
  padding-left: 6%;
  padding-right: 6%;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.heading-xsmall {
  line-height: 1;
}

.heading-xsmall.text-color-dark-gray {
  opacity: 1;
  text-align: center;
  text-transform: uppercase;
  margin-left: 7px;
  margin-right: 7px;
  line-height: 1;
  overflow: visible;
}

.heading-xsmall.text-color-dark-gray.no-space {
  text-align: left;
  text-transform: none;
  margin-left: 0;
  margin-right: 0;
  font-style: normal;
  line-height: 1.2;
}

.heading-xsmall.text-color-dark-gray.no-space.hide {
  display: none;
}

.link-bto {
  text-align: center;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: opacity 1s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.main-button {
  width: auto;
  height: 32px;
  text-align: center;
  text-transform: none;
  border: 1px solid #848484;
  border-radius: 40px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: border-color .3s, background-color .3s;
  display: flex;
}

.main-button:hover {
  background-color: #000;
  border-color: #000;
}

.main-button.mini {
  width: 32px;
  align-items: center;
  margin-left: 14px;
}

.divider {
  width: 100%;
  height: 1px;
}

.divider.bg-dark-gray.space-50-padding {
  margin-left: auto;
  margin-right: auto;
  padding-left: 50px;
  padding-right: 50px;
}

.divider.bg-main-gray {
  width: 74%;
  flex: none;
}

.main-paragraph {
  letter-spacing: -3px;
  font-size: 54px;
  line-height: 1.5;
}

.main-paragraph.space-20 {
  margin-bottom: -7px;
  padding-top: 30px;
  padding-bottom: 0;
}

.wrap-div-med {
  flex-direction: row;
  display: flex;
}

.wrap-med {
  flex: 0 auto;
  align-self: flex-end;
  margin-bottom: 18px;
  margin-left: 16px;
}

.paragraph--6-px {
  margin-top: -16px;
}

.space-100 {
  height: 100px;
}

.image-dieter {
  object-fit: cover;
  border-radius: 100%;
  overflow: hidden;
}

.image-project {
  object-fit: cover;
  border-radius: 0%;
  overflow: hidden;
}

.portfa {
  height: 180px;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 14px;
  display: flex;
  position: relative;
}

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

.heading-medium {
  font-size: 16vh;
  line-height: 1;
}

.heading-medium.text-color-white {
  color: #000;
  font-weight: 300;
}

.text-span {
  font-weight: 700;
}

.letter-use {
  z-index: 11;
  width: 100%;
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  overflow: hidden;
}

.wrap-block {
  width: 40%;
  height: 10vh;
}

.imagem-dieter {
  height: 100vh;
  background-image: url('../images/_E9A0821.jpg'), url('../images/rams-dieter.jpg');
  background-position: 0 0, 50%;
  background-size: cover, cover;
}

.main-container {
  max-width: 1420px;
  padding-left: 50px;
  padding-right: 50px;
}

.main-container.space-bottom {
  max-width: 1680px;
  padding-bottom: 200px;
}

.main-section {
  z-index: 10;
}

.container-full {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 50px;
  padding-right: 50px;
}

.letter-font {
  white-space: nowrap;
  font-size: 130px;
  font-weight: 900;
  line-height: 1.1;
  display: none;
}

.dot-text {
  font-size: 70px;
}

.inner-letreiro {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  display: flex;
}

.image {
  width: 12px;
  height: 12px;
  flex: none;
}

.button-view {
  width: 9em;
  height: 9em;
  background-color: #fff;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  margin-top: -54px;
  margin-right: 29px;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 2px 3px 15px rgba(0, 0, 0, .15);
}

.bg-button-view {
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: #000;
  border-radius: 100%;
  position: absolute;
}

.main-paragraph-copy {
  letter-spacing: -3px;
  font-size: 56px;
  line-height: 1;
}

.main-paragraph-copy.text-color-dark-gray {
  padding: 10px 34px;
  display: none;
  position: relative;
}

.see-more-bto {
  text-align: center;
  border-radius: 0;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: opacity 1s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.main-button-large {
  width: auto;
  height: 32px;
  text-align: center;
  border: 1px solid #848484;
  border-radius: 40px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.main-button-large.large {
  height: 76px;
  border-style: none;
}

.menu-item {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  justify-content: flex-end;
  align-items: flex-end;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.hifen {
  width: 14px;
  height: 2px;
  background-color: #000;
  margin-bottom: 5px;
}

.text-block-2 {
  color: #000;
}

.image-3 {
  margin-left: auto;
  margin-right: auto;
  padding-top: 2%;
  display: block;
}

.text-block-3 {
  border: 1px #000;
}

.text-block-4, .image-4, .image-5 {
  display: none;
}

.image-6 {
  filter: grayscale();
}

.text-span-2 {
  font-size: 10vh;
}

.link {
  color: #000;
  text-decoration: none;
}

.link:hover {
  color: #616161;
}

.link-2 {
  color: #000;
  border: 1px #000;
}

.link-3, .link-4 {
  color: #000;
}

.heading {
  font-size: 0;
  font-weight: 400;
}

.link-5 {
  color: #000;
  text-decoration: none;
}

.link-5:hover {
  color: #616161;
}

.link-6 {
  color: #000;
  border: 1px #000;
  text-decoration: none;
}

.link-6:hover {
  color: #616161;
}

.pop-up {
  z-index: 1000;
  width: 600px;
  height: 600px;
  background-image: linear-gradient(rgba(0, 0, 0, .78), rgba(0, 0, 0, .78));
  border-radius: 500px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: absolute;
  top: 13%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.heading-2 {
  color: #fff;
  text-align: center;
  margin: 0 auto;
  font-family: Inter, sans-serif;
  font-size: 60px;
  font-weight: 400;
}

.link-7 {
  color: #fff;
}

.heading-3 {
  text-align: center;
  margin-top: 30px;
}

.container-2 {
  max-width: 1200px;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 40px;
  display: grid;
}

@media screen and (min-width: 1440px) {
  .image-3 {
    max-width: 70%;
    min-width: 50%;
  }
}

@media screen and (max-width: 991px) {
  .brand {
    margin-left: 16px;
  }

  .nav-menu {
    height: 100vh;
    background-color: #f1f1f1;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-right: 16px;
  }

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

  .main-grid.space-top.grid, .main-grid.titles {
    grid-template-columns: 1fr;
  }

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

  .main-nav.bg-main-gray {
    padding-left: 0;
    padding-right: 0;
  }

  .flex.vert.space-too {
    padding-left: 16px;
    padding-right: 16px;
  }

  .image-hero {
    padding-left: 0%;
    padding-right: 0%;
    top: 16.2vh;
    bottom: auto;
    left: 0%;
    right: 0%;
  }

  .text-span {
    font-size: 16vh;
  }

  .button-view {
    margin-top: -139px;
  }

  .menu-button {
    background-color: rgba(0, 0, 0, 0);
    margin-right: 16px;
  }

  .menu-button.w--open {
    background-color: #f1f1f1;
    margin-right: 16px;
  }

  .icon {
    color: #000;
  }

  .text-block-3 {
    font-size: 90px;
    line-height: 1.5;
  }
}

@media screen and (max-width: 767px) {
  .container {
    width: 100vw;
    justify-content: center;
  }

  .main-grid.space-top.grid {
    padding-top: 0;
  }

  .main-grid.titles {
    width: auto;
    left: 16px;
    right: 16px;
  }

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

  .main-nav.bg-main-gray {
    padding-left: 0;
    padding-right: 0;
  }

  .flex.align-right.align-bottom {
    width: auto;
    flex: 0 auto;
    margin-right: 16px;
  }

  .main-paragraph {
    letter-spacing: -1px;
    font-size: 26px;
  }

  .paragraph--6-px {
    margin-top: -19px;
  }

  .space-100 {
    height: 40px;
  }

  .heading-medium.text-color-white, .text-span {
    font-size: 12vh;
  }

  .main-container.space-bottom, .container-full {
    padding-left: 16px;
    padding-right: 16px;
  }

  .main-paragraph-copy.text-color-dark-gray {
    font-size: 50px;
  }
}

@media screen and (max-width: 479px) {
  .brand {
    margin-left: 16px;
    padding-left: 0;
  }

  .container {
    object-fit: fill;
    overflow: hidden;
  }

  .nav-menu {
    padding-right: 0;
  }

  .main-grid.space-top.grid {
    justify-items: center;
  }

  .main-grid.titles {
    padding-bottom: 10vh;
    overflow: visible;
  }

  .main-nav.bg-main-gray {
    padding-left: 0;
  }

  .heading-xlarge {
    letter-spacing: -.6vh;
    font-size: 11vh;
  }

  .image-hero {
    width: 100vw;
    margin-top: 0;
    margin-left: 0;
    top: 0;
    left: 0;
    overflow: hidden;
  }

  .divider.bg-main-gray {
    width: 50%;
  }

  .main-paragraph.space-20 {
    margin-bottom: 0;
    padding-top: 10px;
  }

  .portfa {
    margin-bottom: 20px;
  }

  .paragraph-18px {
    font-size: 14px;
  }

  .imagem-dieter {
    background-position: 50%;
  }

  .main-section.bg-main-gray {
    overflow: visible;
  }

  .button-view {
    width: 7em;
    height: 7em;
  }

  .main-paragraph-copy.text-color-dark-gray {
    letter-spacing: -2px;
    padding: 0 16px;
    font-size: 28px;
  }

  .main-button-large.large {
    height: 48px;
  }

  .image-3 {
    width: 150%;
    max-width: none;
    margin-left: -18vw;
    padding-top: 14vh;
    overflow: hidden;
  }

  .menu-button, .menu-button.w--open {
    margin-right: 0;
    padding-right: 10px;
  }

  .text-block-3 {
    font-size: 55px;
    line-height: 2.3;
  }

  .text-span-2 {
    font-size: 10vh;
  }

  .pop-up {
    width: 400px;
    height: 400px;
  }

  .heading-2 {
    font-size: 50px;
  }

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

#w-node-ab2d2572-7d6f-4fa7-6f0e-bcc2d0301903-b90b4492 {
  grid-area: 1 / 1 / 5 / 13;
  align-self: start;
  justify-self: center;
}

#w-node-_23add633-6978-71d1-b2a3-e66799fcbdec-b90b4492 {
  grid-area: 4 / 1 / 7 / 13;
  align-self: end;
  justify-self: center;
}

#w-node-fc482be7-fa7e-7290-854d-28cba0cc34d2-b90b4492 {
  grid-area: 1 / 1 / 2 / 11;
}

#w-node-_694a7b6b-62e0-5310-f42f-f4a016923f0d-b90b4492 {
  grid-area: 2 / 4 / 3 / 13;
  align-self: start;
  justify-self: start;
}

#w-node-_5925fa77-73fc-94f8-fb10-b69fcd0fce48-b90b4492 {
  grid-area: 1 / 9 / 2 / 11;
}

#w-node-b9e199b7-c9d2-26e1-829e-58f85f0d176a-b90b4492 {
  grid-area: 3 / 9 / 4 / 13;
  justify-self: end;
}

#w-node-_4a16fda9-df93-bf4b-dd66-cc948f25756e-b90b4492 {
  grid-area: 2 / 3 / 3 / 12;
  align-self: start;
  justify-self: start;
}

#w-node-_7cd5e1c9-2f3e-bc9b-2816-4b3e7f2d1af1-b90b4492 {
  grid-area: 4 / 5 / 5 / 12;
}

#w-node-b6efdd33-db9e-5ed6-35ed-27c8eea075ed-b90b4492 {
  grid-area: 5 / 5 / 6 / 8;
}

#w-node-_12a0d88e-c356-1bc9-217b-2a51b0fa5676-b90b4492 {
  grid-area: 5 / 7 / 6 / 12;
}

#w-node-aa2148d0-5cfb-dbeb-ad21-deb231d11c0b-b90b4492 {
  grid-area: 7 / 5 / 8 / 12;
}

#w-node-d3fa9923-e379-0dd7-0b82-2d428139e6d2-b90b4492 {
  grid-area: 6 / 5 / 7 / 6;
}

#w-node-_2c718fd7-05f3-e14c-2a3b-668ad9c3c07d-b90b4492 {
  grid-area: 1 / 1 / 2 / 8;
}

#w-node-_2b562015-b1ef-8999-64fe-f4533093dc07-b90b4492 {
  grid-area: 2 / 4 / 3 / 12;
}

#w-node-_40446628-2e81-4196-e25e-708523b6b23e-b90b4492 {
  grid-area: 4 / 4 / 5 / 5;
}

#w-node-a426bb95-8bde-2b79-4061-d44af1c59e04-b90b4492 {
  grid-area: 6 / 4 / 7 / 13;
}

#w-node-ed06db05-b278-0fda-c380-93bf7b342e90-b90b4492 {
  grid-area: 1 / 9 / 2 / 15;
}

#w-node-_56e52c01-9b6d-5154-8a18-9205eb792f96-eb792f95 {
  grid-area: 2 / 1 / 3 / 13;
  justify-self: center;
}

#w-node-_56e52c01-9b6d-5154-8a18-9205eb792fbe-eb792f95 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_56e52c01-9b6d-5154-8a18-9205eb792fc0-eb792f95 {
  grid-area: 3 / 4 / 4 / 13;
  align-self: end;
}

#w-node-_56e52c01-9b6d-5154-8a18-9205eb792fc3-eb792f95 {
  grid-area: 4 / 6 / 5 / 13;
  align-self: start;
}

#w-node-_56e52c01-9b6d-5154-8a18-9205eb792fc6-eb792f95 {
  grid-area: 5 / 1 / 6 / 13;
}

#w-node-_56e52c01-9b6d-5154-8a18-9205eb792fc7-eb792f95 {
  grid-area: 6 / 1 / 7 / 6;
}

#w-node-_56e52c01-9b6d-5154-8a18-9205eb792fce-eb792f95 {
  grid-area: 7 / 1 / 8 / 4;
}

#w-node-_56e52c01-9b6d-5154-8a18-9205eb792fd9-eb792f95 {
  grid-area: 7 / 4 / 8 / 8;
}

#w-node-_56e52c01-9b6d-5154-8a18-9205eb792fe4-eb792f95 {
  grid-area: 8 / 1 / 9 / 4;
  align-self: end;
}

#w-node-_56e52c01-9b6d-5154-8a18-9205eb792fe7-eb792f95 {
  grid-area: 8 / 5 / 9 / 9;
  align-self: end;
}

#w-node-_56e52c01-9b6d-5154-8a18-9205eb792fea-eb792f95 {
  grid-area: 8 / 9 / 9 / 13;
  align-self: end;
  justify-self: start;
}

#w-node-_56e52c01-9b6d-5154-8a18-9205eb792fed-eb792f95 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-bd7f273e-febd-5a14-57ac-58fb13736bea-13736be7 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-bd7f273e-febd-5a14-57ac-58fb13736bec-13736be7, #w-node-bd7f273e-febd-5a14-57ac-58fb13736bee-13736be7 {
  grid-area: 1 / 12 / 2 / 13;
}

#w-node-_94263a58-a88f-41e2-3f34-a1ee82ca0162-3cb9b52f {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_9d76af58-2c2c-1656-14a8-9502f66e6000-3cb9b52f, #w-node-_993788c7-ddff-44a2-979f-ba7de683054f-3cb9b52f, #w-node-_2e97ab7d-28ab-23ad-200f-5da021e3fc45-3cb9b52f, #w-node-_618f9be5-9359-dc93-09a8-920b3c23de6e-3cb9b52f, #w-node-_985b7287-4415-0bd9-7da0-60235475dd12-3cb9b52f, #w-node-bc217c17-e645-d8b7-3d9b-a0b18544122f-3cb9b52f, #w-node-c78556d9-20e1-0953-fb16-da56a1c62af0-3cb9b52f, #w-node-_7a0a3e05-7c73-55d6-6215-b2f11d816e90-3cb9b52f, #w-node-bd6e5624-507e-a915-d002-f33523d0b37b-3cb9b52f, #w-node-_7bd4d9f5-dfd0-8cf8-017c-5ae4ab46a10b-3cb9b52f, #w-node-_9bd3d1c9-af25-5394-2aab-cf683617e1ec-3cb9b52f, #w-node-a584fbae-12c8-a633-c51b-b3962c25afe1-3cb9b52f, #w-node-bb5fe229-6117-457f-d3da-477608ae9780-3cb9b52f, #w-node-_47b2920a-7626-79ee-8ae7-97a482797bb8-3cb9b52f, #w-node-_132474fd-1183-959b-1b63-33a0157a0c29-3cb9b52f, #w-node-_81b6a228-6b5c-5b40-6637-a974b951120f-3cb9b52f, #w-node-_17f7c4af-80c4-c4d6-0098-a39fa3cb8afb-3cb9b52f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-dc25af1f-840b-2b59-4df2-dfa3a647adb5-3cb9b52f {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-dc25af1f-840b-2b59-4df2-dfa3a647adb6-3cb9b52f, #w-node-dc25af1f-840b-2b59-4df2-dfa3a647adb7-3cb9b52f, #w-node-dc25af1f-840b-2b59-4df2-dfa3a647adb8-3cb9b52f, #w-node-dc25af1f-840b-2b59-4df2-dfa3a647adb9-3cb9b52f, #w-node-dc25af1f-840b-2b59-4df2-dfa3a647adba-3cb9b52f, #w-node-dc25af1f-840b-2b59-4df2-dfa3a647adbb-3cb9b52f, #w-node-dc25af1f-840b-2b59-4df2-dfa3a647adbc-3cb9b52f, #w-node-dc25af1f-840b-2b59-4df2-dfa3a647adbd-3cb9b52f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-fc482be7-fa7e-7290-854d-28cba0cc34d2-b90b4492 {
    grid-column-end: 3;
  }

  #w-node-_694a7b6b-62e0-5310-f42f-f4a016923f0d-b90b4492 {
    grid-column: 1 / 3;
  }

  #w-node-_5925fa77-73fc-94f8-fb10-b69fcd0fce48-b90b4492 {
    grid-column: 2 / 3;
    justify-self: end;
  }

  #w-node-_4a16fda9-df93-bf4b-dd66-cc948f25756e-b90b4492, #w-node-_7cd5e1c9-2f3e-bc9b-2816-4b3e7f2d1af1-b90b4492 {
    grid-column: 1 / 3;
  }

  #w-node-b6efdd33-db9e-5ed6-35ed-27c8eea075ed-b90b4492 {
    grid-column: 1 / 2;
  }

  #w-node-_12a0d88e-c356-1bc9-217b-2a51b0fa5676-b90b4492 {
    grid-column: 2 / 3;
  }

  #w-node-aa2148d0-5cfb-dbeb-ad21-deb231d11c0b-b90b4492 {
    grid-column: 1 / 3;
  }

  #w-node-d3fa9923-e379-0dd7-0b82-2d428139e6d2-b90b4492 {
    grid-column: 2 / 3;
  }

  #w-node-_2c718fd7-05f3-e14c-2a3b-668ad9c3c07d-b90b4492 {
    grid-column-end: 3;
  }

  #w-node-_2b562015-b1ef-8999-64fe-f4533093dc07-b90b4492 {
    grid-column: 1 / 3;
  }

  #w-node-_40446628-2e81-4196-e25e-708523b6b23e-b90b4492 {
    grid-column: 2 / 3;
  }

  #w-node-a426bb95-8bde-2b79-4061-d44af1c59e04-b90b4492, #w-node-ed06db05-b278-0fda-c380-93bf7b342e90-b90b4492, #w-node-_56e52c01-9b6d-5154-8a18-9205eb792fc0-eb792f95, #w-node-_56e52c01-9b6d-5154-8a18-9205eb792fc3-eb792f95 {
    grid-column: 1 / 3;
  }

  #w-node-_56e52c01-9b6d-5154-8a18-9205eb792fc6-eb792f95, #w-node-_56e52c01-9b6d-5154-8a18-9205eb792fc7-eb792f95, #w-node-_56e52c01-9b6d-5154-8a18-9205eb792fce-eb792f95 {
    grid-column-end: 3;
  }

  #w-node-_56e52c01-9b6d-5154-8a18-9205eb792fd9-eb792f95 {
    grid-column: 2 / 3;
  }

  #w-node-_56e52c01-9b6d-5154-8a18-9205eb792fe4-eb792f95 {
    grid-column-end: 2;
  }

  #w-node-_56e52c01-9b6d-5154-8a18-9205eb792fe7-eb792f95, #w-node-_56e52c01-9b6d-5154-8a18-9205eb792fea-eb792f95 {
    grid-column: 2 / 3;
  }

  #w-node-bd7f273e-febd-5a14-57ac-58fb13736bea-13736be7 {
    align-self: center;
  }

  #w-node-bd7f273e-febd-5a14-57ac-58fb13736bec-13736be7 {
    grid-column: 2 / 3;
    justify-self: end;
  }

  #w-node-bd7f273e-febd-5a14-57ac-58fb13736bee-13736be7 {
    grid-column: 1 / 3;
    align-self: center;
    justify-self: center;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_4a16fda9-df93-bf4b-dd66-cc948f25756e-b90b4492, #w-node-_7cd5e1c9-2f3e-bc9b-2816-4b3e7f2d1af1-b90b4492, #w-node-b6efdd33-db9e-5ed6-35ed-27c8eea075ed-b90b4492 {
    grid-column: 1 / 3;
  }

  #w-node-_12a0d88e-c356-1bc9-217b-2a51b0fa5676-b90b4492 {
    grid-column: 2 / 3;
  }

  #w-node-aa2148d0-5cfb-dbeb-ad21-deb231d11c0b-b90b4492, #w-node-d3fa9923-e379-0dd7-0b82-2d428139e6d2-b90b4492 {
    grid-column: 1 / 3;
  }

  #w-node-_56e52c01-9b6d-5154-8a18-9205eb792fe4-eb792f95 {
    grid-column-end: 3;
  }

  #w-node-_56e52c01-9b6d-5154-8a18-9205eb792fe7-eb792f95 {
    grid-row: 9 / 10;
    grid-column-start: 1;
    align-self: center;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_56e52c01-9b6d-5154-8a18-9205eb792fce-eb792f95 {
    justify-self: auto;
  }

  #w-node-bd7f273e-febd-5a14-57ac-58fb13736bea-13736be7 {
    justify-self: start;
  }
}


