@font-face {
  font-family: Portosans;
  src: url('../fonts/PortoSans-RegularItalic.otf') format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Portosans;
  src: url('../fonts/PortoSans-Regular.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Porto Sans Stencil;
  src: url('../fonts/PortoSansStencil-Regular.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Portoserif;
  src: url('../fonts/PortoSerif-BoldItalic.otf') format("opentype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Portosans;
  src: url('../fonts/PortoSans-BoldItalic.otf') format("opentype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Portoserif;
  src: url('../fonts/PortoSerif-Bold.otf') format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Portoserif;
  src: url('../fonts/PortoSerif-RegularItalic.otf') format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Portoserif;
  src: url('../fonts/PortoSerif-LightItalic.otf') format("opentype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Portosans;
  src: url('../fonts/PortoSans-Bold.otf') format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Portoserif;
  src: url('../fonts/PortoSerif-Regular.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Portosansstencil;
  src: url('../fonts/PortoSansStencil-Bold.otf') format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Portosans;
  src: url('../fonts/PortoSans-LightItalic.otf') format("opentype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Portoserif;
  src: url('../fonts/PortoSerif-Light.otf') format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Portosans;
  src: url('../fonts/PortoSans-Light.otf') format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Portosansstencil;
  src: url('../fonts/PortoSansStencil-Light.otf') format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: black;
  --off-white: #eee;
  --lighter-grey: #43464d;
  --grey: #32343a;
  --white: white;
  --background-color: #ece8e7;
  --off-black: #111;
  --opacity-black: #0006;
  --blue: #322db1;
}

.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: var(--black);
  text-align: justify;
  font-family: Portosans, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
}

h1 {
  margin-top: 20px;
  margin-bottom: 15px;
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.2;
}

h2 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 36px;
  font-weight: 400;
  line-height: 50px;
}

h3 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.4;
}

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 400;
  line-height: 38px;
}

h5 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.6;
}

h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
}

p {
  text-align: justify;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

a {
  color: #1a1b1f;
  cursor: pointer;
  font-family: Portosans, sans-serif;
  font-size: 1.2rem;
  line-height: 1.3;
  text-decoration: none;
  transition: opacity .2s;
  display: block;
}

a:hover {
  color: #32343a;
}

a:active {
  color: #43464d;
}

ul {
  margin-top: 20px;
  margin-bottom: 10px;
  padding-left: 40px;
  list-style-type: disc;
}

li {
  margin-bottom: 10px;
}

img {
  border-radius: 1.2rem;
  display: block;
}

label {
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
}

blockquote {
  border-left: 5px solid #e2e2e2;
  margin-top: 25px;
  margin-bottom: 25px;
  padding: 15px 30px;
  font-size: 20px;
  line-height: 34px;
}

figcaption {
  opacity: 1;
  text-align: center;
  margin-top: 5px;
  font-size: 14px;
  line-height: 26px;
}

.divider {
  background-color: var(--off-white);
  height: 1px;
}

.divider.is-darker {
  background-color: var(--lighter-grey);
}

.divider.is-off {
  display: none;
}

.styleguide-content-wrap {
  text-align: center;
}

.section {
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.section.cc-cta {
  background-color: #f4f4f4;
  padding-left: 80px;
  padding-right: 80px;
}

.section.is-alternative {
  background-color: var(--black);
}

.section.is-hidden {
  display: none;
}

.styleguide-block {
  text-align: left;
  flex-direction: column;
  align-items: center;
  margin-top: 80px;
  margin-bottom: 80px;
  display: block;
}

.container {
  border-radius: 1.5rem;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  max-width: 1250px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.container.is-cta {
  background-color: #ebebeb;
}

.paragraph-tiny {
  font-size: .75rem;
  line-height: 1.8;
}

.p-bigger {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.p-bigger.cc-bigger-light {
  opacity: .6;
  line-height: 1.5;
}

.p-bigger.is-bigger-whiter {
  opacity: .6;
  text-align: left;
  max-width: 20ch;
  font-family: ohno-softie-variable, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
}

.p-bigger.is-bigger-whiter.is-pt {
  max-width: 25ch;
}

.global-button {
  background-color: var(--black);
  color: #fff;
  text-align: center;
  letter-spacing: .1rem;
  text-transform: uppercase;
  border-radius: .5rem;
  padding: 8px 20px;
  font-size: .75rem;
  line-height: 2;
  text-decoration: none;
  transition: background-color .4s, opacity .4s, color .4s;
}

.global-button:hover {
  background-color: var(--grey);
  color: var(--white);
}

.global-button:active {
  background-color: var(--lighter-grey);
}

.global-button.cc-jumbo-button {
  padding: 16px 35px;
  font-size: 1rem;
  line-height: 2;
}

.global-button.cc-jumbo-button.cc-jumbo-white {
  color: #000;
  background-color: #fff;
}

.global-button.cc-jumbo-button.cc-jumbo-white:hover {
  background-color: #f1f1f1;
}

.global-button.cc-jumbo-button.cc-jumbo-white:active {
  background-color: #e1e1e1;
}

.global-button.cc-contact-us {
  z-index: 5;
  position: relative;
}

.global-button.cc-white-button {
  color: #202020;
  background-color: #fff;
  padding: 16px 35px;
  font-size: 14px;
  line-height: 26px;
}

.global-button.cc-white-button:hover {
  background-color: #fffc;
}

.global-button.cc-white-button:active {
  background-color: #ffffffe6;
}

.global-button.main-buttons {
  padding-top: 20px;
  padding-bottom: 20px;
}

.global-button.is-outline {
  border: 1px solid var(--off-white);
  background-color: #0000;
}

.global-button.is-events {
  background-color: var(--background-color);
  color: var(--black);
  letter-spacing: .1rem;
  border: 1px solid #000;
  padding: 5px 20px;
  font-weight: 400;
}

.global-button.is-events:hover {
  background-color: var(--white);
}

.global-button.is-events.is-hidden {
  display: none;
}

.label {
  letter-spacing: .1rem;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: Portosans, sans-serif;
}

.label.cc-styleguide-label {
  margin-bottom: 25px;
  font-size: .75rem;
  line-height: 1.6;
}

.label.is-label-light {
  opacity: .6;
  margin-bottom: .5rem;
}

.label.cc-blog-date {
  opacity: .6;
  margin-top: 20px;
  font-size: .7rem;
  line-height: 1.3;
}

.heading-jumbo-tiny {
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 2;
}

.rich-text {
  width: 70%;
  margin-bottom: 100px;
  margin-left: auto;
  margin-right: auto;
}

.rich-text p {
  opacity: .6;
  margin-top: 15px;
  margin-bottom: 25px;
}

.rich-text figcaption {
  opacity: .6;
}

.rich-text figure {
  margin-top: 25px;
  padding-bottom: 20px;
}

.paragraph-light {
  opacity: .6;
  font-family: Portosans, sans-serif;
}

.main-heading {
  text-transform: none;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: ohno-softie-variable, sans-serif;
  font-size: 8rem;
  line-height: .8;
}

.main-heading.is-inverted {
  filter: invert();
}

.motto-heading {
  width: 20ch;
  margin-top: 10px;
  margin-bottom: 15px;
  font-family: Portoserif, sans-serif;
  font-size: 2.5rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.3;
}

.motto-heading.is-centerd {
  margin-left: auto;
  margin-right: auto;
}

.styleguide-button-wrap {
  margin-top: 10px;
  margin-bottom: 10px;
}

.styleguide-header-wrap {
  color: #fff;
  text-align: center;
  background-color: #1a1b1f;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 460px;
  padding: 30px;
  display: flex;
}

.paragraph-small {
  font-size: .9rem;
  line-height: 1.7;
}

.logo-link {
  z-index: 1;
}

.logo-link:hover {
  opacity: .8;
}

.logo-link:active {
  opacity: .7;
}

.menu {
  z-index: 0;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.navigation-wrap {
  z-index: 9001;
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex: 1;
  grid-template-rows: auto;
  grid-template-columns: .5fr 2fr .5fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  position: relative;
}

.navigation {
  z-index: 9999;
  background-color: var(--background-color);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  align-items: center;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
  position: sticky;
  top: 0%;
}

.navigation.is-dark {
  background-color: var(--off-black);
}

.navigation-item {
  opacity: .6;
  color: var(--off-black);
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 3px solid #0000;
  margin-left: 3px;
  margin-right: 3px;
  padding-top: 2.2rem;
  padding-bottom: 2.2rem;
  font-size: .8rem;
  transition: all .15s linear;
}

.navigation-item:hover {
  opacity: 1;
  color: var(--black);
}

.navigation-item:active {
  opacity: 1;
}

.navigation-item.w--current {
  border-bottom-color: var(--black);
  opacity: 1;
  color: var(--black);
}

.navigation-item.w--current:hover {
  opacity: .8;
  color: #32343a;
}

.navigation-item.w--current:active {
  opacity: .7;
  color: #32343a;
}

.navigation-item.is-white {
  color: var(--off-white);
}

.navigation-item.is-hidden {
  display: none;
}

.logo-image {
  border-radius: 0;
  display: block;
}

.navigation-items {
  flex: none;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.footer-wrap {
  justify-content: center;
  align-items: center;
  padding-top: 70px;
  padding-bottom: 70px;
  display: flex;
}

.webflow-link {
  opacity: .5;
  align-items: center;
  text-decoration: none;
  transition: opacity .4s;
  display: flex;
}

.webflow-link:hover {
  opacity: 1;
}

.webflow-link:active {
  opacity: .8;
}

.webflow-logo-tiny {
  margin-top: -2px;
  margin-right: 8px;
}

.cta-text {
  width: 70%;
  margin-bottom: 35px;
  margin-left: auto;
  margin-right: auto;
}

.cta-wrap {
  text-align: center;
  justify-content: center;
  padding-top: 110px;
  padding-bottom: 120px;
  display: flex;
}

.header-img-wrapper {
  aspect-ratio: 3 / 2;
  border-radius: 1.2rem;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100%;
  max-height: 100%;
  position: relative;
}

.header-img-wrapper.cc-subpage {
  color: #fff;
  background-color: #000;
  background-image: none;
  height: 480px;
}

.header-img-wrapper.is-on {
  display: block;
}

.header-img-wrapper.is-on.is-hide, .header-img-wrapper.is-hidden {
  display: none;
}

.intro-content {
  text-align: center;
  width: 70%;
  max-width: 1140px;
}

.intro-content.cc-homepage {
  margin-bottom: 20px;
}

.motto-wrap {
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 80%;
  margin: 4rem auto;
  display: flex;
}

.about-story-wrap {
  text-align: center;
  width: 80%;
  margin: 80px auto;
}

.our-services-grid {
  grid-column-gap: 80px;
  grid-row-gap: 60px;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-areas: ". . ."
                       ". . .";
  margin-bottom: 120px;
}

.section-heading-wrap {
  text-align: center;
  margin-top: 80px;
  margin-bottom: 80px;
}

.service-icon {
  margin-bottom: 30px;
}

.status-message {
  color: #fff;
  text-align: center;
  background-color: #202020;
  padding: 9px 30px;
  font-size: 14px;
  line-height: 26px;
}

.status-message.cc-success-message {
  background-color: #12b878;
}

.status-message.cc-error-message {
  background-color: #db4b68;
}

.status-message.cc-no-data {
  width: 70%;
  margin: 100px auto;
  display: block;
}

.contact-form-wrap {
  border: 1px solid #eee;
  padding: 45px 50px 50px;
}

.contact-form-grid {
  grid-column-gap: 80px;
  grid-row-gap: 30px;
  grid-template: ". ."
  / 2.5fr 1fr;
  align-items: start;
  margin-top: 100px;
  margin-bottom: 100px;
}

.details-wrap {
  margin-bottom: 30px;
}

.get-in-touch-form {
  flex-direction: column;
  display: flex;
}

.text-field {
  border: 1px solid #e4e4e4;
  border-radius: 0;
  margin-bottom: 18px;
  padding: 21px 20px;
  font-size: 14px;
  line-height: 26px;
  transition: border-color .4s;
}

.text-field:hover {
  border-color: #e3e6eb;
}

.text-field:active, .text-field:focus {
  border-color: #43464d;
}

.text-field::placeholder {
  color: #32343a66;
}

.text-field.cc-contact-field {
  margin-bottom: 25px;
}

.text-field.cc-textarea {
  height: 200px;
  padding-top: 12px;
}

.contact-form {
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.contact-form-heading-wrap {
  margin-bottom: 40px;
}

.contact-heading {
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: 400;
}

.map {
  height: 460px;
  margin-bottom: 100px;
  line-height: 20px;
}

.contact-team-name-wrap {
  margin-bottom: 30px;
}

.our-contacts {
  grid-column-gap: 80px;
  grid-row-gap: 60px;
  text-align: center;
  grid-template: ". . ."
  / 1fr 1fr 1fr;
  margin-bottom: 120px;
}

.contact-team-details-wrap {
  margin-top: 30px;
}

.contact-team-pic {
  background-color: #f4f4f4;
  height: 150px;
  margin-bottom: 30px;
}

.team-pic {
  background-color: #f4f4f4;
  width: 100%;
  height: 420px;
  margin-bottom: 40px;
}

.team-members {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-areas: ". . ."
                       ". . .";
  margin-bottom: 60px;
}

.team-member-title-wrap {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 60px;
  display: flex;
}

.team-member-name {
  opacity: 1;
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 400;
  line-height: 34px;
}

.projects-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template: "."
                 "."
                 "."
                 / 1fr;
  margin-bottom: 60px;
}

.project-name-wrap {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 60px;
  display: flex;
}

.project-name-link {
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 400;
  line-height: 34px;
  text-decoration: none;
}

.project-name-link:hover {
  opacity: .8;
}

.project-name-link:active {
  opacity: .7;
}

.project-cover-link {
  margin-bottom: 40px;
}

.project-cover-link:hover {
  opacity: .8;
}

.project-cover-link:active {
  opacity: .7;
}

.project-overview-header {
  color: #fff;
  background-color: #f4f4f4;
  background-image: url('../images/portfolio-1---wide.svg');
  background-position: 50%;
  background-size: cover;
  justify-content: center;
  align-items: center;
  height: 620px;
  margin-bottom: 100px;
  display: flex;
}

.project-overview-header.cc-project-2-header {
  background-image: url('../images/portfolio-2---wide.svg');
  background-position: 50%;
}

.project-overview-header.cc-project-3-header {
  background-image: url('../images/portfolio-3---wide.svg');
  background-size: cover;
}

.project-details-grid {
  grid-column-gap: 80px;
  grid-row-gap: 30px;
  grid-template: ". ."
  / 1fr 2fr;
  align-items: start;
  margin-top: 100px;
  margin-bottom: 100px;
}

.project-pics {
  margin-bottom: 120px;
}

.detail-image {
  width: 100%;
  margin-bottom: 30px;
}

.blog-detail-header-wrap {
  width: 70%;
  margin: 60px auto;
}

.detail-header-image {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0 0;
  background-size: cover;
  width: 100%;
  height: 620px;
  margin-bottom: 60px;
  display: block;
}

.detail-header-image.w--current {
  margin-bottom: 60px;
}

.blog-list-wrap {
  margin-bottom: 100px;
}

.blog-item {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 80px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.blog-preview-image {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0 0;
  background-size: cover;
  width: 100%;
  height: 620px;
  margin-bottom: 45px;
  transition: opacity .6s;
  display: block;
}

.blog-preview-image:hover {
  opacity: .8;
}

.blog-preview-image:active {
  opacity: .7;
}

.blog-summary-wrap {
  text-align: left;
  width: 70%;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}

.blog-heading-link {
  margin-bottom: 10px;
  font-size: 30px;
  font-weight: 400;
  line-height: 46px;
  text-decoration: none;
}

.blog-heading-link:hover {
  opacity: .8;
}

.blog-heading-link:active {
  opacity: .7;
}

.contact-email-link {
  opacity: .6;
  margin-bottom: 5px;
}

.contact-email-link:hover {
  opacity: 1;
}

.contact-email-link:active {
  opacity: .8;
}

.protected-form {
  flex-direction: column;
  display: flex;
}

.protected-wrap {
  justify-content: center;
  padding-top: 90px;
  padding-bottom: 100px;
  display: flex;
}

.protected-heading {
  margin-bottom: 30px;
}

.utility-page-wrap {
  color: #fff;
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  padding: 30px;
  display: flex;
}

._404-wrap {
  background-color: #1a1b1f;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 30px;
  display: flex;
}

._404-content-wrap {
  margin-bottom: 20px;
}

.home-content-wrap {
  margin-top: 80px;
  margin-bottom: 120px;
}

.home-section-wrap {
  margin-bottom: 30px;
}

.section-heading {
  margin-top: 10px;
  margin-bottom: 20px;
  font-family: Portosans, sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.5;
}

.about-grid {
  grid-column-gap: 80px;
  grid-row-gap: 30px;
  grid-template: ". ."
  / 1fr 2fr;
  align-items: center;
  margin-bottom: 80px;
}

.about-grid.cc-about-2 {
  grid-template-columns: 2fr 1fr;
  grid-template-areas: ". .";
}

.collection-wrap {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-wrap: wrap;
  place-content: flex-start center;
  align-items: stretch;
  display: flex;
}

.work-heading {
  margin-top: 10px;
  margin-bottom: 20px;
  font-family: Portosans, sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.5;
}

.blog-heading {
  text-align: center;
  margin-bottom: 60px;
}

.blog-preview-wrap {
  border: 2px solid #d4d4d4;
  border-radius: 20px;
  width: 30%;
  padding: 15px 25px 30px 15px;
  box-shadow: 0 3px 10px #0000001a;
}

.collection-list-wrapper {
  margin-bottom: 120px;
}

.business-article-heading {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
}

.business-article-heading:hover {
  opacity: .8;
}

.business-article-heading:active {
  opacity: .7;
}

.padding-bottom, .padding-bottom.padding-xxlarge {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.padding-vertical, .padding-vertical.padding-xxlarge {
  padding-left: 0;
  padding-right: 0;
}

.footer_social-list {
  grid-column-gap: .75rem;
  grid-row-gap: 0rem;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  place-items: start;
  display: grid;
}

.icon-embed-xsmall {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
}

.footer_link {
  text-align: right;
  border: 1px solid #000;
  padding: .8rem 1.2rem;
  font-size: .9rem;
  text-decoration: none;
}

.footer3_legal-link {
  font-size: .875rem;
  text-decoration: underline;
}

.footer_left-wrapper {
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  flex-direction: column;
  display: flex;
}

.text-size-small {
  font-size: .9rem;
}

.footer_link-list {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 100%;
  grid-auto-columns: 100%;
  place-items: flex-end start;
  font-weight: 400;
  display: flex;
}

.margin-bottom, .margin-bottom.margin-tiny {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-bottom.margin-medium {
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  display: flex;
}

.margin-bottom.margin-small, .margin-bottom.margin-xsmall {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-bottom.margin-xxlarge {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  display: flex;
}

.margin-bottom.margin-xxsmall, .margin-bottom.margin-xxlarge {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.footer_links-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

.footer3_social-link {
  align-items: center;
  font-size: 14px;
  text-decoration: none;
  display: flex;
}

.footer3_legal-list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 0rem;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  justify-content: center;
  display: grid;
}

.footer_top-wrapper {
  grid-column-gap: 4vw;
  grid-template-rows: auto;
  grid-template-columns: 1fr .5fr;
  align-items: start;
}

.container-logos {
  width: 100%;
  max-width: 1250px;
  margin-left: auto;
  margin-right: auto;
}

.footer3_credit-text {
  text-align: center;
  font-size: .875rem;
}

.footer3_bottom-wrapper {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.padding-top, .padding-top.padding-medium {
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.line-divider-2 {
  aspect-ratio: auto;
  background-color: #bbb;
  width: 100%;
  height: 1px;
  margin-top: 20px;
  margin-bottom: 20px;
  position: relative;
}

.line-divider-2.is-light {
  background-color: var(--black);
}

.footer-component {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 50px;
  padding-bottom: 50px;
}

.footer-component.is-invert {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.footer-link {
  font-size: .9rem;
  text-decoration: none;
}

.header-section {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  min-height: 75svh;
  margin-top: -7rem;
  margin-bottom: 2rem;
}

.header-section.is-croll {
  margin-top: -100px;
  padding-top: 50px;
}

.header-section.is-inverted {
  background-color: var(--off-black);
  min-height: 85svh;
  margin-top: 0;
  padding-top: 1rem;
  padding-bottom: 5rem;
}

.header-section.is-inverted.is-padded {
  padding-left: 30px;
  padding-right: 30px;
}

.buttons-section {
  height: 35svh;
  min-height: 35svh;
  max-height: 35svh;
  padding-top: 5rem;
  padding-bottom: 5rem;
  display: none;
}

.news-section, .about-section {
  padding-top: 50px;
  padding-bottom: 50px;
  display: none;
}

.footer-section {
  z-index: 50;
  margin-top: -2rem;
}

.heading {
  font-size: 3rem;
  line-height: 1.3;
}

.heading-2 {
  font-size: 2.3rem;
  line-height: 1.5;
}

.heading-3 {
  font-size: 2rem;
  line-height: 1.5;
}

.heading-4 {
  font-size: 1.5rem;
  line-height: 1.5;
}

.heading-5 {
  font-size: 1rem;
  line-height: 1.7;
}

.button-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.button-wrapper.second-buttons {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  place-items: center stretch;
  display: grid;
}

.nav-itens-wrapper {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-end;
}

.whole-body-wrapper {
  padding-left: 30px;
  padding-right: 30px;
  display: block;
  position: relative;
}

.logo-img {
  border-radius: 0;
}

.logo-nav {
  color: var(--black);
  text-transform: uppercase;
  font-size: 1.5rem;
  line-height: 1;
}

.logo-nav.is-white {
  color: var(--off-white);
}

.nav-box-shadow {
  z-index: 9000;
  opacity: 0;
  position: absolute;
  inset: 0%;
  box-shadow: 0 2px 5px #0003;
}

.nav-box-shadow.is-off {
  display: none;
}

.lang-buttons-wrapper {
  grid-column-gap: .3rem;
  grid-row-gap: .3rem;
  flex-flow: row;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.lang-button {
  color: var(--off-black);
  text-align: center;
  letter-spacing: .1rem;
  text-transform: uppercase;
  background-color: #0000;
  border: 1px solid #000;
  border-radius: .5rem;
  min-width: 45px;
  padding: 6px 12px;
  font-size: .7rem;
}

.lang-button.w--current {
  background-color: var(--lighter-grey);
  color: var(--white);
}

.lang-button.is-inverted {
  background-color: var(--off-white);
  color: var(--off-black);
}

.header-text {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: center;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
}

.invisi-divider {
  width: 100%;
  height: 2rem;
}

.ese-logo {
  color: var(--black);
  letter-spacing: .01rem;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 700;
}

.ese-logo.is-ipp {
  font-weight: 400;
}

.footer-div {
  margin-bottom: 10px;
}

.footer-line {
  background-color: var(--black);
  opacity: .8;
  border-radius: 1rem;
  width: 100%;
  height: 2px;
}

.grid-layout {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-auto-columns: 1fr;
  display: grid;
}

.grid-layout.grid-gap-xxl {
  grid-column-gap: 6rem;
  grid-row-gap: 6rem;
}

.utility-margin-bottom-2rem {
  margin-bottom: 2rem;
}

.flex-layout {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: row;
  display: flex;
}

.flex-layout.y-center {
  align-items: center;
}

.flex-layout.flex-gap-s {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
}

.flex-layout.flex-gap-xxs {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
}

.icon {
  width: 2rem;
  height: 2rem;
}

.utility-image-cover {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: relative;
  inset: 0%;
}

.utility-aspect-1x1 {
  aspect-ratio: 1;
  position: relative;
}

.partners-section {
  min-height: 60svh;
  margin-top: -5rem;
  margin-bottom: 2rem;
  position: relative;
}

.partners-section.is-v2 {
  margin-top: 0;
  margin-bottom: 7rem;
}

.enroll-section {
  margin-top: 2rem;
  margin-bottom: 2rem;
  display: none;
}

.enroll-section.is-dark {
  background-color: var(--off-black);
  margin-top: 0;
  position: relative;
}

.container-ese {
  z-index: 1;
  width: 100%;
  max-width: 1250px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.container-ese.is-indark {
  padding-bottom: 5rem;
}

.container-ese.is-hidden {
  display: none;
}

.header-grid {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: 70svh;
  grid-template-columns: 1fr 1.5fr;
  grid-auto-columns: 1fr;
  min-height: 100%;
  display: grid;
}

.header-grid.is-spaced {
  margin-top: -7rem;
}

.section-divider {
  z-index: 9000;
  box-shadow: inset 0 0 1.5rem 0 var(--opacity-black);
  height: 5rem;
  margin-left: -150px;
  margin-right: -150px;
  position: relative;
}

.logo-section {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.logo-section.is-v2 {
  margin-top: 0;
  margin-bottom: 0;
}

.padding-section-medium {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.logo1_logo {
  filter: grayscale();
  border-radius: 0;
  max-height: 3.5rem;
  transition: all .2s cubic-bezier(.77, 0, .175, 1);
}

.logo1_logo:hover {
  filter: grayscale(0%);
}

.logo1_logo.is-geneve {
  max-height: 5rem;
}

.logo1_logo.is-turkey {
  max-height: 4.5rem;
}

.logo1_logo.is-ese {
  max-height: 5.5rem;
}

.logo1_logo.is-ese:hover {
  filter: grayscale(0%);
}

.logo1_logo.is-ined {
  max-height: 4.5rem;
}

.logo1_logo.is-fmup {
  max-height: 5rem;
}

.section_logos {
  margin-bottom: 1rem;
}

.max-width-large {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 60ch;
  margin-bottom: 1rem;
  display: flex;
}

.max-width-large.align-center {
  max-width: 50ch;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.h-style-h6 {
  letter-spacing: .02rem;
  text-transform: uppercase;
  font-size: 1.25rem;
  line-height: 1.4;
}

.logos-padding {
  padding-left: 5%;
  padding-right: 5%;
}

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

.logo1_list {
  grid-column-gap: 2rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding-top: .5rem;
  padding-bottom: .5rem;
  display: flex;
}

.logo-text-wrapper {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.logo-text-wrapper.is-hidden {
  display: none;
}

.paragraph {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.h3-style {
  text-transform: uppercase;
  font-size: 2rem;
}

.about-video-wrapper {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-width: 100%;
  position: relative;
  overflow: visible;
}

.about-img {
  z-index: 1;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: 50% 50%;
  border-radius: 1.5rem;
  min-width: 100%;
  position: absolute;
}

.about-wrapper {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.about-wrapper.is-deafteam {
  grid-column-gap: 2rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 2fr;
  align-items: start;
  position: relative;
}

.documents-section {
  min-height: 50svh;
  margin-top: -3rem;
  margin-bottom: 4rem;
}

.documents-section.is-dark {
  background-color: var(--off-black);
  margin-top: 0;
  margin-bottom: 0;
}

.documents-section.is-hidden {
  display: none;
}

.scroll-down-div {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.equipa-section {
  margin-top: 3rem;
  margin-bottom: 2rem;
  display: block;
}

.equipa-section.is-v2 {
  margin-top: 2rem;
}

.contactos-section {
  display: block;
}

.scroll-offset {
  margin-top: -10rem;
  padding-top: 10rem;
}

.teste {
  background-color: red;
  height: 50svh;
  position: relative;
}

.teste-2 {
  background-color: #10723a;
  width: 100px;
  height: 100px;
  position: absolute;
  inset: 0% auto auto 0%;
}

.is-scroll-offset {
  padding-top: 6rem;
}

.scroll-anchor {
  position: relative;
  top: -7rem;
}

.faq-section {
  display: none;
}

.faq-section.is-dark {
  background-color: var(--off-black);
}

.button {
  border: 1px solid var(--black);
  color: var(--black);
  text-align: center;
  padding: .75rem 1.5rem;
  text-decoration: none;
}

.button.is-secondary {
  background-color: #0000;
  padding: .65rem 1.2rem;
  font-size: .9rem;
}

.text-size-medium {
  font-size: 1.1rem;
}

.container-faqs {
  width: 100%;
  max-width: 1250px;
  margin-left: auto;
  margin-right: auto;
}

.padding-section-large {
  padding-top: 7rem;
  padding-bottom: 7rem;
  position: relative;
}

.button-group {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.faq6_content-left {
  position: sticky;
  top: 10rem;
}

.h-style-h2 {
  letter-spacing: -.1rem;
  text-transform: none;
  font-family: ohno-softie-variable, sans-serif;
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.2;
}

.faqs_content {
  grid-column-gap: 3rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.faqs_content.is-reversed {
  grid-template-columns: 1fr .5fr;
}

.icon-embed-small {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  display: flex;
}

.icon-embed-small.is-small {
  width: 1.5rem;
  height: 1.5rem;
}

.faq6_list-grid {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 100%;
  grid-auto-columns: 100%;
  place-items: start stretch;
  display: grid;
}

.faq6_icon-wrapper {
  align-self: flex-start;
  width: 2rem;
  display: flex;
}

.faq6_icon-wrapper.is-team {
  width: 1.5rem;
}

.padding-faqs {
  padding-left: 5%;
  padding-right: 5%;
}

.faq6_accordion {
  border: 1px solid var(--black);
  box-shadow: 0 0 0 0 var(--black);
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  transition: all .2s;
}

.faq6_accordion:hover {
  box-shadow: 5px 5px 0 0 var(--black);
  transform: translate(-5px, -5px);
}

.inscricao-button-holder {
  margin: 2rem 0 0;
}

.inscricao-button-holder.margin-medium {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

.inscricao-button-holder.margin-medium.is-hide {
  display: none;
}

.faq6_question {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  display: flex;
}

.faq6_question.is-team {
  padding: .5rem 0 1rem;
}

.faq6_answer {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 2fr;
  grid-auto-columns: 1fr;
  padding-left: .5rem;
  padding-right: 1.5rem;
  display: grid;
  overflow: hidden;
}

.faq6_answer.is-docs {
  padding-left: 1.5rem;
  display: block;
}

.faq6_answer.is-team {
  padding-left: 0;
  padding-right: 0;
  display: block;
}

.motto-section {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.motto-spacer-div {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
  display: flex;
}

.motto-spacer-div.is-smaller {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.motto-spacer-div.is-off {
  display: none;
}

.footer-wrap {
  background-color: var(--lighter-grey);
  border-radius: 1.5rem 1.5rem 0 0;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.footer-wrap.light {
  background-color: var(--white);
  display: flex;
}

.footer-wrap.is-off {
  display: none;
}

.is-invert {
  filter: invert();
}

.scroll-wrap {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.arrow-div {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 5rem;
  display: flex;
}

.arrow-img {
  width: 90%;
}

.inscricao_grid-list {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.inscricao-wrap.is-pad-bottom {
  padding-bottom: 3rem;
}

.inscricao-feature-list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding-top: .5rem;
  padding-bottom: 2rem;
  display: grid;
}

.inscricao_content-top {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.butao-inscricao {
  background-color: var(--lighter-grey);
  color: var(--white);
  text-align: center;
  letter-spacing: .05rem;
  text-transform: uppercase;
  border-radius: .5rem;
  width: 100%;
  padding: .75rem 1.5rem;
  font-size: 1rem;
  font-weight: 300;
  text-decoration: none;
  transition: all .2s cubic-bezier(.77, 0, .175, 1);
}

.butao-inscricao:hover, .butao-inscricao:active {
  background-color: var(--black);
  color: var(--white);
}

.butao-inscricao.max-width-full {
  width: 100%;
}

.text-size-medium-2 {
  font-size: 1.125rem;
}

.text-style-tagline {
  justify-content: center;
  align-items: center;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

.heading-style-h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.check_icon-wrapper {
  flex: none;
  justify-content: flex-end;
  align-self: flex-start;
  align-items: center;
  margin-right: 1rem;
  display: flex;
}

.container-large {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.inscricao-h6 {
  border-bottom: 1px solid var(--lighter-grey);
  font-size: 1.5rem;
  font-weight: 400;
}

.heading-style-h4 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
}

.padding-inscricao {
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 3rem;
  padding-left: 5%;
  padding-right: 5%;
}

.inscricao_feature {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: row;
  grid-template-rows: auto;
  grid-template-columns: 2fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-around;
  align-items: stretch;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.inscricao-card {
  border: 1px solid var(--lighter-grey);
  box-shadow: 0 0 0 0 var(--lighter-grey);
  border-radius: 1rem;
  flex-flow: column;
  justify-content: space-between;
  padding: 2rem;
  transition: all .2s cubic-bezier(.77, 0, .175, 1);
  display: flex;
  transform: translate(0);
}

.inscricao-card:hover {
  box-shadow: 5px 5px 0 0 var(--black);
  transform: translate(-5px, -5px);
}

.group-top {
  text-align: center;
}

.label-inscricao {
  color: var(--lighter-grey);
  max-width: 25ch;
  margin-top: .5rem;
  margin-left: auto;
  margin-right: auto;
  font-size: .8rem;
}

.cta-div {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.prog-grid {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  margin-bottom: 1rem;
}

.prog-grid.is-white {
  z-index: 2;
  background-color: var(--off-white);
  position: relative;
}

.program-titles {
  font-size: 1.5rem;
}

.program-titles.is-partner {
  font-size: 1.2rem;
}

.program-title-wrap {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-top: 3rem;
  padding-bottom: 3rem;
  display: flex;
}

.program-p {
  text-align: left;
  font-size: 1rem;
}

.program-p.margin-btzero {
  margin-bottom: 0;
}

.program-grid-line {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: auto 1fr;
  grid-auto-columns: 1fr;
  margin-top: 1rem;
  margin-bottom: 1rem;
  display: grid;
}

.table_component {
  width: 100%;
}

.program-wrap {
  border: 1px solid var(--opacity-black);
  border-radius: .5rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding: 3%;
}

.program-wrap.is-invert {
  background-color: var(--white);
}

.hour-div {
  flex-flow: row;
  justify-content: flex-end;
  align-items: stretch;
  display: flex;
}

.text-wrap {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.hour-p {
  text-align: right;
  font-size: 1.2rem;
}

.program-title {
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: 700;
}

.program-title.is-person {
  font-weight: 300;
}

.section-title-holder {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-top: 3rem;
  padding-bottom: 3rem;
  display: flex;
}

.team8_social {
  grid-column-gap: .875rem;
  grid-row-gap: .875rem;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  align-self: flex-start;
  display: flex;
}

.button-2 {
  border: 1px solid var(--\<unknown\|relume-variable-color-neutral-1\>);
  background-color: var(--\<unknown\|relume-variable-color-neutral-1\>);
  color: var(--\<unknown\|relume-variable-color-neutral-2\>);
  text-align: center;
  padding: .75rem 1.5rem;
  text-decoration: none;
}

.button-2.is-secondary {
  color: var(--\<unknown\|relume-variable-color-neutral-1\>);
  background-color: #0000;
}

.text-size-medium-3 {
  font-size: 1.125rem;
}

.text-size-large {
  font-size: 1.25rem;
}

.social-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.max-width-large-2 {
  width: 100%;
  max-width: 48rem;
}

.max-width-medium {
  width: 100%;
  max-width: 35rem;
}

.heading-style-h2 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

.team8_image {
  aspect-ratio: 1;
  filter: grayscale();
  object-fit: cover;
  object-position: 50% 0%;
  width: 100%;
  height: 100%;
  transition: all .4s cubic-bezier(.23, 1, .32, 1);
}

.team8_image:hover {
  filter: grayscale(0%);
}

.team8_image.is-leftalign {
  object-position: 5% 50%;
}

.team-grid {
  grid-column-gap: 3rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.team-img-wrap {
  width: 100%;
  overflow: hidden;
}

.padding-global-2 {
  padding-left: 5%;
  padding-right: 5%;
}

.margin-top, .margin-top.margin-xxlarge, .margin-top.margin-medium, .margin-top.margin-small {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

.name-holder-div {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: flex;
}

.nome-pessoa {
  font-size: 1.3rem;
}

.titulo-pessoa {
  color: var(--lighter-grey);
  font-size: 1rem;
}

.txt-pessoa {
  letter-spacing: .01rem;
  font-size: 1rem;
  font-weight: 300;
}

.logos-holder {
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-start;
  display: none;
}

.is-topbottom-margin-bigger {
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.comissoes-wrapper {
  margin-bottom: 7rem;
}

.comissoes {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: stretch;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.comissao-wrapp {
  border-top: .2rem solid #000;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-right: 1rem;
}

.txt-comissao {
  margin-bottom: .5rem;
  font-family: Portosans, sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
}

.txt-comissao.is-title {
  text-align: left;
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: 700;
}

.txt-comissao.is-left {
  text-align: left;
}

.comissao-divider {
  height: 2rem;
}

.affiliation-span {
  color: var(--opacity-black);
  font-size: .9rem;
}

.spacer {
  height: 5rem;
}

.spacer.if-first {
  height: 7rem;
}

.spacer.if-first.is-off {
  display: none;
}

.spacer.is-white {
  background-color: #fff;
}

.spacer.is-off {
  display: none;
}

.program-title-holder, .keynote-title-holder {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-top: 3rem;
  padding-bottom: 3rem;
  display: flex;
}

.faq-v2-accordion {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border: 1px solid var(--black);
  box-shadow: 0 0 0 0 var(--black);
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 2fr;
  grid-auto-columns: 1fr;
  transition: all .2s cubic-bezier(.77, 0, .175, 1);
  transform: translate(0);
}

.faq-v2-accordion:hover {
  box-shadow: -5px 5px 0 0 var(--black);
  transform: translate(5px, -5px);
}

.faq-v2-accordion.is-team {
  box-shadow: none;
  border-style: none;
  transform: none;
}

.faq-v2-accordion.is-team:hover {
  letter-spacing: .1rem;
}

.big-divider {
  background-color: var(--off-black);
  border-radius: 2rem;
  width: 80%;
  height: 2px;
  margin-bottom: 3rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.big-divider.is-off {
  display: none;
}

.big-divider.is-smaller {
  background-color: var(--off-white);
  opacity: .7;
  width: 35%;
  height: 1px;
}

.inscricao-txt {
  font-size: 1rem;
}

.is-padded {
  padding-left: 30px;
  padding-right: 30px;
}

.section-1 {
  width: 100%;
  min-height: 100svh;
}

.gallery-section {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  min-height: 50svh;
  padding-top: 3rem;
  padding-bottom: 3rem;
  display: none;
}

.gallery-container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-grid {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto auto auto auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.gallery-card-wrap {
  aspect-ratio: 1;
  border-radius: 2rem;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  min-width: 25%;
  min-height: 15rem;
  transition: all .2s cubic-bezier(.77, 0, .175, 1);
  display: flex;
  position: relative;
  overflow: hidden;
}

.gallery-img {
  border-radius: 0;
  min-width: 120%;
  min-height: 120%;
  transition: all .4s cubic-bezier(.77, 0, .175, 1);
  transform: scale(1.5);
}

.gallery-img:hover {
  transform: scale(1.3);
}

.gallery-title {
  color: var(--off-white);
  text-align: center;
  letter-spacing: .1rem;
  text-transform: uppercase;
  text-shadow: 0 2px 5px #0000004d;
  max-width: 65%;
  margin-right: auto;
  font-size: 1.5rem;
  font-weight: 700;
  position: absolute;
  inset: 5% auto auto 5%;
}

.gallery-info {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  color: var(--off-white);
  background-image: linear-gradient(0deg, #000, #0000001a);
  padding: 5% 10% 6%;
  font-size: .9rem;
  line-height: 1.3;
  position: absolute;
  inset: auto 0% 0%;
}

.gallery-txt-shadow {
  position: absolute;
  inset: auto 0% 0%;
}

.gallery-text-card {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  padding: 1.7rem 1.5rem 2rem;
  font-size: 1.2rem;
  display: flex;
  position: relative;
}

.gallery-txt.is-small {
  font-size: .9rem;
}

.header-section-2 {
  min-height: 100svh;
}

.content-wrapper {
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.header-img-wrap {
  z-index: 2;
  background-image: url('../images/placeholder-1.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 2rem;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 80%;
  height: 90svh;
  margin-bottom: -7rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.header2-h1 {
  text-align: center;
  text-transform: uppercase;
  margin-top: 15svh;
  margin-bottom: 5rem;
  font-size: 4rem;
  font-style: italic;
  font-weight: 700;
  line-height: 1.2;
}

.dark-section {
  background-color: var(--off-black);
  min-height: 100svh;
  padding-top: 7rem;
  padding-bottom: 3rem;
}

.header2-main-img {
  min-width: 100%;
  min-height: 100%;
}

.header-img-wrap-border {
  z-index: 1;
  background-color: var(--white);
  position: absolute;
  inset: -2% -2% -3%;
}

.container-dark {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.main-content-dark {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.dark-grid {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  aspect-ratio: 1;
  grid-template-rows: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  min-width: 100%;
  display: grid;
}

.dark-grid-card {
  border: 1px solid var(--off-black);
  background-color: #eeeeee08;
  border-radius: 1rem;
  position: relative;
  overflow: hidden;
}

.card-content-holder {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding: 35px;
  display: flex;
}

.h2-card {
  color: var(--off-white);
  max-width: 85%;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

.h2-card.is-smaller {
  color: #eeeeeeb3;
  letter-spacing: .05rem;
  font-size: 1.5rem;
  font-weight: 400;
}

.h2-card.is-smaller.is-smallest {
  color: #eeeeeeb3;
  font-size: 1rem;
}

.card-in-card {
  border: 1px solid var(--lighter-grey);
  border-radius: .5rem;
  width: 100%;
  height: 3.5rem;
  box-shadow: 0 3px 4px 1px #0000004d;
}

.main-content-card-wrap {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.light-section {
  width: 100%;
  min-height: 100svh;
}

.bottom-card-holder {
  position: absolute;
  inset: auto 0% 0%;
}

.bottom-wrap {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 28rem;
  display: flex;
  position: relative;
}

.center-card {
  background-color: var(--grey);
  border-radius: 1.5rem;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 11rem;
  height: 11rem;
  padding: 55px 55px 60px;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 5px #0000004d;
}

.center-card.is-small {
  width: 8rem;
  height: 8rem;
}

.in-line-boxes {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.circles-wrap {
  z-index: 1;
  position: absolute;
  inset: 0%;
}

.circle-in-wrap {
  border: 1px solid var(--grey);
  opacity: .8;
  pointer-events: auto;
  border-radius: 100%;
  width: 18rem;
  height: 18rem;
  position: absolute;
  inset: auto;
}

.circle-in-wrap.is-2 {
  width: 22rem;
  height: 22rem;
}

.circle-in-wrap.is-3 {
  width: 26rem;
  height: 26rem;
}

.circle-in-wrap.is-4 {
  width: 30rem;
  height: 30rem;
}

.circle-in-wrap.is-5 {
  width: 34rem;
  height: 34rem;
}

.circle-in-wrap.is-6 {
  width: 38rem;
  height: 38rem;
}

.circle-holder {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.content-hold-center-card {
  padding: 55px 55px 60px;
  position: absolute;
  inset: 0%;
}

.inside-line {
  border: 1px solid var(--off-white);
  opacity: .3;
  border-radius: 1rem;
  margin: .5rem;
  position: absolute;
  inset: 0%;
  box-shadow: 0 2px 3px 1px #0003, inset 0 -2px 3px 1px #0003, inset 0 2px 3px 1px #00000080;
}

.noise-back {
  z-index: 2;
  mix-blend-mode: multiply;
  background-image: url('../images/noisy-background_1.avif');
  background-position: 0 0;
  background-size: cover;
  position: absolute;
  inset: 0%;
}

.background-fill {
  z-index: 1;
  background-color: var(--grey);
  position: absolute;
  inset: 0%;
}

.main-logo {
  max-height: 80px;
  padding-top: 5px;
  padding-bottom: 5px;
}

.partner-list {
  padding-left: 15px;
  font-size: 1.4rem;
}

.world-img {
  z-index: 1;
  min-width: 100%;
  position: absolute;
  inset: 0%;
}

.world-img.is-pt, .world-img.is-sp, .world-img.is-tk, .world-img.is-sw {
  display: none;
}

.world-img-wrap {
  object-fit: cover;
  justify-content: center;
  align-items: center;
  min-height: 450px;
  position: sticky;
  top: 220px;
  overflow: hidden;
}

.pt-img, .sp-img, .tk-img, .sw-img {
  z-index: 2;
  min-width: 100%;
  display: none;
  position: absolute;
  inset: 0%;
}

.main-img {
  aspect-ratio: 1;
  border: 3px solid var(--off-white);
  object-fit: cover;
  width: auto;
  height: 100%;
  max-height: 100%;
  position: absolute;
  box-shadow: 0 3px 8px #0003;
}

.main-img.img-1 {
  z-index: 1;
  aspect-ratio: 1;
  object-fit: cover;
  max-height: 50%;
  inset: auto 0% 0% auto;
}

.main-img.img-2 {
  z-index: 2;
  aspect-ratio: 1;
  object-fit: cover;
  max-height: 75%;
  inset: 0% auto auto 25%;
}

.main-img.img-3 {
  z-index: 3;
  aspect-ratio: 1;
  object-fit: cover;
  max-height: 50%;
  inset: auto auto 10% 10%;
}

.main-img.img-4 {
  aspect-ratio: 1;
  object-fit: cover;
  max-height: 80%;
  inset: 0% auto auto -2%;
}

.main-img.img-5 {
  max-height: 70%;
  bottom: 0%;
  left: 40%;
  right: auto;
}

.main-img.img-6 {
  max-height: 40%;
  inset: 0% -2% auto auto;
}

.main-img.img-7 {
  max-height: 60%;
  inset: auto auto 0% 0%;
}

.main-img.img-8 {
  max-height: 80%;
  inset: 0% 0% auto auto;
}

.main-img.img-9 {
  max-height: 50%;
  inset: 3% auto auto 21%;
}

.main-img.img-10 {
  max-height: 75%;
  inset: auto auto 10% 10%;
}

.main-img.img-11 {
  max-height: 70%;
  inset: 0% 0% auto auto;
}

.main-img.img-12 {
  max-height: 50%;
  inset: auto auto 0% -10%;
}

.main-img.img-13 {
  max-height: 50%;
  inset: auto auto 2% -10%;
}

.main-img.img-14 {
  max-height: 55%;
  inset: 0% auto auto 10%;
}

.main-img.img-15 {
  max-height: 50%;
  inset: 30% auto auto 35%;
}

.main-img.img-16 {
  max-height: 50%;
  inset: auto 0% 0% auto;
}

.unordered-list {
  margin-top: 2rem;
  list-style-type: square;
}

.un-list-item {
  font-size: 1.1rem;
}

.ordered-list {
  margin-top: 2rem;
  list-style-type: decimal;
}

.od-list-item {
  font-size: 1.1rem;
}

.about-video {
  z-index: 2;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  border-radius: 1.5rem;
  width: 100%;
  max-width: 100%;
  height: auto;
  transition: all .2s cubic-bezier(.77, 0, .175, 1);
  display: block;
  position: absolute;
  inset: 0% 0% auto;
  overflow: hidden;
}

.play-img-holder {
  z-index: 3;
  width: 100px;
  height: auto;
  position: absolute;
  inset: -4% auto auto -6%;
}

.play-img {
  border-radius: 5rem;
  box-shadow: 0 2px 5px #00000080;
}

.fs-numbercount_content {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  place-items: flex-start start;
  max-width: 30rem;
  height: 100%;
  display: flex;
}

.fs-numbercount_content.is-alternative {
  color: var(--white);
  justify-content: center;
  align-items: center;
  min-width: 100%;
  max-width: none;
}

.fs-numbercount_icon-wrapper {
  background-color: #ebebeb;
  border-radius: .5rem;
  padding: .5rem;
}

.fs-numbercount_instance {
  font-size: 4rem;
  font-weight: 500;
  line-height: 1;
}

.fs-numbercount_heading {
  text-align: left;
  flex: none;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.2;
}

.fs-numbercount_heading.is-bigger {
  max-width: 100%;
  margin-bottom: 60px;
}

.fs-numbercount_heading.is-bigger.is-en {
  margin-bottom: 27px;
}

.fs-numbercount_character {
  font-size: 4rem;
  font-weight: 500;
  line-height: 1;
}

.fs-numbercount_grid {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  place-items: start stretch;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.fs-numbercount_row {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.fs-numbercount_row.is-hide {
  display: none;
}

.fs-numbercount_icon {
  aspect-ratio: 1;
  object-fit: cover;
  width: 3rem;
}

.fs-numbercount_card {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border: 2px solid #000;
  border-radius: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-items: start;
  height: 100%;
  padding: 2rem;
  display: grid;
}

.fs-numbercount_card.is-alternative {
  border-style: none;
}

.fs-numbercount_card.is-hide {
  display: none;
}

.fs-numbercount-1_number {
  font-size: 4rem;
  line-height: 1;
}

.fs-numbercount-1_number.is-alternative {
  color: var(--white);
}

.fs-numbercount-1_number.is-opac {
  opacity: 0;
}

.event-img-wrapper {
  padding-bottom: 12px;
  padding-left: 12px;
  padding-right: 12px;
  overflow: hidden;
}

.accordion-img {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 1rem;
  min-width: 100%;
  height: auto;
}

.btn-spacer {
  height: 1rem;
}

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

.email-link {
  margin-bottom: .5rem;
  font-size: .9rem;
}

.all-caps {
  text-transform: uppercase;
  font-weight: 700;
}

._10px-spacer {
  width: 100%;
  height: 10px;
}

.email-pessoa {
  border-bottom: 1px solid var(--lighter-grey);
  color: var(--lighter-grey);
  padding-top: 3px;
  padding-bottom: 1px;
  font-size: .8rem;
  line-height: 1.4;
}

.news-button-wrap {
  padding-left: 12px;
}

.news-info-wrap {
  padding-bottom: 12px;
}

.news-dates {
  text-align: left;
  font-size: .9rem;
}

.translation {
  font-size: .7rem;
  font-weight: 400;
}

.inline-link {
  font-size: 1rem;
  display: inline-block;
}

.partner-wrap {
  border: 1px solid var(--lighter-grey);
  border-radius: .5rem;
  padding: 10px;
}

.partner-link {
  min-width: 100%;
}

.wrapthempartners {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-flow: column;
  min-width: 100%;
  display: flex;
}

.wrapthempartners.is-hidden {
  display: none;
}

.header-img-carrousel {
  min-width: 100%;
  min-height: 100%;
  display: block;
  overflow: hidden;
}

.slide-nav, .right-arrow, .icon-2, .icon-3 {
  display: none;
}

.slider {
  object-fit: cover;
  min-height: 100%;
}

.mask {
  object-fit: cover;
}

.slide {
  object-fit: cover;
  background-image: url('../images/IMG_2059.avif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.carrousel-container {
  min-width: 100%;
  min-height: 100%;
  display: flex;
}

.carrouselimages-container {
  justify-content: space-around;
  padding-bottom: 15px;
  display: flex;
  position: relative;
}

.carrouselimages-container.is-hide {
  display: none;
}

.carrousel-img {
  width: auto;
  height: 500px;
  padding-left: 50px;
  padding-right: 50px;
}

.tag-hold {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: space-between;
  width: 100%;
  display: flex;
}

.languages-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  display: flex;
}

.languages-wrapper.is-hide {
  display: none;
}

.lang-btn {
  border: 1px solid #000;
  border-radius: .2rem;
  padding: 5px 16px;
  font-size: 1.2rem;
}

.carro-cont {
  min-width: 100%;
  display: flex;
  position: relative;
}

.nb-left {
  border: 2px solid #000;
  border-radius: 1.5rem;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  padding: 2rem;
  display: flex;
}

.heading-6 {
  font-size: 1.5rem;
}

@media screen and (min-width: 1440px) {
  .main-heading {
    font-size: 12rem;
  }

  .header-grid {
    grid-template-rows: 80svh;
  }

  .fs-numbercount-1_number.is-hide {
    display: none;
  }
}

@media screen and (max-width: 991px) {
  p {
    font-size: 1rem;
  }

  .section.cc-cta {
    padding-left: 0;
    padding-right: 0;
  }

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

  .p-bigger.is-bigger-whiter {
    font-size: 1.2rem;
  }

  .global-button {
    justify-content: center;
    font-size: .6rem;
  }

  .global-button.cc-contact-us {
    display: none;
  }

  .label.is-label-light {
    font-size: .7rem;
  }

  .main-heading {
    font-size: 3rem;
  }

  .motto-heading {
    font-size: 2rem;
  }

  .logo-link.w--current {
    flex: 1;
  }

  .menu-icon {
    border-radius: 0;
    display: block;
  }

  .navigation-wrap {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .navigation {
    height: 75px;
    padding: 25px 30px;
    position: sticky;
  }

  .navigation-item {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    padding: 15px 16px;
    font-size: .8rem;
    line-height: 1.5;
    transition: background-color .4s, opacity .4s, color .4s;
  }

  .menu-button {
    padding: 0;
  }

  .menu-button.w--open {
    background-color: #0000;
  }

  .navigation-items {
    z-index: 9998;
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    background-color: #fff;
    flex-direction: column;
    flex: none;
    height: 100svh;
    margin-top: -5px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 15px;
    padding-bottom: 15px;
    font-family: Portosans, sans-serif;
    display: block;
  }

  .cta-text {
    width: auto;
  }

  .cta-wrap {
    width: auto;
    padding: 80px 50px 90px;
  }

  .our-services-grid {
    text-align: center;
    grid-template: ". ."
                   ". ."
                   ". ."
                   / 1fr 1fr;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .service-icon {
    display: inline-block;
  }

  .contact-form-grid {
    grid-row-gap: 50px;
    text-align: center;
    grid-template: "."
                   "."
                   / 1fr;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .get-in-touch-form {
    text-align: left;
  }

  .our-contacts {
    grid-template: "."
                   "."
                   "."
                   / 1fr;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .team-members {
    grid-template: ". ."
                   ". ."
                   ". ."
                   / 1fr 1fr;
  }

  .team-member-title-wrap {
    margin-bottom: 30px;
  }

  .project-details-grid {
    grid-row-gap: 50px;
    text-align: center;
    grid-template: "."
                   "."
                   / 1fr;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .blog-detail-header-wrap {
    width: 70%;
  }

  .detail-header-image {
    height: 460px;
  }

  .blog-item {
    width: 80%;
  }

  .blog-preview-image {
    height: 460px;
  }

  .blog-summary-wrap {
    width: 100%;
  }

  .about-grid {
    grid-row-gap: 50px;
    text-align: center;
    grid-template: "."
                   "."
                   / 1fr;
  }

  .about-grid.cc-about-2 {
    grid-template-columns: 1fr;
    grid-template-areas: "."
                         ".";
  }

  .intro-text {
    max-width: 70ch;
  }

  .collection-wrap {
    flex-flow: column;
    align-items: center;
    margin-left: 0;
    margin-right: 0;
  }

  .blog-preview-wrap {
    text-align: center;
    width: 80%;
    padding-right: 15px;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

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

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .footer_top-wrapper {
    grid-row-gap: 4rem;
    grid-template-columns: 2fr 1fr;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .header-section {
    margin-top: -4rem;
  }

  .button-wrapper.second-buttons {
    padding-left: 51px;
    padding-right: 51px;
  }

  .nav-itens-wrapper {
    z-index: 9999;
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-items: center;
    width: 80%;
    height: 80%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    position: relative;
  }

  .lang-buttons-wrapper {
    justify-content: flex-end;
    align-items: center;
  }

  .header-text {
    padding-left: 0;
    padding-right: 0;
  }

  .invisi-divider {
    height: 0;
  }

  .grid-layout.tablet-1-column {
    grid-template-columns: 1fr;
  }

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

  .padding-section-medium {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .logo1_list {
    grid-row-gap: 2rem;
  }

  .paragraph {
    font-size: 1rem;
  }

  .h3-style {
    font-size: 2rem;
  }

  .about-video-wrapper {
    border-radius: 1rem;
    position: relative;
  }

  .about-wrapper {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-rows: .75fr 1fr;
    grid-template-columns: 1fr;
  }

  .about-wrapper.is-deafteam {
    grid-column-gap: 1rem;
    grid-row-gap: .6rem;
    grid-template-columns: 1fr 1fr;
  }

  .text-size-medium {
    font-size: .8rem;
  }

  .text-size-medium.text-weight-bold {
    font-size: 1.2rem;
  }

  .padding-section-large {
    padding-top: 6rem;
    padding-bottom: 6rem;
    position: relative;
  }

  .faq6_content-left {
    position: sticky;
  }

  .h-style-h2 {
    font-size: 1.5rem;
  }

  .faqs_content {
    grid-column-gap: 1rem;
    grid-row-gap: 3rem;
    grid-template-columns: 1fr 3fr;
    grid-auto-flow: row;
    min-height: auto;
  }

  .faq6_accordion:hover {
    box-shadow: none;
    transform: none;
  }

  .inscricao-button-holder {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

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

  .heading-style-h1 {
    font-size: 3.25rem;
  }

  .heading-style-h4 {
    font-size: 1.75rem;
  }

  .inscricao-card:hover {
    box-shadow: none;
    transform: none;
  }

  .program-p {
    font-size: .9rem;
  }

  .heading-style-h2 {
    font-size: 2.75rem;
  }

  .team-grid {
    grid-column-gap: 2rem;
    grid-template-columns: 1fr 1fr;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .faq-v2-accordion:hover {
    box-shadow: none;
    transform: none;
  }

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

  .fs-numbercount_heading.is-bigger.is-en {
    margin-bottom: 0;
  }

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

  .heading-6 {
    font-size: 1.1rem;
  }

  .bold-text {
    text-align: left;
    font-size: 1.1rem;
  }
}

@media screen and (max-width: 767px) {
  .section {
    margin-left: 15px;
    margin-right: 15px;
  }

  .section.cc-cta {
    padding: 15px;
  }

  .section.cc-home-wrap {
    margin-left: 15px;
    margin-right: 15px;
  }

  .container {
    text-align: center;
  }

  .p-bigger {
    font-size: 16px;
    line-height: 28px;
  }

  .p-bigger.is-bigger-whiter {
    font-size: 1rem;
    line-height: 1.2;
  }

  .global-button {
    font-size: .5rem;
  }

  .label.is-label-light {
    font-size: .6rem;
  }

  .rich-text {
    text-align: left;
    width: 90%;
    max-width: 470px;
  }

  .main-heading {
    font-size: 2.5rem;
  }

  .motto-heading {
    font-size: 1.7rem;
  }

  .logo-link {
    padding-left: 0;
  }

  .navigation {
    height: auto;
    padding: 15px 30px;
  }

  .cta-wrap {
    padding-left: 30px;
    padding-right: 30px;
  }

  .header-img-wrapper.is-on {
    flex: 1;
  }

  .intro-content {
    width: 80%;
  }

  .our-services-grid {
    grid-row-gap: 60px;
    grid-template: "."
                   "."
                   "."
                   "."
                   "."
                   "."
                   / 1fr;
  }

  .status-message.cc-no-data {
    width: 80%;
    max-width: 470px;
  }

  .contact-form-wrap {
    padding: 30px;
  }

  .text-field.cc-contact-field, .text-field.cc-textarea {
    text-align: left;
  }

  .team-pic {
    height: 300px;
    margin-bottom: 30px;
  }

  .team-member-name {
    font-size: 16px;
    line-height: 28px;
  }

  .project-name-wrap {
    margin-bottom: 30px;
  }

  .project-name-link {
    font-size: 16px;
    line-height: 28px;
  }

  .detail-image {
    margin-bottom: 15px;
  }

  .blog-detail-header-wrap {
    text-align: left;
    width: 90%;
    max-width: 470px;
  }

  .blog-item {
    width: 90%;
    max-width: 470px;
  }

  .blog-summary-wrap {
    text-align: center;
  }

  .utility-page-wrap {
    padding: 15px;
  }

  ._404-wrap {
    padding: 30px;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

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

  .footer_social-list {
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .footer_link {
    text-align: center;
    flex: 1;
    font-size: .7rem;
  }

  .footer_left-wrapper {
    grid-column-gap: 1.5em;
    grid-row-gap: 1.5em;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .footer_link-list {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: row;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-auto-columns: 100%;
    justify-content: flex-end;
    align-items: center;
    display: flex;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .footer_links-wrapper {
    grid-row-gap: .5rem;
    flex-direction: row;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: grid;
  }

  .footer_details-wrapper {
    text-align: left;
  }

  .logo-link-footer {
    text-align: left;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    min-height: 100%;
    padding-left: 0;
    display: flex;
  }

  .footer3_legal-list {
    grid-column-gap: 2.5rem;
    grid-row-gap: 1rem;
    grid-template-columns: max-content 1fr 1fr;
    grid-auto-flow: row;
  }

  .footer_top-wrapper {
    grid-row-gap: 1.25rem;
    grid-template: "."
                   "."
                   / 2fr;
  }

  .footer3_credit-text {
    margin-top: .5rem;
  }

  .footer3_bottom-wrapper {
    flex-direction: column-reverse;
    align-items: center;
    padding-bottom: 1rem;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-top.padding-medium {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .line-divider-2 {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .line-divider-2.is-light {
    width: 100%;
  }

  .whole-body-wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }

  .logo-nav {
    font-size: 1.2rem;
  }

  .lang-button {
    border-radius: .3rem;
    min-width: 40px;
    padding: 4px 8px;
    line-height: .8;
  }

  .grid-layout.grid-gap-xxl {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .utility-margin-bottom-2rem {
    margin-bottom: 1rem;
  }

  .header-grid {
    grid-template-rows: .5fr;
    grid-auto-rows: .5fr;
    width: 100%;
  }

  .padding-section-medium {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .logo1_logo {
    max-height: 3rem;
  }

  .h-style-h6 {
    font-size: 1.125rem;
  }

  .logo1_list {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    padding-top: 1rem;
  }

  .about-wrapper {
    grid-template-rows: .75fr 1fr;
  }

  .text-size-medium {
    font-size: 1rem;
  }

  .padding-section-large {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .faq6_content-left {
    position: relative;
    top: auto;
  }

  .h-style-h2 {
    font-size: 1.5rem;
  }

  .faqs_content {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .faq6_icon-wrapper {
    width: 1.75rem;
  }

  .inscricao-button-holder {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .faq6_question {
    padding: 1rem 1.25rem;
  }

  .faq6_answer {
    grid-template-columns: 1fr;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .motto-section {
    margin-top: 0;
  }

  .motto-spacer-div {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

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

  .text-size-medium-2 {
    font-size: 1rem;
  }

  .heading-style-h1 {
    font-size: 2.5rem;
  }

  .inscricao-h6 {
    font-size: 1.125rem;
  }

  .heading-style-h4 {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  .inscricao-card {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .program-titles {
    font-size: 1.3rem;
  }

  .program-titles.is-partner {
    text-align: left;
    font-size: .8rem;
  }

  .hour-p, .program-title {
    font-size: 1rem;
  }

  .program-title.is-person {
    margin-top: .2rem;
  }

  .program-paragraph {
    font-size: .8rem;
  }

  .section-title-holder {
    padding-top: 2rem;
    padding-bottom: 1rem;
  }

  .text-size-medium-3 {
    font-size: 1rem;
  }

  .text-size-large {
    font-size: 1.125rem;
  }

  .heading-style-h2 {
    font-size: 2.25rem;
  }

  .team-grid {
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
  }

  .team-img-wrap {
    height: 100%;
  }

  .keynote-card {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    background-color: var(--white);
    border-radius: 1.8rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1.5fr;
    grid-auto-columns: 1fr;
    padding: 1.5rem;
    display: grid;
    box-shadow: 0 5px 10px 1px #0003;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .name-holder-div {
    justify-content: center;
    align-items: flex-start;
  }

  .comissoes {
    flex-flow: column;
  }

  .spacer.if-first {
    height: 6rem;
  }

  .big-divider {
    margin-bottom: 0;
  }

  .main-logo {
    max-height: 55px;
  }

  .world-img-wrap {
    display: none;
  }

  .main-img {
    border-width: 2px;
    border-radius: .5rem;
  }

  .fs-numbercount_heading {
    font-size: 1.6rem;
  }

  .fs-numbercount_heading.is-bigger {
    font-size: 1.5rem;
  }

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

  .fs-numbercount-1_number {
    font-size: 2.5rem;
  }

  .event-img-wrapper {
    width: 50%;
    padding-left: 0;
    padding-right: 0;
  }

  .news-button-wrap {
    padding-left: 0;
  }

  .carrouselimages-container {
    flex: none;
  }

  .lang-btn {
    font-size: .9rem;
  }

  .carro-cont {
    flex: none;
  }

  .link {
    font-size: 1rem;
  }
}

@media screen and (max-width: 479px) {
  body {
    font-family: Portosans, sans-serif;
    font-size: 1.2rem;
    line-height: 1.4;
  }

  h1 {
    font-size: 36px;
    line-height: 52px;
  }

  .container {
    width: 90%;
  }

  .p-bigger.is-bigger-whiter {
    margin-bottom: 0;
    font-size: 1rem;
  }

  .label.is-label-light {
    font-size: .5rem;
  }

  .label.cc-blog-date {
    font-size: .6rem;
    line-height: 1.2;
  }

  .rich-text {
    width: 100%;
    max-width: none;
  }

  .paragraph-light {
    text-align: left;
    font-size: .9rem;
    line-height: 1.3;
  }

  .main-heading {
    font-size: 2.4rem;
  }

  .motto-heading {
    font-size: 1.3rem;
    line-height: 1.5;
  }

  .menu-icon {
    width: auto;
    height: 15px;
  }

  .menu {
    flex-flow: column;
  }

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

  .menu-button, .menu-button.w--open {
    flex: none;
  }

  .cta-wrap {
    padding-left: 15px;
    padding-right: 15px;
  }

  .status-message.cc-no-data, .contact-form-grid {
    width: 100%;
  }

  .our-contacts {
    width: 90%;
  }

  .team-members {
    grid-template: "."
                   "."
                   "."
                   "."
                   "."
                   "."
                   / 1fr;
  }

  .project-details-grid {
    width: 100%;
  }

  .blog-detail-header-wrap, .blog-item {
    width: 100%;
    max-width: none;
  }

  .section-heading, .work-heading {
    font-size: 2rem;
  }

  .business-article-heading {
    font-size: 1.3rem;
    line-height: 1.2;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

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

  .icon-embed-xsmall {
    width: 1.2rem;
    height: 1.2rem;
  }

  .footer_link {
    text-align: center;
  }

  .footer3_legal-link {
    font-size: .6rem;
    line-height: 1.2;
  }

  .footer_left-wrapper {
    grid-column-gap: .5em;
    grid-row-gap: .5em;
    grid-template-columns: .75fr 1fr;
  }

  .text-size-small {
    font-size: .8rem;
  }

  .footer_link-list {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    text-align: center;
    flex-flow: column;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    justify-content: space-between;
    align-items: stretch;
    display: flex;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .footer_links-wrapper {
    grid-column-gap: 1.25rem;
    grid-row-gap: 20px;
    grid-template-columns: 1fr 1fr;
  }

  .footer3_credit-text {
    font-size: .7rem;
    line-height: 1.4;
  }

  .footer3_bottom-wrapper {
    padding-bottom: .5rem;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .footer-component.is-invert {
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .footer-link {
    font-size: .8rem;
  }

  .header-section {
    height: 90svh;
    min-height: 90svh;
  }

  .button-wrapper {
    flex-flow: row;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
  }

  .button-wrapper.second-buttons {
    grid-template-columns: 1fr;
    padding-bottom: 40px;
    padding-left: 0;
    padding-right: 0;
  }

  .nav-itens-wrapper {
    flex-wrap: wrap;
  }

  .whole-body-wrapper {
    padding-left: 10px;
    padding-right: 10px;
  }

  .logo-nav {
    font-size: .9rem;
  }

  .lang-buttons-wrapper {
    grid-column-gap: .1rem;
    grid-row-gap: .1rem;
    height: 100%;
  }

  .lang-button {
    justify-content: center;
    align-items: center;
    min-width: 10px;
    padding-left: 4px;
    padding-right: 4px;
    font-size: .5rem;
    line-height: 1;
    display: flex;
  }

  .header-text {
    justify-content: flex-start;
    align-items: stretch;
  }

  .invisi-divider {
    display: none;
  }

  .ese-logo {
    font-size: .7rem;
  }

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

  .logo1_list {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    place-content: stretch center;
    place-items: center;
    display: grid;
  }

  .paragraph {
    font-size: .9rem;
  }

  .about-wrapper {
    grid-template-rows: .25fr 1fr;
    margin-bottom: 3rem;
  }

  .text-size-medium {
    font-size: .9rem;
  }

  .text-size-medium.text-weight-bold {
    text-align: left;
    font-size: 1rem;
  }

  .padding-section-large {
    padding-top: 1rem;
  }

  .h-style-h2 {
    font-size: 1.3rem;
  }

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

  .inscricao-button-holder {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .faq6_question {
    padding-left: .55rem;
    padding-right: .55rem;
  }

  .faq6_answer {
    grid-column-gap: .8rem;
    grid-row-gap: .8rem;
    grid-template-columns: 1fr;
    justify-content: start;
    padding-left: .55rem;
    padding-right: .55rem;
  }

  .faq6_answer.is-docs {
    padding-left: .5rem;
  }

  .motto-section {
    min-height: 20svh;
  }

  .inscricao-feature-list {
    width: 100%;
  }

  .butao-inscricao {
    font-size: .9rem;
  }

  .check_icon-wrapper {
    margin-right: 0;
  }

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

  .program-titles {
    font-size: 1.1rem;
  }

  .program-titles.is-partner, .program-p {
    font-size: .8rem;
  }

  .program-wrap {
    margin-top: .5rem;
    margin-bottom: .5rem;
  }

  .hour-p, .program-title {
    font-size: .8rem;
  }

  .program-paragraph {
    font-size: .7rem;
  }

  .section-title-holder {
    padding-top: 1.4rem;
    padding-bottom: 1.4rem;
  }

  .team-grid {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-columns: 1fr;
  }

  .keynote-card {
    max-width: 100%;
    overflow: hidden;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .nome-pessoa {
    font-size: 1.1rem;
  }

  .titulo-pessoa {
    text-align: left;
    font-size: .7rem;
  }

  .comissoes-wrapper {
    margin-bottom: 3rem;
  }

  .comissoes {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .txt-comissao, .txt-comissao.is-title {
    font-size: 1rem;
  }

  .big-divider {
    margin-bottom: 1rem;
  }

  .inscricao-txt {
    font-size: .8rem;
  }

  .main-logo {
    border-radius: 0;
  }

  .fs-numbercount_heading {
    font-size: 1.2rem;
  }

  .fs-numbercount-1_number {
    font-size: 2.5rem;
  }

  .event-img-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .carrouselimages-container {
    min-height: 100%;
  }

  .languages-wrapper {
    grid-column-gap: .4rem;
    grid-row-gap: .4rem;
    flex-flow: wrap;
  }

  .lang-btn {
    font-size: .8rem;
  }

  .carro-cont {
    min-height: 100%;
  }

  .paragraph-2, .link {
    font-size: .9rem;
  }
}

#w-node-_3da357b0-c48e-a1bd-da6e-e4d5590021b7-5b9185b6 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_54f2d9f6-a159-662c-f803-996b3ceabdc9-5b9185b6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d4875bde-4c90-37ab-a3e8-36c5c1b2a9b7-5b9185b6 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-d4875bde-4c90-37ab-a3e8-36c5c1b2a9bc-5b9185b6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f46ddf80-421a-70c4-1196-15913cf9447d-5b9185b6 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-f46ddf80-421a-70c4-1196-15913cf94482-5b9185b6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ada6c61c-a95b-30ff-29f3-59e966b0d607-5b9185b6 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-ada6c61c-a95b-30ff-29f3-59e966b0d60c-5b9185b6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_5cc60da4-c783-2658-a4d4-c0f6c9a4b010-5b9185b6 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_5cc60da4-c783-2658-a4d4-c0f6c9a4b015-5b9185b6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c9e32fea-cbb3-2867-4958-e6f116c7f83f-5b9185b6 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-c9e32fea-cbb3-2867-4958-e6f116c7f844-5b9185b6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3b85156f-fdd7-cddc-2105-d68b4e40547e-5b9185b6 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_3b85156f-fdd7-cddc-2105-d68b4e405483-5b9185b6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3b85156f-fdd7-cddc-2105-d68b4e405491-5b9185b6 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_3b85156f-fdd7-cddc-2105-d68b4e405496-5b9185b6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3b85156f-fdd7-cddc-2105-d68b4e4054a4-5b9185b6 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_3b85156f-fdd7-cddc-2105-d68b4e4054a9-5b9185b6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3b85156f-fdd7-cddc-2105-d68b4e4054b7-5b9185b6 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_3b85156f-fdd7-cddc-2105-d68b4e4054bc-5b9185b6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3b85156f-fdd7-cddc-2105-d68b4e4054ca-5b9185b6 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_3b85156f-fdd7-cddc-2105-d68b4e4054cf-5b9185b6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_09756ff3-7f42-9ba8-7d77-b05a89b424b3-5b9185b6, #w-node-_09756ff3-7f42-9ba8-7d77-b05a89b424bd-5b9185b6, #w-node-_09756ff3-7f42-9ba8-7d77-b05a89b424c7-5b9185b6, #w-node-_09756ff3-7f42-9ba8-7d77-b05a89b424d1-5b9185b6, #w-node-_09756ff3-7f42-9ba8-7d77-b05a89b424d6-5b9185b6, #w-node-e610b9dc-2eb7-a433-d865-08fae3d29368-5b9185b6, #w-node-e610b9dc-2eb7-a433-d865-08fae3d2936d-5b9185b6, #w-node-e610b9dc-2eb7-a433-d865-08fae3d29372-5b9185b6, #w-node-e610b9dc-2eb7-a433-d865-08fae3d29377-5b9185b6, #w-node-_994b9877-7216-4164-551e-6c15578536e9-5b9185b6, #w-node-d370402d-164e-c8e5-a280-221007460795-5b9185b6, #w-node-f4ba6fff-3434-a5ed-309c-d51c8da316c0-5b9185b6, #w-node-dd13ceac-0bf3-8faf-2e5b-19b667fc9617-5b9185b6, #w-node-e91d1349-3392-cc3d-1407-91417c04f824-5b9185b6, #w-node-_45bb40a0-1014-8445-cf6f-9a73eff96850-5b9185b6, #w-node-_45bb40a0-1014-8445-cf6f-9a73eff96855-5b9185b6, #w-node-_45bb40a0-1014-8445-cf6f-9a73eff9685a-5b9185b6, #w-node-_45bb40a0-1014-8445-cf6f-9a73eff96869-5b9185b6, #w-node-_45bb40a0-1014-8445-cf6f-9a73eff96873-5b9185b6, #w-node-_45bb40a0-1014-8445-cf6f-9a73eff96878-5b9185b6 {
  align-self: start;
}

#w-node-_86e64837-0616-515b-4568-76c147234d34-5b9185b6 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_86e64837-0616-515b-4568-76c147234d3f-5b9185b6, #w-node-_86e64837-0616-515b-4568-76c147234d41-5b9185b6 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_86e64837-0616-515b-4568-76c147234d4c-5b9185b6 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_7b122adb-227f-cf98-4e30-18144a5e2f56-5b9185b6 {
  grid-area: 1 / 2 / 4 / 4;
}

#w-node-_5cf7fdd2-557f-328a-10cc-25de45165e47-5b9185b6 {
  grid-area: 3 / 1 / 5 / 2;
}

#w-node-_6118b979-bbed-09e0-c2ff-7195bf7c1c45-5b9185b6 {
  grid-area: 4 / 3 / 6 / 5;
}

#w-node-f532f3a7-055b-fef7-cad1-2a5cb23a7826-5b9185b6 {
  grid-area: 5 / 1 / 7 / 3;
}

#w-node-_74727dae-f457-1a8d-6f2f-a6286e21c1a9-5b9185b6 {
  grid-area: 6 / 4 / 7 / 5;
}

#w-node-_590a0b1c-fccd-0f20-26b6-63336cff55dd-5b9185b6 {
  grid-area: 6 / 3 / 7 / 4;
}

#w-node-ee552af0-4c7b-f6be-d2e0-7d945e6a549e-5b9185b6 {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-_0ed265aa-d1aa-7bf4-e998-8740b4194c29-5b9185b6 {
  grid-area: 4 / 2 / 5 / 3;
}

#w-node-_0ea472b7-7f10-b197-5f4f-8a178c5b865a-8c5b8626 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_83ba2d7f-5cba-a2a9-bdf1-0f0cbf0e822c-51e627e8 {
  align-self: center;
}

#w-node-_3da357b0-c48e-a1bd-da6e-e4d5590021b7-dbdcccae {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_54f2d9f6-a159-662c-f803-996b3ceabdc9-dbdcccae {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d4875bde-4c90-37ab-a3e8-36c5c1b2a9b7-dbdcccae {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-d4875bde-4c90-37ab-a3e8-36c5c1b2a9bc-dbdcccae {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f46ddf80-421a-70c4-1196-15913cf9447d-dbdcccae {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-f46ddf80-421a-70c4-1196-15913cf94482-dbdcccae {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ada6c61c-a95b-30ff-29f3-59e966b0d607-dbdcccae {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-ada6c61c-a95b-30ff-29f3-59e966b0d60c-dbdcccae {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_5cc60da4-c783-2658-a4d4-c0f6c9a4b010-dbdcccae {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_5cc60da4-c783-2658-a4d4-c0f6c9a4b015-dbdcccae {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c9e32fea-cbb3-2867-4958-e6f116c7f83f-dbdcccae {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-c9e32fea-cbb3-2867-4958-e6f116c7f844-dbdcccae {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3b85156f-fdd7-cddc-2105-d68b4e40547e-dbdcccae {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_3b85156f-fdd7-cddc-2105-d68b4e405483-dbdcccae {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3b85156f-fdd7-cddc-2105-d68b4e405491-dbdcccae {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_3b85156f-fdd7-cddc-2105-d68b4e405496-dbdcccae {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3b85156f-fdd7-cddc-2105-d68b4e4054a4-dbdcccae {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_3b85156f-fdd7-cddc-2105-d68b4e4054a9-dbdcccae {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3b85156f-fdd7-cddc-2105-d68b4e4054b7-dbdcccae {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_3b85156f-fdd7-cddc-2105-d68b4e4054bc-dbdcccae {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3b85156f-fdd7-cddc-2105-d68b4e4054ca-dbdcccae {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_3b85156f-fdd7-cddc-2105-d68b4e4054cf-dbdcccae {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_09756ff3-7f42-9ba8-7d77-b05a89b424b3-dbdcccae, #w-node-_09756ff3-7f42-9ba8-7d77-b05a89b424bd-dbdcccae, #w-node-_09756ff3-7f42-9ba8-7d77-b05a89b424c7-dbdcccae, #w-node-_09756ff3-7f42-9ba8-7d77-b05a89b424d1-dbdcccae, #w-node-_09756ff3-7f42-9ba8-7d77-b05a89b424d6-dbdcccae, #w-node-e610b9dc-2eb7-a433-d865-08fae3d29368-dbdcccae, #w-node-e610b9dc-2eb7-a433-d865-08fae3d2936d-dbdcccae, #w-node-e610b9dc-2eb7-a433-d865-08fae3d29372-dbdcccae, #w-node-e610b9dc-2eb7-a433-d865-08fae3d29377-dbdcccae, #w-node-_994b9877-7216-4164-551e-6c15578536e9-dbdcccae, #w-node-d370402d-164e-c8e5-a280-221007460795-dbdcccae, #w-node-f4ba6fff-3434-a5ed-309c-d51c8da316c0-dbdcccae, #w-node-dd13ceac-0bf3-8faf-2e5b-19b667fc9617-dbdcccae, #w-node-e91d1349-3392-cc3d-1407-91417c04f824-dbdcccae, #w-node-_45bb40a0-1014-8445-cf6f-9a73eff96850-dbdcccae, #w-node-_45bb40a0-1014-8445-cf6f-9a73eff96855-dbdcccae, #w-node-_45bb40a0-1014-8445-cf6f-9a73eff9685a-dbdcccae, #w-node-_45bb40a0-1014-8445-cf6f-9a73eff96869-dbdcccae, #w-node-_45bb40a0-1014-8445-cf6f-9a73eff96873-dbdcccae, #w-node-_45bb40a0-1014-8445-cf6f-9a73eff96878-dbdcccae {
  align-self: start;
}

#w-node-_86e64837-0616-515b-4568-76c147234d34-dbdcccae {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_86e64837-0616-515b-4568-76c147234d3f-dbdcccae, #w-node-_86e64837-0616-515b-4568-76c147234d41-dbdcccae {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_86e64837-0616-515b-4568-76c147234d4c-dbdcccae {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_7b122adb-227f-cf98-4e30-18144a5e2f56-dbdcccae {
  grid-area: 1 / 2 / 4 / 4;
}

#w-node-_5cf7fdd2-557f-328a-10cc-25de45165e47-dbdcccae {
  grid-area: 3 / 1 / 5 / 2;
}

#w-node-_6118b979-bbed-09e0-c2ff-7195bf7c1c45-dbdcccae {
  grid-area: 4 / 3 / 6 / 5;
}

#w-node-f532f3a7-055b-fef7-cad1-2a5cb23a7826-dbdcccae {
  grid-area: 5 / 1 / 7 / 3;
}

#w-node-_74727dae-f457-1a8d-6f2f-a6286e21c1a9-dbdcccae {
  grid-area: 6 / 4 / 7 / 5;
}

#w-node-_590a0b1c-fccd-0f20-26b6-63336cff55dd-dbdcccae {
  grid-area: 6 / 3 / 7 / 4;
}

#w-node-ee552af0-4c7b-f6be-d2e0-7d945e6a549e-dbdcccae {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-_0ed265aa-d1aa-7bf4-e998-8740b4194c29-dbdcccae {
  grid-area: 4 / 2 / 5 / 3;
}

@media screen and (min-width: 1440px) {
  #w-node-_86e64837-0616-515b-4568-76c147234d1f-5b9185b6, #w-node-_86e64837-0616-515b-4568-76c147234d1f-dbdcccae {
    justify-self: center;
  }
}

@media screen and (max-width: 991px) {
  #w-node-_86e64837-0616-515b-4568-76c147234d1f-5b9185b6, #w-node-_86e64837-0616-515b-4568-76c147234d1e-5b9185b6 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_86e64837-0616-515b-4568-76c147234d34-5b9185b6 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_86e64837-0616-515b-4568-76c147234d3f-5b9185b6 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_86e64837-0616-515b-4568-76c147234d41-5b9185b6 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_86e64837-0616-515b-4568-76c147234d4c-5b9185b6, #w-node-_86e64837-0616-515b-4568-76c147234d1f-dbdcccae, #w-node-_86e64837-0616-515b-4568-76c147234d1e-dbdcccae {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_86e64837-0616-515b-4568-76c147234d34-dbdcccae {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_86e64837-0616-515b-4568-76c147234d3f-dbdcccae {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_86e64837-0616-515b-4568-76c147234d41-dbdcccae {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_86e64837-0616-515b-4568-76c147234d4c-dbdcccae {
    grid-area: 1 / 1 / 2 / 2;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_620357d2-0a3f-0346-c53f-bc495090172e-5b9185b6, #w-node-_506b8e72-a8fb-5fd7-ff01-93d9f20eb9da-5b9185b6, #w-node-_2bc18578-0090-94b5-917f-febe85bfa85d-5b9185b6, #w-node-_5a45a8dd-cd07-190a-b2e6-1be48d07bf76-5b9185b6, #w-node-_1826b380-6303-b29a-696b-c396ec296600-5b9185b6, #w-node-_3d5cc272-86fd-2feb-9172-d74388dae6fd-5b9185b6, #w-node-_3d5cc272-86fd-2feb-9172-d74388dae700-5b9185b6, #w-node-df4a050a-233b-cae3-fafe-1a612ace02ee-5b9185b6, #w-node-_64fc962a-9ad7-94bb-4c92-3ee09e37b11a-5b9185b6, #w-node-_64fc962a-9ad7-94bb-4c92-3ee09e37b11d-5b9185b6, #w-node-_877479f7-519e-3e26-4043-d0bb0384cdac-5b9185b6, #w-node-_5f9ab265-e01e-6506-0c47-b13669507fdc-5b9185b6, #w-node-fde3dace-25c3-28cd-c06a-36a24d812abc-5b9185b6, #w-node-b3aafb5a-4b01-2bc1-d88b-b2e383d98982-5b9185b6, #w-node-b3aafb5a-4b01-2bc1-d88b-b2e383d98985-5b9185b6, #w-node-_3c51205a-c204-b53e-1b99-17cc20d5e44c-5b9185b6, #w-node-_3c51205a-c204-b53e-1b99-17cc20d5e453-5b9185b6, #w-node-_3c51205a-c204-b53e-1b99-17cc20d5e456-5b9185b6, #w-node-ed072110-3c0e-1732-6af3-5c752e939dea-5b9185b6, #w-node-ed072110-3c0e-1732-6af3-5c752e939df1-5b9185b6, #w-node-ed072110-3c0e-1732-6af3-5c752e939df4-5b9185b6, #w-node-_4fea5ff8-14ad-3d30-d87f-5c4d22572108-5b9185b6, #w-node-f43268f3-bbd5-7604-7470-8d32a2c71485-5b9185b6, #w-node-f43268f3-bbd5-7604-7470-8d32a2c71488-5b9185b6, #w-node-a6829a63-ab6a-2e1a-af57-61b0dc61421d-5b9185b6, #w-node-a6829a63-ab6a-2e1a-af57-61b0dc614224-5b9185b6, #w-node-a6829a63-ab6a-2e1a-af57-61b0dc614227-5b9185b6, #w-node-_845490a6-5721-3d7f-a257-29309f955d97-5b9185b6, #w-node-_845490a6-5721-3d7f-a257-29309f955d9e-5b9185b6, #w-node-_845490a6-5721-3d7f-a257-29309f955da1-5b9185b6, #w-node-b52e8fc4-98e9-83fc-55dd-6afe52a9d837-5b9185b6, #w-node-b52e8fc4-98e9-83fc-55dd-6afe52a9d83e-5b9185b6, #w-node-b52e8fc4-98e9-83fc-55dd-6afe52a9d841-5b9185b6, #w-node-_8d3d62d0-c61b-cc1c-adc3-7615c70a6ac2-5b9185b6, #w-node-_8d3d62d0-c61b-cc1c-adc3-7615c70a6ac9-5b9185b6, #w-node-_8d3d62d0-c61b-cc1c-adc3-7615c70a6acc-5b9185b6, #w-node-bd154c92-4786-096c-afdb-2a856d4e5057-5b9185b6, #w-node-bd154c92-4786-096c-afdb-2a856d4e505e-5b9185b6, #w-node-bd154c92-4786-096c-afdb-2a856d4e5061-5b9185b6, #w-node-d1b57d9d-41c4-0e4b-ae60-386d32593b12-5b9185b6, #w-node-d1b57d9d-41c4-0e4b-ae60-386d32593b19-5b9185b6, #w-node-d1b57d9d-41c4-0e4b-ae60-386d32593b1c-5b9185b6, #w-node-_8df83e6e-1b4f-c0a7-6d8f-162268a396c2-5b9185b6, #w-node-_8df83e6e-1b4f-c0a7-6d8f-162268a396c9-5b9185b6, #w-node-_8df83e6e-1b4f-c0a7-6d8f-162268a396cc-5b9185b6, #w-node-_7d6c807d-e9e9-7503-528e-96a062405ce9-5b9185b6, #w-node-_7d6c807d-e9e9-7503-528e-96a062405cf3-5b9185b6, #w-node-e97c14f3-f446-16be-d6c3-90fc96636a09-5b9185b6, #w-node-e97c14f3-f446-16be-d6c3-90fc96636a10-5b9185b6, #w-node-e97c14f3-f446-16be-d6c3-90fc96636a13-5b9185b6, #w-node-b2480f98-87bb-4f50-e1b0-4f4bc0aa0843-5b9185b6, #w-node-b2480f98-87bb-4f50-e1b0-4f4bc0aa084a-5b9185b6, #w-node-b2480f98-87bb-4f50-e1b0-4f4bc0aa084d-5b9185b6, #w-node-_61594948-5c69-f06d-f237-73bd6787eb77-5b9185b6, #w-node-_61594948-5c69-f06d-f237-73bd6787eb7e-5b9185b6, #w-node-_61594948-5c69-f06d-f237-73bd6787eb81-5b9185b6, #w-node-_4c236217-880f-b0d4-3c15-3c6caf206ea7-5b9185b6, #w-node-_4c236217-880f-b0d4-3c15-3c6caf206eae-5b9185b6, #w-node-_4c236217-880f-b0d4-3c15-3c6caf206eb1-5b9185b6, #w-node-_255bb6f0-1fa8-4990-820e-28831599c06d-5b9185b6, #w-node-_255bb6f0-1fa8-4990-820e-28831599c074-5b9185b6, #w-node-_255bb6f0-1fa8-4990-820e-28831599c077-5b9185b6, #w-node-f7401969-e25c-cb21-e085-d74ae9b4dd72-5b9185b6, #w-node-f7401969-e25c-cb21-e085-d74ae9b4dd79-5b9185b6, #w-node-f7401969-e25c-cb21-e085-d74ae9b4dd7c-5b9185b6, #w-node-b3fba76b-baa0-dbba-6cbe-e798c58d8a86-5b9185b6, #w-node-b3fba76b-baa0-dbba-6cbe-e798c58d8a8d-5b9185b6, #w-node-b3fba76b-baa0-dbba-6cbe-e798c58d8a90-5b9185b6, #w-node-_1c9da0bf-e3cc-941c-4e56-84205aa4e96c-5b9185b6, #w-node-_1c9da0bf-e3cc-941c-4e56-84205aa4e973-5b9185b6, #w-node-_1c9da0bf-e3cc-941c-4e56-84205aa4e976-5b9185b6, #w-node-_5a3cd356-5a3e-5bbb-023a-5b1192450f3d-5b9185b6, #w-node-_5a3cd356-5a3e-5bbb-023a-5b1192450f44-5b9185b6, #w-node-_5a3cd356-5a3e-5bbb-023a-5b1192450f47-5b9185b6, #w-node-_8c639fcc-95c5-d642-8125-7a3b6f075cbb-5b9185b6, #w-node-_8c639fcc-95c5-d642-8125-7a3b6f075cc2-5b9185b6, #w-node-_8c639fcc-95c5-d642-8125-7a3b6f075cc5-5b9185b6, #w-node-_620357d2-0a3f-0346-c53f-bc495090172e-dbdcccae, #w-node-_506b8e72-a8fb-5fd7-ff01-93d9f20eb9da-dbdcccae, #w-node-_2bc18578-0090-94b5-917f-febe85bfa85d-dbdcccae, #w-node-_5a45a8dd-cd07-190a-b2e6-1be48d07bf76-dbdcccae, #w-node-_1826b380-6303-b29a-696b-c396ec296600-dbdcccae, #w-node-_3d5cc272-86fd-2feb-9172-d74388dae6fd-dbdcccae, #w-node-_3d5cc272-86fd-2feb-9172-d74388dae700-dbdcccae, #w-node-df4a050a-233b-cae3-fafe-1a612ace02ee-dbdcccae, #w-node-_64fc962a-9ad7-94bb-4c92-3ee09e37b11a-dbdcccae, #w-node-_64fc962a-9ad7-94bb-4c92-3ee09e37b11d-dbdcccae, #w-node-_877479f7-519e-3e26-4043-d0bb0384cdac-dbdcccae, #w-node-_5f9ab265-e01e-6506-0c47-b13669507fdc-dbdcccae, #w-node-fde3dace-25c3-28cd-c06a-36a24d812abc-dbdcccae, #w-node-b3aafb5a-4b01-2bc1-d88b-b2e383d98982-dbdcccae, #w-node-b3aafb5a-4b01-2bc1-d88b-b2e383d98985-dbdcccae, #w-node-_3c51205a-c204-b53e-1b99-17cc20d5e44c-dbdcccae, #w-node-_3c51205a-c204-b53e-1b99-17cc20d5e453-dbdcccae, #w-node-_3c51205a-c204-b53e-1b99-17cc20d5e456-dbdcccae, #w-node-ed072110-3c0e-1732-6af3-5c752e939dea-dbdcccae, #w-node-ed072110-3c0e-1732-6af3-5c752e939df1-dbdcccae, #w-node-ed072110-3c0e-1732-6af3-5c752e939df4-dbdcccae, #w-node-_4fea5ff8-14ad-3d30-d87f-5c4d22572108-dbdcccae, #w-node-f43268f3-bbd5-7604-7470-8d32a2c71485-dbdcccae, #w-node-f43268f3-bbd5-7604-7470-8d32a2c71488-dbdcccae, #w-node-a6829a63-ab6a-2e1a-af57-61b0dc61421d-dbdcccae, #w-node-a6829a63-ab6a-2e1a-af57-61b0dc614224-dbdcccae, #w-node-a6829a63-ab6a-2e1a-af57-61b0dc614227-dbdcccae, #w-node-_845490a6-5721-3d7f-a257-29309f955d97-dbdcccae, #w-node-_845490a6-5721-3d7f-a257-29309f955d9e-dbdcccae, #w-node-_845490a6-5721-3d7f-a257-29309f955da1-dbdcccae, #w-node-b52e8fc4-98e9-83fc-55dd-6afe52a9d837-dbdcccae, #w-node-b52e8fc4-98e9-83fc-55dd-6afe52a9d83e-dbdcccae, #w-node-b52e8fc4-98e9-83fc-55dd-6afe52a9d841-dbdcccae, #w-node-_8d3d62d0-c61b-cc1c-adc3-7615c70a6ac2-dbdcccae, #w-node-_8d3d62d0-c61b-cc1c-adc3-7615c70a6ac9-dbdcccae, #w-node-_8d3d62d0-c61b-cc1c-adc3-7615c70a6acc-dbdcccae, #w-node-bd154c92-4786-096c-afdb-2a856d4e5057-dbdcccae, #w-node-bd154c92-4786-096c-afdb-2a856d4e505e-dbdcccae, #w-node-bd154c92-4786-096c-afdb-2a856d4e5061-dbdcccae, #w-node-d1b57d9d-41c4-0e4b-ae60-386d32593b12-dbdcccae, #w-node-d1b57d9d-41c4-0e4b-ae60-386d32593b19-dbdcccae, #w-node-d1b57d9d-41c4-0e4b-ae60-386d32593b1c-dbdcccae, #w-node-_8df83e6e-1b4f-c0a7-6d8f-162268a396c2-dbdcccae, #w-node-_8df83e6e-1b4f-c0a7-6d8f-162268a396c9-dbdcccae, #w-node-_8df83e6e-1b4f-c0a7-6d8f-162268a396cc-dbdcccae, #w-node-_7d6c807d-e9e9-7503-528e-96a062405ce9-dbdcccae, #w-node-_7d6c807d-e9e9-7503-528e-96a062405cf3-dbdcccae, #w-node-e97c14f3-f446-16be-d6c3-90fc96636a09-dbdcccae, #w-node-e97c14f3-f446-16be-d6c3-90fc96636a10-dbdcccae, #w-node-e97c14f3-f446-16be-d6c3-90fc96636a13-dbdcccae, #w-node-b2480f98-87bb-4f50-e1b0-4f4bc0aa0843-dbdcccae, #w-node-b2480f98-87bb-4f50-e1b0-4f4bc0aa084a-dbdcccae, #w-node-b2480f98-87bb-4f50-e1b0-4f4bc0aa084d-dbdcccae, #w-node-_61594948-5c69-f06d-f237-73bd6787eb77-dbdcccae, #w-node-_61594948-5c69-f06d-f237-73bd6787eb7e-dbdcccae, #w-node-_61594948-5c69-f06d-f237-73bd6787eb81-dbdcccae, #w-node-_4c236217-880f-b0d4-3c15-3c6caf206ea7-dbdcccae, #w-node-_4c236217-880f-b0d4-3c15-3c6caf206eae-dbdcccae, #w-node-_4c236217-880f-b0d4-3c15-3c6caf206eb1-dbdcccae, #w-node-_255bb6f0-1fa8-4990-820e-28831599c06d-dbdcccae, #w-node-_255bb6f0-1fa8-4990-820e-28831599c074-dbdcccae, #w-node-_255bb6f0-1fa8-4990-820e-28831599c077-dbdcccae, #w-node-f7401969-e25c-cb21-e085-d74ae9b4dd72-dbdcccae, #w-node-f7401969-e25c-cb21-e085-d74ae9b4dd79-dbdcccae, #w-node-f7401969-e25c-cb21-e085-d74ae9b4dd7c-dbdcccae, #w-node-b3fba76b-baa0-dbba-6cbe-e798c58d8a86-dbdcccae, #w-node-b3fba76b-baa0-dbba-6cbe-e798c58d8a8d-dbdcccae, #w-node-b3fba76b-baa0-dbba-6cbe-e798c58d8a90-dbdcccae, #w-node-_1c9da0bf-e3cc-941c-4e56-84205aa4e96c-dbdcccae, #w-node-_1c9da0bf-e3cc-941c-4e56-84205aa4e973-dbdcccae, #w-node-_1c9da0bf-e3cc-941c-4e56-84205aa4e976-dbdcccae, #w-node-_5a3cd356-5a3e-5bbb-023a-5b1192450f3d-dbdcccae, #w-node-_5a3cd356-5a3e-5bbb-023a-5b1192450f44-dbdcccae, #w-node-_5a3cd356-5a3e-5bbb-023a-5b1192450f47-dbdcccae, #w-node-_8c639fcc-95c5-d642-8125-7a3b6f075cbb-dbdcccae, #w-node-_8c639fcc-95c5-d642-8125-7a3b6f075cc2-dbdcccae, #w-node-_8c639fcc-95c5-d642-8125-7a3b6f075cc5-dbdcccae {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_86e64837-0616-515b-4568-76c147234d1f-5b9185b6 {
    grid-row: 2 / 3;
    grid-column-start: 1;
  }

  #w-node-_506b8e72-a8fb-5fd7-ff01-93d9f20eb9da-5b9185b6, #w-node-_1826b380-6303-b29a-696b-c396ec296600-5b9185b6, #w-node-df4a050a-233b-cae3-fafe-1a612ace02ee-5b9185b6, #w-node-_877479f7-519e-3e26-4043-d0bb0384cdac-5b9185b6, #w-node-fde3dace-25c3-28cd-c06a-36a24d812abc-5b9185b6, #w-node-_3c51205a-c204-b53e-1b99-17cc20d5e44c-5b9185b6, #w-node-ed072110-3c0e-1732-6af3-5c752e939dea-5b9185b6, #w-node-_4fea5ff8-14ad-3d30-d87f-5c4d22572108-5b9185b6, #w-node-a6829a63-ab6a-2e1a-af57-61b0dc61421d-5b9185b6, #w-node-_845490a6-5721-3d7f-a257-29309f955d97-5b9185b6, #w-node-b52e8fc4-98e9-83fc-55dd-6afe52a9d837-5b9185b6, #w-node-_8d3d62d0-c61b-cc1c-adc3-7615c70a6ac2-5b9185b6, #w-node-bd154c92-4786-096c-afdb-2a856d4e5057-5b9185b6, #w-node-d1b57d9d-41c4-0e4b-ae60-386d32593b12-5b9185b6, #w-node-_8df83e6e-1b4f-c0a7-6d8f-162268a396c2-5b9185b6, #w-node-_7d6c807d-e9e9-7503-528e-96a062405ce9-5b9185b6, #w-node-e97c14f3-f446-16be-d6c3-90fc96636a09-5b9185b6, #w-node-b2480f98-87bb-4f50-e1b0-4f4bc0aa0843-5b9185b6, #w-node-_61594948-5c69-f06d-f237-73bd6787eb77-5b9185b6, #w-node-_255bb6f0-1fa8-4990-820e-28831599c06d-5b9185b6, #w-node-f7401969-e25c-cb21-e085-d74ae9b4dd72-5b9185b6, #w-node-b3fba76b-baa0-dbba-6cbe-e798c58d8a86-5b9185b6, #w-node-_1c9da0bf-e3cc-941c-4e56-84205aa4e96c-5b9185b6, #w-node-_5a3cd356-5a3e-5bbb-023a-5b1192450f3d-5b9185b6, #w-node-_8c639fcc-95c5-d642-8125-7a3b6f075cbb-5b9185b6 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_86e64837-0616-515b-4568-76c147234d1f-dbdcccae {
    grid-row: 2 / 3;
    grid-column-start: 1;
  }

  #w-node-_506b8e72-a8fb-5fd7-ff01-93d9f20eb9da-dbdcccae, #w-node-_1826b380-6303-b29a-696b-c396ec296600-dbdcccae, #w-node-df4a050a-233b-cae3-fafe-1a612ace02ee-dbdcccae, #w-node-_877479f7-519e-3e26-4043-d0bb0384cdac-dbdcccae, #w-node-fde3dace-25c3-28cd-c06a-36a24d812abc-dbdcccae, #w-node-_3c51205a-c204-b53e-1b99-17cc20d5e44c-dbdcccae, #w-node-ed072110-3c0e-1732-6af3-5c752e939dea-dbdcccae, #w-node-_4fea5ff8-14ad-3d30-d87f-5c4d22572108-dbdcccae, #w-node-a6829a63-ab6a-2e1a-af57-61b0dc61421d-dbdcccae, #w-node-_845490a6-5721-3d7f-a257-29309f955d97-dbdcccae, #w-node-b52e8fc4-98e9-83fc-55dd-6afe52a9d837-dbdcccae, #w-node-_8d3d62d0-c61b-cc1c-adc3-7615c70a6ac2-dbdcccae, #w-node-bd154c92-4786-096c-afdb-2a856d4e5057-dbdcccae, #w-node-d1b57d9d-41c4-0e4b-ae60-386d32593b12-dbdcccae, #w-node-_8df83e6e-1b4f-c0a7-6d8f-162268a396c2-dbdcccae, #w-node-_7d6c807d-e9e9-7503-528e-96a062405ce9-dbdcccae, #w-node-e97c14f3-f446-16be-d6c3-90fc96636a09-dbdcccae, #w-node-b2480f98-87bb-4f50-e1b0-4f4bc0aa0843-dbdcccae, #w-node-_61594948-5c69-f06d-f237-73bd6787eb77-dbdcccae, #w-node-_255bb6f0-1fa8-4990-820e-28831599c06d-dbdcccae, #w-node-f7401969-e25c-cb21-e085-d74ae9b4dd72-dbdcccae, #w-node-b3fba76b-baa0-dbba-6cbe-e798c58d8a86-dbdcccae, #w-node-_1c9da0bf-e3cc-941c-4e56-84205aa4e96c-dbdcccae, #w-node-_5a3cd356-5a3e-5bbb-023a-5b1192450f3d-dbdcccae, #w-node-_8c639fcc-95c5-d642-8125-7a3b6f075cbb-dbdcccae {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}


@font-face {
  font-family: 'Portosans';
  src: url('../fonts/PortoSans-RegularItalic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Portosans';
  src: url('../fonts/PortoSans-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Porto Sans Stencil';
  src: url('../fonts/PortoSansStencil-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Portoserif';
  src: url('../fonts/PortoSerif-BoldItalic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Portosans';
  src: url('../fonts/PortoSans-BoldItalic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Portoserif';
  src: url('../fonts/PortoSerif-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Portoserif';
  src: url('../fonts/PortoSerif-RegularItalic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Portoserif';
  src: url('../fonts/PortoSerif-LightItalic.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Portosans';
  src: url('../fonts/PortoSans-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Portoserif';
  src: url('../fonts/PortoSerif-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Portosansstencil';
  src: url('../fonts/PortoSansStencil-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Portosans';
  src: url('../fonts/PortoSans-LightItalic.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Portoserif';
  src: url('../fonts/PortoSerif-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Portosans';
  src: url('../fonts/PortoSans-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Portosansstencil';
  src: url('../fonts/PortoSansStencil-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}