@font-face {
  font-family: Dejavusans;
  src: url('../fonts/DejaVuSans.ttf') format("truetype"), url('../fonts/DejaVuSans.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Dejavusans;
  src: url('../fonts/DejaVuSans-Bold.ttf') format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Open Sans;
  src: url('../fonts/open-sans.italic.ttf') format("truetype"), url('../fonts/open-sans.regular.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fa 400";
  src: url('../fonts/fa-regular-400.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fa Solid 900";
  src: url('../fonts/fa-solid-900.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fa Brands 400";
  src: url('../fonts/fa-brands-400.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --dark: #0d0d0d;
  --primary-contast: #e49b2c;
  --medium: #a7a724;
  --secondary: #e31d2a;
  --primary: #e49b2c;
  --gray-blue: #f1f5f9;
  --border: #cbcbcb;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

body {
  color: #333;
  font-family: Barlow, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

p {
  margin-bottom: 10px;
  font-size: 15px;
}

.body {
  font-family: Barlow, sans-serif;
}

.brand {
  background-image: url('../images/Logo-Linkup-1.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 200px;
  height: 80px;
  margin-left: -10px;
}

.container {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 0;
  padding-left: 50px;
  padding-right: 50px;
}

.container.col {
  max-width: 610px;
  margin-right: 0;
}

.container.hero-main {
  z-index: 5;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  position: relative;
}

.container.page {
  max-width: 1100px;
}

.navbar {
  z-index: 999;
  background-color: #0000;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  padding-top: 5px;
  padding-bottom: 5px;
  position: fixed;
  inset: 0% 0% auto;
}

.navbar.page {
  background-color: #1f1d3f;
}

.navbar.dark {
  background-color: var(--dark);
}

.header {
  background-color: var(--primary-contast);
  color: #fff;
  padding-top: 20px;
  padding-bottom: 20px;
}

.flex-block {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.icon {
  color: var(--medium);
  font-family: "Fa Solid 900", Arial, sans-serif;
  font-weight: 400;
}

.icon.close {
  color: var(--secondary);
}

.icon.white {
  color: #fff;
  font-family: "Fa Brands 400", Arial, sans-serif;
  font-size: 26px;
}

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

.div-block._2 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}

.text-block {
  padding-top: 0;
}

.hero {
  height: 100%;
  overflow: hidden;
}

.hero.page {
  color: #fff;
  background-image: linear-gradient(#00000080, #00000080), url('../images/waiting-room-with-monitors-1.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  justify-content: flex-start;
  align-items: center;
  height: 60vh;
  display: flex;
}

.background-video {
  border-radius: 20px;
  justify-content: flex-start;
  align-items: center;
  width: 600px;
  height: 360px;
}

.section {
  background-color: #eee;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding-top: 15px;
  padding-bottom: 20px;
}

.slide-wrap {
  align-items: center;
  width: 5000px;
  margin-left: -20px;
  margin-right: -20px;
  display: none;
}

.logo-img._50-r-m {
  background-color: #fff;
  border-radius: 5px;
  margin-right: 200px;
  padding: 20px;
}

.title {
  text-align: left;
  width: 40%;
  margin-left: auto;
  margin-right: auto;
  line-height: 50px;
}

.title._2 {
  text-align: left;
  max-width: 600px;
  margin-left: 0;
  margin-right: 0;
}

.div-block-2 {
  justify-content: flex-start;
  margin-top: 0;
  display: flex;
  position: relative;
}

.button {
  background-color: var(--primary);
  border-radius: 4px;
  height: 45px;
  padding-top: 13px;
  padding-left: 30px;
  padding-right: 30px;
}

.button.full {
  background-color: var(--primary);
  text-align: center;
  text-transform: capitalize;
  width: 100%;
  text-decoration: none;
  transition: all .35s;
}

.button.full:hover {
  background-color: var(--primary-contast);
}

.button.full.red {
  background-color: var(--secondary);
}

.button.full._1 {
  background-color: var(--primary);
  text-transform: uppercase;
  width: 250px;
  margin-top: 20px;
}

.button.full._1:hover {
  background-color: var(--primary-contast);
}

.button.full.wht {
  width: 40%;
}

.button.whats {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: #fff;
  background-color: #23b559;
  border-radius: 200px;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
  padding-bottom: 13px;
  padding-left: 25px;
  padding-right: 25px;
  text-decoration: none;
  transition: all .35s;
  display: flex;
  box-shadow: 0 2px 5px #00000082;
}

.button.whats:hover {
  background-color: #1da14e;
}

.btn-wrapper {
  margin-top: 25px;
}

.services {
  background-color: var(--gray-blue);
  margin-top: 0;
  padding-top: 100px;
  padding-bottom: 100px;
}

.grid {
  grid-column-gap: 35px;
  grid-row-gap: 35px;
  background-color: #1f1d3f;
  border-radius: 20px;
  grid-template-rows: auto;
  padding: 40px;
  box-shadow: 0 2px 5px #0003;
}

.grid._2 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.subtitle {
  color: var(--secondary);
  max-width: 610px;
  margin-top: 0;
  margin-bottom: 25px;
  line-height: 38px;
}

.subtitle.white {
  color: #fff;
}

.subtitle.no-space {
  margin-bottom: 5px;
}

.paragraph {
  text-align: justify;
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 23px;
}

.paragraph.item {
  text-align: left;
  margin-bottom: 5px;
  font-size: 18px;
  line-height: 26px;
}

.paragraph._2 {
  text-align: left;
}

.paragraph.section {
  padding-top: 0;
  padding-bottom: 0;
}

.paragraph.p-section {
  text-align: left;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 26px;
}

.paragraph.white {
  color: #f7f7f7;
  text-align: left;
  width: 60%;
  line-height: 25px;
}

.paragraph.white.bg {
  width: auto;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}

.paragraph.black {
  color: #333;
  text-align: left;
  line-height: 25px;
}

.paragraph.black.n {
  margin-top: 20px;
  font-size: 18px;
  line-height: 27px;
}

.paragraph.red {
  color: #e5303c;
  font-size: 18px;
  font-weight: 400;
  line-height: 40px;
}

.paragraph.azul {
  color: #0075bc;
  font-size: 18px;
  font-weight: 400;
  line-height: 40px;
}

.paragraph.verde {
  color: #a7a724;
  font-size: 18px;
  font-weight: 400;
  line-height: 40px;
}

.paragraph._3 {
  font-weight: 500;
}

.paragraph.s {
  font-weight: 500;
  line-height: 28px;
}

.div-block-3 {
  transform-style: preserve-3d;
  background-image: url('../images/2150167424-1.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px;
  width: 100%;
  height: 360px;
}

.div-block-3:hover {
  transform: translate3d(0, 3px, 1px);
  box-shadow: 0 2px 5px #0003;
}

.sobre {
  margin-top: 0;
}

.dinamicas-copy {
  margin-top: 0;
  padding-top: 100px;
  padding-bottom: 100px;
}

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

.title-3 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 25px;
  font-weight: 700;
  line-height: 30px;
}

.title-3._2 {
  margin-bottom: 0;
}

.div-block-4 {
  margin-top: 40px;
}

.team {
  background-color: var(--gray-blue);
  padding-top: 100px;
  padding-bottom: 100px;
}

.line {
  background-color: var(--medium);
  width: 160px;
  height: 8px;
  margin-top: 20px;
}

.card.dinamica {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  background-color: #f3f4f6;
  border-radius: 8px;
  padding: 20px 15px;
  display: flex;
}

.card-image {
  background-image: url('../images/63837-1.jpg');
  background-position: 0 0;
  background-size: cover;
  border-radius: 8px;
  width: 100%;
  height: 200px;
}

.card-image._2 {
  background-image: url('../images/97910-1.jpg');
}

.card-image._3 {
  background-image: url('../images/6821cc50e3887ce82acbe313_Screen-Shot-2022-02-03-at-15.34.16.png');
  background-position: 50%;
  height: 300px;
}

.info-orador {
  opacity: 0;
  background-image: linear-gradient(45deg, #e31d2ad1, #303149);
  border-top: 1px #eeeeee29;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 80px;
  padding: 20px;
  transition: all .45s;
  display: flex;
  position: absolute;
  inset: 0%;
}

.info-orador:hover {
  opacity: 100;
  color: #fff;
  border-radius: 6px 6px 0 0;
  flex-flow: column;
}

.info-orador._2 {
  margin-top: 40px;
}

.session-img {
  background-image: url('../images/36031cbe-5dce-4cdf-aef8-cee821949560-1.png');
  background-position: 50%;
  background-size: cover;
  width: 100%;
  height: 550px;
}

.div-block-6 {
  color: #fff;
  background-color: #4a4a4a;
  padding-top: 100px;
  padding-bottom: 100px;
  padding-right: 40px;
}

.servico-conteudo {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  -webkit-user-select: none;
  user-select: none;
  flex-flow: row;
  margin-top: 60px;
  display: flex;
}

.servico-conteudo._2 {
  margin-top: 40px;
}

.div-block-7 {
  color: #333;
  text-align: left;
  background-color: #fff;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
  width: 100%;
  height: 85px;
  padding: 10px 20px;
}

.slide {
  width: 25%;
}

.slide.dinamica {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  background-color: #f3f4f6;
  border-radius: 8px;
  padding: 20px 15px;
  display: flex;
}

.acesso {
  background-color: #0e2e4e12;
  padding-top: 100px;
}

.feature-text {
  font-size: 15px;
}

.feature-text.white {
  color: #ddd8d8;
}

.pricing-features {
  grid-column-gap: 13px;
  grid-row-gap: 13px;
  flex-flow: column;
  grid-template-rows: auto auto auto auto auto;
  grid-template-columns: 1fr;
  margin-top: 22px;
  margin-bottom: 32px;
  display: flex;
}

.price-card {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  flex-flow: column;
  justify-content: space-between;
  width: 24%;
  height: auto;
  margin-right: 10px;
  padding-top: 0;
  padding-bottom: 32px;
  transition: all .35s;
  display: flex;
  box-shadow: 0 2px 5px #00000017;
}

.price-card:hover {
  border-color: var(--primary);
}

.price-card.black {
  background-color: #314158;
  border-style: none;
  width: 24%;
  margin-right: 3px;
  transition: all .35s;
}

.price-card.black:hover {
  border-style: solid;
  border-color: var(--medium);
}

.price-card.black.indisponivel {
  border-style: solid;
}

.price-card.indisponivel {
  border-color: var(--secondary);
}

.price-card.indisponivel.hide {
  display: none;
}

.price-card._1 {
  background-color: #314158;
  border-color: #96979942;
}

.price-card._1.indisponivel {
  border-color: #e31d2aa3;
}

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

.price-type {
  color: #333;
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 25px;
}

.price-type.azul {
  color: #1a98e6;
  text-transform: capitalize;
}

.price-type.azul._1 {
  color: #fff;
  font-weight: 600;
}

.price-type.verde {
  color: #e2e233;
  text-transform: capitalize;
}

.price-type.verde._1 {
  color: #adad0c;
}

.price-type.white {
  color: #fff;
  text-transform: capitalize;
}

.price-type.red {
  color: #f47f7f;
  text-transform: capitalize;
}

.price-type.red._1 {
  color: var(--secondary);
}

.price-type.dark {
  color: var(--primary-contast);
  font-weight: 600;
}

.price-type.exclusivo {
  color: #dfb10c;
}

.button-2 {
  color: #f496d1;
  background-color: #fef5fb;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  min-width: 150px;
  min-height: 50px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 16px;
  line-height: 1;
  text-decoration: none;
  display: flex;
}

.slider-modalidade {
  grid-column-gap: 13px;
  grid-row-gap: 13px;
  border-radius: 35px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 50px;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.pricing-grid {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 100%;
}

.check {
  width: 24px;
  margin-right: 16px;
}

.top-card {
  text-align: center;
  background-color: #303149;
  border-bottom: 1px dashed #cccccc85;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  flex-flow: column;
  justify-content: center;
  height: 100px;
  padding: 30px;
  display: flex;
}

.top-card._2 {
  background-color: var(--medium);
}

.top-card._3 {
  background-color: #1f1d3f;
}

.top-card._4 {
  background-color: var(--secondary);
}

.top-card._1 {
  background-color: #314158;
  border-bottom-color: #cccccc29;
  justify-content: center;
  align-items: center;
  height: 80px;
  display: flex;
}

.info-pacote {
  height: 770px;
  margin-bottom: 25px;
  padding: 15px 30px 10px;
}

.info-pacote.dark {
  height: 700px;
}

.info-pacote.dark._1 {
  height: 450px;
}

.text-block-2 {
  font-family: Dejavusans, Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.text-block-2.white {
  color: #fff;
  font-size: 16px;
}

.price {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.price._1 {
  margin-bottom: 0;
}

.expositor {
  color: #fff;
  background-color: #1f1d3f;
  padding-top: 100px;
  padding-bottom: 100px;
}

.juntar-se {
  background-color: #1f1d3f;
  padding-top: 100px;
  padding-bottom: 100px;
}

.noticias {
  background-color: var(--gray-blue);
  padding-top: 100px;
  padding-bottom: 100px;
}

.pacotes-grid {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
}

.footer-subscribe {
  border-bottom-width: 1px;
  border-bottom-color: #e4ebf3;
  padding: 75px 30px 40px;
  position: relative;
}

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

.footer-form-two {
  background-color: #f5f7fa;
  margin-bottom: 40px;
  padding: 64px;
}

.footer-form-container-two {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer-form-title {
  font-size: 24px;
  line-height: 32px;
}

.footer-form-block-two {
  justify-content: flex-end;
  align-items: center;
  display: flex;
  position: relative;
}

.footer-form-input {
  border: 1px #000;
  width: 460px;
  height: 48px;
  margin-bottom: 0;
  padding: 12px 180px 12px 20px;
}

.footer-form-input::placeholder {
  color: #1a1b1fcc;
}

.button-primary {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #1a1b1f;
  padding: 12px 25px;
  font-size: 12px;
  line-height: 20px;
  transition: all .2s;
}

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

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

.button-primary.footer-form-button {
  padding: 8px 18px;
  position: absolute;
  right: 8px;
}

.footer-wrapper-three {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer-block-three {
  justify-content: flex-start;
  align-items: center;
  margin-left: -20px;
  margin-right: -20px;
  display: flex;
}

.footer-link-three {
  color: #fff;
  margin-left: 20px;
  margin-right: 20px;
  text-decoration: none;
}

.footer-link-three:hover {
  color: var(--secondary);
}

.footer-social-block-three {
  justify-content: flex-start;
  align-items: center;
  margin-left: -32px;
  display: flex;
}

.footer-social-link-three {
  margin-left: 32px;
}

.footer-divider-two {
  background-color: #4d4e62;
  width: 100%;
  height: 1px;
  margin-top: 40px;
  margin-bottom: 40px;
  display: none;
}

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

.footer-copyright {
  color: #b8b4b4;
}

.footer-legal-block {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.footer-legal-link {
  color: #b3adb0;
  text-decoration: none;
  display: flex;
}

.footer-legal-link:hover {
  text-decoration: none;
}

.footer-legal-link.icon {
  color: #b8b4b4;
  margin-left: 0;
  margin-right: 18px;
  font-family: Barlow, sans-serif;
  font-size: 15px;
}

.footer-legal-link.icon:hover {
  color: var(--medium);
}

.accordion-content {
  padding-bottom: 25px;
  padding-left: 24px;
  padding-right: 24px;
  overflow: hidden;
}

.accordion-content._1 {
  padding-top: 20px;
  padding-left: 0;
  padding-right: 0;
}

.grid-content {
  max-width: 500px;
}

.grid-content.centered {
  text-align: center;
  flex-direction: column;
  align-items: center;
  max-width: 585px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.plus-vertical {
  background-color: #3461ff;
  width: 2px;
  height: 16px;
}

.accordion-item {
  background-color: #fff;
  border-bottom: 1px #f3f6fc;
  border-radius: 4px;
  margin-bottom: 8px;
  box-shadow: 0 1px 20px #e3e9fa;
}

.accordion-item._1 {
  box-shadow: none;
  background-color: #0000;
}

.grid-3._2-column {
  grid-column-gap: 75px;
  grid-row-gap: 75px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.grid-3._2-column.odd {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
}

.h2-header {
  margin-bottom: 0;
}

.faq-wrap {
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
}

.accordion-rich-text {
  margin-bottom: -10px;
}

.container-3 {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}

.plus-wrapper {
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.h4-header {
  margin-bottom: 0;
}

.h4-header.faq-header {
  font-family: Dejavusans, Arial, sans-serif;
  font-size: 20px;
  font-weight: 500;
}

.section-2 {
  padding: 100px 70px;
}

.accordion-icon-wrap {
  flex: none;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  display: flex;
  position: relative;
}

.accordion-trigger {
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  padding: 16px 8px 16px 24px;
  display: flex;
}

.plus {
  background-color: #3461ff;
  width: 16px;
  height: 2px;
}

.header-wrap {
  margin-bottom: 32px;
}

.pre-header {
  color: #3461ff;
  letter-spacing: -.5px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  display: block;
}

.pre-header-wrap {
  margin-bottom: 24px;
}

.text-field {
  color: #fff;
  background-color: #ffffff03;
  border: 1px solid #bfbf5312;
  border-radius: 6px;
  height: 45px;
  margin-bottom: 15px;
}

.text-field::placeholder {
  color: #ffffffd9;
}

.text-field._1 {
  height: 160px;
}

.textarea {
  height: 133px;
  min-height: 100px;
  margin-bottom: 25px;
}

.whatsapp-wrapper {
  z-index: 1100;
  opacity: 0;
  margin-right: 30px;
  display: flex;
  position: fixed;
  inset: auto 0% 8% auto;
}

.text-block-3 {
  font-size: 16px;
}

.nav-link {
  color: #fff;
  text-transform: uppercase;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 14px;
  font-weight: 300;
  transition: all .37s;
}

.nav-link:hover {
  color: #f1aa3f;
  border-bottom: 1px solid #f1aa3f;
  font-weight: 600;
}

.nav-link:visited {
  border-bottom: 1px solid #fff;
}

.nav-link.w--current {
  color: #f1aa3f;
  font-weight: 700;
  text-decoration: none;
}

.nav-link.hide {
  display: none;
}

.perguntas-frequentes {
  padding: 100px 70px;
}

.home {
  height: 760px;
  margin-top: 0;
  position: relative;
}

.nav-menu {
  justify-content: flex-start;
  align-items: flex-start;
  height: auto;
  display: flex;
}

.overlay-banner {
  background-image: linear-gradient(#0009, #0009);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.div-block-9 {
  justify-content: space-between;
  height: 90px;
  display: flex;
}

.div-block-10 {
  grid-column-gap: 13px;
  grid-row-gap: 13px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
  position: relative;
}

.text-block-4 {
  color: #cac8c8;
  font-size: 20px;
  line-height: 25px;
}

.heading {
  max-width: 600px;
}

.div-block-11 {
  padding-top: 40px;
  padding-left: 10px;
  position: relative;
}

.heading-2 {
  color: #fff;
  text-transform: capitalize;
  margin-top: 10px;
  font-size: 59px;
  font-weight: 800;
  line-height: 66px;
}

.div-block-12 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center stretch;
  width: 660px;
  height: 760px;
  padding-top: 60px;
  display: flex;
}

.text-block-5 {
  color: #fff;
  font-size: 20px;
  font-weight: 300;
  line-height: 26px;
}

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

.header-setion._2 {
  text-align: left;
  justify-content: flex-start;
  align-items: flex-start;
}

.header-setion._2.container-3 {
  width: auto;
}

.header-setion.hide {
  display: none;
}

.header-setion._3 {
  align-items: flex-start;
  width: 700px;
}

.heading-3 {
  text-align: left;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 46px;
  font-weight: 800;
  line-height: 46px;
}

.heading-3._3 {
  color: #fff;
  font-size: 30px;
  line-height: 35px;
}

.heading-3._2 {
  color: #fff;
  text-align: left;
  margin-top: 0;
  font-size: 38px;
  font-weight: 900;
  line-height: 50px;
}

.heading-3._2.white {
  text-transform: capitalize;
  width: 300px;
  font-size: 45px;
  line-height: 55px;
}

.heading-3._2._1 {
  width: 700px;
  font-weight: 800;
}

.heading-3._2.auto {
  width: auto;
}

.heading-3._2.d {
  width: 600px;
}

.heading-3.white {
  color: #fff;
  text-align: left;
  width: 600px;
  font-size: 30px;
  line-height: 40px;
}

.heading-3.bg {
  color: #333;
  width: 700px;
}

.heading-3.bg-white {
  color: #fff;
}

.heading-3.small {
  width: 400px;
}

.heading-3.line {
  line-height: 48px;
}

.heading-3.text-line {
  margin-bottom: 0;
  line-height: 54px;
}

.heading-3.space {
  margin-bottom: 25px;
}

.linha {
  border-bottom: 2px solid var(--medium);
  width: 200px;
  margin-bottom: 10px;
}

.linha._1 {
  border-bottom-color: var(--medium);
}

.linha.dot {
  width: 5px;
}

.patrocinio {
  grid-column-gap: 29px;
  grid-row-gap: 29px;
  flex-flow: wrap;
  justify-content: center;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
}

.patrocinador {
  box-shadow: none;
  text-align: center;
  border: 1px solid #eee;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  width: 13%;
  margin-left: 10px;
  margin-right: 10px;
  transition: all .37s;
  display: flex;
}

.patrocinador:hover {
  border-color: var(--secondary);
}

.image {
  object-fit: contain;
  background-color: #0000;
  border-radius: 5px;
  height: 100px;
}

.text-block-6 {
  margin-top: 5px;
  font-size: 13px;
}

.text-block-6._1 {
  color: #c9c6c6f7;
}

.slider {
  background-color: #0000;
}

.right-arrow, .left-arrow {
  display: none;
}

.slide-nav {
  font-size: 10px;
  inset: auto 0% 0% auto;
}

.slide-2 {
  border-radius: 5px;
  width: 77%;
  margin-left: 20px;
  padding: 40px;
}

.text-block-7 {
  color: var(--primary);
  font-size: 56px;
  font-weight: 600;
  line-height: 65px;
}

.div-block-13 {
  background-color: #bfbf5312;
  border-radius: 20px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 200px;
  display: flex;
}

.text-block-8 {
  color: var(--primary);
  font-weight: 500;
}

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

.text-block-9 {
  margin-top: 10px;
}

.div-block-16 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: row;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
}

.div-block-17 {
  border-radius: 20px;
  align-items: center;
  height: 250px;
  margin-top: 40px;
  padding: 50px;
  display: none;
}

.div-block-18 {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  justify-content: center;
  display: flex;
}

.list {
  color: #fff;
}

.div-block-19 {
  height: auto;
}

.image-2 {
  object-fit: cover;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  width: 100%;
  height: 100%;
}

.altura-pequena1 {
  color: #f7f7f7;
  padding-left: 20px;
  overflow: hidden;
}

.div-block-20 {
  height: 45px;
}

.slider-2 {
  background-color: #0000;
  height: 580px;
  display: none;
}

.div-block-21 {
  grid-column-gap: 11px;
  grid-row-gap: 11px;
  border: 1px dashed #fff;
  border-radius: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  height: 520px;
  margin-right: 10px;
  display: grid;
}

.left-arrow-2 {
  border: 1px solid #fff;
  border-radius: 200px;
  width: 35px;
  height: 35px;
  padding: 10px;
  font-size: 20px;
  inset: auto auto 0% 0%;
}

.right-arrow-2 {
  border: 1px solid #fff;
  border-radius: 200px;
  width: 35px;
  height: 35px;
  font-size: 20px;
  inset: auto auto 0% 4%;
}

.slide-nav-2 {
  font-size: 10px;
  display: none;
}

.bold-text {
  text-transform: uppercase;
}

.div-block-22 {
  cursor: pointer;
  background-color: #eeeeeead;
  border: 1px solid #8ea0b21c;
  border-radius: 5px;
  padding: 40px;
  transition: all .4s;
  overflow: hidden;
}

.div-block-22:hover {
  border-color: var(--secondary);
  height: auto;
  transform: translate(0);
}

.div-block-22._1 {
  background-color: var(--medium);
}

.div-block-22._2 {
  background-color: var(--primary-contast);
}

.div-block-22._3 {
  background-color: var(--secondary);
}

.div-block-22._5 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding: 40px;
}

.capa {
  justify-content: center;
  width: 100%;
  height: 250px;
  display: flex;
}

.capa._1 {
  justify-content: center;
  height: 400px;
}

.capa.team {
  height: 300px;
}

.nome {
  color: #e29117;
  margin-bottom: 4px;
  font-size: 18px;
  font-weight: 600;
  line-height: 23px;
}

.imagem-orador {
  object-fit: cover;
  object-position: top;
  transform-style: preserve-3d;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  width: 100%;
  height: 100%;
}

.imagem-orador:hover {
  transform: scale3d(1.001, 1.001, 2);
}

.team-ttem {
  cursor: pointer;
  touch-action: none;
  transform-style: preserve-3d;
  flex-flow: wrap;
  align-items: flex-start;
  width: 100%;
  min-width: auto;
  margin-right: 10px;
  padding: 0;
  transition-property: all;
  transition-duration: .35s;
  transition-timing-function: ease;
  display: flex;
  position: relative;
}

.team-ttem:hover {
  transform: translate3d(0, 2px, 1px);
}

.mini-bio {
  color: #ddd7d7;
  -webkit-text-stroke-color: #e2dbdb;
  font-size: 14px;
  font-weight: 400;
}

.dropdown-toggle {
  text-align: center;
  width: 100%;
}

.dropdown {
  width: 100%;
}

.cargo {
  color: #333;
}

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

.list-block {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  height: auto;
  display: flex;
}

.expositor2 {
  flex-flow: wrap;
  justify-content: center;
  width: 100%;
  margin-top: 50px;
  display: flex;
  overflow: hidden;
}

.apoio {
  flex-flow: wrap;
  justify-content: center;
  width: 100%;
  margin-top: 50px;
  display: flex;
}

.div-block-25 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  align-items: flex-start;
  margin-bottom: 10px;
  display: flex;
}

.div-block-26 {
  height: 200px;
}

.map {
  border-radius: 6px;
  height: 100%;
}

.div-block-27 {
  flex-flow: column;
  justify-content: space-between;
  display: flex;
}

.text-block-10 {
  color: #fff;
  font-size: 16px;
}

.text-block-10._1 {
  color: #b8b4b4;
  margin-bottom: 20px;
}

.div-block-28 {
  flex-flow: column;
  display: flex;
}

.slide-news {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: wrap;
  align-items: stretch;
  margin-top: 50px;
  display: flex;
}

.noticia {
  transform-style: preserve-3d;
  flex-flow: column;
  width: 48%;
  height: auto;
  margin-right: 15px;
  transition: all .35s;
  display: flex;
}

.noticia:hover {
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
  transform: translate3d(0, 2px, 1px);
  box-shadow: 0 2px 5px #00000029;
}

.link-2 {
  color: var(--secondary);
  text-align: right;
  width: 100%;
  font-weight: 600;
  text-decoration: underline;
  transition: all .35s;
}

.link-2:hover {
  color: var(--primary-contast);
}

.titulo-noticia {
  background-color: #fff;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
}

.list-item {
  color: #333;
  margin-bottom: 14px;
}

.div-block-29 {
  background-color: #e5303c2b;
  border-radius: 6px;
  width: 75%;
  padding-left: 10px;
}

.div-block-30 {
  background-color: #0075bc61;
  border-radius: 6px;
  width: 65%;
  padding-left: 10px;
}

.div-block-31 {
  background-color: #a7a72421;
  border-radius: 6px;
  width: 50%;
  padding-top: 4px;
  padding-left: 10px;
  padding-right: 10px;
}

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

.text-block-11 {
  background-color: var(--medium);
  color: #fff;
  border-radius: 6px;
  width: 25%;
  height: 45px;
  padding-top: 10px;
  padding-bottom: 20px;
  font-size: 16px;
}

.div-block-33 {
  opacity: 0;
}

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

.altura-pequena {
  width: 100%;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.accordion-wrapper {
  background-color: #f1f5f952;
  border: 1px solid #f1f5f9;
  border-radius: 5px;
  margin-bottom: 10px;
  transition: all .6s;
}

.accordion-wrapper:hover, .accordion-wrapper:active {
  border-color: var(--secondary);
}

.accordion-item-2 {
  margin-bottom: 0;
  padding: 8px 35px;
}

.div-block-43 {
  margin-top: 7px;
  margin-bottom: 7px;
}

.accordion-trigger-2 {
  float: left;
  width: 95%;
  margin-bottom: 0;
  font-size: 17px;
  font-weight: 500;
  line-height: 140%;
}

.arrox {
  float: left;
  background-image: none;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 5%;
  height: 25px;
}

.resposta-apear {
  border-top: 1px #f5f5f5;
  margin-top: 0;
  padding: 0 35px;
  display: block;
  overflow: hidden;
}

.paragraph-3 {
  color: #2e2e2e;
  margin-bottom: 20px;
  font-size: 17px;
  line-height: 170%;
}

.div-block-44 {
  height: 70px;
}

.gatilho {
  background-color: var(--secondary);
  color: #fff;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 7px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 18%;
  height: 45px;
  margin-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
  transition: all .35s;
  display: flex;
}

.gatilho:hover {
  background-color: var(--primary-contast);
}

.div-block-45 {
  height: 45px;
}

.link-3 {
  color: #2e2e2e;
  transition: all .35s;
}

.link-3:hover {
  color: #84c707;
}

.link-4 {
  color: var(--secondary);
}

.link-4:hover {
  color: var(--primary);
}

.div-block-46 {
  height: auto;
}

.div-block-47 {
  display: none;
}

.div-block-48 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  margin-top: 60px;
  display: grid;
}

.ver {
  color: var(--medium);
  cursor: pointer;
  text-decoration: underline;
  display: none;
}

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

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

.div-block-51 {
  background-image: url('../images/favicon.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 130px;
  height: 130px;
}

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

.div-block-53 {
  background-image: linear-gradient(#121127c9, #121127c9), url('../images/2150951407.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  justify-content: flex-start;
  align-items: center;
  height: 600px;
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
}

.div-block-54 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1.5fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 60px;
  display: grid;
}

.div-block-55 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.text-block-12 {
  color: #fff;
  text-transform: capitalize;
  font-size: 16px;
}

.contador {
  color: #fff;
  font-size: 30px;
  font-weight: 800;
}

.div-block-56 {
  grid-column-gap: 17px;
  grid-row-gap: 17px;
  cursor: pointer;
  border: 1px solid #ccc;
  border-radius: 6px;
  flex-flow: column;
  padding: 40px;
  transition: all .37s;
  display: flex;
}

.div-block-56:hover {
  border-style: solid;
  border-color: var(--secondary);
}

.div-block-56._1 {
  background-color: #e31d2ab0;
}

.section-id {
  color: #f4724f;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
}

.image-3 {
  object-fit: cover;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  width: 100%;
  height: 400px;
}

.section-h2 {
  margin-bottom: 0;
  font-size: 55px;
  font-weight: 600;
}

.section-3.main {
  padding-top: 150px;
  padding-bottom: 150px;
  overflow: hidden;
}

.container-4 {
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}

.div-block-57 {
  text-align: center;
  padding-top: 25px;
}

.section-header-wrapper {
  margin-bottom: 80px;
}

.section-header {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.section-header.centered {
  grid-column-gap: 0px;
  grid-row-gap: 20px;
  text-align: center;
  max-width: 590px;
  margin-left: auto;
  margin-right: auto;
}

.div-block-5 {
  border-bottom: 1px solid #cce5ffcc;
  border-left: 1px solid #cce5ffcc;
  border-right: 1px solid #cce5ffcc;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  justify-content: flex-start;
  align-items: center;
  height: 140px;
  padding: 35px;
  display: flex;
}

.link-block-2 {
  color: #00091a;
  border: 1px #cce5ffcc;
  border-radius: 5px;
  text-decoration: none;
}

.wrapp-big-cards {
  justify-content: flex-start;
  align-items: center;
  padding-left: 0;
  padding-right: 30px;
  display: flex;
  overflow: hidden;
}

.grid-5 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  min-width: 100%;
  margin-left: 30px;
  margin-right: 0;
  position: relative;
}

.subtext {
  letter-spacing: -.25px;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.65;
}

.subtext.in-hero {
  max-width: 590px;
  margin-left: auto;
  margin-right: auto;
  font-size: 23px;
  line-height: 1.4;
}

.subtext.in-hero._7000 {
  color: #667081;
  font-size: 20px;
}

.text-block-14 {
  color: #c9c6c6f7;
}

.servico-container {
  touch-action: pan-y;
  width: 100%;
  padding-bottom: 20px;
  padding-left: 50px;
  padding-right: 50px;
  display: none;
  position: relative;
  overflow: hidden;
}

.btn-top {
  width: 25px;
}

.div-block-58 {
  background-color: var(--primary);
  opacity: 0;
  color: #fff;
  text-align: center;
  cursor: pointer;
  border-radius: 200px;
  justify-content: center;
  width: 55px;
  height: 55px;
  margin-bottom: 0;
  margin-right: 60px;
  font-weight: 600;
  transition: all .36s;
  display: none;
  position: fixed;
  inset: auto 5% 8% auto;
  box-shadow: 0 2px 10px #00000091;
}

.div-block-58:hover {
  background-color: var(--primary-contast);
}

.info-noticia {
  background-color: #fff;
  background-image: none;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
  height: 100%;
  padding: 20px;
}

.div-block-59 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1.25fr .75fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.div-block-60 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  margin-top: 20px;
  display: flex;
}

.div-block-60._1 {
  justify-content: flex-start;
  margin-bottom: 20px;
}

.div-block-61 {
  transform-style: preserve-3d;
  background-image: linear-gradient(#1f1d3fa1, #1f1d3fa1), url('../images/63838.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  border-radius: 12px;
  height: auto;
  transition: all .35s;
}

.div-block-61:hover {
  transform: translate3d(0, 2px, 1px);
}

.div-block-62 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: none;
}

.div-block-63 {
  margin-top: 40px;
}

.heading-4 {
  color: #fff;
}

.div-block-64 {
  background-color: #1f1d3f;
}

.divis-o {
  border-bottom: 1px solid #fafafa14;
}

.menu-site {
  display: flex;
}

.div-block-65 {
  grid-column-gap: 17px;
  grid-row-gap: 17px;
  align-items: center;
  padding-left: 15px;
  display: flex;
}

.div-block-66 {
  align-items: flex-start;
  display: flex;
}

.div-block-67 {
  grid-column-gap: 2px;
  grid-row-gap: 2px;
  display: flex;
}

.plus-contador {
  color: #fff;
  font-size: 30px;
  font-weight: 800;
}

.link-5 {
  color: #b8b4b4;
}

.link-5:hover {
  color: var(--medium);
}

.link-6 {
  color: #b8b4b4;
}

.text-span {
  color: #ecb7b7;
}

.div-block-68 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.div-block-69 {
  padding-bottom: 100px;
}

.sala {
  width: 680px;
  margin-top: 20px;
  margin-right: 10px;
}

.div-block-70 {
  height: 400px;
  position: relative;
}

.image-4 {
  object-fit: cover;
  border-radius: 6px;
  width: 100%;
  height: 100%;
}

.text-block-15 {
  font-size: 19px;
}

.text-block-16 {
  z-index: 5;
  color: #fff;
  text-shadow: 0 1px 1px #0003;
  border-radius: 6px;
  max-width: none;
  padding: 20px 20px 5px 0;
  font-size: 25px;
  font-weight: 600;
  line-height: 34px;
}

.info-sala {
  z-index: 3;
  opacity: 0;
  cursor: pointer;
  background-image: linear-gradient(#12112775, #12112775);
  border-radius: 6px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  padding: 30px;
  transition: all .35s;
  display: flex;
  position: absolute;
  inset: 0%;
}

.info-sala:hover {
  opacity: 100;
  color: #fff;
  background-image: linear-gradient(#121127c2, #121127c2);
}

.div-block-72 {
  z-index: 4;
  justify-content: center;
  width: 100%;
  padding-bottom: 25px;
  display: flex;
  position: absolute;
  inset: auto auto 2% 0%;
}

.paragraph-4 {
  color: #fff;
  text-align: justify;
  width: 75%;
  font-size: 18px;
  line-height: 30px;
}

.overlay-sala {
  z-index: 1;
  background-image: linear-gradient(#12112714 59%, #27272fab 73%, #333 100%, #12112714);
  border-radius: 6px;
  position: absolute;
  inset: 0%;
}

.salas1 {
  touch-action: pan-y;
  width: 100%;
  margin-top: 20px;
  position: relative;
  overflow: hidden;
}

.sala-conteudo {
  -webkit-user-select: none;
  user-select: none;
  display: inline-flex;
  position: relative;
  inset: 0%;
}

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

.valor {
  color: #fff;
  margin-top: 11px;
  font-size: 26px;
}

.valor-dark {
  margin-top: 10px;
  font-size: 26px;
}

.text-span-2 {
  font-size: 50px;
  font-weight: 800;
  line-height: 55px;
}

.div-block-73 {
  height: 90px;
  margin-bottom: 20px;
}

.titulo-page {
  margin-bottom: 40px;
}

.conteudo-noticias {
  margin-top: 45px;
}

.titulo-noticia-page {
  font-size: 40px;
  font-weight: 700;
  line-height: 46px;
}

.section-4 {
  margin-top: 70px;
  padding-top: 80px;
  padding-bottom: 80px;
}

.paragraph-5 {
  font-size: 16px;
  line-height: 25px;
}

.imagem-destque {
  height: 500px;
}

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

.data {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  margin-top: 5px;
  margin-bottom: 40px;
  display: flex;
}

.text-block-18 {
  color: #7a7a7a;
}

.div-block-74 {
  margin-top: 40px;
  margin-bottom: 40px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.button-3 {
  background-color: var(--primary);
  border-radius: 5px;
  transition: all .37s;
}

.button-3:hover {
  background-color: var(--primary-contast);
}

.text-block-19 {
  color: #504d4d;
  font-weight: 500;
}

.creditos {
  color: #fff;
  padding-top: 5px;
  padding-left: 10px;
  font-size: 10px;
}

.background-video-2 {
  height: 100vh;
}

.servic-item-copy {
  cursor: pointer;
  touch-action: none;
  transform-style: preserve-3d;
  flex-flow: wrap;
  align-items: flex-start;
  min-width: 300px;
  margin-right: 10px;
  padding: 0;
  transition-property: all;
  transition-duration: .35s;
  transition-timing-function: ease;
  display: flex;
  position: relative;
}

.servic-item-copy:hover {
  transform: translate3d(0, 2px, 1px);
}

.service-header {
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 0;
  font-size: 27px;
  font-weight: 600;
  line-height: 22px;
}

.icon-3 {
  font-family: "Fa Solid 900", Arial, sans-serif;
}

.icon-3.primary {
  color: #e49b2c;
  font-family: "Fa Solid 900", Arial, sans-serif;
  font-size: 17px;
}

.service-item {
  background-image: linear-gradient(0deg, #000, #000000db 14%, #0000);
  border-radius: 8px;
  flex-flow: column;
  justify-content: flex-end;
  width: auto;
  min-width: auto;
  max-width: none;
  height: 65vh;
  padding: 30px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.service-item._1 {
  background-image: linear-gradient(0deg, #000, #0000 62%), url('../images/1969-1.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  width: auto;
  min-width: auto;
  max-width: none;
  height: 65vh;
  padding-bottom: 40px;
  overflow: hidden;
}

.service-item._2 {
  background-image: linear-gradient(0deg, #000, #000000db 14%, #0000), url('../images/95772-1.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.service-item._2._1 {
  background-position: 0 0, 50% 0;
  background-size: auto, cover;
  height: 65vh;
}

.service-item._2 {
  background-image: linear-gradient(0deg, #000, #0000 62%), url('../images/95772-1.jpg');
  background-position: 0 0, 0 0;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  width: auto;
  min-width: auto;
  max-width: none;
  height: 400px;
  padding-bottom: 40px;
  overflow: hidden;
}

.service-item._3 {
  background-image: linear-gradient(0deg, #000, #0000 62%), url('../images/17564-1.jpg');
  background-position: 0 0, 0 100%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  width: 100%;
  height: 65vh;
  padding-bottom: 40px;
  overflow: hidden;
}

.service-item._4 {
  background-image: linear-gradient(0deg, #000, #0000 62%), url('../images/115074-1.jpg');
  background-position: 0 0, 0 0;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  width: 100%;
  height: 65vh;
  padding-bottom: 40px;
  overflow: hidden;
}

.service-item._5 {
  background-image: linear-gradient(0deg, #000, #0000 62%), url('../images/37662-1.jpg');
  background-position: 0 0, 0 0;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  width: 100%;
  height: 65vh;
  padding-bottom: 40px;
  overflow: hidden;
}

.service-info-overlay {
  opacity: 1;
  color: #fff;
  background-color: #000000b3;
  border-radius: 8px;
  flex-flow: column;
  justify-content: space-between;
  padding: 40px 30px 30px;
  transition: transform .2s;
  display: block;
  position: absolute;
  inset: 0;
  transform: translate(0, 100%);
}

.link-block-3 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: #e49b2c;
  margin-top: 15px;
  margin-left: 0;
  margin-right: 0;
  font-size: 17px;
  text-decoration: none;
  display: inline-flex;
}

.link-block-3:hover {
  text-decoration: underline;
}

.line-2 {
  background-color: #e49b2c;
  width: 85px;
  height: 5px;
  margin-top: 15px;
  margin-bottom: 12px;
}

.list-2 {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-flow: column;
  margin-top: 10px;
  padding-left: 20px;
  display: flex;
}

.text-overlay {
  flex-flow: column;
  justify-content: space-between;
  margin-top: 30px;
  display: block;
}

.link-block-4 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: #e49b2c;
  margin-top: 30px;
  margin-left: 0;
  margin-right: 0;
  text-decoration: none;
  display: inline-flex;
}

.link-block-4:hover {
  text-decoration: underline;
}

.line-3 {
  background-color: #e49b2c;
  width: 50px;
  height: 5px;
  margin-bottom: 12px;
}

.list-item-2 {
  padding-right: 0;
}

.sub-headline {
  max-width: 650px;
  font-family: Barlow, sans-serif;
  font-size: 15px;
  line-height: 22px;
}

.sub-headline._2 {
  max-width: 750px;
}

.sub-headline.min {
  max-width: 450px;
}

.title-wrapper {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  align-items: center;
  display: flex;
}

.title-wrapper.white {
  color: #fff;
}

.title-wrapper._2 {
  margin-bottom: 40px;
}

.sub-headline-2 {
  max-width: 600px;
  font-family: PT Sans, sans-serif;
  font-size: 15px;
  line-height: 22px;
}

.list-item-3 {
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 400;
}

.container-5 {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.counter {
  color: #e49b2c;
  font-size: 50px;
  font-weight: 600;
}

.math-text {
  letter-spacing: 1px;
  font-weight: 700;
}

.list-3 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: column;
  padding-top: 10px;
  padding-left: 40px;
  list-style-type: none;
  display: flex;
}

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

.col-3._2 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}

.math-col {
  grid-column-gap: 22px;
  grid-row-gap: 22px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 20px 10px;
  display: flex;
}

.why-choose-us {
  background-color: var(--dark);
  color: #fff;
  align-items: center;
  height: 80vh;
  padding-top: 100px;
  padding-bottom: 130px;
  display: flex;
}

.column-wrapper {
  margin-top: 25px;
}

.column-wrapper._2 {
  margin-top: 60px;
}

.div-block-75 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  display: flex;
}

.about-text {
  color: #fff;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 38px;
  line-height: 46px;
}

.grid-6 {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  grid-template-rows: auto;
  align-items: stretch;
}

.clients {
  padding-top: 100px;
  padding-bottom: 130px;
}

.container-6 {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.sub-headline-3 {
  max-width: 600px;
  font-family: PT Sans, sans-serif;
  font-size: 15px;
  line-height: 22px;
}

.sub-headline-3.small {
  font-size: 12px;
}

.client-grid {
  grid-column-gap: 35px;
  grid-row-gap: 40px;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.info-section {
  background-image: linear-gradient(#000000c2, #000000c2), url('../images/18516-1.jpg');
  background-position: 0 0, 0%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  height: 80vh;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
}

.div-block-76 {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  color: #fff;
  text-align: left;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

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

.col-2.info-column {
  grid-column-gap: 45px;
  color: #fff;
  text-align: left;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  align-items: center;
}

.col-2._2 {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
}

.info-text-wrap {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  display: flex;
}

.client-logo {
  border: 1px solid var(--border);
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  height: 210px;
  padding: 20px 25px;
  display: flex;
}

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

.col-2-2.center {
  align-items: start;
}

.footer-link-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  text-align: right;
  flex-flow: row;
  display: flex;
}

.footer-col {
  padding: 0 30px 10px 10px;
}

.footer-col.row {
  display: flex;
}

.footer-dark {
  background-color: var(--dark);
  color: #eee;
  border-bottom: 1px solid #e4ebf3;
  padding: 70px 0 15px;
  font-weight: 400;
  position: relative;
}

.social-icons {
  grid-column-gap: 35px;
  grid-row-gap: 35px;
  color: #e49b2c;
  justify-content: flex-end;
  align-items: center;
  margin-top: 0;
  font-size: 24px;
  display: flex;
}

.container-7 {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.text-block-20 {
  text-align: justify;
  padding-bottom: 25px;
  font-family: PT Sans, sans-serif;
  font-size: 15px;
  line-height: 22px;
}

.text-block-20.footer {
  color: #c6c6c6;
  text-align: right;
  padding-bottom: 2px;
  font-size: 15px;
  line-height: 19px;
  text-decoration: none;
}

.text-block-20.footer.link {
  text-decoration: none;
}

.text-block-20.footer.link:hover {
  color: var(--primary);
  text-decoration: underline;
}

.footer-wrapper {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
  display: flex;
}

.footer-logo {
  background-image: url('../images/Logo-Linkup-1.png');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 7px;
  width: 200px;
  height: 70px;
  margin-bottom: 30px;
  text-decoration: none;
}

.social-icon {
  color: #c6c6c6;
  font-family: "Fa Brands 400", Arial, sans-serif;
  font-size: 20px;
  text-decoration: none;
}

.social-icon:hover {
  color: #e49b2c;
}

.footer-divider {
  background-color: #4b4b4b;
  width: 100%;
  height: 1px;
  margin-top: 10px;
  margin-bottom: 15px;
}

.footer-copyright-center {
  color: #c6c6c6;
  text-align: center;
  font-family: PT Sans, sans-serif;
  font-size: 14px;
  line-height: 16px;
}

.service-header-2 {
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 22px;
}

.service-header-2.black {
  color: #0d0d0d;
  margin-bottom: 8px;
  line-height: 26px;
}

.wrapper {
  margin-top: 20px;
}

.wrapper.bottom {
  margin-top: 0;
  padding-bottom: 20px;
}

.wrapper.bottom._2 {
  padding-bottom: 10px;
}

.portflio-box {
  color: #333;
  background-color: #f1f5f9;
  border-radius: 4px;
  padding: 0 0 20px;
  text-decoration: none;
}

.portflio-box:hover {
  background-color: #eef0f3;
}

.small {
  color: #777;
  font-family: PT Sans, sans-serif;
  font-size: 13px;
}

.portfolio-image {
  object-fit: cover;
  border-radius: 4px;
  width: 100%;
  max-width: none;
  height: 300px;
}

.article-sections {
  background-color: var(--gray-blue);
  padding-top: 100px;
  padding-bottom: 140px;
}

.link-7 {
  color: var(--primary);
  text-align: right;
  width: 100%;
  font-weight: 600;
  text-decoration: underline;
  transition: all .35s;
}

.link-7:hover {
  color: #e49b2c;
}

.flex-block-2 {
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 40px;
}

.counter-icon {
  color: #e49b2c;
  font-size: 50px;
  font-weight: 600;
}

.team-members {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  touch-action: pan-y;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  width: 100%;
  padding: 60px 0 20px;
  display: flex;
  position: relative;
  overflow: hidden;
}

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

.line-4 {
  background-color: #e49b2c;
  width: 50px;
  height: 5px;
  margin-bottom: 12px;
}

.line-4.page {
  width: 70px;
}

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

.page-banner {
  color: #fff;
  width: 100%;
  height: 500px;
  padding-top: 100px;
  padding-bottom: 100px;
}

.page-banner.about {
  background-image: linear-gradient(#0009, #0009), url('../images/EQUIPA-LINKUP-1-1.jpg');
  background-position: 0 0, 50% 0;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  justify-content: center;
  align-items: center;
  height: 500px;
  display: flex;
}

.page-banner.about-banner {
  background-image: linear-gradient(#0009, #0009), url('../images/18516-1.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  flex-flow: column;
  justify-content: center;
  height: 75vh;
  display: flex;
}

.page-banner.galery {
  background-image: linear-gradient(#0009, #0009), url('../images/30575-1.jpg');
  background-position: 0 0, 50% 0;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  justify-content: center;
  align-items: center;
  height: 500px;
  display: flex;
}

.page-banner.porfolio {
  background-image: linear-gradient(#0009, #0009), url('../images/17564-1.jpg');
  background-position: 0 0, 50% 0;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  justify-content: center;
  align-items: center;
  height: 500px;
  display: flex;
}

.page-banner.articles {
  background-image: linear-gradient(#0009, #0009), url('../images/image-2.avif');
  background-position: 0 0, 50% 0;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  justify-content: center;
  align-items: center;
  height: 500px;
  display: flex;
}

.page-banner.contactos {
  background-image: linear-gradient(#0009, #0009), url('../images/2151933130-1.jpg');
  background-position: 0 0, 50% 0;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  justify-content: center;
  align-items: center;
  height: 500px;
  display: flex;
}

.page-banner.community {
  background-image: linear-gradient(#0009, #0009), url('../images/2148931127-1.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  justify-content: center;
  align-items: center;
  height: 500px;
  display: flex;
}

.page-banner.community-main {
  background-image: linear-gradient(#000000b3, #000000b3), url('../images/3131.png');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  justify-content: center;
  align-items: center;
  height: 85vh;
  display: flex;
}

.main {
  padding-bottom: 0;
}

.main.backoffice {
  background-color: #f7f7f7;
}

.title-4 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 52px;
  font-weight: 700;
  line-height: 62px;
}

.about-info {
  background-color: #0000;
  flex-flow: column;
  justify-content: center;
  height: 60vh;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
}

.about-info.gray {
  background-color: #eef0f3;
  padding-bottom: 140px;
}

.card-2 {
  background-color: var(--dark);
  color: #fff;
  border-radius: 0 4px;
  padding: 30px 25px 40px;
  position: relative;
}

.team-grid {
  grid-column-gap: 35px;
  grid-row-gap: 35px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.team-grid._2 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}

.liine {
  background-color: var(--primary);
  border-top-left-radius: 22px;
  border-top-right-radius: 56px;
  width: 75%;
  height: 9px;
  position: absolute;
  top: -9px;
  left: 0;
}

.liine.end {
  border-radius: 0 0 22px 56px;
  inset: auto 0 -9px auto;
}

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

.col-2-4._2 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}

.galery-image, .image-6 {
  width: 100%;
}

.section-main {
  padding-top: 100px;
  padding-bottom: 130px;
}

.service-header-3 {
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 22px;
}

.service-header-3.black {
  color: #0d0d0d;
  margin-bottom: 8px;
  line-height: 26px;
}

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

.col-3-2._2 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}

.portfolio-text-wrapper {
  margin-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
}

.portfolio-text-wrapper.bottom {
  margin-top: 0;
  padding-bottom: 20px;
}

.article-text-wrapper {
  flex-flow: column;
  justify-content: center;
  display: flex;
}

.service-header-4 {
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 22px;
}

.service-header-4.black {
  color: #0d0d0d;
  margin-bottom: 8px;
  line-height: 26px;
}

.article-image-wrapper {
  width: 350px;
  min-width: 350px;
  height: 300px;
}

.article-box {
  grid-column-gap: 35px;
  grid-row-gap: 35px;
  color: #333;
  background-color: #f1f5f9;
  border-radius: 4px;
  margin-bottom: 60px;
  padding: 50px;
  text-decoration: none;
  display: flex;
}

.article-box:hover {
  background-color: #eef0f3;
}

.link-block-5 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: #e49b2c;
  margin-top: 15px;
  margin-left: 0;
  margin-right: 0;
  text-decoration: none;
  display: inline-flex;
}

.link-block-5:hover {
  text-decoration: underline;
}

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

.text-block-21 {
  text-align: justify;
  padding-bottom: 25px;
  font-family: PT Sans, sans-serif;
  font-size: 15px;
  line-height: 22px;
}

.div-block-77 {
  margin-top: 3px;
}

.text-block-22 {
  font-family: PT Sans, sans-serif;
  font-weight: 400;
}

.text-block-22.bold {
  font-size: 14px;
  font-weight: 700;
}

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

.text-field-2 {
  color: #333;
  background-color: #f2f2f2;
  border: 1px solid #bebebe;
  border-radius: 4px;
  height: 50px;
  margin-top: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: PT Sans, sans-serif;
}

.text-field-2.textarea {
  height: 100px;
}

.button-4 {
  grid-column-gap: .5em;
  grid-row-gap: .5em;
  box-shadow: none;
  color: #fff;
  text-align: center;
  cursor: pointer;
  background-color: #e49b2c;
  background-image: none;
  border: 0 solid #0000;
  border-radius: .25rem;
  justify-content: center;
  align-items: center;
  min-width: 170px;
  padding: 1em 2em;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2;
  text-decoration: none;
  transition: border-color .2s, color .2s, background-color .2s cubic-bezier(.165, .84, .44, 1), box-shadow .2s;
  display: inline-flex;
}

.button-4:hover {
  box-shadow: none;
  color: #fff;
  background-color: #e49b2c;
  border-color: #0000;
}

.button-4:active {
  box-shadow: none;
  background-color: #ff891b;
}

.button-4:focus {
  outline-offset: 2px;
  outline: 2px solid #ff891b;
}

.button-4.full {
  width: 100%;
}

.form {
  background-color: #fafafa;
  padding: 40px;
}

.form-wrapper {
  margin-bottom: 30px;
}

.field-label {
  font-family: PT Sans, sans-serif;
  font-size: 15px;
  font-weight: 400;
}

.card-3 {
  background-color: #fff;
  border-radius: 4px;
  padding: 30px 25px 40px;
}

.card-3.contact {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  color: #333;
  border: 1px solid #d9d9d9;
  justify-content: flex-start;
  align-items: center;
  margin-top: 15px;
  margin-bottom: 0;
  padding-top: 20px;
  padding-bottom: 20px;
  text-decoration: none;
  display: flex;
}

.ling {
  padding-top: 20px;
  padding-left: 20px;
}

.tab-galeria {
  background-color: #fff;
  border-radius: 2px;
  height: 45px;
  padding-left: 0;
  padding-right: 20px;
  font-size: 22px;
  font-weight: 400;
}

.tab-galeria:hover {
  color: var(--primary);
  font-weight: 600;
}

.tab-galeria.w--current {
  color: var(--primary);
  background-color: #fff;
  height: 45px;
  font-weight: 600;
}

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

.container-8 {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 50px;
  padding-right: 50px;
}

.section-8 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.item-galeria2-wrapper {
  border-radius: 3px;
  width: 100%;
  height: 17rem;
  display: flex;
  overflow: hidden;
}

.button-5 {
  color: #fff;
  text-align: center;
  background-color: #123fd8;
  border: 1px #3d3d3d;
  border-radius: 5px;
  min-width: 100px;
  height: 45px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  padding: 13px 25px 14px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
}

.button-text {
  color: #fff;
  font-size: 16px;
  display: inline-block;
}

.galeria-fotos {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.button-wrapper {
  margin-top: 50px;
}

.button-wrapper.centered {
  text-align: center;
}

.galeria2 {
  background-color: #fff;
}

.item-galeria2 {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.div-block-35 {
  border: 1px dashed var(--border);
  background-color: var(--gray-blue);
  color: var(--dark);
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  margin-top: 25px;
  padding: 40px;
  font-size: 16px;
  display: none;
}

.div-block-35.content {
  text-align: center;
  display: none;
}

.grid-galeria {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 25px;
  display: none;
}

.grid-galeria.videos {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.item-galeria {
  height: 300px;
  position: relative;
}

.item-galeria.videos {
  height: 350px;
}

.item-galeria.videos._2 {
  height: 300px;
  margin-bottom: 60px;
  position: static;
}

.tabs-menu {
  padding-bottom: 26px;
}

.login-section {
  display: flex;
  position: fixed;
  inset: 0%;
}

.div-block-140 {
  background-image: linear-gradient(#0006, #0006), url('../images/17564-1.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  align-items: center;
  width: 100%;
  padding-left: 70px;
  display: flex;
}

.div-block-141 {
  background-color: #fff;
  border-radius: 8px;
  width: 40%;
  max-width: 500px;
  padding: 40px;
  font-family: Open Sans, Arial, sans-serif;
  overflow: auto;
}

.div-block-142 {
  background-image: url('../images/logo-1.jpg');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 170px;
  height: 90px;
  margin-bottom: 50px;
}

.text-field-3 {
  border-radius: 5px;
  height: 45px;
  margin-bottom: 15px;
  padding-left: 24px;
  font-size: 17px;
}

.text-field-3._3 {
  margin-bottom: 40px;
}

.button-6 {
  text-align: center;
  background-color: #22398e;
  border-radius: 5px;
  width: 200px;
  height: 50px;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 16px;
  line-height: 50px;
  position: absolute;
  inset: auto 0% 0%;
}

.button-6._100 {
  text-transform: uppercase;
  background-color: #2a48db;
  background-image: none;
  width: 100%;
  font-weight: 700;
  position: static;
}

.text-block-24 {
  font-size: 17px;
  line-height: 1.2;
}

.nav-lin {
  color: #fff;
  align-items: center;
  min-height: 60px;
  padding: 10px 35px 10px 45px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
}

.nav-lin:hover {
  background-color: #ffffff0d;
  border-left: 4px #e8a036;
}

.nav-lin.w--current {
  border-left: 4px solid var(--primary-contast);
  color: var(--primary-contast);
  background-color: #ffffff0d;
}

.nav-lin.logout {
  color: #0b051f;
}

.links-wrapper {
  padding-top: 10px;
  padding-bottom: 50px;
}

.brand-2 {
  background-image: url('../images/Logo-Linkup-1.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 3px;
  max-width: 160px;
  height: 70px;
  display: block;
}

.brand-2.w--current {
  background-image: url('../images/logo-original-4.png');
  width: 120px;
  margin-top: 10px;
}

.main-2 {
  width: 100%;
}

.navigation {
  z-index: 1000;
  color: #fff;
  background-color: #2c2c2c;
  border-right: 1px solid #a0aec052;
  width: 300px;
  min-width: 300px;
  max-width: 300px;
  height: 100vh;
  position: fixed;
}

.brand-wrapper {
  height: 150px;
  padding: 45px;
}

.div-block-147 {
  padding-bottom: 25px;
  position: absolute;
  inset: auto 0% 0%;
}

.text-block-25 {
  margin-top: 2px;
  margin-right: 20px;
  font-family: "Fa 400", Arial, sans-serif;
  font-size: 1.3rem;
  line-height: 1;
}

.text-block-25.logout {
  font-family: "Fa Solid 900", Arial, sans-serif;
}

.grid-22 {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  margin-bottom: 50px;
}

.text-block-169 {
  color: #222233b8;
  align-items: center;
  font-size: 1rem;
  line-height: 1.1;
  display: flex;
}

.text-block-152 {
  color: #39393966;
}

.txt {
  color: #072e3c40;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
}

.card-wrapper-2 {
  background-color: #fff;
  border-radius: 5px;
  height: 80px;
  margin-bottom: 10px;
  text-decoration: none;
  display: flex;
  box-shadow: 1px 1px 3px #344e9814;
}

.card-wrapper-2:hover {
  border: 1px solid #072e3c3d;
}

.header-back-wrapper.buttonx {
  justify-content: flex-start;
  margin-bottom: 40px;
  display: flex;
}

.text-block-168 {
  color: #00000087;
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2;
}

.card-item-2 {
  height: 100%;
  padding-top: 0;
  padding-bottom: 0;
}

.card-item-2.icon {
  color: #d13232;
  justify-content: center;
  align-items: center;
  width: 20%;
  font-size: 1.5rem;
  display: flex;
}

.card-item-2.data-1 {
  width: 25%;
  padding-right: 1rem;
  display: flex;
}

.card-item-2.data-1.x {
  width: 15%;
}

.card-item-2.data-1.x._10 {
  width: 20%;
}

.card-item-2.name {
  color: #223;
  flex: 0 auto;
  align-items: center;
  width: 80%;
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 1rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.card-item-2.img {
  justify-content: center;
  align-items: center;
  width: 20%;
  padding-left: .5rem;
  padding-right: .5rem;
  display: flex;
}

.card-item-2.img._900 {
  width: 20%;
}

.heading-17 {
  margin-top: 0;
}

.heading-17.box {
  width: 450px;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 500;
  line-height: 40px;
  overflow: hidden;
}

.side-a {
  width: 90%;
  display: flex;
}

.div-block-281 {
  flex: 1;
  width: 60%;
  display: flex;
}

.container-9 {
  max-width: 1200px;
  margin-left: 60px;
  margin-right: 0;
  padding-left: 60px;
  padding-right: 0;
}

.text-block-164 {
  color: var(--primary);
  -webkit-text-stroke-color: var(--primary);
  margin-top: 3px;
  font-family: "Fa 400", Arial, sans-serif;
  line-height: 1;
}

.content-wrapper {
  height: 100vh;
  margin-left: 300px;
  padding-top: 50px;
  padding-bottom: 50px;
  position: static;
  inset: 0%;
  overflow: auto;
}

.div-block-164 {
  text-align: center;
  min-width: 170px;
  max-width: 200px;
  margin-bottom: 0;
}

.button-7 {
  text-align: center;
  text-transform: uppercase;
  background-color: #344e98;
  border-radius: 5px;
  padding: .8rem 1.3rem;
  font-size: 96%;
  font-weight: 700;
  line-height: 1.5;
  display: block;
}

.button-7:hover {
  background-color: #5878d2;
  font-weight: 700;
}

.button-7.bx {
  background-color: var(--primary);
  color: #fff;
  text-transform: uppercase;
  font-family: Open Sans, Arial, sans-serif;
  font-weight: 700;
}

.div-block-260-copy {
  padding-top: 0;
}

.text-block-167 {
  background-color: var(--gray-blue);
  color: #333;
  text-align: center;
  border-radius: 5px;
  width: 100%;
  padding: 5px 10px;
  font-weight: 500;
}

.text-block-167:hover {
  background-color: #eee;
}

.text-block-170 {
  margin-bottom: 25px;
  font-size: 16px;
  font-weight: 600;
}

.side-a-1 {
  width: 50%;
  display: flex;
}

.hold-the-header {
  margin-top: 0;
  margin-bottom: 50px;
}

.legenda-wrapper {
  border-top: 1px solid #344e981f;
  border-bottom: 1px #c9c9c9;
  margin-bottom: 15px;
  padding-top: 5px;
  padding-bottom: 5px;
  display: flex;
}

.side-b {
  justify-content: center;
  align-items: center;
  width: 10%;
  display: flex;
  position: relative;
}

.side-b._123 {
  padding-left: 10px;
  padding-right: 10px;
}

.text-block-150 {
  color: #0b051f;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-size: 14px;
  font-weight: 700;
}

.text-block-151 {
  margin-bottom: 15px;
  font-size: 44px;
  font-weight: 300;
  line-height: 1;
}

.div-block-170 {
  background-color: #fff;
  border: 1px #e2e2e2;
  border-radius: 8px;
  height: 220px;
  padding: 50px 35px 35px;
  position: relative;
  box-shadow: 1px 1px 3px #157a9f0a;
}

.mask {
  width: 100%;
}

.slide-7 {
  width: 100%;
  height: auto;
}

.slide-desktop {
  background-color: #0000;
  height: 500px;
  margin-top: 60px;
}

.left-arrow-3 {
  display: none;
}

.right-arrow-3 {
  padding-right: 0;
  display: none;
}

.icon-4 {
  display: none;
}

.slide-mobile {
  height: 500px;
  display: none;
}

.slide-nav-3 {
  display: none;
}

.comunity-box {
  transform-style: preserve-3d;
  flex-flow: column;
  width: 48%;
  height: auto;
  margin-bottom: 40px;
  margin-right: 15px;
  transition: all .35s;
  display: flex;
}

.comunity-box:hover {
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
  transform: translate3d(0, 2px, 1px);
  box-shadow: 0 2px 5px #00000029;
}

.flex-block-3 {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  justify-content: flex-start;
  align-items: center;
}

.search-no-filtro-2 {
  flex: none;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 15px;
  position: relative;
}

.div-block-263 {
  text-align: center;
  background-color: #fff;
  border: 1px #e0e2e7;
  border-radius: 4px;
  margin-bottom: 40px;
  padding: 40px;
  display: flex;
  position: static;
  box-shadow: 1px 1px 3px #344e980f;
}

.search-input-2 {
  color: #333;
  background-color: #0000;
  border: 1px solid #d0d3dd;
  border-radius: 4px;
  height: 40px;
  margin-bottom: 0;
  padding-left: 38px;
  padding-right: 15px;
  font-size: 14px;
}

.search-input-2:focus {
  color: #171f36;
  background-color: #fff;
  border-color: #f76c5e;
}

.search-input-2::placeholder {
  color: #b8bac1;
  font-size: 14px;
}

.text-block-171 {
  color: #222233b8;
  align-items: center;
  font-size: 1rem;
  line-height: 1.1;
  display: flex;
}

.text-block-172 {
  color: #00000087;
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2;
}

.select-field-2 {
  color: #333;
  background-color: #fff;
  border-radius: 4px;
  flex: 1;
  height: 40px;
  margin-bottom: 0;
  margin-right: 15px;
}

.div-block-282 {
  flex: 1;
  align-items: center;
  width: 60%;
  display: flex;
}

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

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

.container-10 {
  max-width: 1200px;
  margin-left: 60px;
  margin-right: 0;
  padding-left: 60px;
  padding-right: 0;
}

.form-3 {
  width: 100%;
  display: block;
}

.text-block-173 {
  color: #294dd3;
  margin-top: 3px;
  line-height: 1;
}

.div-block-283 {
  text-align: center;
  min-width: 170px;
  max-width: 200px;
  margin-bottom: 0;
}

.button-8 {
  text-align: center;
  text-transform: uppercase;
  background-color: #344e98;
  border-radius: 5px;
  padding: .8rem 1.3rem;
  font-size: 96%;
  font-weight: 700;
  line-height: 1.5;
  display: block;
}

.button-8:hover {
  background-color: #5878d2;
  font-weight: 700;
}

.button-8.bx {
  color: #fff;
  text-transform: uppercase;
  background-color: #2a48db;
  font-family: Open Sans, Arial, sans-serif;
  font-weight: 700;
}

.link-8 {
  float: left;
  color: #2222337d;
  background-image: url('../images/icons8-esquerda-50.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 30px;
  height: 33px;
  margin-right: 10px;
  padding-top: 0;
  padding-right: 0;
  font-family: Inconsolata, monospace;
  font-size: 34px;
  line-height: 40px;
  text-decoration: none;
  display: block;
}

.form-block-4 {
  width: 100%;
  margin-bottom: 0;
  display: block;
}

.search-button-3 {
  color: #b8bac1;
  background-color: #0000;
  width: 25px;
  padding: 0;
  font-size: 16px;
  line-height: 40px;
  position: absolute;
  inset: 0 0 0 10px;
}

.search-button-3._89 {
  background-image: url('../images/Search-Icon-gray.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 30px;
  margin-top: 3px;
  top: 2px;
}

.text-block-174 {
  color: #fff;
  text-align: center;
  background-color: #a8a8a88f;
  border-radius: 5px;
  width: 100%;
  padding: 5px 10px;
  font-weight: 700;
}

.text-block-174:hover {
  background-color: #01141b;
}

.div-block-284 {
  text-align: center;
  background-color: #fff;
  border: 1px #e0e2e7;
  border-radius: 4px;
  margin-bottom: 40px;
  padding: 40px;
  display: flex;
  position: static;
  box-shadow: 1px 1px 3px #344e980f;
}

.search-input-3 {
  color: #333;
  background-color: #0000;
  border: 1px solid #d0d3dd;
  border-radius: 4px;
  height: 40px;
  margin-bottom: 0;
  padding-left: 38px;
  padding-right: 15px;
  font-size: 14px;
}

.search-input-3:focus {
  color: #171f36;
  background-color: #fff;
  border-color: #f76c5e;
}

.search-input-3::placeholder {
  color: #b8bac1;
  font-size: 14px;
}

.select-field-3 {
  color: #333;
  background-color: #fff;
  border-radius: 4px;
  flex: 1;
  height: 40px;
  margin-bottom: 0;
  margin-right: 15px;
}

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

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

.form-4 {
  width: 100%;
  display: block;
}

.grid-20 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
}

.button-9 {
  color: #fff;
  letter-spacing: 0;
  text-transform: none;
  border-radius: 4px;
  height: 40px;
  margin-left: 4px;
  margin-right: 4px;
  padding: 9px 25px;
  font-size: 14px;
  text-decoration: none;
  transition: all .2s;
}

.button-9.mensagem-copy {
  color: #0b051f;
  text-align: center;
  text-transform: uppercase;
  background-color: #0000;
  border: 1px solid #0b051f;
  height: 50px;
  margin-left: 0;
  margin-right: 0;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 50px;
  transition: none;
  display: block;
}

.button-9.mensagem-copy:hover {
  color: #fff;
  background-color: #072e3cb3;
  border-style: none;
}

.texto-2 {
  color: #33333382;
  margin-bottom: 10px;
  font-size: 17px;
}

.div-block-274 {
  flex: 1;
  padding-left: 50px;
}

.div-block-274._2 {
  padding-left: 0;
}

.div-block-272 {
  background-color: #fff;
  border-radius: 5px;
  padding: 50px;
  display: flex;
  box-shadow: 1px 1px 3px #344e9826;
}

.titulo-2 {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
}

.div-block-285 {
  margin-bottom: 25px;
}

.div-block-307 {
  background-color: #fff;
  border-radius: 5px;
  margin-top: 40px;
  padding: 60px 50px;
  box-shadow: 1px 1px 3px #344e9826;
}

.heading-18 {
  margin-top: 0;
  font-weight: 600;
}

.text-block-175 {
  color: #727272;
  margin-bottom: 50px;
  font-size: 16px;
}

.text-block-176 {
  background-color: var(--primary);
  color: #fff;
  border-radius: 5px;
  padding: 5px 20px;
  font-family: Open Sans, Arial, sans-serif;
  font-weight: 700;
  display: inline-block;
}

.div-block-308 {
  flex: 1;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 0;
}

.section-artg {
  margin-bottom: 12px;
  padding-top: 25px;
  font-family: Lato, sans-serif;
}

.rich-text-block-4 {
  text-align: left;
}

.heading-9 {
  margin-bottom: 20px;
  font-size: 41px;
  font-weight: 400;
  line-height: 120%;
}

.div-block-309 {
  background-image: url('../images/finanças-para-autônomos.jpeg');
  background-position: 50%;
  background-size: cover;
  height: 500px;
  margin-bottom: 25px;
}

.div-block-287 {
  border: 1px dashed #cacaca;
  border-radius: 5px;
  margin-bottom: 25px;
  padding: 20px;
}

.success-message {
  color: #171f36;
  font-size: 16px;
  line-height: 24px;
}

.form-success {
  z-index: 1000;
  background-color: #f0f0f0bf;
  margin-left: auto;
  margin-right: auto;
  padding-top: 5vh;
  position: fixed;
  inset: 0%;
}

.uploaded-photo-div {
  border-right: 1px solid #d0d3dd;
  justify-content: center;
  align-items: center;
  width: 150px;
  min-width: 150px;
  max-width: 150px;
  padding: 15px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.form-field-label-description {
  color: #9c9c9c;
  margin-bottom: 8px;
  font-size: 13px;
  line-height: 120%;
}

.uploaded-photo-wrapper {
  display: none;
}

.form-text-field-3 {
  background-color: #fff;
  border: 1px solid #d0d3dd;
  border-radius: 4px;
  height: 45px;
  margin-bottom: 25px;
  font-size: 17px;
  transition: all .1s;
}

.form-text-field-3:hover {
  background-color: #fff;
}

.form-text-field-3:focus {
  background-color: #fff;
  border-color: #5968a3;
}

.form-text-field-3::placeholder {
  color: #9c9c9c;
}

.form-text-field-3._1 {
  margin-top: 10px;
}

.uploaded-photo-content {
  background-color: #f8f8f8;
  border: 1px solid #d0d3dd;
  border-radius: 4px;
  height: 130px;
  margin-bottom: 10px;
  display: flex;
}

.div-block-310 {
  flex: 1;
}

.photo-upload-input-field {
  text-align: center;
  cursor: pointer;
  background-color: #f8f8f8;
  border: 2px dashed #d0d3dd;
  border-radius: 4px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 170px;
  transition: all .1s;
  display: flex;
}

.photo-upload-input-field:hover {
  background-color: #fff;
}

.photo-upload-input-field:focus {
  background-color: #fff;
  border-color: #ff5c4b;
}

.photo-upload-input-field::placeholder {
  color: #9c9c9c;
}

.form-left-side-2 {
  background-color: #fff;
  border-left: 1px #e0e2e7;
  flex: 1;
  padding: 50px;
}

.button-10 {
  color: #fff;
  letter-spacing: 0;
  text-transform: none;
  border-radius: 4px;
  height: 40px;
  margin-left: 4px;
  margin-right: 4px;
  padding: 9px 25px;
  font-size: 14px;
  text-decoration: none;
  transition: all .2s;
}

.button-10.success-continue {
  background-color: #05b32e;
  margin-left: 0;
  margin-right: 0;
  position: absolute;
  inset: 20px 20px auto auto;
}

.button-10.success-continue:hover {
  background-color: #058317;
}

.button-10.mensagem {
  text-align: center;
  text-transform: uppercase;
  background-color: #3158b1;
  height: 50px;
  margin-left: 0;
  margin-right: 0;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 50px;
  display: block;
}

.button-10.mensagem:hover {
  background-color: #157a9f;
}

.button-10.success-continue-copy {
  background-color: #0000002e;
  margin-left: 0;
  margin-right: 0;
  position: absolute;
  inset: 20px 20px auto auto;
}

.button-10.success-continue-copy:hover {
  background-color: #00000052;
}

.button-10.success-continue-copy.ok {
  color: #05b32e;
  background-color: #0000;
  border: 1px solid #05b32e;
  right: 177px;
}

.button-10.success-continue-copy.ok:hover {
  color: #fff;
  background-color: #05b32e;
}

.button-10.gray {
  color: #9c9c9c;
  background-color: #f8f8f8;
  border: 1px solid #d0d3dd;
  margin-left: 0;
  margin-right: 8px;
  padding-left: 15px;
  padding-right: 15px;
}

.button-10.gray:hover {
  color: #fff;
  background-color: #449e47;
  border-color: #0000;
}

.button-10.gray.apagar:hover {
  background-color: #fc3636;
}

.photo-contain {
  max-width: 90px;
}

.photo-upload-icon {
  color: #a9a9a9;
  margin-bottom: 14px;
  font-family: "Fa Solid 900", Arial, sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 100%;
}

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

.div-block-145 {
  margin-bottom: 25px;
}

.form-success-content {
  background-color: #fff;
  border-radius: 4px;
  min-width: 200px;
  max-width: 1000px;
  height: 80px;
  min-height: 80px;
  margin-left: auto;
  margin-right: auto;
  padding: 29px 185px 27px 108px;
  position: relative;
  box-shadow: 0 2px 50px #00000042;
}

.form-success-content.with-2-buttons {
  background-color: #fff;
  padding-right: 303px;
  box-shadow: 0 2px 50px #00000042;
}

.success-flex {
  display: flex;
}

.uploaded-image-resolution {
  color: #9c9c9c;
}

.grid-24 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  margin-top: 5px;
}

.form-field-label {
  color: #222233db;
  margin-bottom: 6px;
  font-size: .9rem;
  font-weight: 600;
  line-height: 1.1;
}

.uploaded-image-name {
  height: 16px;
  line-height: 100%;
  overflow: hidden;
}

.form-button-icon {
  margin-right: 8px;
  position: relative;
  top: 2px;
}

.link-9 {
  color: red;
  font-size: 1.1rem;
  line-height: 1;
  text-decoration: none;
  position: relative;
  top: 1px;
}

.fomr-alt-text {
  flex: 1;
  width: 80%;
  font-size: .8rem;
  line-height: 1;
}

.uploaded-photo-info {
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
  overflow: hidden;
}

.texto {
  border-radius: 8px;
  padding-bottom: 259px;
}

.div-1 {
  margin-top: 25px;
  margin-bottom: 25px;
}

.div-1.eie {
  margin-top: 0;
  margin-bottom: 25px;
  overflow: hidden;
}

.test-form-block {
  background-color: #fff;
  border-radius: 4px;
  height: 947px;
  margin-bottom: 0;
  padding: 50px;
}

.test-form-block.zero-padding-all {
  background-color: #0000;
  height: auto;
  padding: 0;
}

.test-form-block.zero-padding-all._4000 {
  width: 900px;
}

.test-form-block.zero-padding-all._290 {
  width: 600px;
}

.confirmation-check-icon {
  color: #05b32e;
  text-align: center;
  background-color: #0000;
  border: 3px solid #05b32e;
  border-radius: 13px;
  width: 50px;
  height: 50px;
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 32px;
  line-height: 50px;
  overflow: hidden;
}

.confirmation-check-icon.absolute-right {
  position: absolute;
  inset: 15px auto auto 20px;
}

.error-message {
  color: #e6253f;
  text-align: center;
  background-color: #fce1e6;
  border: 1px solid #e6253f;
  border-radius: 4px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 12px;
  font-size: 15px;
  position: fixed;
  inset: 0% 0% auto;
}

.image-8 {
  object-fit: contain;
  max-height: 80%;
}

.form-select-field {
  color: #333;
  background-color: #fff;
  border: 1px solid #d0d3dd;
  border-radius: 5px;
  height: 45px;
  margin-bottom: 25px;
  transition: all .1s;
}

.form-select-field:hover {
  background-color: #fff;
}

.form-select-field:focus {
  background-color: #fff;
  border-color: #ff5c4b;
}

.form-select-field.last-item {
  border-radius: 4px;
  margin-bottom: 0;
}

.form-select-field.last-item:focus {
  border-color: #1675bd;
}

.form-2 {
  display: flex;
}

.form-2.round-corners {
  border: 1px solid #e0e2e7;
  border-radius: 4px;
  margin-left: 16px;
  overflow: hidden;
}

.form-2.round-corners._10 {
  border-style: none;
  border-radius: 8px;
  margin-left: 0;
  box-shadow: 1px 1px 3px #344e9829;
}

.link-10 {
  color: #ba2121;
  border: 1px solid #ba2121;
  border-radius: 5px;
  margin-right: 15px;
  padding: 15px;
  text-decoration: none;
}

.photo-upload-text {
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 100%;
}

.photo-upload-input-wrapper {
  border-bottom: 1px solid #e0e2e7;
  min-height: 170px;
  margin-bottom: 25px;
  padding-top: 0;
  padding-bottom: 30px;
  overflow: hidden;
}

.link-11 {
  color: #157a9f;
  border: 1px solid #157a9f;
  border-radius: 5px;
  margin-right: 15px;
  padding: 15px;
  text-decoration: none;
}

.div-block-146 {
  background-color: #e4e4e4eb;
  border-radius: 5px;
  padding: 10px;
  display: flex;
}

.grid-25 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
}

.button-11 {
  color: #fff;
  letter-spacing: 0;
  text-transform: none;
  border-radius: 4px;
  height: 40px;
  margin-left: 4px;
  margin-right: 4px;
  padding: 9px 25px;
  font-size: 14px;
  text-decoration: none;
  transition: all .2s;
}

.button-11.mensagem-copy {
  color: #0b051f;
  text-align: center;
  text-transform: uppercase;
  background-color: #0000;
  border: 1px solid #0b051f;
  height: 50px;
  margin-left: 0;
  margin-right: 0;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 50px;
  transition: none;
  display: block;
}

.button-11.mensagem-copy:hover {
  color: #fff;
  background-color: #072e3cb3;
  border-style: none;
}

.texto-3 {
  color: #33333382;
  margin-bottom: 10px;
  font-size: 17px;
}

.texto-3.subscri-o {
  color: #189acb;
  font-weight: 700;
}

.div-block-311 {
  flex: 1;
  padding-left: 50px;
}

.div-block-273-copy {
  background-image: url('../images/img1.jpg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  flex: none;
  width: 250px;
  height: 200px;
}

.div-block-312 {
  background-color: #fff;
  border-radius: 5px;
  padding: 50px;
  display: flex;
  box-shadow: 1px 1px 3px #344e9826;
}

.titulo-3 {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
}

.div-block-313 {
  margin-bottom: 25px;
}

.div-block-314 {
  flex: 1;
}

.button-12 {
  color: #fff;
  letter-spacing: 0;
  text-transform: none;
  border-radius: 4px;
  height: 40px;
  margin-left: 4px;
  margin-right: 4px;
  padding: 9px 25px;
  font-size: 14px;
  text-decoration: none;
  transition: all .2s;
}

.button-12.red-lines {
  color: red;
  background-color: #0000;
  border: 1px solid red;
  font-size: 17px;
}

.button-12.red-lines:hover {
  color: #fff;
  background-color: red;
}

.button-12.success-continue {
  background-color: #05b32e;
  margin-left: 0;
  margin-right: 0;
  position: absolute;
  inset: 20px 20px auto auto;
}

.button-12.success-continue:hover {
  background-color: #058317;
}

.button-12.mensagem {
  text-align: center;
  text-transform: uppercase;
  background-color: #3158b1;
  height: 50px;
  margin-left: 0;
  margin-right: 0;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 50px;
  display: block;
}

.button-12.mensagem:hover {
  background-color: #157a9f;
}

.button-12.success-continue-copy {
  background-color: #0000002e;
  margin-left: 0;
  margin-right: 0;
  position: absolute;
  inset: 20px 20px auto auto;
}

.button-12.success-continue-copy:hover {
  background-color: #00000052;
}

.button-12.success-continue-copy.ok {
  color: #05b32e;
  background-color: #0000;
  border: 1px solid #05b32e;
  right: 177px;
}

.button-12.success-continue-copy.ok:hover {
  color: #fff;
  background-color: #05b32e;
}

.button-12.gray {
  color: #9c9c9c;
  background-color: #f8f8f8;
  border: 1px solid #d0d3dd;
  margin-left: 0;
  margin-right: 8px;
  padding-left: 15px;
  padding-right: 15px;
}

.button-12.gray:hover {
  color: #fff;
  background-color: #449e47;
  border-color: #0000;
}

.button-12.gray.apagar:hover {
  background-color: #fc3636;
}

.photo-upload-icon-2 {
  margin-bottom: 14px;
  font-size: 30px;
  font-weight: 400;
  line-height: 100%;
}

.div-block-315 {
  margin-bottom: 25px;
}

.div-block-172 {
  margin-top: 25px;
}

.image-9 {
  object-fit: contain;
  max-height: 80%;
}

.form-5 {
  display: flex;
}

.form-5.round-corners {
  border: 1px solid #e0e2e7;
  border-radius: 4px;
  margin-left: 16px;
  overflow: hidden;
}

.form-5.round-corners._10 {
  border-style: none;
  border-radius: 8px;
  margin-left: 0;
  box-shadow: 1px 1px 3px #344e9829;
}

.grid-26 {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  grid-template-columns: 1fr 1fr 1fr;
}

.div-block-148 {
  color: #646464;
  background-color: #fff;
  border-radius: 5px;
  height: 150px;
  padding: 50px 25px 25px;
  text-decoration: none;
  box-shadow: 1px 1px 3px #344e980f;
}

.div-block-148:hover {
  border: 1px solid #072e3c3d;
}

.text-block-177 {
  color: var(--primary);
  margin-bottom: 15px;
  font-family: "Fa 400", Arial, sans-serif;
  font-size: 25px;
  line-height: 100%;
}

.text-block-178 {
  font-size: 20px;
  font-weight: 400;
}

.grid-18 {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.link-block-15 {
  color: #01141b;
  text-align: center;
  background-color: #fff;
  border: 1px #e5e5e5;
  border-radius: 8px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  height: 270px;
  padding: 30px;
  text-decoration: none;
  display: flex;
  box-shadow: 1px 1px 3px #072e3c1a;
}

.link-block-15:hover {
  border-style: solid;
  border-color: #157a9f30;
}

.div-block-235 {
  background-image: url('../images/2539.jpg');
  background-position: 50% 0;
  background-size: cover;
  border: 1px solid #e5e5e5;
  border-radius: 200px;
  flex: none;
  width: 100px;
  height: 100px;
  margin-bottom: 25px;
}

.div-block-235._2 {
  background-image: url('../images/blank-profile-picture.jpeg');
}

.name-2 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}

.menu-btn {
  display: none;
}

.container-11 {
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 42px;
  padding-right: 42px;
}

.container-11._0-padding {
  padding-left: 40px;
  padding-right: 40px;
}

.slide-8 {
  padding-left: 8px;
  padding-right: 8px;
}

.section-6 {
  padding-top: 100px;
  padding-bottom: 100px;
  overflow: hidden;
}

.section-6._0-top-bottom-padding {
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
}

.section-6._0-top-bottom-padding.relative {
  z-index: 10;
  position: relative;
  overflow: hidden;
}

.section-6._0-top-bottom-padding.relative.slidr {
  padding-top: 142px;
  padding-bottom: 0;
}

.mask-2 {
  height: 65vh;
  overflow: visible;
}

.slider-3 {
  z-index: 10;
  clear: both;
  background-color: #0000;
  height: 65vh;
  min-height: 550px;
  max-height: 700px;
}

.slide-arrow-2 {
  border: 1px solid var(--primary);
  box-shadow: none;
  color: var(--primary);
  background-color: #0000;
  border-radius: 200px;
  width: 50px;
  height: 50px;
  margin-right: 8px;
  font-size: 25px;
  transition: all .1s;
  inset: -142px 0% auto auto;
}

.slide-arrow-2:active {
  transform: scale(.85);
}

.slide-arrow-2.left {
  border-style: solid;
  border-color: var(--primary);
  color: var(--primary);
  background-color: #0000;
  width: 50px;
  height: 50px;
  right: 78px;
}

.collection-list {
  padding-left: 0;
  padding-right: 0;
}

.slide-nav-4 {
  display: none;
}

.flex-block-4 {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
}

.gallery-link {
  color: #333;
  cursor: pointer;
  background-color: #eee;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 45px;
  text-decoration: none;
  display: flex;
}

.gallery-link:hover {
  background-color: #e0e0e0;
}

.comunnity {
  color: #333;
  background-color: #f8f8f8;
  border-radius: 4px;
  padding: 0 0 20px;
  text-decoration: none;
}

.community-specs {
  background-color: #0000;
  flex-flow: column;
  justify-content: center;
  height: auto;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
}

.community-specs.gray {
  background-color: #eef0f3;
  padding-bottom: 140px;
}

.ods-4 {
  grid-column-gap: 45px;
  grid-row-gap: 45px;
  grid-template-columns: 1fr 1fr;
}

.ods-image {
  background-image: url('../images/ods17.png');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  width: 250px;
  height: 250px;
}

.ods-image._1 {
  background-image: url('../images/images.png');
}

.ods-image._2 {
  background-image: url('../images/ods8.png');
}

.ods-image._3 {
  background-image: url('../images/ods12.png');
}

.obs-image {
  width: 100%;
  height: auto;
}

.list-4 {
  margin-top: 20px;
  padding-left: 20px;
}

.text-block-179 {
  font-size: 16px;
}

.list-item-5 {
  padding-bottom: 12px;
}

.comunity-text-specs {
  margin-bottom: 20px;
}

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

.mt-20 {
  margin-top: 40px;
}

.mt-20._2 {
  margin-top: 60px;
}

.community-box {
  grid-column-gap: 35px;
  grid-row-gap: 35px;
  color: #333;
  background-color: #f1f5f9;
  border-radius: 4px;
  margin-bottom: 0;
  padding: 50px;
  text-decoration: none;
  display: block;
}

@media screen and (max-width: 991px) {
  .container {
    padding-bottom: 45px;
    padding-left: 35px;
    padding-right: 35px;
  }

  .navbar {
    height: 85px;
  }

  .background-video {
    width: 100%;
    height: 280px;
  }

  .section {
    padding-bottom: 0;
  }

  .title {
    font-size: 34px;
    line-height: 43px;
  }

  .paragraph.white {
    width: auto;
  }

  .price-card {
    position: relative;
  }

  .price-card.black {
    margin-bottom: 10px;
  }

  .pricing-grid {
    grid-row-gap: 32px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .top-card {
    height: 90px;
  }

  .expositor {
    padding-top: 60px;
    padding-bottom: 20px;
  }

  .juntar-se {
    padding-top: 20px;
    padding-bottom: 60px;
  }

  .pacotes-grid {
    grid-row-gap: 32px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .container-2 {
    max-width: 728px;
  }

  .footer-form-two {
    padding: 40px;
  }

  .footer-form-title {
    margin-right: 15px;
  }

  .footer-form-input {
    width: 400px;
    padding-right: 180px;
  }

  .footer-wrapper-three {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-social-block-three {
    margin-top: 40px;
  }

  .grid-content {
    text-align: left;
    max-width: 420px;
  }

  .grid-content.centered {
    max-width: 420px;
  }

  .grid-3._2-column.odd {
    grid-column-gap: 75px;
    grid-row-gap: 75px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .faq-wrap {
    max-width: none;
  }

  .container-3 {
    max-width: 770px;
  }

  .h4-header.faq-header {
    font-size: 22px;
  }

  .section-2 {
    padding-left: 40px;
    padding-right: 40px;
  }

  .whatsapp-wrapper {
    bottom: 20px;
  }

  .nav-link {
    color: #fff;
  }

  .perguntas-frequentes {
    padding-top: 40px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .nav-menu {
    background-color: var(--dark);
    color: #fff;
    width: 65%;
    padding: 40px;
    box-shadow: 0 2px 5px #25242457;
  }

  .div-block-10 {
    width: 50%;
  }

  .text-block-4 {
    font-size: 16px;
  }

  .div-block-11 {
    width: 50%;
    padding-left: 0;
  }

  .heading-2 {
    font-size: 40px;
    line-height: 45px;
  }

  .div-block-12 {
    grid-column-gap: 13px;
    grid-row-gap: 13px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
  }

  .text-block-5 {
    font-size: 18px;
  }

  .heading-3 {
    font-size: 43px;
  }

  .patrocinio {
    flex-flow: row;
    margin-bottom: 0;
  }

  .patrocinador {
    width: 20%;
  }

  .div-block-17 {
    height: auto;
  }

  .div-block-19 {
    display: none;
  }

  .div-block-21 {
    grid-template-columns: 1fr;
  }

  .right-arrow-2 {
    left: 7%;
  }

  .expositor2 {
    margin-top: 40px;
  }

  .apoio {
    margin-top: 50px;
  }

  .div-block-25 {
    flex-flow: column;
  }

  .noticia {
    width: 47%;
  }

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

  .altura-pequena {
    width: 100%;
  }

  .icon-2 {
    color: #f1efefed;
    font-size: 30px;
    font-weight: 300;
  }

  .div-block-48 {
    grid-template-columns: 1fr;
  }

  .div-block-53 {
    height: auto;
    padding-bottom: 60px;
  }

  .div-block-54 {
    grid-template-columns: 1.5fr;
  }

  .image-3 {
    height: 170px;
  }

  .section-h2 {
    font-size: 45px;
  }

  .section-3.main {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .container-4 {
    padding-left: 15px;
    padding-right: 15px;
  }

  .div-block-5 {
    height: 100px;
    padding: 10px 20px;
  }

  .grid-5 {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    margin-left: 15px;
  }

  .subtext.in-hero {
    font-size: 18px;
  }

  .subtext.in-hero._7000 {
    font-size: 13px;
  }

  .div-block-61 {
    display: none;
  }

  .div-block-62 {
    grid-template-columns: 1fr;
  }

  .section-4 {
    padding-top: 70px;
  }

  .title-wrapper {
    grid-column-gap: 35px;
    grid-row-gap: 35px;
  }

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

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

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

  .col-2.space {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .col-2.center {
    overflow: hidden;
  }

  .footer-col.row {
    justify-content: center;
  }

  .text-block-20 {
    text-align: justify;
  }

  .text-block-20.footer {
    text-align: left;
    line-height: 25px;
  }

  .page-banner.about-banner {
    height: auto;
    padding-bottom: 75px;
  }

  .page-banner.community-main {
    height: auto;
  }

  .card-2 {
    margin-bottom: 25px;
  }

  .team-grid._2, .col-3-2._2 {
    grid-template-columns: 1fr 1fr;
  }

  .text-block-21 {
    text-align: justify;
  }

  .form {
    padding: 30px 25px;
  }

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

  .container-8 {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .item-galeria2-wrapper {
    height: 14rem;
  }

  .galeria-fotos, .grid-galeria.videos {
    grid-template-columns: 1fr 1fr;
  }

  .login-section {
    width: 100%;
    display: flex;
  }

  .div-block-140 {
    width: 100%;
  }

  .div-block-141 {
    width: 500px;
    padding-left: 35px;
    padding-right: 35px;
  }

  .div-block-142 {
    width: 150px;
    height: 70px;
  }

  .button-6 {
    font-size: 15px;
  }

  .nav-lin {
    min-height: auto;
    padding-left: 10px;
    padding-right: 10px;
  }

  .links-wrapper {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: column;
    align-items: flex-start;
    padding-bottom: 6px;
    display: flex;
  }

  .brand-2 {
    width: 180px;
  }

  .navigation {
    background-color: #0000;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    min-width: auto;
    max-width: none;
    height: auto;
    padding-bottom: 0;
    padding-left: 0;
    display: block;
  }

  .brand-wrapper {
    background-color: #2c2c2c;
    justify-content: space-between;
    align-items: flex-start;
    height: auto;
    padding-top: 20px;
    padding-bottom: 0;
    padding-left: 40px;
    display: flex;
  }

  .div-block-147 {
    padding-bottom: 10px;
    padding-left: 0;
    position: static;
    bottom: 3%;
  }

  .card-item-2.img {
    flex: none;
  }

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

  .container-9 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .content-wrapper {
    margin-left: 0;
    padding-top: 145px;
  }

  .legenda-wrapper {
    display: none;
  }

  .text-block-150 {
    height: 40px;
    font-size: 13px;
    overflow: hidden;
  }

  .text-block-151 {
    font-size: 35px;
  }

  .div-block-170 {
    height: auto;
    padding: 25px;
  }

  .list-item-4 {
    margin-bottom: 20px;
  }

  .comunity-box {
    width: 47%;
  }

  .container-10 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .link-8 {
    line-height: 1.2;
  }

  .div-block-274 {
    padding-left: 35px;
  }

  .div-block-272 {
    padding-left: 35px;
    padding-right: 35px;
  }

  .div-block-308 {
    padding-right: 0;
  }

  .heading-9 {
    font-size: 32px;
  }

  .form-left-side-2 {
    padding-left: 30px;
    padding-right: 30px;
  }

  .div-block-311 {
    padding-left: 35px;
  }

  .div-block-273-copy {
    width: 200px;
    height: 200px;
  }

  .div-block-312 {
    padding-left: 35px;
    padding-right: 35px;
  }

  .menu-btn {
    background-color: #0000;
    padding-top: 12px;
    padding-bottom: 12px;
    font-family: "Fa Solid 900", Arial, sans-serif;
    font-size: 22px;
    font-weight: 400;
    display: block;
  }

  .nav-container {
    opacity: 0;
    background-color: #2c2c2c;
    height: auto;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 40px;
    display: none;
    transform: translate(0, -100%);
  }

  .container-11._0-padding {
    padding-left: 15px;
    padding-right: 15px;
  }

  .slider-3 {
    height: 50vh;
    min-height: auto;
  }
}

@media screen and (max-width: 767px) {
  .brand {
    width: 150px;
  }

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

  .navbar {
    height: 89px;
  }

  .hero {
    height: auto;
  }

  .title {
    font-size: 30px;
    line-height: 38px;
  }

  .services {
    padding-top: 100px;
    padding-bottom: 100px;
  }

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

  .sobre {
    padding-top: 50px;
    padding-bottom: 40px;
  }

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

  .team {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .servico-conteudo {
    margin-top: 10px;
  }

  .acesso {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .price-card {
    padding-left: 0;
    padding-right: 0;
  }

  .expositor {
    padding-top: 60px;
    padding-bottom: 70px;
  }

  .juntar-se {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .noticias {
    padding-top: 70px;
    padding-bottom: 60px;
  }

  .footer-subscribe {
    padding-left: 15px;
    padding-right: 15px;
  }

  .footer-form-container-two {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-form-title {
    margin-right: 0;
  }

  .footer-form-block-two {
    width: 100%;
    margin-top: 20px;
  }

  .footer-form-input {
    width: 100%;
  }

  .footer-block-three {
    flex-flow: column wrap;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-link-three {
    margin-bottom: 10px;
  }

  .footer-social-block-three {
    margin-top: 10px;
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-copyright {
    font-size: 14px;
    line-height: 20px;
  }

  .footer-legal-block {
    margin-top: 15px;
    margin-left: 0;
  }

  .footer-legal-link {
    font-size: 14px;
    line-height: 20px;
  }

  .accordion-item {
    margin-bottom: 4px;
    box-shadow: 0 1px 12px #e3e9fa;
  }

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

  .grid-3._2-column.odd {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .h4-header.faq-header {
    margin-bottom: 0;
    font-size: 20px;
    line-height: 1.2;
  }

  .accordion-icon-wrap {
    margin-left: 16px;
  }

  .perguntas-frequentes {
    padding-left: 0;
    padding-right: 0;
  }

  .home {
    height: auto;
  }

  .nav-menu {
    width: 70%;
    height: 100vh;
  }

  .div-block-9 {
    align-items: center;
  }

  .div-block-10 {
    flex-flow: column;
    width: 100%;
  }

  .div-block-11 {
    width: 100%;
  }

  .heading-2 {
    font-size: 46px;
    line-height: 53px;
  }

  .div-block-12 {
    flex-flow: column;
    align-items: flex-start;
    width: auto;
    height: auto;
  }

  .header-setion._3 {
    width: auto;
  }

  .heading-3 {
    margin-bottom: 20px;
  }

  .heading-3._2 {
    font-size: 40px;
  }

  .heading-3._2.white._1, .heading-3._2._1 {
    width: auto;
    font-size: 40px;
    line-height: 50px;
  }

  .heading-3.bg {
    width: auto;
  }

  .slider-2 {
    height: 680px;
  }

  .div-block-21 {
    height: 600px;
  }

  .div-block-25 {
    flex-flow: column;
    margin-bottom: 0;
  }

  .slide-news {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: column;
  }

  .noticia {
    width: 100%;
  }

  .grid-4 {
    grid-column-gap: 35px;
    grid-row-gap: 35px;
  }

  .div-block-44 {
    height: 25px;
  }

  .gatilho {
    width: 35%;
  }

  .icon-2 {
    color: #fff;
  }

  .div-block-53 {
    padding-top: 60px;
    padding-bottom: 20px;
  }

  .div-block-55 {
    grid-template-columns: 1fr 1fr;
  }

  .container-4 {
    max-width: 550px;
  }

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

  .subtext.in-hero {
    font-size: 18px;
  }

  .servico-container {
    padding-left: 30px;
  }

  .div-block-59 {
    grid-template-columns: 1.25fr;
  }

  .div-block-65 {
    align-items: flex-start;
  }

  .background-video-2 {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .service-item._1 {
    width: auto;
    min-width: auto;
    max-width: none;
  }

  .title-wrapper {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    flex-flow: column;
    align-items: flex-start;
  }

  .title-wrapper._2 {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

  .list-3 {
    padding-left: 0;
  }

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

  .why-choose-us {
    height: auto;
    padding-bottom: 100px;
  }

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

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

  .info-section {
    height: auto;
  }

  .col-2.info-column {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    flex-flow: column;
    grid-template-columns: .5fr;
    display: flex;
  }

  .col-2.center, .col-2-2 {
    grid-template-columns: 1fr;
  }

  .footer-link-wrapper {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: wrap;
    justify-content: center;
  }

  .footer-col {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .footer-dark {
    padding-left: 15px;
    padding-right: 15px;
  }

  .social-icons {
    margin-top: 0;
  }

  .footer-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .footer-divider {
    margin-top: 60px;
  }

  .flex-block-2 {
    padding-bottom: 0;
  }

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

  .title-4 {
    font-size: 42px;
    line-height: 49px;
  }

  .about-info {
    height: auto;
  }

  .team-grid, .team-grid._2 {
    grid-template-columns: 1fr 1fr;
  }

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

  .col-3-2._2 {
    grid-template-columns: 1fr 1fr;
  }

  .article-image-wrapper {
    width: 100%;
    min-width: auto;
  }

  .article-box {
    flex-flow: column;
    padding-top: 30px;
    padding-left: 25px;
    padding-right: 25px;
  }

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

  .ling {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    display: flex;
  }

  .container-8 {
    max-width: 650px;
  }

  .button-5 {
    padding-left: 16px;
    padding-right: 16px;
  }

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

  .button-wrapper {
    margin-top: 35px;
  }

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

  .login-section {
    flex-direction: column;
    height: 100vh;
  }

  .div-block-140 {
    width: 100%;
    height: 100%;
    padding: 100px 40px;
  }

  .div-block-141 {
    width: 100%;
    padding-top: 50px;
  }

  .div-block-142 {
    width: 150px;
  }

  .brand-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .slide-desktop {
    display: none;
  }

  .slide-mobile {
    height: 400px;
    margin-top: 40px;
    display: block;
  }

  .slide-box, .comunity-box {
    width: 100%;
  }

  .link-8 {
    padding-right: 1rem;
    line-height: 1;
  }

  .text-block-175 {
    margin-bottom: 30px;
    font-size: 14px;
  }

  .text-block-176 {
    font-size: 12px;
  }

  .heading-9 {
    font-size: 33px;
  }

  .div-block-309 {
    height: 350px;
  }

  .form-2.round-corners._10, .form-5.round-corners._10 {
    flex-direction: column;
  }

  .slider-3 {
    height: auto;
  }

  .slide-arrow-2 {
    left: 74px;
    right: auto;
  }

  .slide-arrow-2.left {
    left: 0;
    right: auto;
  }

  .community-specs {
    height: auto;
  }

  .community-box {
    flex-flow: column;
    padding-top: 30px;
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media screen and (max-width: 479px) {
  .brand {
    width: 120px;
    height: 50px;
  }

  .div-block {
    flex-flow: row;
    align-items: flex-start;
  }

  .div-block._2 {
    flex-flow: row;
    display: flex;
  }

  .title {
    font-size: 27px;
    line-height: 36px;
  }

  .button.full._1 {
    width: 100%;
  }

  .services {
    padding-bottom: 50px;
  }

  .grid {
    grid-template-columns: 1fr;
    padding-left: 20px;
    padding-right: 20px;
  }

  .paragraph {
    text-align: left;
  }

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

  .sobre {
    padding-bottom: 50px;
  }

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

  .team {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .servico-conteudo {
    margin-top: 0;
  }

  .acesso {
    padding-top: 60px;
    padding-bottom: 60px;
  }

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

  .expositor, .juntar-se {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .noticias {
    padding-bottom: 60px;
  }

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

  .footer-subscribe {
    padding-left: 0;
    padding-right: 0;
  }

  .container-2 {
    max-width: none;
  }

  .footer-form-two {
    padding: 20px;
  }

  .footer-form-block-two {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-form-input {
    margin-bottom: 10px;
    padding-right: 20px;
  }

  .button-primary.footer-form-button {
    position: relative;
    right: 0;
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-bottom: 40px;
  }

  .footer-copyright {
    text-align: center;
  }

  .grid-content {
    max-width: 320px;
  }

  .grid-content.centered {
    text-align: left;
    max-width: 320px;
  }

  .accordion-item {
    margin-bottom: 8px;
  }

  .grid-3._2-column {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .grid-3._2-column.odd {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    max-width: 380px;
  }

  .h4-header.faq-header {
    font-size: 18px;
  }

  .section-2 {
    background-color: #f9fafc;
    padding: 7vh 16px;
  }

  .accordion-icon-wrap {
    width: 40px;
  }

  .accordion-trigger {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .header-wrap {
    margin-bottom: 24px;
  }

  .header-wrap._0-on-mobile {
    margin-bottom: 0;
  }

  .pre-header-wrap {
    align-self: flex-start;
  }

  .whatsapp-wrapper {
    bottom: 20px;
  }

  .perguntas-frequentes {
    background-color: #f9fafc;
    padding: 7vh 16px;
  }

  .nav-menu {
    width: 65%;
  }

  .menu-button {
    min-width: 1px;
    margin-top: -10px;
    padding: 10px;
  }

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

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

  .heading-3 {
    font-size: 36px;
    line-height: 40px;
  }

  .heading-3._2 {
    width: auto;
  }

  .heading-3._2.white {
    width: auto;
    font-size: 40px;
  }

  .heading-3.small {
    width: auto;
  }

  .heading-3.text-line {
    line-height: 44px;
  }

  .div-block-17 {
    padding: 30px 20px;
  }

  .altura-pequena1 {
    padding-left: 12px;
  }

  .slider-2 {
    height: auto;
  }

  .div-block-21 {
    width: 100%;
    height: auto;
    margin-right: 0;
  }

  .left-arrow-2 {
    bottom: 1%;
    left: 5%;
  }

  .right-arrow-2 {
    bottom: 1%;
    left: 20%;
  }

  .div-block-22 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .expositor2 {
    margin-top: 40px;
  }

  .div-block-29, .div-block-30, .div-block-31 {
    width: auto;
  }

  .accordion-item-2 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .accordion-trigger-2 {
    width: 90%;
    font-size: 16px;
  }

  .arrox {
    width: 10%;
  }

  .resposta-apear {
    padding-left: 20px;
    padding-right: 20px;
  }

  .paragraph-3 {
    font-size: 15px;
  }

  .gatilho {
    width: 45%;
  }

  .slide-3 {
    margin-right: 0;
    padding-left: 10px;
    padding-right: 10px;
  }

  .slide-4, .slide-5, .slide-6 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .div-block-56 {
    padding: 20px;
  }

  .section-id {
    font-size: 13px;
  }

  .image-3 {
    height: 200px;
  }

  .section-h2 {
    font-size: 33px;
  }

  .container-4 {
    padding-left: 15px;
    padding-right: 15px;
  }

  .section-header-wrapper {
    margin-bottom: 60px;
  }

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

  .subtext.in-hero {
    font-size: 17px;
  }

  .servico-container {
    padding-left: 20px;
  }

  .menu-site {
    align-items: flex-start;
  }

  .div-block-68 {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .text-block-16 {
    padding-top: 0;
    padding-right: 0;
    font-size: 19px;
    line-height: 23px;
  }

  .imagem-destque {
    height: 400px;
  }

  .icon-3.primary {
    font-size: 14px;
  }

  .service-item._1 {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    padding: 25px;
  }

  .service-info-overlay {
    padding: 25px;
    transform: translate(0, 100%);
  }

  .link-block-3, .list-2 {
    margin-top: 0;
  }

  .text-overlay {
    margin-top: 15px;
  }

  .list-item-3 {
    font-size: 14px;
  }

  .counter {
    font-size: 40px;
  }

  .math-text {
    font-size: 13px;
  }

  .col-3 {
    grid-template-columns: 1fr 1fr;
    place-items: center;
  }

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

  .math-col {
    text-align: center;
    justify-content: center;
    align-items: center;
  }

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

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

  .client-logo {
    height: auto;
    padding-top: 20px;
  }

  .footer-link-wrapper {
    flex-flow: column;
    align-items: center;
  }

  .footer-col {
    padding: 0;
  }

  .flex-block-2 {
    grid-column-gap: 22px;
    grid-row-gap: 22px;
    flex-flow: column;
  }

  .counter-icon {
    font-size: 40px;
  }

  .page-title {
    text-align: center;
  }

  .title-4 {
    font-size: 40px;
    line-height: 45px;
  }

  .about-info {
    height: auto;
  }

  .team-grid, .team-grid._2, .col-3-2._2 {
    grid-template-columns: 1fr;
  }

  .button-4 {
    white-space: nowrap;
  }

  .ling {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    justify-content: flex-end;
    align-items: flex-start;
    padding-top: 0;
    padding-left: 10px;
    display: flex;
  }

  .container-8 {
    padding-left: 16px;
    padding-right: 16px;
  }

  .button-5 {
    height: 45px;
  }

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

  .button-wrapper {
    margin-top: 25px;
  }

  .div-block-140 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .div-block-141 {
    padding-left: 20px;
    padding-right: 20px;
    overflow: auto;
  }

  .div-block-142 {
    width: 130px;
    margin-bottom: 35px;
  }

  .brand-2 {
    width: 129px;
  }

  .brand-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }

  .text-block-169 {
    margin-bottom: .3rem;
  }

  .card-wrapper-2 {
    height: auto;
    padding: 15px;
  }

  .header-back-wrapper.buttonx {
    align-items: center;
  }

  .card-item-2.data-1 {
    width: 100%;
  }

  .card-item-2.img {
    padding-left: 0;
  }

  .heading-17.box {
    margin-bottom: 0;
  }

  .side-a {
    flex-direction: column;
  }

  .container-9 {
    padding-left: 16px;
    padding-right: 16px;
  }

  .div-block-164 {
    min-width: 150px;
    max-width: 160px;
  }

  .button-7 {
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: 100%;
  }

  .button-7.bx {
    margin-top: 12px;
  }

  .side-a-1 {
    width: 100%;
    margin-bottom: 10px;
  }

  .text-block-150 {
    height: auto;
  }

  .slide-desktop {
    display: none;
  }

  .list-item-4 {
    margin-bottom: 0;
  }

  .slide-mobile {
    height: 400px;
  }

  .text-block-171 {
    margin-bottom: .3rem;
  }

  .container-10 {
    padding-left: 16px;
    padding-right: 16px;
  }

  .div-block-283 {
    min-width: 150px;
    max-width: 160px;
  }

  .button-8 {
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: 100%;
  }

  .button-8.bx {
    margin-top: 12px;
  }

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

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

  .button-9.mensagem-copy {
    text-align: center;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 16px;
  }

  .div-block-274 {
    padding-left: 0;
  }

  .div-block-272 {
    flex-direction: column;
    padding-left: 25px;
    padding-right: 25px;
  }

  .heading-18 {
    font-size: 19px;
    font-weight: 700;
  }

  .text-block-175 {
    font-size: 12px;
    line-height: 130%;
  }

  .text-block-176 {
    font-size: 10px;
  }

  .div-block-308 {
    margin-left: 0;
    margin-right: 0;
  }

  .heading-9 {
    font-size: 24px;
  }

  .div-block-309 {
    height: 250px;
  }

  .form-left-side-2 {
    padding: 35px 25px;
  }

  .button-10.mensagem {
    text-align: center;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 16px;
  }

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

  .button-11.mensagem-copy {
    text-align: center;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 16px;
  }

  .div-block-311 {
    padding-left: 0;
  }

  .div-block-273-copy {
    width: 150px;
    height: 150px;
    margin-bottom: 25px;
    margin-left: auto;
    margin-right: auto;
  }

  .div-block-312 {
    flex-direction: column;
    padding-left: 25px;
    padding-right: 25px;
  }

  .button-12.mensagem {
    text-align: center;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 16px;
  }

  .menu-btn {
    margin-top: 5px;
  }

  .section-6._0-top-bottom-padding.relative.slidr {
    padding-top: 100px;
  }

  .slider-3 {
    height: auto;
  }

  .slide-arrow-2 {
    width: 40px;
    height: 40px;
    margin-right: 0;
    top: -90px;
    left: 50px;
    right: auto;
  }

  .slide-arrow-2.left {
    width: 40px;
    height: 40px;
    left: 0;
    right: auto;
  }

  .community-specs {
    height: auto;
  }

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

#w-node-fbcec1f7-d694-cd68-4663-aa2472b36f4e-73d27bc4, #w-node-fbcec1f7-d694-cd68-4663-aa2472b36f50-73d27bc4, #w-node-fbcec1f7-d694-cd68-4663-aa2472b36f52-73d27bc4, #w-node-fbcec1f7-d694-cd68-4663-aa2472b36f54-73d27bc4, #w-node-fbcec1f7-d694-cd68-4663-aa2472b36f56-73d27bc4, #w-node-fbcec1f7-d694-cd68-4663-aa2472b36f58-73d27bc4, #w-node-fbcec1f7-d694-cd68-4663-aa2472b36f5a-73d27bc4, #w-node-fbcec1f7-d694-cd68-4663-aa2472b36f5c-73d27bc4, #w-node-fbcec1f7-d694-cd68-4663-aa2472b36f5e-73d27bc4, #w-node-fbcec1f7-d694-cd68-4663-aa2472b36f60-73d27bc4, #w-node-fbcec1f7-d694-cd68-4663-aa2472b36f62-73d27bc4, #w-node-fbcec1f7-d694-cd68-4663-aa2472b36f64-73d27bc4, #w-node-c073ca51-45a0-37c3-f1ce-3783ceb97103-877c0fea, #w-node-c073ca51-45a0-37c3-f1ce-3783ceb9710a-877c0fea, #w-node-_485880ed-80ad-b0d0-4fd1-98939a240f67-877c0fea, #w-node-d00e3f30-f591-07f9-2eca-0f4b9dfbbef1-69bb2985, #w-node-d00e3f30-f591-07f9-2eca-0f4b9dfbbf01-69bb2985, #w-node-_82bb357c-2dca-fbd3-a2e2-8040b576a010-b4e9325e, #w-node-_82bb357c-2dca-fbd3-a2e2-8040b576a020-b4e9325e, #w-node-d00e3f30-f591-07f9-2eca-0f4b9dfbbef1-fd026d43, #w-node-d00e3f30-f591-07f9-2eca-0f4b9dfbbf01-fd026d43, #w-node-_2ac28b04-f7eb-0028-e09e-4731a7f186c3-8a2a5df6, #w-node-_2ac28b04-f7eb-0028-e09e-4731a7f186c9-8a2a5df6, #w-node-_2ac28b04-f7eb-0028-e09e-4731a7f186cf-8a2a5df6, #w-node-_77d0ae5f-87ea-0f67-2820-3b8137a15ce5-f41046ec, #w-node-_03262747-ad07-3a2c-cb4d-792f0e5fb2d1-f41046ec, #w-node-c8174642-191a-e31f-bfc6-4955bfe9d775-f41046ec, #w-node-_239c5fbe-1719-1033-a53c-19ab38b4ac46-f41046ec, #w-node-_573dfdc7-bcfd-340b-c79e-632d44997c66-f41046ec, #w-node-a3c806e3-5953-7e24-b1da-2b5b3745914a-f41046ec, #w-node-_8f622dc1-dec1-ad4c-dfde-271ec3496151-f41046ec, #w-node-aa5f9ad1-6f91-1167-050a-a107a3e4e9ce-f41046ec {
  grid-area: span 1 / span 1 / span 1 / span 1;
}


@font-face {
  font-family: 'Dejavusans';
  src: url('../fonts/DejaVuSans.ttf') format('truetype'), url('../fonts/DejaVuSans.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Dejavusans';
  src: url('../fonts/DejaVuSans-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Open Sans';
  src: url('../fonts/open-sans.italic.ttf') format('truetype'), url('../fonts/open-sans.regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa 400';
  src: url('../fonts/fa-regular-400.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa Solid 900';
  src: url('../fonts/fa-solid-900.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa Brands 400';
  src: url('../fonts/fa-brands-400.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}