:root {
  --black: black;
  --off-white: #eee;
  --lighter-grey: #43464d;
  --grey: #32343a;
  --white: white;
  --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);
  font-family: Portosans, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
}

h1 {
  margin-top: 20px;
  margin-bottom: 15px;
  font-size: 44px;
  font-weight: 400;
  line-height: 62px;
}

h2 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: zuume-cut, sans-serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 50px;
}

h3 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: zuume-cut, sans-serif;
  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 {
  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-left: 30px;
  margin-right: 30px;
  font-family: Portosans, sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}

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

.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: .7;
  font-family: zuume-cut, sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.2;
}

.global-button {
  background-color: var(--black);
  color: #fff;
  text-align: center;
  letter-spacing: .2rem;
  text-transform: uppercase;
  border-radius: .5rem;
  padding: 10px 15px;
  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-invert {
  border: 1px solid var(--white);
}

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

.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: uppercase;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: zuume-cut, sans-serif;
  font-size: 6rem;
  font-style: italic;
  font-weight: 700;
  line-height: .8;
}

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

.motto-heading {
  width: 35ch;
  margin-top: 10px;
  margin-bottom: 15px;
  font-family: zuume-cut, sans-serif;
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
}

.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;
  display: flex;
}

.navigation-wrap {
  z-index: 9001;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.navigation {
  z-index: 9999;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: #fffc;
  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;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 3px solid #0000;
  margin-left: 5px;
  margin-right: 5px;
  padding: 1.2rem 5px;
  font-family: zuume-cut, sans-serif;
  font-size: 1rem;
  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);
}

.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 {
  background-image: url('../images/team-bonding_1.avif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 1.2rem;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100%;
  max-height: 100%;
}

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

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

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

.motto-wrap {
  opacity: 0;
  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;
  padding-top: .5rem;
  padding-bottom: .1rem;
  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: 1rem;
  grid-row-gap: 1rem;
  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;
  height: 75svh;
  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: block;
}

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

.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;
  position: relative;
}

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

.logo-nav {
  color: var(--black);
  letter-spacing: .02em;
  text-transform: uppercase;
  font-family: zuume-cut, sans-serif;
  font-size: 2.5rem;
  font-style: italic;
  font-weight: 700;
  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;
  justify-content: flex-start;
  align-items: center;
  display: none;
}

.lang-button {
  background-color: var(--black);
  color: var(--white);
  letter-spacing: .1rem;
  text-transform: uppercase;
  border-radius: .5rem;
  padding: 8px 12px;
  font-size: .7rem;
}

.lang-button:hover {
  background-color: var(--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;
}

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

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

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

.inscricao-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-topbottom-margin.is-keynotes {
  max-width: 1250px;
}

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

.container-ese.is-insc {
  max-width: 900px;
}

.header-grid {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.25fr;
  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 {
  border-radius: 0;
  max-height: 3.5rem;
}

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

.logo1_logo.is-ined {
  max-height: 6rem;
  margin-top: -4px;
}

.logo1_logo.is-porto {
  max-height: 2.5rem;
}

.logo1_logo.is-ipdj {
  max-height: 6rem;
}

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

.section_logos {
  margin-bottom: 1rem;
}

.max-width-large {
  width: 100%;
  max-width: 60ch;
  margin-bottom: 1rem;
}

.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-family: zuume-cut, sans-serif;
  font-size: 2.5rem;
  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: 2.5rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  padding-top: .5rem;
  padding-bottom: .5rem;
  display: flex;
}

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

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

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

.about-image-wrapper {
  object-fit: cover;
  border-radius: 1.5rem;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.about-img {
  object-fit: cover;
  object-position: 70% 50%;
  border-radius: 0%;
  min-width: 100%;
  min-height: 100%;
}

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

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

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

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

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

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

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

.text-size-medium.is-title {
  text-transform: uppercase;
  font-weight: 700;
}

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

.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: uppercase;
  font-size: 4rem;
  font-style: italic;
  font-weight: 700;
  line-height: 1;
}

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

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

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

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

.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_answer {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  overflow: hidden;
}

.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(--off-black);
  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;
}

.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-family: zuume-cut, sans-serif;
  font-size: 4rem;
  font-style: italic;
  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);
  padding-bottom: .5rem;
  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-title-wrap {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-top: 3rem;
  padding-bottom: 3rem;
  display: flex;
}

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

.program-grid-line {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: .25fr 1.5fr;
  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;
}

.copy-holder.is-hidden {
  display: none;
}

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

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

.program-paragraph.is-bigger {
  font-size: 1.2rem;
}

.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;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.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 {
  margin-bottom: .5rem;
  font-size: 1.3rem;
}

.titulo-pessoa {
  color: var(--lighter-grey);
  border-bottom: 1px solid #0000001a;
  margin-bottom: .3rem;
  padding-bottom: .2rem;
  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;
}

.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;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: stretch;
  max-width: 1000px;
  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-transform: uppercase;
  font-size: 1.2rem;
  font-weight: 700;
}

.txt-comissao.is-margin-less {
  margin-bottom: .1rem;
}

.comissao-divider {
  height: 2rem;
}

.affiliation-span {
  color: var(--opacity-black);
  margin-top: -.6rem;
  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;
}

.spacer.is-small {
  height: 5rem;
}

.spacer.is-smaller {
  height: 2.5rem;
}

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

.keynote-title-holder {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding-top: 3rem;
  padding-bottom: 3rem;
  display: flex;
}

.faq-v2-accordion {
  border: 1px solid var(--black);
  box-shadow: 0 0 0 0 var(--black);
  transition: all .2s;
  transform: translate(0);
}

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

.big-divider {
  background-color: var(--off-white);
  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;
}

.big-divider.is-no-margin {
  width: 30%;
  margin-bottom: 0;
}

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

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

.anunciar {
  text-align: center;
  width: 30ch;
  margin-left: auto;
  margin-right: auto;
  padding-top: 65px;
  padding-bottom: 65px;
  font-size: 1.5rem;
}

.anunciar.is-left-align {
  text-align: left;
  width: 27ch;
  padding-top: 0;
  padding-bottom: 0;
}

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

.ordered-list-josh {
  font-size: 1.2rem;
  list-style-type: decimal;
}

.ordered-list-josh.is-un {
  list-style-type: disc;
}

.smaller-txt {
  font-size: 1rem;
  font-weight: 300;
}

.com-spacer {
  height: 1rem;
}

.person-wrap {
  margin-bottom: .2rem;
}

.contact-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.contact-card {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border: 1px solid var(--lighter-grey);
  box-shadow: 0 0 0 0 var(--black);
  border-radius: 1rem;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  padding: 2rem;
  transition: all .2s cubic-bezier(.77, 0, .175, 1);
  display: flex;
}

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

.icon-wrap {
  width: 14px;
}

.contact-info-wrap {
  width: 100%;
}

.arrow-icon {
  border-radius: 0;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-end;
}

.line-top {
  background-color: var(--black);
  border-radius: 1rem;
  width: 70%;
  height: 2px;
  inset: 0% 0% auto auto;
}

.line-right {
  background-color: var(--black);
  border-radius: 1rem;
  width: 2px;
  height: 70px;
  inset: 0% 0% auto auto;
}

.line-diagonal {
  background-color: var(--blue);
  transform-style: preserve-3d;
  width: 100%;
  height: 2px;
  inset: 0% 0% auto auto;
  transform: rotateX(-80deg)rotateY(-123deg)rotateZ(-91deg);
}

.contact-name {
  font-size: 1.2rem;
}

.email-link {
  font-size: 1rem;
  text-decoration: underline;
}

.faqs-divider {
  background-color: var(--opacity-black);
  opacity: .75;
  width: 75%;
  height: 2px;
  margin: 3.5rem auto;
}

.faqs-small-title {
  text-align: center;
  margin-bottom: 2rem;
  font-family: zuume-cut, sans-serif;
  font-size: 2.5rem;
  font-style: italic;
  font-weight: 700;
}

.exemplo-wrap {
  box-shadow: 4px 4px 0 0 var(--black);
  border: 1px solid #000;
  padding: 20px 15px 25px;
}

.exemplo-spacer {
  width: 100%;
  height: 30px;
}

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

.p-spacer {
  height: 1rem;
}

.not-bold-prog-title {
  margin-left: .5rem;
  font-weight: 400;
}

.temas-wrap {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 1rem;
  margin-bottom: 2rem;
  margin-left: 1rem;
  display: flex;
}

.sec-heading {
  opacity: .7;
  margin-bottom: 10px;
  font-family: zuume-cut, sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.2;
}

.preloader {
  z-index: 12000;
  background-color: var(--off-white);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100svw;
  height: 100svh;
  display: none;
  position: fixed;
  inset: 0%;
}

.logo-preload-wrap {
  aspect-ratio: 1;
  border: 8px solid var(--off-black);
  border-radius: 100%;
  padding: 70px;
}

.preload-logo {
  text-align: left;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: zuume-cut, sans-serif;
  font-size: 5rem;
  font-style: italic;
  font-weight: 700;
  line-height: .8;
}

.fouc-hide {
  opacity: 0;
  display: none;
}

.page-transition {
  z-index: 12000;
  background-color: var(--white);
  width: 100%;
  height: 100svh;
  display: none;
  position: fixed;
  inset: 0%;
}

.asterisk-wrap {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 65px;
  padding-bottom: 65px;
  display: flex;
}

.asterisk {
  margin-top: -5px;
  font-size: 3rem;
}

.orcids {
  border: 1px solid var(--off-black);
  border-radius: .2rem;
  justify-content: flex-start;
  align-items: center;
  height: auto;
  padding: 5px 10px;
  font-size: .8rem;
  display: flex;
}

.title-wrap {
  border-top: 1px solid var(--off-black);
  border-bottom: 1px solid #000;
  margin-bottom: 1rem;
  padding: .5rem .5rem .5rem 0;
}

@media screen and (min-width: 1920px) {
  .container-ese.is-topbottom-margin.is-keynotes, .container-ese.is-insc {
    max-width: 1600px;
  }

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

@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: .7rem;
  }

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

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

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

  .main-heading.fouc-hide {
    opacity: 100;
    display: block;
  }

  .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;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .navigation {
    height: 75px;
    padding: 25px 30px;
    display: flex;
    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: 5rem;
    grid-row-gap: 5rem;
    background-color: #fff;
    flex-direction: column;
    flex: none;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100svh;
    margin-left: auto;
    margin-right: auto;
    padding-top: 15px;
    padding-bottom: 15px;
    font-family: Portosans, sans-serif;
    display: flex;
  }

  .cta-text {
    width: auto;
  }

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

  .header-img.fouc-hide {
    opacity: 100;
    display: block;
  }

  .motto-wrap {
    opacity: 100;
  }

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

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

  .button-wrapper.fouc-hide {
    opacity: 100;
    display: flex;
  }

  .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: 90%;
    margin: 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;
    grid-auto-rows: .75fr;
  }

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

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

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

  .logo1_logo.is-porto {
    max-height: 2rem;
  }

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

  .paragraph {
    font-size: 1rem;
  }

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

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

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

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

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

  .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: 2rem;
  }

  .faqs_content {
    grid-column-gap: 1rem;
    grid-row-gap: 3rem;
    grid-template-columns: 1fr 1.5fr;
    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-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-columns: 1fr 1fr;
  }

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

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

  .inscricao-card {
    padding: 1rem;
  }

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

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

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

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

  .program-paragraph.is-bigger {
    font-size: 1rem;
  }

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

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

  .comissoes-wrapper {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .spacer.is-small {
    height: .5rem;
  }

  .spacer.is-maring-top-neg {
    margin-top: -3rem;
  }

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

  .anunciar {
    padding-top: 40px;
    font-size: 1rem;
  }

  .anunciar.is-left-align {
    text-align: left;
    width: 40ch;
    padding-top: 0;
    padding-bottom: 0;
  }

  .ordered-list-josh, .ordered-list-josh.is-un {
    font-size: 1rem;
  }

  .sec-heading.fouc-hide {
    opacity: 100;
    font-size: 2rem;
    display: block;
  }

  .indented {
    margin-left: 2rem;
  }

  .asterisk-wrap {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 40px;
    padding-bottom: 20px;
    display: flex;
  }

  .asterisk {
    margin-top: -5px;
    font-size: 2rem;
  }
}

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

  .global-button {
    padding: 8px 12px;
    font-size: .6rem;
  }

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

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

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

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

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

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

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

  .navigation-item {
    padding-top: 10px;
    padding-bottom: 1px;
  }

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

  .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 {
    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: 2.5rem;
    grid-row-gap: 2.5rem;
    flex-flow: row;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-auto-columns: 100%;
    justify-content: flex-start;
    align-items: center;
    display: grid;
  }

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

  .margin-bottom.margin-medium {
    justify-content: flex-start;
    align-items: flex-start;
  }

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

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

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

  .nav-itens-wrapper {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
  }

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

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

  .lang-button {
    line-height: 1;
  }

  .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-template-columns: 1fr 1fr;
    grid-auto-rows: .5fr;
    min-height: auto;
  }

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

  .logo1_logo {
    max-height: 3rem;
  }

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

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

  .logo1_logo.is-porto {
    max-height: 1.5rem;
  }

  .logo1_logo.is-ipdj, .logo1_logo.is-cnapef {
    max-height: 4.5rem;
  }

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

  .logo1_list {
    grid-column-gap: 2rem;
    padding-top: 1rem;
  }

  .about-image-wrapper {
    position: sticky;
    top: 20svh;
  }

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

  .about-wrapper.is-top {
    grid-column-gap: 1rem;
    grid-row-gap: .5rem;
    grid-template-rows: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    position: relative;
  }

  .about-wrapper.is-bottom {
    grid-template-rows: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .equipa-section {
    margin-top: 1rem;
  }

  .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: 2rem;
  }

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

  .faq6_icon-wrapper {
    width: 1.75rem;
  }

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

  .faq6_question {
    padding: 1rem 1.25rem;
  }

  .faq6_answer {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

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

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

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

  .inscricao-feature-list {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    border-left: 1px solid var(--opacity-black);
    width: 100%;
    margin-bottom: 1rem;
    margin-right: 0;
    padding-left: 1rem;
  }

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

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

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

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

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

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

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

  .label-inscricao {
    margin-left: 0;
  }

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

  .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: .5fr 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;
  }

  .titulo-pessoa.is-last {
    border-bottom-style: none;
  }

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

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

  .anunciar {
    padding-top: 20px;
    padding-bottom: 30px;
  }

  .sec-heading.fouc-hide {
    font-size: 1.5rem;
  }
}

@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: 1.1rem;
  }

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

  .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: 1.5rem;
  }

  .main-heading.fouc-hide {
    font-size: 2.8rem;
  }

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

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

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

  .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: 2px;
    grid-row-gap: 2px;
    flex-flow: column;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    justify-content: space-between;
    align-items: flex-start;
    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: 100svh;
    min-height: 100svh;
  }

  .button-wrapper {
    flex-direction: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

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

  .button-wrapper.fouc-hide {
    flex-flow: row;
  }

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

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

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

  .lang-buttons-wrapper {
    height: 100%;
  }

  .lang-button {
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 8px 10px;
    font-size: .6rem;
    line-height: 1;
    display: flex;
  }

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

  .invisi-divider {
    display: none;
  }

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

  .inscricao-section {
    margin-left: auto;
    margin-right: auto;
    overflow: visible;
  }

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

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

  .logo1_logo.is-porto {
    max-height: 1.7rem;
  }

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

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

  .about-image-wrapper {
    position: relative;
    top: auto;
  }

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

  .about-wrapper.is-top, .about-wrapper.is-bottom {
    grid-template-rows: 1fr;
    grid-template-columns: 1fr;
  }

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

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

  .inscricao-button-holder.margin-medium {
    margin-top: 1rem;
  }

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

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

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

  .inscricao_grid-list {
    max-width: 90svw;
    margin-left: auto;
    margin-right: auto;
  }

  .inscricao-wrap {
    width: 95svw;
    max-width: 95svw;
    margin-left: auto;
    margin-right: auto;
  }

  .inscricao-feature-list {
    border-top: 1px solid #000;
    border-left-style: none;
    width: 100%;
    padding-left: 0;
  }

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

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

  .inscricao_component {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

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

  .padding-inscricao {
    width: 100%;
    max-width: 100%;
    padding-bottom: 0;
    padding-left: .5rem;
    padding-right: .5rem;
  }

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

  .inscricao-card {
    max-width: 100%;
    padding: 1rem;
  }

  .group-top {
    max-width: 100%;
  }

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

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

  .program-grid-line {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
  }

  .program-wrap {
    margin-top: .25rem;
    margin-bottom: 1rem;
    padding: 1%;
  }

  .hour-p {
    font-size: .7rem;
  }

  .program-title, .program-title.is-person {
    font-size: .8rem;
  }

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

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

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

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

  .team8_social {
    flex-flow: wrap;
  }

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

  .keynote-card {
    grid-template-columns: 1fr 1.75fr;
  }

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

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

  .titulo-pessoa {
    font-size: .8rem;
  }

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

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

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

  .spacer.is-small {
    height: 1.5rem;
  }

  .spacer.is-small.is-xs {
    height: .5rem;
  }

  .program-title-holder {
    margin-top: 0;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .keynote-title-holder {
    padding-top: 1rem;
    padding-bottom: 1.5rem;
  }

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

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

  .anunciar.is-left-align {
    width: auto;
    max-width: 95%;
  }

  .ordered-list-josh.is-un {
    padding-left: 20px;
    font-size: .9rem;
  }

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

  .contact-card {
    padding: 1rem 1.5rem;
  }

  .sec-heading.fouc-hide {
    font-size: 1.7rem;
  }
}

#w-node-_09756ff3-7f42-9ba8-7d77-b05a89b424b3-7e906e48, #w-node-_09756ff3-7f42-9ba8-7d77-b05a89b424bd-7e906e48, #w-node-_09756ff3-7f42-9ba8-7d77-b05a89b424d1-7e906e48, #w-node-_09756ff3-7f42-9ba8-7d77-b05a89b424d6-7e906e48, #w-node-e610b9dc-2eb7-a433-d865-08fae3d29368-7e906e48, #w-node-e610b9dc-2eb7-a433-d865-08fae3d2936d-7e906e48, #w-node-e610b9dc-2eb7-a433-d865-08fae3d29372-7e906e48, #w-node-e610b9dc-2eb7-a433-d865-08fae3d29377-7e906e48, #w-node-_6ddcae2c-22d9-a622-180e-c614c746bb9b-7e906e48, #w-node-_6ddcae2c-22d9-a622-180e-c614c746bba0-7e906e48, #w-node-_6ddcae2c-22d9-a622-180e-c614c746bba5-7e906e48, #w-node-_6ddcae2c-22d9-a622-180e-c614c746bbaa-7e906e48, #w-node-a5e3c10f-ec9a-6ecd-6cbf-ca04ba0d1ce2-7e906e48, #w-node-a5e3c10f-ec9a-6ecd-6cbf-ca04ba0d1ce7-7e906e48, #w-node-a5e3c10f-ec9a-6ecd-6cbf-ca04ba0d1cec-7e906e48, #w-node-a5e3c10f-ec9a-6ecd-6cbf-ca04ba0d1cf1-7e906e48 {
  align-self: start;
}

#w-node-_83ba2d7f-5cba-a2a9-bdf1-0f0cbf0e822c-51e627e8 {
  align-self: center;
}

#w-node-_421df62a-c217-12af-eee8-27f88a387918-7e906e4f {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_421df62a-c217-12af-eee8-27f88a387928-7e906e4f {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_421df62a-c217-12af-eee8-27f88a387918-7e906e50 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_421df62a-c217-12af-eee8-27f88a387928-7e906e50 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_421df62a-c217-12af-eee8-27f88a387918-7e906e51 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_421df62a-c217-12af-eee8-27f88a387928-7e906e51 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_09756ff3-7f42-9ba8-7d77-b05a89b424b3-754b0f97, #w-node-_09756ff3-7f42-9ba8-7d77-b05a89b424bd-754b0f97, #w-node-_09756ff3-7f42-9ba8-7d77-b05a89b424c7-754b0f97, #w-node-_09756ff3-7f42-9ba8-7d77-b05a89b424d1-754b0f97, #w-node-_09756ff3-7f42-9ba8-7d77-b05a89b424d6-754b0f97, #w-node-e610b9dc-2eb7-a433-d865-08fae3d29368-754b0f97, #w-node-e610b9dc-2eb7-a433-d865-08fae3d2936d-754b0f97, #w-node-e610b9dc-2eb7-a433-d865-08fae3d29372-754b0f97, #w-node-e610b9dc-2eb7-a433-d865-08fae3d29377-754b0f97, #w-node-_994b9877-7216-4164-551e-6c15578536e9-754b0f97, #w-node-d370402d-164e-c8e5-a280-221007460795-754b0f97, #w-node-f4ba6fff-3434-a5ed-309c-d51c8da316c0-754b0f97, #w-node-dd13ceac-0bf3-8faf-2e5b-19b667fc9617-754b0f97, #w-node-e91d1349-3392-cc3d-1407-91417c04f824-754b0f97, #w-node-_6ddcae2c-22d9-a622-180e-c614c746bb9b-754b0f97, #w-node-_6ddcae2c-22d9-a622-180e-c614c746bba0-754b0f97, #w-node-_6ddcae2c-22d9-a622-180e-c614c746bba5-754b0f97, #w-node-_6ddcae2c-22d9-a622-180e-c614c746bbaa-754b0f97, #w-node-_6ddcae2c-22d9-a622-180e-c614c746bbaf-754b0f97, #w-node-_6ddcae2c-22d9-a622-180e-c614c746bbb4-754b0f97, #w-node-_6ddcae2c-22d9-a622-180e-c614c746bbb9-754b0f97, #w-node-_6ddcae2c-22d9-a622-180e-c614c746bbbe-754b0f97, #w-node-_6ddcae2c-22d9-a622-180e-c614c746bbc3-754b0f97, #w-node-a5e3c10f-ec9a-6ecd-6cbf-ca04ba0d1ce2-754b0f97, #w-node-a5e3c10f-ec9a-6ecd-6cbf-ca04ba0d1ce7-754b0f97, #w-node-a5e3c10f-ec9a-6ecd-6cbf-ca04ba0d1cec-754b0f97, #w-node-a5e3c10f-ec9a-6ecd-6cbf-ca04ba0d1cf1-754b0f97, #w-node-a5e3c10f-ec9a-6ecd-6cbf-ca04ba0d1cf6-754b0f97, #w-node-a5e3c10f-ec9a-6ecd-6cbf-ca04ba0d1cfb-754b0f97, #w-node-a5e3c10f-ec9a-6ecd-6cbf-ca04ba0d1d00-754b0f97, #w-node-a5e3c10f-ec9a-6ecd-6cbf-ca04ba0d1d05-754b0f97, #w-node-a5e3c10f-ec9a-6ecd-6cbf-ca04ba0d1d0a-754b0f97 {
  align-self: start;
}

@media screen and (max-width: 991px) {
  #w-node-_86e64837-0616-515b-4568-76c147234d1f-7e906e48 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_86e64837-0616-515b-4568-76c147234d1e-7e906e48 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_421df62a-c217-12af-eee8-27f88a387928-7e906e4f, #w-node-_421df62a-c217-12af-eee8-27f88a387928-7e906e50, #w-node-_421df62a-c217-12af-eee8-27f88a387928-7e906e51, #w-node-_86e64837-0616-515b-4568-76c147234d1f-754b0f97 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_86e64837-0616-515b-4568-76c147234d1e-754b0f97 {
    grid-area: 1 / 1 / 2 / 2;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_86e64837-0616-515b-4568-76c147234d1f-7e906e48 {
    grid-area: 1 / 2 / 2 / 3;
  }

  #w-node-_0449f68f-35ff-7dd0-262a-830f93b22d8e-7e906e48 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_620357d2-0a3f-0346-c53f-bc495090172e-7e906e48 {
    grid-area: 1 / 2 / 4 / 4;
  }

  #w-node-_4c0e30b5-6cfa-3826-82ec-38b5e87714b8-7e906e48 {
    grid-area: 1 / 1 / 4 / 2;
  }

  #w-node-_4c0e30b5-6cfa-3826-82ec-38b5e87714b6-7e906e48 {
    grid-area: 1 / 2 / 2 / 3;
  }

  #w-node-d387124f-f3da-5185-c27d-e2cd6f7505a7-7e906e48 {
    grid-area: 2 / 2 / 3 / 3;
  }

  #w-node-_5a45a8dd-cd07-190a-b2e6-1be48d07bf76-7e906e48 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_555818e4-915b-4f04-cc08-096f21eeee0a-7e906e48 {
    grid-area: 2 / 2 / 3 / 3;
  }

  #w-node-_555818e4-915b-4f04-cc08-096f21eeee18-7e906e48 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-a253563a-fe56-b274-0501-3295e8d3fa0d-7e906e48 {
    grid-area: 2 / 2 / 3 / 3;
  }

  #w-node-a253563a-fe56-b274-0501-3295e8d3fa1b-7e906e48, #w-node-_2bc18578-0090-94b5-917f-febe85bfa85d-754b0f97, #w-node-_5a45a8dd-cd07-190a-b2e6-1be48d07bf76-754b0f97, #w-node-_3d5cc272-86fd-2feb-9172-d74388dae6fd-754b0f97, #w-node-_3d5cc272-86fd-2feb-9172-d74388dae700-754b0f97, #w-node-_64fc962a-9ad7-94bb-4c92-3ee09e37b11a-754b0f97, #w-node-_64fc962a-9ad7-94bb-4c92-3ee09e37b11d-754b0f97 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_86e64837-0616-515b-4568-76c147234d1f-7e906e48 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_0449f68f-35ff-7dd0-262a-830f93b22d8e-7e906e48 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_620357d2-0a3f-0346-c53f-bc495090172e-7e906e48 {
    grid-area: span 2 / span 2 / span 2 / span 2;
  }

  #w-node-_4c0e30b5-6cfa-3826-82ec-38b5e87714b8-7e906e48 {
    grid-area: span 3 / span 1 / span 3 / span 1;
  }

  #w-node-_4c0e30b5-6cfa-3826-82ec-38b5e87714b6-7e906e48 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-d387124f-f3da-5185-c27d-e2cd6f7505a7-7e906e48 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-_555818e4-915b-4f04-cc08-096f21eeee0a-7e906e48, #w-node-a253563a-fe56-b274-0501-3295e8d3fa0d-7e906e48 {
    grid-column-start: 1;
  }

  #w-node-a34b7ccb-7442-5dd3-39d0-266b8e58d6fc-7e906e48 {
    place-self: start center;
  }

  #w-node-a34b7ccb-7442-5dd3-39d0-266b8e58d6fd-7e906e48, #w-node-a34b7ccb-7442-5dd3-39d0-266b8e58d6fe-7e906e48, #w-node-a34b7ccb-7442-5dd3-39d0-266b8e58d6ff-7e906e48, #w-node-_525cb470-e3bb-6f52-2242-792824fb28bc-7e906e48 {
    justify-self: center;
  }
}


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