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

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

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

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

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

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

:root {
  --black: #131313;
  --absolute-white: white;
  --off-black: #1f1f1f;
  --light-blue: #1c3f9466;
  --white-smoke: #f1f1f1;
  --dark-slate-blue: #1c3f94;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

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

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

body {
  color: #333;
  font-family: Portosans, sans-serif;
  font-size: 1rem;
  line-height: 1.3;
}

h1 {
  color: #333;
  text-align: left;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  text-align: left;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

h3 {
  color: #333;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}

h4 {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.2;
}

h5 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

h6 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

p {
  margin-bottom: 1.2rem;
  font-size: 1.2rem;
  line-height: 1.2;
}

a {
  color: var(--black);
  text-decoration: underline;
  -webkit-text-decoration-color: var(--black);
  text-decoration-color: var(--black);
}

.footer-dark {
  z-index: 9998;
  border-top: 2px solid var(--black);
  background-color: var(--absolute-white);
  padding: 2rem 30px 1rem;
  position: relative;
  inset: auto 0% 0%;
}

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

.container.is-about {
  max-width: 1150px;
}

.footer-wrapper {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  display: flex;
}

.footer-brand {
  text-decoration: none;
}

.footer-content {
  grid-column-gap: 70px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: auto auto;
  grid-auto-columns: 1fr;
  display: grid;
}

.footer-block {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.footer-block.is-hide {
  display: none;
}

.title-small {
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-size: .7rem;
  font-weight: 700;
  line-height: 16px;
}

.footer-link {
  color: #1a1b1f;
  margin-top: 12px;
  margin-bottom: .5rem;
  font-size: .8rem;
  line-height: 1.3;
  text-decoration: none;
}

.footer-link:hover {
  color: #1a1b1fbf;
}

.footer-divider {
  background-color: #e4ebf3;
  width: 100%;
  height: 1px;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.footer-copyright-center {
  color: var(--off-black);
  text-align: center;
  font-size: .6rem;
  line-height: 1.1;
}

.logo-footer {
  margin-top: 0;
  margin-bottom: 0;
  font-size: .8rem;
  line-height: 1.2;
}

.navbar-container {
  background-color: var(--light-blue);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  border-radius: 20rem;
  justify-content: center;
  align-items: center;
  width: 25rem;
  margin-top: 15px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: absolute;
  inset: 0% 0% auto;
}

.navbar {
  z-index: 9000;
  background-color: #0000;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.nav-link {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  padding-left: 39px;
  padding-right: 39px;
  font-size: .8rem;
  font-weight: 700;
  line-height: 1.1;
}

.nav-link.w--current {
  color: var(--white-smoke);
}

.jumbo-heading {
  color: var(--off-black);
  max-width: 11ch;
  margin-bottom: 10px;
  font-size: 1.3rem;
  text-decoration: none;
}

.jumbo-heading.is-h2 {
  font-size: .8rem;
  font-weight: 400;
  line-height: 1.2;
}

.nav-menu {
  opacity: 1;
}

.jumbo-heading-wrapper {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  min-height: 80%;
  max-height: 80%;
  display: flex;
}

.text-span {
  font-weight: 400;
  line-height: 1.3;
}

.text-span-2 {
  font-weight: 300;
  line-height: 1.3;
}

.button {
  background-color: var(--absolute-white);
  box-shadow: 0 0 0 0 var(--black);
  color: var(--off-black);
  text-align: left;
  letter-spacing: .02rem;
  text-transform: none;
  border: 2px solid #000;
  border-radius: .5rem;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 12px 20px;
  font-size: 1rem;
  line-height: 1.1;
  transition: all .2s cubic-bezier(.77, 0, .175, 1);
  display: flex;
}

.button:hover {
  background-color: var(--white-smoke);
  box-shadow: 2px 2px 0 0 var(--black);
  color: var(--black);
  transform: translate(-2px, -2px);
}

.button.faq-button {
  border: 2px solid var(--black);
  color: var(--black);
  background-color: #0000;
  padding: 15px 30px;
  font-size: 1.1rem;
}

.button.is-left-button {
  padding: 8px 16px;
  font-size: .7rem;
}

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

.button.is-small {
  text-transform: uppercase;
  border-width: 1px;
  border-radius: .3rem;
  padding: 6px 10px;
  font-size: .6rem;
  line-height: 1.2;
}

.horario-wrapper {
  z-index: 9999;
  border-radius: 1rem;
  flex-flow: column;
  justify-content: space-between;
  position: fixed;
  inset: auto auto 3svh 2svw;
}

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

.horario-text {
  z-index: 9500;
  background-color: var(--absolute-white);
  border-radius: 1rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: none;
  position: absolute;
  inset: auto 0% 0% auto;
  box-shadow: 0 1px 8px 1px #0003;
}

.horario-tag {
  z-index: 9501;
  background-color: var(--absolute-white);
  cursor: pointer;
  border-radius: .7rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 40px;
  position: absolute;
  inset: auto auto 0% 0%;
  box-shadow: 0 0 #0000, 0 1.8px 5.8px #0000000b, 0 3.9px 11.7px #0000000d, 0 6.7px 18px #0000000e, 0 11.5px 25.3px #0000000f, 0 22.6px 35.9px #00000010;
}

.horario-tag.is-social-media-wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  padding: 10px 15px;
  display: flex;
}

.horario-tag-text {
  color: var(--black);
  text-align: center;
  margin-bottom: 0;
  font-size: 1rem;
}

.paragraph.is-horario {
  margin-bottom: 0;
  padding: 35px 30px;
  font-size: 1rem;
  line-height: 1.2;
}

.social-media-links {
  max-width: 100%;
  max-height: 100%;
}

.wrapper-times {
  flex-flow: column-reverse;
  width: 150px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.social-media {
  z-index: 9500;
  position: fixed;
  inset: auto auto 3svh 2svw;
}

.body {
  max-width: 100svw;
}

.bottom-site-spacer {
  height: 2svh;
}

.wrapper-social {
  width: 100px;
  position: relative;
}

.about-section {
  background-color: var(--white-smoke);
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 100svw;
  min-height: 100svh;
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: flex;
}

.faqs-section {
  background-color: var(--white-smoke);
  max-width: 100svw;
  min-height: 100svh;
}

.faq1_component {
  border-bottom: 1px solid var(--\<unknown\|relume-variable-border-color-1\>);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

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

.faq1_question {
  border-top: 1px solid var(--black);
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  padding-top: .9rem;
  padding-bottom: 1rem;
  display: flex;
}

.faq1_answer {
  overflow: hidden;
}

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

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

.max-width-medium.align-center {
  margin-left: auto;
  margin-right: auto;
  padding-top: 60px;
  padding-bottom: 60px;
}

.text-size-medium {
  color: var(--off-black);
  text-align: left;
  font-size: 1.125rem;
}

.text-size-medium.text-weight-bold {
  letter-spacing: .01em;
  font-size: 1.1rem;
  font-weight: 700;
}

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

.margin-top.margin-xxlarge {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  padding-top: 2rem;
}

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

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

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

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

.faq1_icon-wrapper {
  align-self: flex-start;
  width: 2rem;
  margin-left: 1.5rem;
  display: flex;
}

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

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

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

.text-span-3 {
  text-transform: none;
}

.footer-paragraph {
  margin-top: 12px;
  font-size: .7rem;
  line-height: 1.3;
}

.reg-link {
  color: var(--black);
  font-weight: 400;
  text-decoration: none;
}

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

.faq-paragraph {
  letter-spacing: .01px;
  font-size: 1.2rem;
  line-height: 1.3;
}

.about-paragraph {
  padding-bottom: 3rem;
  font-size: 3.3rem;
  line-height: 1.3;
}

.about-heading {
  padding-top: 10rem;
}

.about-heading.is-secondary {
  padding-top: 5rem;
}

.ese-reg {
  font-size: 1rem;
  font-weight: 400;
}

.light {
  font-weight: 300;
}

.body-wrapper {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-flow: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 3px 3fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  width: 100vw;
  height: 100svh;
  display: grid;
}

.east-wrapper {
  border-right: 2px solid #000;
  justify-content: flex-start;
  align-items: center;
  min-height: 90svh;
  padding-top: 2rem;
  padding-left: 20px;
  padding-right: 30px;
  position: fixed;
  inset: 5% auto 5% 0%;
}

.vertical-divider {
  background-color: var(--off-black);
  border-radius: 1rem;
  width: 2px;
  height: 90svh;
}

.vertical-divider.is-hide {
  display: none;
}

.west-wrapper {
  height: 100svh;
  padding-top: 4rem;
  position: relative;
  overflow: scroll;
}

.buttons-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-content: flex-start;
  align-items: flex-start;
  display: flex;
  position: sticky;
  top: 110px;
}

.west-div {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  margin-top: 8svh;
}

.more-buttons-wrapper {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
}

.h2-faqs {
  font-size: 2rem;
}

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

.spacer {
  height: 2rem;
}

.h3-faqs-top {
  text-transform: none;
  max-width: 30ch;
  font-weight: 400;
}

.jumbo-link, .jumbo-link.w--current {
  text-decoration: none;
}

.fcfaqs-p {
  max-width: 30ch;
}

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

@media screen and (min-width: 1280px) {
  .button {
    font-size: 1.8rem;
  }

  .faq-paragraph {
    color: var(--off-black);
  }

  .body-wrapper {
    grid-template-columns: 1fr 3px 5fr;
  }
}

@media screen and (max-width: 991px) {
  .container {
    max-width: 95svw;
  }

  .container.is-about {
    width: 95%;
  }

  .footer-content {
    grid-column-gap: 60px;
  }

  .title-small {
    margin-bottom: 0;
    font-size: .6rem;
  }

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

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

  .jumbo-heading-wrapper {
    position: fixed;
  }

  .button.is-left-button {
    font-size: .6rem;
  }

  .horario-wrapper {
    margin-left: auto;
    margin-right: auto;
    left: 2%;
    right: auto;
  }

  .horario-tag {
    left: 0%;
  }

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

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

  .bottom-site-spacer {
    height: 3svh;
  }

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

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

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

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

  .footer-paragraph {
    font-size: .6rem;
  }

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

  .about-paragraph {
    font-size: 2.5rem;
  }

  .about-heading {
    padding-top: 15svh;
  }

  .east-wrapper {
    z-index: 1;
    width: 100%;
    height: 100%;
    position: static;
    inset: 0%;
  }

  .h3-faqs-top {
    font-size: 1.3rem;
  }

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

  .faqs-container {
    width: 95%;
  }

  .whole-wrapper {
    grid-column-gap: .5rem;
    grid-row-gap: 0rem;
    grid-template-rows: auto;
    grid-template-columns: 1.25fr 5fr;
    grid-auto-columns: 1fr;
    justify-content: flex-start;
    align-items: flex-start;
    margin-right: 10px;
    display: grid;
    position: static;
  }
}

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

  .container {
    max-width: 80svw;
  }

  .container.is-about {
    width: 93%;
  }

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

  .footer-content {
    flex-flow: column;
    grid-template-columns: 1fr 1fr;
    width: 50%;
    display: flex;
  }

  .footer-block {
    align-items: flex-start;
  }

  .footer-link:hover {
    color: #1a1b1fbf;
  }

  .footer-divider {
    margin-top: 1.5rem;
  }

  .footer-copyright-center {
    font-size: .5rem;
  }

  .logo-footer {
    font-size: .7rem;
    line-height: 1.3;
  }

  .navbar-container {
    width: 50%;
  }

  .nav-link {
    letter-spacing: .15em;
    padding-left: 25px;
    padding-right: 25px;
    font-size: .6rem;
  }

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

  .jumbo-heading.is-h2 {
    font-size: .6rem;
  }

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

  .button.is-left-button {
    border-width: 1px;
    padding: 6px 12px;
    font-size: .5rem;
  }

  .button.is-small {
    font-size: .5rem;
  }

  .horario-wrapper {
    justify-content: flex-start;
    width: 100svw;
    max-width: 100svw;
    margin-left: auto;
    margin-right: auto;
    bottom: 0%;
    left: 0;
  }

  .horario-text {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    padding-bottom: 3rem;
    display: grid;
    left: 0%;
    box-shadow: 0 -2px 10px #0003;
  }

  .horario-tag {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    width: 100svw;
    margin-left: auto;
    margin-right: auto;
    padding: 15px 20px;
    left: 0%;
    box-shadow: 0 -2px 10px #0003, 0 0 #0000, 0 1.8px 5.8px #0000000b, 0 3.9px 11.7px #0000000d, 0 6.7px 18px #0000000e, 0 11.5px 25.3px #0000000f, 0 22.6px 35.9px #00000010;
  }

  .horario-tag.is-social-media-wrapper {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    border-radius: 0 0 1rem 1rem;
    flex-flow: column;
    width: 45px;
    padding: 15px 10px 35px;
    inset: 0% auto auto 0%;
  }

  .horario-tag-text {
    margin-left: auto;
    margin-right: auto;
    font-size: .8rem;
  }

  .paragraph.is-horario {
    font-size: .8rem;
    line-height: 1.1;
  }

  .wrapper-times {
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    width: 100svw;
    max-width: 100svw;
    margin-left: auto;
    margin-right: auto;
  }

  .social-media {
    z-index: 9500;
    top: 0%;
    bottom: auto;
  }

  .body {
    max-width: 100svw;
  }

  .bottom-site-spacer {
    display: block;
  }

  .padding-section-large {
    padding-top: 30px;
    padding-bottom: 2rem;
  }

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

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

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

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

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

  .faq1_icon-wrapper {
    width: 1.75rem;
  }

  .footer-paragraph {
    font-size: .6rem;
  }

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

  .faq-paragraph {
    font-size: .9rem;
    line-height: 1.3;
  }

  .about-paragraph {
    font-size: 1.5rem;
  }

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

  .body-wrapper {
    grid-row-gap: 2rem;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr;
    grid-auto-rows: .25fr;
  }

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

  .vertical-divider {
    width: 90%;
    height: 2px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .west-wrapper {
    height: auto;
    overflow: visible;
  }

  .buttons-wrapper {
    position: relative;
    top: 0;
  }

  .west-div {
    width: 90%;
    min-height: 50%;
  }

  .h3-faqs-top {
    font-size: 1rem;
  }

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

@media screen and (max-width: 479px) {
  .footer-dark {
    padding-top: 1rem;
    padding-bottom: .5rem;
  }

  .container {
    max-width: 85svw;
  }

  .container.is-about {
    width: 90%;
  }

  .footer-wrapper {
    grid-column-gap: 15px;
    grid-row-gap: 20px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1.5fr;
  }

  .footer-content {
    width: 100%;
  }

  .footer-divider {
    margin-top: 1rem;
    margin-bottom: .8rem;
  }

  .logo-footer {
    font-size: .6rem;
  }

  .navbar-container {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .nav-link {
    letter-spacing: .05em;
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: .6rem;
    line-height: 1;
  }

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

  .jumbo-heading-wrapper {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    justify-content: flex-start;
    justify-items: start;
  }

  .button {
    text-align: center;
    font-size: .9rem;
  }

  .button.faq-button {
    padding: 10px 25px;
    font-size: 1rem;
  }

  .button.is-left-button {
    line-height: .9;
  }

  .horario-text {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-columns: 1fr;
    padding-bottom: 5rem;
  }

  .horario-tag.is-social-media-wrapper {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    border-radius: 0 1rem 1rem 0;
    flex-flow: row;
    width: 90px;
    padding: 5px 30px 5px 10px;
  }

  .paragraph.is-horario {
    margin-bottom: 0;
    padding-top: 30px;
    padding-bottom: 0;
  }

  .social-media {
    top: 50svh;
    left: 0%;
  }

  .bottom-site-spacer {
    height: 2svh;
  }

  .padding-section-large {
    padding-top: 15svh;
  }

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

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

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

  .heading {
    font-size: 1.3rem;
  }

  .about-paragraph {
    font-size: 1.5rem;
  }

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

  .east-wrapper {
    min-width: 4rem;
    padding-left: 10px;
    padding-right: 10px;
  }

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

  .west-div {
    width: 100%;
    min-height: 100%;
  }

  .more-buttons-wrapper {
    margin-bottom: 0;
  }

  .h3-faqs-top {
    max-width: 18ch;
  }

  .whole-wrapper {
    grid-column-gap: .4rem;
    grid-template-columns: minmax(min-content, 1.25fr) minmax(min-content, 3fr);
    margin-right: 0;
  }
}

#w-node-_687a575c-d687-5d4b-291c-2f04af50d792-59eb11eb {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_687a575c-d687-5d4b-291c-2f04af50d7b0-59eb11eb {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4c4c667e-a148-20dd-cc23-caeb9f98176e-9f981759 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_4c4c667e-a148-20dd-cc23-caeb9f981777-9f981759 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-_75e23259-986a-05c3-9236-64ac4d3f92b2-59eb11eb {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}


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