:root {
  --elevated: #FFFFFF;
}

[data-theme=dark] {
  --elevated: #202020;
  --on-elevated: #FFFFFF;
  --text-color: #FFFFFF;
  --background: #121212;
  --primary: #2F4092;
  --on-primary: #FFFFFF;
}

html {
  font-size: 100%;
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: var(--text-color);
  background-color: var(--background);
  line-height: 1.3;
  overflow-x: hidden;
  text-align: center;
}
body.noscroll {
  overflow: hidden;
}

a, a:visited, a:hover {
  text-decoration: none;
}

.flex {
  display: flex;
}
.flex-jc-sb {
  justify-content: space-between;
}
.flex-jc-c {
  justify-content: center;
}
.flex-ai-c {
  align-items: center;
}

h1 {
  font-weight: 700;
  font-size: 3.5rem;
}
@media (max-width: 39.9375em) {
  h1 {
    font-size: 2.2rem;
  }
}

h2 {
  font-size: 2rem;
  font-weight: 500;
}
@media (min-width: 64em) {
  h2 {
    font-size: 2rem;
  }
}

strong {
  font-weight: 700;
}

h3 {
  font-size: 1.5rem;
  font-weight: 400;
}
@media (min-width: 64em) {
  h3 {
    font-size: 2.25rem;
  }
}

h4 {
  font-size: 1.125rem;
  font-weight: 400;
}
@media (min-width: 64em) {
  h4 {
    font-size: 1.5rem;
  }
}

.container {
  padding: 2rem;
}
@media (min-width: 40em) {
  .container {
    padding: 3.75rem;
  }
}

.button-primary {
  display: flex;
  align-items: center;
  background-color: #4044EE;
  color: #FFF;
  padding: 1rem 1.5rem 1rem 1.5rem;
  font-size: 1rem;
  border-radius: 0.75rem;
  font-family: "Montserrat";
  font-weight: 700;
  border: none;
  transition: 0.3s ease-in-out;
  width: -moz-fit-content;
  width: fit-content;
}
.button-primary p {
  margin: 0.2rem 0 0 0;
}
.button-primary .material-symbols-rounded {
  font-size: 1.5rem;
  margin-right: 0.5rem;
}

.button-primary:hover {
  background-color: #6567ee;
  scale: 102%;
}

.cta-icon {
  padding-right: 0.625rem;
  max-height: 1.5rem;
}

.cta-icon-big {
  padding-right: 0.625rem;
  max-height: 1.8125rem;
}

.hero-icon {
  position: relative;
  top: 0.375rem;
}

.inline-vamos-plus {
  max-height: 1.5rem;
  width: auto;
}

.padding {
  padding: 2rem;
}

.chip_row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.chip {
  padding: 0.3rem 0.6rem;
  margin: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  background-color: yellow;
  color: black;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media (max-width: 39.9375em) {
  .chip {
    font-size: 0.7rem;
  }
}
.chip img {
  height: 1rem;
  width: auto;
  margin-right: 0.3rem;
}
@media (max-width: 39.9375em) {
  .chip img {
    height: 0.7rem;
  }
}

.header {
  background-color: var(--elevated);
  position: sticky;
  padding: 1rem 1rem 1rem 4.125rem;
}
@media (max-width: 39.9375em) {
  .header {
    padding: 1rem;
    display: flex;
    align-items: center;
    background-color: transparent;
  }
}
.header a {
  color: #DDDDDD;
  transition: color 200ms ease-in-out;
  display: flex;
  align-items: center;
}
.header a:hover {
  color: #FFFFFF;
}
.header__logo {
  font-size: 1.5rem;
  font-weight: 700;
}
.header__logo img {
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 1rem;
}
@media (max-width: 63.9375em) {
  .header__logo img {
    width: 2rem;
    height: 2rem;
  }
}
.header__links {
  display: flex;
}
.header__links a {
  padding-left: 1rem;
  padding-right: 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 170%;
}
@media (max-width: 63.9375em) {
  .header__links a {
    font-size: 1rem;
  }
}
@media (max-width: 39.9375em) {
  .header__links {
    display: none;
  }
}
.header__toggle {
  margin-top: auto;
  margin-bottom: auto;
}
.header__toggle > span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: var(--on-elevated);
  transition: all 300ms ease-in-out;
  transform-origin: 3px 1px;
}
.header__toggle > span:not(:last-child) {
  margin-bottom: 5px;
}
.header nav {
  max-width: 110rem;
  margin: 0 auto;
}

.footer {
  margin-top: 1rem;
  padding-bottom: 0.5rem;
}
.footer__row {
  padding-bottom: 0.5rem;
}
@media (max-width: 39.9375em) {
  .footer__row {
    font-size: 0.8rem;
  }
}
.footer__row a {
  color: white;
  font-weight: 600;
}

.hero__row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
@media (max-width: 39.9375em) {
  .hero__row {
    flex-direction: column;
  }
}
.hero__row__text {
  flex: 1;
  padding: 4rem;
  text-align: start;
  max-width: 50rem;
}
@media (max-width: 39.9375em) {
  .hero__row__text {
    text-align: center;
    order: 1;
    padding: 2rem;
  }
}
.hero__row__text p {
  font-weight: 500;
}
.hero__row__text h1 {
  margin-top: 0;
}
.hero__row__image {
  flex: 1;
  padding: 4rem;
  max-width: 50rem;
}
@media (max-width: 39.9375em) {
  .hero__row__image {
    order: 0;
    padding: 2rem;
  }
}
.hero__row__image img {
  width: 100%;
  border-radius: 4rem;
}
@media (max-width: 39.9375em) {
  .hero__row__image img {
    border-radius: 2rem;
  }
}

.live_view__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1rem;
  margin: 1rem 0;
}
@media (max-width: 39.9375em) {
  .live_view__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.live_view__grid__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 39.9375em) {
  .live_view__grid__item {
    margin: 0 1rem;
  }
}
.live_view__grid__item img {
  max-width: 80%;
  max-height: 80%;
}
.live_view__grid__item .button-primary {
  cursor: pointer;
  margin-top: 2rem;
}
.live_view__grid__item__card {
  display: flex;
  flex-direction: row;
  text-align: start;
  margin: 3rem 1rem 0 1rem;
  padding: 1rem;
  border-radius: 1rem;
  background-color: rgba(255, 255, 255, 0.2);
}
.live_view__grid__item__card .card_text {
  margin-top: 0.2rem;
}
.live_view__grid__item__card .material-symbols-rounded {
  margin-right: 0.5rem;
}

.gallery {
  display: flex;
  flex-direction: column;
  padding: 0 4rem 4rem 4rem;
  align-items: center;
}
@media (max-width: 39.9375em) {
  .gallery {
    padding: 2rem;
  }
}
.gallery__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.gallery__grid__item {
  transition: 0.3s;
  cursor: pointer;
  margin: 1rem;
  width: 20rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.gallery__grid__item:hover {
  transform: scale(1.03);
}
.gallery__grid__item img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 2rem;
  transition: 0.3s;
}
.gallery .button-primary {
  margin-top: 2rem;
}

#image-viewer {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
  margin: auto;
  display: block;
  max-height: 85%;
  max-width: 85%;
  display: flex;
  justify-content: center;
}
.modal-content img {
  -o-object-fit: contain;
     object-fit: contain;
}
.modal-content video {
  max-width: 100%;
  max-height: 100%;
}

.modal-content {
  animation-name: zoom;
  animation-duration: 0.6s;
}

.modal-subtitle {
  top: 1rem;
  position: relative;
  font-size: 1.5rem;
  font-weight: 600;
}

@keyframes zoom {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
#image-viewer .close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

#image-viewer .close:hover,
#image-viewer .close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

@media only screen and (max-width: 700px) {
  .modal-content {
    width: 100%;
  }
}
.infos {
  padding: 4rem;
}
@media (max-width: 39.9375em) {
  .infos {
    padding: 2rem;
  }
}
@media (min-width: 40em) {
  .infos__papers__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (min-width: 40em) {
  .infos__papers__grid__item {
    margin: 0 2rem 2rem 2rem;
  }
}
.infos__papers__grid__item img {
  margin-bottom: 1rem;
  width: 80%;
  border-radius: 0.4rem;
}
@media (min-width: 40em) {
  .infos__papers__grid__item img {
    width: 15rem;
    border-radius: 0.625rem;
    transition: scale 300ms ease-in-out;
    margin: 0;
  }
  .infos__papers__grid__item img:hover {
    scale: 1.03;
  }
}
.infos__videos__item img {
  width: 100%;
}
@media (min-width: 64em) {
  .infos__videos__item img {
    width: 90rem;
    cursor: pointer;
  }
}/*# sourceMappingURL=style.css.map */