body {
  margin: 0;
  font-family: "DM Sans";
}
a {
  text-decoration: none;
  color: #000;
}
a.active {
  font-weight: bold ;
}
.intro p {
  font-size: 30px;
}
.container {
  max-width: 960px;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}
.container-full {
  max-width: 960px;
  width: calc(100% - 40px);
  margin-left: auto;
  margin-right: auto;
}
.oH {
  overflow: hidden;
  height: 100vh;
}
.flex {
  display: flex;
}
.align-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.justify-flex-end {
  justify-content: flex-end;
}
.divider {
  margin: 0 5px;
}
.mobile {
  display: none;
}
.logo {
    
    animation-name: start-anim;
    animation-duration: 1.5s;
    display: flex;
    height: 170px;
    align-items: center;
    justify-content: center;
    height: calc(100vh - 200px); 
    transition: 0.75s ease-in-out; 

}
.logo.loaded {
  transform: translate(0, 0);
  transition: 0.75s ease-in-out;
}
.logo img {
  width: 100%;
}
.lang {
  height: 50px;
  align-items: center;
}
.mt25 {
  margin-top: 25px;
}
.mt50 {
  margin-top: 50px;
}
.mb25 {
  margin-bottom: 25px;
}
.hidden {
  opacity: 0;
  animation-name: opacity-anim;
  animation-duration: 0.75s;
  animation-delay: 1.2s;
  animation-fill-mode: forwards;
}
.pdf-cont {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.pdf-link {
  width: calc((100% / 3) - 20px);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}
.pdf-link:hover img{
  transform: scale(1.05);
    transition: 0.5s ease;
}
.pdf-link:not(:nth-child(3n)) {
  margin-right: 30px;
}
.pdf-link p {
  margin-bottom: 30px;
  transform: translate(-100%, 0);
  transition: 0.5s ease;
}
.pdf-link img {
  transform: scale(1) translate(-100%, 0);
  transition: 0.5s ease;
  width: 100%;
}
.pdf-link.show img {
  transform: scale(1) translate(0, 0);
  transition: 0.5s ease;
}
.pdf-link.show p {
  transform: translate(0, 0);
  transition: 0.5s ease;
}
.intro {
  max-width: 750px;
  width: 50%;
  margin-top: 50px;
}
.intro p {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .desktop {
    display: none;
  }
  .mobile {
    display: block;
  }
  .pdf-cont { 
    flex-direction: column;
    flex-wrap: nowrap;
  }
  .pdf-link {
    width: 100%;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .pdf-link:not(:nth-child(3n)) {
    margin-right: 0;
  }
}



/* The animation code */
@keyframes start-anim {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  30% {
    transform: scale(1);
    opacity: 0.2;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes opacity-anim {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}


