/* Other colors */
@font-face {
  font-family: "Comforter";
  src: url("/fonts/Comforter-Regular.ttf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "PermanentMarker";
  src: url("/fonts/PermanentMarker-Regular.ttf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Poiret One";
  src: url("/fonts/PoiretOne-Regular.ttf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Cabin Sketch";
  src: url("/fonts/CabinSketch-Regular.ttf");
  font-weight: normal;
  font-style: normal;
}
/* medium : 640px */
/* large : 1024 */
/* xlarge : 1400 */
html {
  font-size: 100%;
  box-sizing: border-box;
}

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

body {
  padding: 0;
  margin: 0;
  line-height: 1.3;
  color: white;
  background-color: #456A76;
}
body.noscroll {
  overflow: hidden;
}
body a, body p {
  color: white;
}
body ul {
  margin: 0;
  padding: 0;
}

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

@media (max-width: 63.9375em) {
  .hide-for-mobile {
    display: none !important;
  }
}

@media (min-width: 64em) {
  .hide-for-desktop {
    display: none !important;
  }
}

.container {
  margin-right: 1rem;
  margin-left: 1rem;
}
@media (min-width: 40em) {
  .container {
    margin-left: 5vw;
    margin-right: 5vw;
  }
}

img.crop-circle {
  aspect-ratio: auto;
  border-radius: 50%;
}

mark {
  all: unset;
}
mark.underlined {
  text-decoration: underline #80BF73 0.1em;
}
mark.tag {
  border-radius: 1em;
  padding: 0.2em 0.5em;
  background-color: #80BF73;
}

.has-fade {
  visibility: hidden;
}

@keyframes fade-in {
  from {
    visibility: hidden;
    opacity: 0;
  }
  to {
    visibility: visible;
    opacity: 1;
  }
}
@keyframes fade-out {
  from {
    visibility: visible;
    opacity: 1;
  }
  99% { /* Quirk to make the fading-in and out work by swapping classes */
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: hidden;
    opacity: 0;
  }
}
@keyframes rotate-upside-down {
  to {
    transform: rotateX(180deg);
  }
}
.header {
  position: relative;
  width: 100%;
  height: 5.7875rem;
  font-family: "Poiret One";
  font-size: 2.5rem;
}
.header nav {
  position: relative;
  z-index: 100;
  height: 100%;
  background-color: #3D3D3D;
  padding: 1.2rem;
}
.header a {
  text-decoration: none;
  cursor: pointer;
}
.header #btnHamburguer {
  width: 2.5rem;
  height: auto;
}
.header #btnHamburguer img {
  transition: transform 300ms ease-in-out;
  width: 100%;
}
.header.open #btnHamburguer > img {
  transform-origin: 50% 55%;
  transform: rotateX(180deg);
}
.header__mobile__links {
  margin-top: 2rem;
  border-radius: 0.2rem;
  background-color: #456A76;
  position: relative;
  z-index: 1;
}
.header__mobile__links a {
  display: block;
  color: white;
  padding: 0.4rem 0;
  text-align: center;
}
.header__mobile__links a:not(:last-of-type) {
  margin-bottom: 20px;
}
.header__mobile__links a:first-of-type {
  margin-top: 20px;
}
.header__mobile__links .image-menu-item {
  max-height: 1.25em;
}
.header .overlay {
  visibility: hidden;
  z-index: 0;
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background: linear-gradient(to bottom, black, transparent);
}
@media (min-width: 64em) {
  .header nav {
    justify-content: flex-start;
  }
  .header nav .image-nav-decoration {
    margin-left: 2rem;
    height: 80%;
    transform-origin: center center;
    transform: rotateZ(90deg);
  }
}

.fade-in {
  animation: fade-in 300ms ease-in-out forwards;
}

.fade-out {
  animation: fade-out 300ms ease-in-out forwards;
}

#main-landing-section {
  min-height: 110vh;
  background-image: url("/images/profile/logo_gafas.svg"), radial-gradient(circle, rgba(69, 106, 118, 0.6796918597) 9%, rgb(69, 106, 118) 26%, rgba(85, 90, 92, 0.7777310753) 100%);
  background-repeat: no-repeat, no-repeat;
  background-position: center 20%, center;
  background-size: 75vw, 100vw;
}
#main-landing-section li a img {
  width: 2em;
}
#main-landing-section ul {
  align-self: center;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3em;
}
#main-landing-section ul li {
  word-break: keep-all;
  font-size: 4em;
  font-family: "Poiret One";
  font-weight: bold;
  text-align: left;
}
@media (min-width: 40em) {
  #main-landing-section {
    background-size: 50vw, 100vw;
  }
}
@media (min-width: 64em) {
  #main-landing-section {
    display: flex;
    background-image: radial-gradient(circle, rgba(69, 106, 118, 0.6796918597) 9%, rgb(69, 106, 118) 26%, rgba(85, 90, 92, 0.7777310753) 100%);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100vw;
  }
  #main-landing-section > div[role=img] {
    flex: 2;
    background-image: url("/images/profile/logo_gafas.svg");
    background-repeat: no-repeat;
    background-size: 60%;
    background-position: center;
  }
  #main-landing-section ul {
    flex: 1.5;
    padding: 0;
  }
  #main-landing-section li {
    font-size: 2rem;
  }
}
@media (min-width: 87.5em) {
  #main-landing-section {
    height: 110vh;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
    justify-content: stretch;
  }
  #main-landing-section > div[role=img] {
    height: 100%;
    background-size: 50%;
  }
}

.footer__links {
  color: white;
  background-color: #3D3D3D;
  margin-bottom: 0;
  text-align: center;
  list-style: none;
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: block;
}
.footer__links li {
  position: relative;
  padding-top: 3rem;
  padding-bottom: 3rem;
  font-size: 2em;
}
.footer__links li a {
  cursor: pointer;
}
.footer__links li:first-of-type::after {
  content: "";
  position: absolute;
  border: 3px solid white;
  left: 50%;
  bottom: 0%;
  transform: translateX(-50%);
  width: 40vw;
}
.footer__links .copyright-notice {
  font-family: "Consolas";
  margin-bottom: 0;
}
.footer__links .copyright-notice img {
  width: 3rem;
}
@media (min-width: 64em) {
  .footer__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
  }
  .footer__links .copyright-notice {
    flex: 0 0 100%;
  }
  .footer__links li {
    flex: 1;
  }
}

.inline-icon-link img {
  margin-right: 1ex;
  height: 2ex;
  transform: translateY(0.2ex);
  width: auto;
}

img.to-white {
  filter: contrast(0) brightness(200%);
}

.full-page-section:not(section:nth-of-type(1)) {
  overflow-x: hidden;
  min-height: 110vh;
}
.full-page-section:not(section:nth-of-type(1)) h2 {
  margin-top: 1em;
  margin-bottom: 1em;
  padding-top: 0.3em;
  padding-bottom: 0.4em;
  border-radius: 10px;
  text-align: center;
  font-family: "Poiret One";
  font-size: 4rem;
  text-overflow: ellipsis;
  background-color: #c2b04f;
}
.full-page-section:not(section:nth-of-type(1)) img {
  width: 60vw;
  display: block;
  margin: auto;
}
.full-page-section:not(section:nth-of-type(1)) p {
  font-family: "Arial";
  padding: 2rem;
  font-size: 1.5rem;
  color: white;
  text-align: center;
  line-height: 1.6;
}
@media (min-width: 64em) {
  .full-page-section:not(section:nth-of-type(1)) h2 {
    text-align: left;
    display: inline-block;
    padding: 0.5em;
  }
  .full-page-section:not(section:nth-of-type(1)) .flex-row-wrapper {
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    gap: 3em;
  }
  .full-page-section:not(section:nth-of-type(1)) .flex-row-wrapper p {
    text-align: justify;
  }
}

.bold {
  font-weight: bold !important;
}

.wrappable-set {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  row-gap: 4em;
  column-gap: 1rem;
  align-items: stretch;
}

.project-card {
  flex: 1 1 30vh;
  background-color: #3D3D3D;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 2rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
  align-items: center;
  justify-content: center;
}
.project-card > :last-child {
  flex: 1 1 auto;
  align-content: center;
}
.project-card h3 {
  text-align: center;
  align-self: stretch;
  font-family: "Poiret One";
  background-color: #6a5889;
  font-size: 2.5rem;
  padding: 0.5em;
  border: 0.2rem solid white;
  border-radius: 1rem;
}
.project-card img {
  max-width: 70%;
  margin: auto;
  height: auto;
}
.project-card ul.tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 2em;
  justify-content: space-evenly;
  items: center;
  color: white;
}
.project-card ul.tags li {
  font-family: monospace;
  background-color: #B0506D;
  font-size: 1.5em;
  padding: 1em;
  border: #732664;
  border-radius: 1em;
}

.project-card::after {
  content: "";
  position: absolute;
  border: 3px solid white;
  left: 50%;
  bottom: 0%;
  transform: translateX(-50%);
  width: 40vw;
}

#dissemination article {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-items: center;
  gap: 1em;
}
#dissemination article img {
  height: auto;
  max-width: 40vw;
}
#dissemination article h3 {
  font-size: 2rem;
  font-family: "Poiret One";
  padding: 1em;
  background-color: #6a5889;
}
@media (min-width: 64em) {
  #dissemination article h3 {
    align-self: flex-start;
    color: white;
    font-family: "Poiret one";
    font-size: 2.5rem;
    border: 0.2em solid white;
    border-radius: 1em;
  }
}
#dissemination article p, #dissemination article ol {
  text-align: center;
}
@media (min-width: 64em) {
  #dissemination article p, #dissemination article ol {
    font-size: 2rem;
    text-align: left;
  }
}
#dissemination article ol {
  color: white;
  font-family: "arial";
  /* Makes a list look like a "normal element" */
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 2em;
}
#dissemination article ol .par-sectioner {
  font-size: 1em;
  padding: 0.2em;
  display: block;
  margin-bottom: 1rem;
  background-color: #c2b04f;
}
#dissemination article ol li {
  font-family: inherit;
}
@media (min-width: 64em) {
  #dissemination article ol li {
    margin-left: 2em;
  }
}

/*# sourceMappingURL=landing.css.map */
