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

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

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

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

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

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

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

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

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

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

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

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

:root {
  --colors--black: #141414;
  --colors--main: #7b112e;
  --colors--very-light-grey: #c8c8c8;
  --colors--dark-grey: #666;
  --colors--very-white: white;
  --colors--white: #ebebeb;
  --colors--light-grey: #999;
  --colors--main-light: #c81f4a;
  --colors--main-dark: #43101e;
}

.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(--colors--black);
  font-family: Porto Sans, Tahoma, sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.3;
}

h1 {
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 15px;
  font-size: 4rem;
  font-weight: 700;
}

h2 {
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 3rem;
}

h3 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 2.5rem;
  line-height: 1.5;
}

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

h5 {
  color: var(--colors--main);
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
}

h6 {
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
}

p {
  margin-bottom: 10px;
  font-size: 1.1rem;
  line-height: 1.3;
}

a {
  color: var(--colors--black);
  text-align: center;
  line-height: 1.3;
  text-decoration: none;
  transition: all .2s cubic-bezier(.77, 0, .175, 1), 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(--colors--very-light-grey);
  border-radius: 20rem;
  height: 2px;
  margin-top: 1rem;
  margin-bottom: .5rem;
}

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

.section {
  min-height: 100svh;
  line-height: 1.5;
  overflow: visible;
}

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

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

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

.container {
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  max-width: 1250px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

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

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

.paragraph-bigger {
  opacity: 1;
  margin-bottom: 10px;
  font-size: 1.3rem;
  line-height: 1.3;
}

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

.paragraph-bigger.cc-bigger-white-light {
  color: var(--colors--dark-grey);
  margin-left: auto;
  margin-right: auto;
  font-size: 1.5rem;
  line-height: 1.2;
}

.button {
  color: #fff;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #1a1b1f;
  border-radius: 10px;
  padding: 12px 25px;
  font-size: .75rem;
  line-height: 2;
  text-decoration: none;
  transition: background-color .4s, opacity .4s, color .4s;
}

.button:hover {
  color: #fff;
  background-color: #32343a;
}

.button:active {
  background-color: #43464d;
}

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

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

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

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

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

.label {
  color: var(--colors--dark-grey);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 20px;
}

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

.label.cc-light {
  opacity: .6;
  color: var(--colors--dark-grey);
}

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

.heading-jumbo {
  text-align: center;
  max-width: 25ch;
  margin: 10px auto;
  font-family: Porto Serif, Georgia, sans-serif;
  font-size: 3rem;
  font-style: italic;
  line-height: 1.2;
}

.heading-jumbo.is-2 {
  font-size: 1.5rem;
}

.heading-jumbo-small {
  text-transform: none;
  margin-top: 10px;
  margin-bottom: 15px;
  font-size: 3rem;
  line-height: 1.3;
}

.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-icon {
  border-radius: 0;
}

.menu {
  z-index: 0;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.navigation-wrap {
  z-index: 9001;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  display: flex;
  position: relative;
}

.navigation {
  z-index: 9999;
  background-color: #fff;
  align-items: center;
  height: 65px;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.navigation-item {
  opacity: 1;
  text-align: right;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: .7rem;
  transition-property: none;
}

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

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

.navigation-item.w--current {
  opacity: 1;
  color: #1a1b1f;
  font-weight: 700;
}

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

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

.menu-button:active, .menu-button:lang(en) {
  background-color: #0000;
}

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

.navigation-items {
  background-color: var(--colors--very-white);
  flex: none;
  justify-content: center;
  align-items: center;
  margin-right: -20px;
  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;
}

.intro-header {
  color: #fff;
  background-color: #f4f4f4;
  background-image: linear-gradient(#00000080, #00000080), url('../images/img_1img.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, scroll;
  border-radius: 1.2rem;
  justify-content: center;
  align-items: center;
  min-height: 100%;
  max-height: 100%;
  display: flex;
}

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

.intro-content.cc-homepage.is-hide {
  display: none;
}

.motto-wrap {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  padding-top: 2.5rem;
  padding-bottom: 5rem;
}

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

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

.section-heading {
  margin-top: 10px;
  margin-bottom: 20px;
  font-family: Portosans;
  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: ". .";
}

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

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

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

.footer3_link {
  border-bottom: 1px solid #000;
  padding-top: .5rem;
  padding-bottom: .1rem;
  font-size: .9rem;
  text-decoration: none;
}

.footer3_link.is-hide {
  display: none;
}

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

.footer3_left-wrapper {
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  flex-flow: column;
  display: flex;
}

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

.footer3_link-list {
  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-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-bottom.margin-tiny {
  margin: .4rem 0 1rem;
}

.margin-bottom.margin-medium {
  margin: .1rem 0;
}

.margin-bottom.margin-small {
  margin: 0 0 1.2rem;
}

.footer3_menu-wrapper {
  grid-column-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  place-items: start stretch;
  height: 100%;
}

.footer3_details-wrapper {
  grid-column-gap: 5rem;
  grid-row-gap: 5rem;
  align-items: stretch;
  display: flex;
}

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

.footer3_social-link.is-hide {
  display: none;
}

.footer3_logo-link {
  float: none;
  padding-left: 0;
}

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

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

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

.footer3_credit-text {
  margin-left: auto;
  margin-right: auto;
  font-size: .875rem;
}

.footer3_bottom-wrapper {
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

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

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

.footer-component {
  padding-top: 50px;
  padding-bottom: 50px;
}

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

.header-section {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.about-section {
  padding-top: 50px;
  padding-bottom: 50px;
}

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

.nav-itens-wrapper {
  align-items: center;
  display: flex;
}

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

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

.nav-logo-img {
  border-radius: 0;
  width: 20rem;
  height: auto;
  margin-left: -10px;
}

.dropdown-link {
  font-size: .7rem;
  transition: opacity .2s;
}

.dropdown-link:hover, .dropdown-link.w--current {
  color: var(--colors--black);
  font-weight: 700;
}

.dropdown-link.w--current:lang(en) {
  color: var(--colors--black);
}

.dropdown-list.w--open {
  background-color: var(--colors--very-white);
  border-radius: 15px;
}

.dropdown-list.w--open:hover {
  opacity: 1;
}

.paragraph {
  text-align: justify;
}

.org-section {
  border-radius: 1.5rem;
  margin-bottom: 2rem;
}

.org-logos-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 35px 0 45px;
  display: flex;
}

.org-logo-img {
  border-radius: 0;
  width: 8.5rem;
  height: auto;
}

.org-logo-img.is-hands {
  width: 10.5rem;
}

.org-logo-img.is-ese {
  width: 6.2rem;
}

.org-logos {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.apoio-section {
  margin-bottom: 2rem;
}

.apoios-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: row;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  place-content: center;
  place-items: stretch stretch;
  display: flex;
}

.apoio-text {
  color: var(--colors--black);
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1rem;
}

.apoios-button {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  display: flex;
}

.apoios-button.is-hide {
  display: none;
}

.contact-wrap {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  display: flex;
}

.comissoes-section {
  margin-top: 3.5rem;
  margin-bottom: 5.5rem;
}

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

.datas-wrapper {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  flex-flow: column;
  align-items: center;
  width: 80%;
  margin: 6rem auto;
  display: flex;
}

.table_cell {
  border-right: 2px solid var(--colors--very-light-grey);
  width: 80%;
  padding: 5px 15px;
}

.table_cell.is-borderless-right {
  border-right-style: none;
  border-right-width: 0;
}

.table_row {
  border-top: 2px none var(--colors--very-light-grey);
  border-bottom: 2px solid var(--colors--very-light-grey);
}

.table_body {
  text-align: left;
}

.table_header {
  text-align: left;
  text-transform: uppercase;
  padding: 15px;
}

.table_component {
  width: 100%;
}

.sec-header-section {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  min-height: 20svh;
  display: flex;
  position: relative;
}

.ul-list {
  text-align: left;
  margin-top: 2rem;
  margin-bottom: 4rem;
  padding-left: 80px;
  padding-right: 80px;
}

.com-wrap {
  margin-left: auto;
  margin-right: auto;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.instrucoes-wrapper {
  margin-left: auto;
  margin-right: auto;
  padding-top: 3rem;
  padding-bottom: 4rem;
}

.inline-link {
  color: var(--colors--main);
  font-weight: 700;
  text-decoration: underline;
  display: inline-block;
}

.paragraph_wrapper {
  border: 2px solid var(--colors--very-light-grey);
  border-radius: 1.5rem;
  margin-bottom: 4rem;
  padding-top: 30px;
  padding-bottom: 30px;
}

.heading-intruct {
  border-bottom: 2px solid var(--colors--very-light-grey);
  text-transform: uppercase;
  margin-bottom: 31px;
  padding-bottom: 30px;
  padding-left: 65px;
  padding-right: 185px;
}

.instruct-list {
  padding: 1rem 80px 1.5rem;
}

.instruct-paragraph {
  padding-left: 65px;
  padding-right: 80px;
}

.program_wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  text-align: center;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-content: stretch center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.program_wrapper.is-1col {
  grid-template-columns: 1fr;
}

.inscricoes_wrapper {
  margin-left: auto;
  margin-right: auto;
  padding-top: 3rem;
  padding-bottom: 5rem;
}

.card-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  display: flex;
}

.inscr-card {
  border: 3px solid var(--colors--very-light-grey);
  background-color: var(--colors--very-white);
  border-radius: 1.5rem;
  width: 45%;
  min-width: 45%;
  padding-bottom: 1rem;
  position: relative;
  box-shadow: 0 0 #0000, 0 2px 3.9px #00000007, 0 4.2px 7.8px #00000008, 0 6.6px 11.9px #00000009, 0 9.5px 16px #00000009, 0 13.5px 20.5px #0000000a, 0 19.4px 25.7px #0000000a, 0 29.6px 32.1px #0000000b, 0 51.4px 42.2px #0000000b;
}

.participantes-h {
  text-align: center;
  text-transform: uppercase;
  font-size: 1.5rem;
}

.card-top {
  border-bottom: 3px solid var(--colors--very-light-grey);
  margin-bottom: 1rem;
  margin-left: auto;
  margin-right: auto;
  padding: .5rem 1rem;
}

.card-mid {
  text-align: center;
  padding: 1rem 2rem;
}

.card-bottom {
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  padding: 1rem;
  display: flex;
}

.inscricoes-button {
  background-color: var(--colors--dark-grey);
  color: var(--colors--white);
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: .75rem;
}

.inscricoes-button:hover {
  background-color: var(--colors--black);
  color: var(--colors--very-white);
}

.inscricoes-button:active {
  background-color: var(--colors--black);
}

.card-divider {
  background-color: var(--colors--very-light-grey);
  border-radius: 30px;
  width: 90%;
  height: 3px;
  margin-left: auto;
  margin-right: auto;
}

.student-lowercase {
  text-transform: none;
}

.inscri-h6 {
  text-align: center;
  width: 85%;
  margin-left: auto;
  margin-right: auto;
}

.certificados-wrapper {
  width: 100%;
}

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

.certificados {
  border-top: 3px solid var(--colors--very-light-grey);
  border-bottom: 3px solid var(--colors--very-light-grey);
  text-align: center;
  width: 80%;
  margin: 4rem auto;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.inscricoes-info-wrapper {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.info-wrapper {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.info-h4 {
  text-align: center;
  text-transform: uppercase;
  width: 30ch;
  margin-left: auto;
  margin-right: auto;
}

.link {
  display: inline-block;
}

.paragraph-wrapper {
  margin-top: 2.5rem;
  margin-bottom: 3rem;
}

.local-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.local-paragraph {
  text-align: left;
  font-weight: 400;
}

.link-2, .link-3 {
  display: inline-block;
}

.smaller-paragraph {
  font-size: 1rem;
}

.past-editions-wrapper {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  align-items: stretch;
  width: 75%;
  margin: 3.5rem auto 5rem;
  display: flex;
}

.edicoes-button {
  background-color: var(--colors--dark-grey);
  border-radius: .8rem;
  padding: 15px 35px;
}

.edicoes-button:hover {
  background-color: var(--colors--black);
  color: var(--colors--white);
}

.map-wrapper {
  border-radius: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 3rem;
  overflow: hidden;
}

.video-wrapper {
  z-index: 1;
  position: relative;
  overflow: visible;
}

.video-dom {
  z-index: 900;
  height: 100%;
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
  position: relative;
  overflow: visible;
}

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

.text-span {
  text-decoration: line-through;
}

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

.flexbox-div {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 2.5fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.person-card-wrapper {
  z-index: 3;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border: 1px solid var(--colors--black);
  -webkit-backdrop-filter: blur(1px);
  backdrop-filter: blur(1px);
  background-color: #ffffffe6;
  border-radius: 1rem;
  grid-template-rows: 120px 1fr;
  grid-template-columns: .5fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  height: 100%;
  padding: 30px 30px 45px;
  display: grid;
  position: relative;
}

.person-card-wrapper.is-bigger.is-hide {
  display: none;
}

.photo-holder {
  border-radius: 100%;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.person-photo {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 100%;
  width: 100px;
  height: auto;
}

.person-photo.is-bigger {
  aspect-ratio: 1;
  background-image: none;
  width: 120px;
  max-width: 100%;
  height: 120px;
  max-height: 100%;
}

.person-bio {
  width: 100%;
}

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

.person-name-text {
  text-align: left;
  font-size: 1.5rem;
}

.person-bio-text {
  color: var(--colors--black);
  text-align: left;
  text-wrap: pretty;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.4;
}

.program-2-wrapper {
  z-index: 3;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
  position: relative;
}

.programa-wrapper {
  margin-bottom: 20svh;
}

.text-size-medium {
  font-size: 2.5rem;
  line-height: 1.5;
}

.text-size-medium.text-weight-bold {
  letter-spacing: .03em;
  font-size: 1rem;
}

.special-links {
  color: #131313;
  text-align: left;
  text-transform: uppercase;
  border: 1px solid #1c3f9466;
  border-radius: 8px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 10px 15px;
  font-size: 1rem;
  display: inline-block;
}

.faq-paragraph {
  text-wrap: balance;
  height: 100%;
  margin-bottom: 0;
  font-size: 1.5rem;
  line-height: 1.7;
}

.faq-paragraph.is-caps {
  text-transform: uppercase;
}

.reg-link {
  color: #131313;
  font-weight: 400;
  text-decoration: none;
}

.faq1_question {
  cursor: pointer;
  border-top: 1px solid #131313;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  display: flex;
}

.faq1_icon-wrapper {
  flex-flow: column;
  justify-content: center;
  align-self: flex-start;
  align-items: center;
  width: 2rem;
  height: 4rem;
  margin-left: 1.5rem;
  display: flex;
}

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

.faq1_accordion {
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}

.faq1_answer {
  overflow: hidden;
}

.faq1_component {
  border-bottom-style: solid;
  border-bottom-width: 1px;
}

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

.afiliation-txt {
  color: var(--colors--dark-grey);
  font-size: 1.3rem;
}

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

.header-wrap {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 5rem;
  display: flex;
}

.assinatura {
  font-size: 1rem;
  font-style: italic;
}

.small-info {
  font-size: .9rem;
  line-height: 1.3;
}

.toppage-spacer {
  width: 100%;
  height: 120px;
}

.video-2 {
  position: sticky;
  bottom: 0;
}

.paragraph-5, .striked, .bold-text-2, .bold-text-3 {
  text-decoration: line-through;
}

._3rem-spacer {
  height: 3rem;
}

.number {
  aspect-ratio: 1;
  text-align: center;
  font-size: .8rem;
  line-height: 2;
}

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

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

.program-paragraph.is-bold {
  text-wrap: balance;
  font-weight: 700;
}

.faq6_answer {
  overflow: hidden;
}

.affiliation-span {
  color: #0006;
  text-wrap: balance;
  font-size: .9rem;
}

.halfrem-spacer {
  height: .5rem;
}

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

.program-title.is-person {
  text-wrap: balance;
  font-size: 1.1rem;
  font-weight: 400;
}

.faq6_accordion {
  border-top: 1px solid var(--colors--dark-grey);
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  transition: all .2s;
}

.parallel-item {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  margin-bottom: 1rem;
  display: flex;
}

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

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

._1rem-spacer {
  height: 1rem;
}

.left-col {
  flex-flow: column;
  display: flex;
}

.number-wrap {
  aspect-ratio: 1;
  border: 1px solid #000;
  border-radius: 100%;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  padding: 15px;
  display: flex;
}

.program-background {
  z-index: 2;
  border: 1px solid #000;
  border-radius: 1rem;
  position: absolute;
  inset: 10% -5%;
}

.program-background.is-2 {
  background-color: #43101e4d;
}

.program-line {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border-top: 1px solid var(--colors--very-light-grey);
  grid-template-rows: auto;
  grid-template-columns: 1fr 4.75fr;
  grid-auto-columns: 1fr;
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: grid;
}

.prog-right-col {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

._5rem-spacer {
  height: 5rem;
}

.apoio-logos {
  max-width: 140px;
}

.apoio-logos.is-horizontal {
  max-width: 200px;
}

.logo {
  border-radius: 0;
}

.allcaps {
  text-transform: uppercase;
}

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

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

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

  .paragraph-bigger.cc-bigger-white-light {
    font-size: 1.2rem;
  }

  .button {
    justify-content: center;
  }

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

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

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

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

  .menu {
    display: block;
    position: static;
  }

  .navigation-wrap {
    background-color: #fff;
    position: static;
  }

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

  .navigation-item {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    font-size: .8rem;
    line-height: 1.5;
  }

  .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;
    margin-top: -5px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 15px;
    padding-bottom: 15px;
    display: block;
    box-shadow: 0 2px 8px #0003;
  }

  .cta-text {
    width: auto;
  }

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

  .motto-wrap {
    width: 90%;
  }

  .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 {
    width: auto;
  }

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

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

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

  .footer-component {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .header-section {
    min-height: auto;
  }

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

  .nav-logo-img {
    width: 15rem;
    margin-left: 0;
  }

  .org-logo-img {
    width: 8rem;
  }

  .org-logo-img.is-hands {
    width: 10rem;
  }

  .org-logo-img.is-ese {
    width: 6rem;
  }

  .apoios-wrapper {
    flex-flow: wrap;
    justify-content: center;
    justify-items: center;
    display: flex;
  }

  .datas-wrapper {
    width: 100%;
    margin-top: 2rem;
    margin-bottom: 3rem;
  }

  .ul-list {
    margin-top: 1rem;
    margin-bottom: 2rem;
    padding-left: 50px;
    padding-right: 50px;
    font-size: 1.1rem;
  }

  .com-wrap {
    width: 85%;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .instrucoes-wrapper {
    width: 100%;
  }

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

  .instruct-list.is-crit-aval {
    padding-left: 120px;
  }

  .instruct-paragraph {
    font-size: 1.2rem;
  }

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

  .inscricoes_wrapper {
    width: 100%;
  }

  .participantes-h {
    font-size: 1.3rem;
  }

  .inscricoes-button {
    font-size: 1rem;
  }

  .inscri-h6 {
    font-size: 1.5rem;
  }

  .certificados {
    font-size: 1.2rem;
  }

  .past-editions-wrapper {
    width: 100%;
  }

  .heading-6, .heading-7 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    line-height: 1;
  }

  .video-wrapper {
    background-image: linear-gradient(0deg, #000000b0, #fff0 90%);
    border-style: none;
    border-radius: 0;
    flex-flow: column;
    justify-content: flex-end;
    align-items: center;
    display: flex;
    position: sticky;
    bottom: 0%;
    left: auto;
  }

  .video-dom {
    width: 40%;
  }

  .person-name-text {
    font-size: 1.1rem;
  }

  .person-bio-text {
    font-size: .9rem;
  }

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

  .programa-wrapper {
    margin-bottom: 10svh;
  }

  .faq-paragraph {
    font-size: 1.2rem;
    line-height: 1.5;
  }

  .program-table {
    margin-bottom: 3rem;
  }

  .afiliation-txt {
    font-size: 1rem;
    line-height: 1.5;
  }

  .number {
    font-size: .6rem;
  }

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

  .affiliation-span {
    font-size: .75rem;
  }

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

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

  .parallel-item {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
  }

  .number-wrap {
    width: 25px;
    height: 25px;
  }
}

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

  .section {
    margin-left: 0;
    margin-right: 0;
  }

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

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

  .container {
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
  }

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

  .paragraph-bigger.cc-bigger-white-light {
    font-size: .9rem;
  }

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

  .heading-jumbo {
    font-size: 2.1rem;
  }

  .heading-jumbo-small {
    font-size: 30px;
    line-height: 52px;
  }

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

  .navigation {
    padding: 20px 30px;
  }

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

  .intro-content {
    width: 80%;
  }

  .intro-content.cc-homepage {
    padding-top: 80px;
    padding-bottom: 60px;
  }

  .motto-wrap {
    width: 100%;
  }

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

  .footer3_social-list {
    justify-content: center;
    display: flex;
  }

  .footer3_link {
    font-size: .7rem;
  }

  .footer3_left-wrapper {
    text-align: left;
    align-items: flex-start;
  }

  .footer3_link-list {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-end;
    display: flex;
  }

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

  .footer3_menu-wrapper {
    grid-row-gap: .5rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    justify-items: stretch;
    display: block;
    position: absolute;
    inset: 0% 0% 0% auto;
  }

  .footer3_details-wrapper {
    grid-column-gap: 2.5rem;
    grid-row-gap: 2.5rem;
    flex-flow: column;
  }

  .footer3_logo-link {
    justify-content: center;
    align-items: center;
    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;
  }

  .footer3_top-wrapper {
    grid-row-gap: 1.25rem;
    grid-template: "."
                   "."
                   / 2fr;
    justify-content: space-between;
    align-items: flex-start;
    display: flex;
    position: relative;
  }

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

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

  .header-section {
    height: auto;
  }

  .nav-itens-wrapper {
    flex-flow: column;
    grid-template-columns: 1fr;
    display: flex;
  }

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

  .org-logo-img {
    width: 5.5rem;
  }

  .org-logo-img.is-hands {
    width: 7rem;
  }

  .org-logo-img.is-ese {
    width: 4rem;
  }

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

  .apoios-button {
    border-radius: .8rem;
    padding: 15px;
  }

  .datas-wrapper {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    font-size: 1rem;
  }

  .table_cell {
    width: 75%;
  }

  .sec-header-section {
    height: auto;
  }

  .ul-list {
    padding-right: 0;
    font-size: 1rem;
  }

  .com-wrap {
    width: 100%;
  }

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

  .heading-intruct {
    text-align: left;
    margin-top: 0;
    margin-bottom: 31px;
    padding-left: 30px;
    padding-right: 30px;
    font-size: 1.2rem;
  }

  .instruct-list {
    text-align: left;
    padding-left: 50px;
    padding-right: 50px;
    font-size: 1rem;
  }

  .instruct-list.is-crit-aval {
    padding-left: 100px;
  }

  .instruct-paragraph {
    text-align: left;
    padding-left: 50px;
    padding-right: 50px;
    font-size: 1rem;
  }

  .card-wrapper {
    flex-flow: column;
    justify-content: center;
    align-items: stretch;
  }

  .inscr-card {
    width: 100%;
    min-width: 100%;
  }

  .info-wrapper {
    width: 100%;
  }

  .paragraph-wrapper {
    text-align: left;
    margin-bottom: 2rem;
  }

  .past-editions-wrapper {
    margin-bottom: 3.5rem;
  }

  .edicoes-button {
    margin-bottom: 1rem;
    font-size: 1rem;
  }

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

  .paragraph-2, .paragraph-3 {
    text-align: left;
  }

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

  .paragraph-4 {
    margin-bottom: 0;
  }

  .video-wrapper {
    right: 0;
  }

  .video-dom {
    width: 50%;
  }

  .person-card-wrapper {
    grid-template-rows: 90px 1fr;
    grid-template-columns: 100px 1fr;
    padding: 20px 20px 30px;
  }

  .person-card-wrapper.is-bigger {
    grid-template-rows: 130px 1fr;
    grid-template-columns: 120px 1fr;
  }

  .photo-holder, .photo-holder.is-smaller {
    justify-content: center;
    align-items: flex-start;
  }

  .person-photo {
    width: 80px;
  }

  .person-photo.is-bigger {
    width: 110px;
  }

  .person-name-text {
    font-size: 1rem;
  }

  .person-bio-text {
    font-size: .8rem;
  }

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

  .programa-wrapper {
    margin-bottom: 5svh;
  }

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

  .text-size-medium.text-weight-bold {
    color: #4b4b4b;
    font-size: .9rem;
  }

  .special-links {
    font-size: .9rem;
  }

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

  .faq1_question {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .faq1_icon-wrapper {
    width: 1.75rem;
  }

  .program-table {
    margin-bottom: 2rem;
  }

  .afiliation-txt {
    font-size: .8rem;
    line-height: 1.5;
  }

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

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

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

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

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

  .faq6_icon-wrapper {
    width: 1.75rem;
  }

  .faq6_question {
    padding: 1rem 1.25rem;
  }
}

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

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

  .container {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .paragraph-bigger.cc-bigger-white-light {
    font-size: .7rem;
  }

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

  .heading-jumbo {
    font-size: 1.4rem;
  }

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

  .menu {
    margin-left: 15px;
  }

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

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

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

  .intro-content.cc-homepage {
    padding-top: 50px;
    padding-bottom: 40px;
  }

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

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

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

  .footer3_link {
    text-align: center;
  }

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

  .footer3_left-wrapper {
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  .footer3_link-list {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
  }

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

  .footer3_menu-wrapper {
    grid-column-gap: 1.25rem;
    grid-row-gap: 20px;
    text-align: center;
    flex-direction: column;
    grid-template-columns: 1fr;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    position: relative;
    top: auto;
    bottom: auto;
    right: auto;
  }

  .footer3_top-wrapper {
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
  }

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

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

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

  .paragraph {
    text-align: left;
  }

  .org-logos {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    flex-flow: row;
    justify-content: center;
    align-items: flex-start;
    width: 90%;
  }

  .apoios-wrapper {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: wrap;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .apoios-button {
    width: 100%;
  }

  .comissoes-wrapper {
    flex-flow: column;
    display: flex;
  }

  .datas-wrapper {
    font-size: .8rem;
    line-height: 1.3;
  }

  .table_cell {
    width: 70%;
  }

  .sec-header-section {
    height: auto;
  }

  .ul-list {
    padding-left: 40px;
    font-size: .9rem;
    line-height: 1.4;
  }

  .inline-link {
    font-size: .8rem;
    line-height: 1.4;
  }

  .heading-intruct {
    margin-bottom: 30px;
    padding-bottom: 20px;
    font-size: .9rem;
    line-height: 1.3;
  }

  .instruct-list {
    padding: 0 30px;
    font-size: .8rem;
    line-height: 1.4;
  }

  .instruct-list.is-crit-aval {
    padding-left: 50px;
  }

  .instruct-paragraph {
    padding-left: 30px;
    padding-right: 30px;
    font-size: .8rem;
  }

  .inscricoes_wrapper {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .inscri-h6 {
    width: 100%;
    font-size: 1rem;
  }

  .certificados {
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-size: .9rem;
  }

  .inscricoes-info-wrapper {
    width: 100%;
  }

  .info-h4 {
    width: 100%;
    font-size: 1.1rem;
  }

  .local-paragraph, .link-3 {
    font-size: .9rem;
  }

  .past-editions-wrapper {
    margin-top: 1.5rem;
  }

  .body {
    max-width: 100svh;
  }

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

  .paragraph-3 {
    margin-bottom: 30px;
  }

  .video-dom {
    width: 80%;
  }

  .person-card-wrapper {
    grid-template-rows: 75px 1fr;
    grid-template-columns: 80px 1fr;
    padding: 15px 15px 20px;
  }

  .person-card-wrapper.is-bigger {
    grid-template-rows: 100px 1fr;
    grid-template-columns: 100px 1fr;
  }

  .person-photo {
    width: 70px;
  }

  .person-photo.is-bigger {
    width: 90px;
  }

  .person-bio-text {
    font-size: .7rem;
  }

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

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

  .program-table {
    margin-bottom: 3rem;
  }

  .afiliation-txt {
    font-size: .6rem;
  }

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

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

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

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

  .number-wrap {
    width: 20px;
    height: 20px;
    padding: 0;
  }
}

#w-node-_86e64837-0616-515b-4568-76c147234d34-e35c20ca {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_86e64837-0616-515b-4568-76c147234d3f-e35c20ca, #w-node-_86e64837-0616-515b-4568-76c147234d41-e35c20ca {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_86e64837-0616-515b-4568-76c147234d4c-e35c20ca {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-c943e5ea-6b86-a2d6-22da-7d5a38039cdb-38039cd3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c943e5ea-6b86-a2d6-22da-7d5a38039cfa-38039cd3 {
  align-self: center;
}

#w-node-dd13f313-5920-3b66-4247-000afc16d494-fc16d48b, #w-node-c9732ff3-97c0-155b-f972-da03ab048bbc-fc16d48b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

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

#w-node-_91a91115-03bb-f0e8-1a4a-fb4ba04aed5b-e35c20d9 {
  align-self: start;
}

#w-node-b77dbc2a-0efb-e0b6-d860-52e4bbb27787-e35c20d9 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_2867ecbd-aab1-5849-a83b-55ac888e1a6d-e35c20d9 {
  align-self: start;
}

#w-node-_2867ecbd-aab1-5849-a83b-55ac888e1a74-e35c20d9 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-d38708a2-5231-a166-83cf-4f232e25ea8f-e35c20d9 {
  align-self: start;
}

#w-node-d38708a2-5231-a166-83cf-4f232e25ea96-e35c20d9 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-ae102302-7525-e5d4-8c2a-7776747e50a1-e35c20d9 {
  align-self: start;
}

#w-node-_8d81d4e6-c1c2-d4d4-9d46-12ae5e287fe3-e35c20d9 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-c019a829-9989-9cbb-3b53-ab054136482f-e35c20d9 {
  align-self: start;
}

#w-node-eb3d13c5-1658-c7a4-dd09-0a94bb253ab0-e35c20d9 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_7566a036-e8cc-7639-9a40-e3917f39395c-e35c20d9 {
  align-self: start;
}

#w-node-_61494a89-89de-c4a6-5fff-f03e4a8d6523-e35c20d9 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_5b453771-7e76-f293-4eb0-e52f6eb8184c-e35c20d9 {
  align-self: start;
}

#w-node-b82b52c4-1c08-1811-f249-ceeb5801619d-e35c20d9 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_5b453771-7e76-f293-4eb0-e52f6eb81856-e35c20d9 {
  align-self: start;
}

#w-node-bd0f590d-5c50-e474-4d2f-ae6f259de34e-e35c20d9 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_5b453771-7e76-f293-4eb0-e52f6eb81863-e35c20d9 {
  align-self: start;
}

#w-node-ee732aec-58be-d126-1504-7ef0ac1569f9-e35c20d9 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_71a3a62d-68d6-d35f-3a73-2a4f900410f8-e35c20d9 {
  align-self: start;
}

#w-node-_71a3a62d-68d6-d35f-3a73-2a4f900410ff-e35c20d9 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_71a3a62d-68d6-d35f-3a73-2a4f90041118-e35c20d9 {
  align-self: start;
}

#w-node-_71a3a62d-68d6-d35f-3a73-2a4f9004111f-e35c20d9 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_71a3a62d-68d6-d35f-3a73-2a4f90041130-e35c20d9 {
  align-self: start;
}

#w-node-_71a3a62d-68d6-d35f-3a73-2a4f90041137-e35c20d9 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_5f233f31-775b-2d9d-fb9f-5ffe3a0a3651-e35c20d9 {
  align-self: start;
}

#w-node-_5f233f31-775b-2d9d-fb9f-5ffe3a0a3658-e35c20d9 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_5f233f31-775b-2d9d-fb9f-5ffe3a0a3673-e35c20d9 {
  align-self: start;
}

#w-node-_5f233f31-775b-2d9d-fb9f-5ffe3a0a367a-e35c20d9 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_5f233f31-775b-2d9d-fb9f-5ffe3a0a3687-e35c20d9 {
  align-self: start;
}

#w-node-_5f233f31-775b-2d9d-fb9f-5ffe3a0a368e-e35c20d9 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

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

  #w-node-_86e64837-0616-515b-4568-76c147234d3f-e35c20ca {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_86e64837-0616-515b-4568-76c147234d41-e35c20ca {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_86e64837-0616-515b-4568-76c147234d4c-e35c20ca {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_9501f26b-2907-585b-3796-3e6e051e7224-051e71fe, #w-node-_27ff465d-ed9c-283f-6205-7fe88e650025-b27a4e25 {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }
}

@media screen and (max-width: 479px) {
  #w-node-dd13f313-5920-3b66-4247-000afc16d494-fc16d48b, #w-node-c9732ff3-97c0-155b-f972-da03ab048bbc-fc16d48b {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


@font-face {
  font-family: 'Porto Sans';
  src: url('../fonts/PortoSans-RegularItalic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Porto Sans';
  src: url('../fonts/PortoSans-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Porto Serif';
  src: url('../fonts/PortoSerif-BoldItalic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Porto Sans';
  src: url('../fonts/PortoSans-BoldItalic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Porto Serif';
  src: url('../fonts/PortoSerif-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Porto Serif';
  src: url('../fonts/PortoSerif-RegularItalic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Porto Serif';
  src: url('../fonts/PortoSerif-LightItalic.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Porto Sans';
  src: url('../fonts/PortoSans-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Porto Serif';
  src: url('../fonts/PortoSerif-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Porto Sans';
  src: url('../fonts/PortoSans-LightItalic.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Porto Serif';
  src: url('../fonts/PortoSerif-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Porto Sans';
  src: url('../fonts/PortoSans-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}