Pour tout problème contactez-nous par mail : support@froggit.fr | La FAQ :grey_question: | Rejoignez-nous sur le Chat :speech_balloon:

Skip to content
Snippets Groups Projects
style.css 39.8 KiB
Newer Older
peter_rabbit's avatar
peter_rabbit committed
body {
peter_rabbit's avatar
peter_rabbit committed
  font-family: Arial, Helvetica, sans-serif;
peter_rabbit's avatar
peter_rabbit committed
  margin: 0;
peter_rabbit's avatar
peter_rabbit committed
}
peter_rabbit's avatar
peter_rabbit committed
body * {
peter_rabbit's avatar
peter_rabbit committed
  box-sizing: border-box;
  color: #35393c;
peter_rabbit's avatar
peter_rabbit committed
  line-height: 1.3em;
peter_rabbit's avatar
peter_rabbit committed
}
body ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
  color: #4baabb;
  text-decoration: none;
}
body a:hover {
  color: #72e3f0;
  color: #4baabb;
body emoji {
  font-style: initial;
  font-size: 25px;
}
peter_rabbit's avatar
peter_rabbit committed
body .bg-blue {
  background-color: #4baabb;
  color: white;
peter_rabbit's avatar
peter_rabbit committed
}
peter_rabbit's avatar
peter_rabbit committed
body #seo-title {
  visibility: hidden;
}
peter_rabbit's avatar
peter_rabbit committed
body img.pixelated {
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}
peter_rabbit's avatar
peter_rabbit committed
main .warning-banner {
  background: url("/assets/images/wallpaper_warning.svg");
  width: 100%;
  height: 40px;
  padding: 20px 10%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
main .warning-banner strong {
  font-size: 18px;
  color: #1c3db2;
}
main .image-carousel {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  background-color: black;
  position: relative;
}
main .image-carousel img {
  position: absolute;
  max-width: 100%;
  max-height: 400px;
}
main .image-carousel .carousel-bullets {
  position: absolute;
  bottom: 0;
  padding: 20px;
  display: flex;
  gap: 10px;
}
main .image-carousel .carousel-bullets .bullet {
  cursor: pointer;
  width: 8px;
  height: 8px;
  background-color: #6b7880;
  border-radius: 100%;
  box-shadow: 0 0 3px black;
}
main .image-carousel .carousel-bullets .bullet.active {
  background-color: #d4d9dd;
}
@media screen and (max-width: 900px) {
  main .image-carousel img {
    max-height: 100%;
  }
  main .image-carousel .carousel-bullets {
peter_rabbit's avatar
peter_rabbit committed
    gap: 30px;
peter_rabbit's avatar
peter_rabbit committed
  }
  main .image-carousel .carousel-bullets .bullet {
    width: 12px;
    height: 12px;
  }
}
main header {
  width: 100%;
peter_rabbit's avatar
peter_rabbit committed
  background-color: white;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  z-index: 10;
main header nav {
  display: flex;
  align-items: center;
peter_rabbit's avatar
peter_rabbit committed
  height: 60px;
}
main header nav .home {
  margin: 0 10px;
}
peter_rabbit's avatar
peter_rabbit committed
main header nav .home a {
  display: flex;
  align-items: center;
  gap: 10px;
}
main header nav .home a img {
  height: 40px;
  width: auto;
}
main header nav .home a img.logo-text {
  width: 120px;
  height: auto;
main header nav ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style-type: none;
peter_rabbit's avatar
peter_rabbit committed
  height: 100%;
peter_rabbit's avatar
peter_rabbit committed
main header nav ul li {
  position: relative;
}
main header nav ul li a {
  display: flex;
peter_rabbit's avatar
peter_rabbit committed
  align-items: center;
  height: 100%;
  padding: 10px 20px;
peter_rabbit's avatar
peter_rabbit committed
  color: #96a5ae;
  font-weight: 800;
  text-decoration: none;
}
peter_rabbit's avatar
peter_rabbit committed
main header nav ul li .submenu {
  visibility: hidden;
peter_rabbit's avatar
peter_rabbit committed
  overflow: hidden;
peter_rabbit's avatar
peter_rabbit committed
  position: absolute;
  height: auto;
  max-height: 0;
  transition: max-height 0.6s;
peter_rabbit's avatar
peter_rabbit committed
  top: 100%;
  left: 50%;
  flex-direction: column;
peter_rabbit's avatar
peter_rabbit committed
  background-color: white;
peter_rabbit's avatar
peter_rabbit committed
  white-space: nowrap;
}
main header nav ul li.active a {
peter_rabbit's avatar
peter_rabbit committed
  color: #3c4144;
peter_rabbit's avatar
peter_rabbit committed
  border-bottom: 3px solid;
main header nav ul li:hover a {
peter_rabbit's avatar
peter_rabbit committed
  color: #3c4144;
peter_rabbit's avatar
peter_rabbit committed
main header nav ul li:hover .submenu {
  visibility: unset;
  max-height: 1000px;
}
peter_rabbit's avatar
peter_rabbit committed
main header nav ul li:hover .submenu a {
peter_rabbit's avatar
peter_rabbit committed
  color: #96a5ae;
  border: none;
peter_rabbit's avatar
peter_rabbit committed
}
main header nav ul li:hover .submenu li:hover a {
peter_rabbit's avatar
peter_rabbit committed
  color: #3c4144;
peter_rabbit's avatar
peter_rabbit committed
}
main header nav .burger {
  display: none;
}
@media screen and (max-width: 560px) {
  main header nav {
    justify-content: space-between;
  }
  main header nav .burger {
    display: flex;
peter_rabbit's avatar
peter_rabbit committed
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-direction: column;
    font-weight: bold;
    border: 1px solid;
    margin: 0 20px;
    cursor: pointer;
    border-radius: 100%;
peter_rabbit's avatar
peter_rabbit committed
    width: 35px;
    height: 35px;
peter_rabbit's avatar
peter_rabbit committed
    font-size: 25px;
  }
  main header nav ul {
    display: none;
  }
  main header nav ul.responsive-show {
    display: flex;
peter_rabbit's avatar
peter_rabbit committed
    flex-direction: column;
    position: absolute;
    right: 0;
    max-width: 100vw;
    min-width: 50vw;
peter_rabbit's avatar
peter_rabbit committed
    top: 60px;
    background-color: white;
    box-shadow: 0 4px 6px 2px #0000000a;
peter_rabbit's avatar
peter_rabbit committed
    height: unset;
  }
  main header nav ul.responsive-show li.active a {
    border: none;
  }
  main header nav ul.responsive-show li .submenu {
    display: flex;
    visibility: visible;
    position: relative;
    height: unset;
    max-height: unset;
    transition: max-height 0.6s;
    top: unset;
    left: unset;
    margin-left: 20px;
  }
  main header nav ul.responsive-show li .submenu li a {
    font-weight: 400;
peter_rabbit's avatar
peter_rabbit committed
    font-size: 14px;
main #page-container {
  width: 100%;
  flex: 1;
}
peter_rabbit's avatar
peter_rabbit committed
main #page-container .page-header {
  background-image: url("/assets/images/wallpaper_binary.png");
peter_rabbit's avatar
peter_rabbit committed
  padding: 50px 0;
peter_rabbit's avatar
peter_rabbit committed
}
peter_rabbit's avatar
peter_rabbit committed
main #page-container .page-header h1 {
  padding: 15px 40px 0;
  font-size: 25px;
peter_rabbit's avatar
peter_rabbit committed
  color: #4baabb;
peter_rabbit's avatar
peter_rabbit committed
  margin: 0 auto;
peter_rabbit's avatar
peter_rabbit committed
main #page-container .page-header p {
  color: #72e3f0;
  font-style: italic;
peter_rabbit's avatar
peter_rabbit committed
  padding: 15px 40px 15px 100px;
  margin: 0 auto;
peter_rabbit's avatar
peter_rabbit committed
  font-size: 18px;
peter_rabbit's avatar
peter_rabbit committed
}
main #page-container .page-header p * {
peter_rabbit's avatar
peter_rabbit committed
  color: #72e3f0;
peter_rabbit's avatar
peter_rabbit committed
}
peter_rabbit's avatar
peter_rabbit committed
main #page-container .page-header .big-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 20px;
  padding: 20px;
}
main #page-container .page-header .big-logo img {
  width: 200px;
  max-width: 100%;
}
main #page-container .page-header .big-logo img.logo-text {
  width: 300px;
  max-width: 100%;
}
main #page-container .page-header .logo {
  padding-left: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
main #page-container .page-header .logo img {
peter_rabbit's avatar
peter_rabbit committed
  width: 100%;
peter_rabbit's avatar
peter_rabbit committed
@media screen and (max-width: 560px) {
  main #page-container .page-header h1 {
    padding: 15px 20px 0;
  }
  main #page-container .page-header p {
peter_rabbit's avatar
peter_rabbit committed
    padding: 20px 20px 30px 40px;
    text-align: justify;
peter_rabbit's avatar
peter_rabbit committed
  }
peter_rabbit's avatar
peter_rabbit committed
  main #page-container .page-header .big-logo {
    flex-direction: column;
  }
}
main #page-container .page-header.logo-left .grid-wrapper {
  display: grid;
peter_rabbit's avatar
peter_rabbit committed
  grid-template-columns: 120px 1fr;
peter_rabbit's avatar
peter_rabbit committed
  grid-template-rows: auto 1fr;
}
peter_rabbit's avatar
peter_rabbit committed
main #page-container .page-header.logo-left .grid-wrapper h1 {
  width: 100%;
}
peter_rabbit's avatar
peter_rabbit committed
main #page-container .page-header.logo-left .grid-wrapper .logo {
  grid-column: 1;
peter_rabbit's avatar
peter_rabbit committed
  grid-row: 1;
  width: 100%;
peter_rabbit's avatar
peter_rabbit committed
main #page-container .page-header.logo-left .grid-wrapper p {
  margin: 0;
peter_rabbit's avatar
peter_rabbit committed
  grid-column: 1/span 2;
peter_rabbit's avatar
peter_rabbit committed
}
peter_rabbit's avatar
peter_rabbit committed
@media screen and (max-width: 780px) {
peter_rabbit's avatar
peter_rabbit committed
  main #page-container .page-header.logo-left .grid-wrapper h1 {
    padding: 0 20px;
peter_rabbit's avatar
peter_rabbit committed
  }
  main #page-container .page-header.logo-left .grid-wrapper .logo {
    padding: 0 20px;
  }
}
main #page-container .page-philo {
  background-image: url("/assets/images/wallpaper_binary.png");
  padding: 120px 30px;
}
main #page-container .page-philo p {
  width: 100%;
  max-width: 600px;
  font-size: 18px;
peter_rabbit's avatar
peter_rabbit committed
  color: #aabbc8;
peter_rabbit's avatar
peter_rabbit committed
  text-align: center;
  font-style: italic;
  font-weight: bold;
}
main #page-container .page-philo p * {
peter_rabbit's avatar
peter_rabbit committed
  color: #aabbc8;
peter_rabbit's avatar
peter_rabbit committed
}
main #page-container .page-contents-center {
  width: 1300px;
  max-width: 100%;
peter_rabbit's avatar
peter_rabbit committed
  margin: 0 auto;
peter_rabbit's avatar
peter_rabbit committed
}
@media screen and (max-width: 1300px) {
  main #page-container .page-contents-center {
    padding: 20px 20px 0;
  }
}
main #page-container h2.page-section-title {
  color: #4baabb;
  padding: 20px 0 10px;
  width: 1300px;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1300px) {
  main #page-container h2.page-section-title {
    padding: 20px 20px 0;
  }
}
peter_rabbit's avatar
peter_rabbit committed
main #page-container #home-page {
  display: flex;
  flex-direction: column;
}
main #page-container #home-page .section-title {
  padding: 10px;
  margin: 0;
  color: #aabbc8;
peter_rabbit's avatar
peter_rabbit committed
}
main #page-container #home-page .page-header .philo-bubbles {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 40px;
  margin: 30px 20px;
}
@media screen and (max-width: 780px) {
  main #page-container #home-page .page-header .philo-bubbles {
    gap: 20px;
  }
}
main #page-container #home-page .page-header .philo-bubbles li {
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  background-color: #d4d9dd;
  width: 100px;
  height: 100px;
}
main #page-container #home-page .page-header .philo-bubbles li * {
  color: #6b7880;
}
@media screen and (max-width: 560px) {
  main #page-container #home-page .page-header .philo-bubbles li {
    width: 75px;
    height: 75px;
  }
  main #page-container #home-page .page-header .philo-bubbles li * {
    font-size: 12px;
  }
}
main #page-container #home-page .page-header .philo-bubbles li:first-child {
  background-color: #6b7880;
}
main #page-container #home-page .page-header .philo-bubbles li:first-child * {
  color: white;
}
main #page-container #home-page .page-header .philo-bubbles li:last-child {
  background-color: #35393c;
}
main #page-container #home-page .page-header .philo-bubbles li:last-child * {
  color: #96a5ae;
}
main #page-container #home-page #news {
peter_rabbit's avatar
peter_rabbit committed
  padding: 60px 20px;
}
main #page-container #home-page #news .articles-displayer {
peter_rabbit's avatar
peter_rabbit committed
  margin: 0 auto 40px;
}
main #page-container #home-page #news .articles-displayer .prev-next-buttons {
peter_rabbit's avatar
peter_rabbit committed
  display: flex;
  justify-content: space-between;
}
main #page-container #home-page #news .articles-displayer .prev-next-buttons .prev-btn,
main #page-container #home-page #news .articles-displayer .prev-next-buttons .next-btn {
peter_rabbit's avatar
peter_rabbit committed
  border: none;
peter_rabbit's avatar
peter_rabbit committed
  background: none;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 0;
peter_rabbit's avatar
peter_rabbit committed
}
main #page-container #home-page #news .articles-displayer .prev-next-buttons .prev-btn.disabled,
main #page-container #home-page #news .articles-displayer .prev-next-buttons .next-btn.disabled {
peter_rabbit's avatar
peter_rabbit committed
  visibility: hidden;
peter_rabbit's avatar
peter_rabbit committed
  pointer-events: none;
}
main #page-container #home-page #news .articles-displayer .prev-next-buttons .prev-btn.active,
main #page-container #home-page #news .articles-displayer .prev-next-buttons .next-btn.active {
peter_rabbit's avatar
peter_rabbit committed
  cursor: pointer;
  color: #6b7880;
}
main #page-container #home-page #news .articles-displayer .prev-next-buttons .prev-btn.active:hover,
main #page-container #home-page #news .articles-displayer .prev-next-buttons .next-btn.active:hover {
peter_rabbit's avatar
peter_rabbit committed
  color: #3c4144;
peter_rabbit's avatar
peter_rabbit committed
}
main #page-container #home-page #news .articles-displayer .prev-next-buttons .next-btn.active::after {
peter_rabbit's avatar
peter_rabbit committed
  content: " ";
  border-style: solid;
peter_rabbit's avatar
peter_rabbit committed
  border-width: 2px 2px 0 0;
  width: 8px;
  height: 8px;
peter_rabbit's avatar
peter_rabbit committed
  transform: rotate(45deg);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
main #page-container #home-page #news .articles-displayer .prev-next-buttons .prev-btn.active::before {
peter_rabbit's avatar
peter_rabbit committed
  content: " ";
  border-style: solid;
peter_rabbit's avatar
peter_rabbit committed
  border-width: 2px 2px 0 0;
  width: 8px;
  height: 8px;
peter_rabbit's avatar
peter_rabbit committed
  transform: rotate(-135deg);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
main #page-container #home-page #news .articles-displayer article {
peter_rabbit's avatar
peter_rabbit committed
  display: grid;
  gap: 5px 50px;
peter_rabbit's avatar
peter_rabbit committed
  grid-template-rows: auto auto auto 1fr;
  position: relative;
  padding-left: 20px;
}
peter_rabbit's avatar
peter_rabbit committed
main #page-container #home-page #news .articles-displayer article.grid-1 {
  grid-template-columns: 1fr;
}
main #page-container #home-page #news .articles-displayer article.grid-2 {
  grid-template-columns: 1fr 1fr;
}
main #page-container #home-page #news .articles-displayer article .date {
peter_rabbit's avatar
peter_rabbit committed
  grid-column: 1;
  grid-row: 1;
  text-align: right;
}
main #page-container #home-page #news .articles-displayer article .date time {
peter_rabbit's avatar
peter_rabbit committed
  color: #6b7880;
  font-style: italic;
  font-size: 12px;
}
main #page-container #home-page #news .articles-displayer article .title {
peter_rabbit's avatar
peter_rabbit committed
  grid-column: 1;
  grid-row: 2;
}
main #page-container #home-page #news .articles-displayer article .title h3 {
peter_rabbit's avatar
peter_rabbit committed
  margin: 0 0 10px;
}
main #page-container #home-page #news .articles-displayer article .subtitle {
peter_rabbit's avatar
peter_rabbit committed
  grid-column: 1;
  grid-row: 3;
  font-style: italic;
  font-size: 15px;
}
main #page-container #home-page #news .articles-displayer article .body {
peter_rabbit's avatar
peter_rabbit committed
  grid-column: 1;
  grid-row: 4;
peter_rabbit's avatar
peter_rabbit committed
  min-height: 200px;
peter_rabbit's avatar
peter_rabbit committed
  padding-bottom: 40px;
peter_rabbit's avatar
peter_rabbit committed
  text-align: justify;
peter_rabbit's avatar
peter_rabbit committed
}
main #page-container #home-page #news .articles-displayer article .image-carousel {
peter_rabbit's avatar
peter_rabbit committed
  grid-row: 1/span 4;
  grid-column: 2;
}
main #page-container #home-page #news .articles-displayer article .image-carousel img {
peter_rabbit's avatar
peter_rabbit committed
  max-height: 100%;
}
main #page-container #home-page #news .articles-displayer article.article-placeholder {
  padding: 0;
peter_rabbit's avatar
peter_rabbit committed
}
main #page-container #home-page #news .articles-displayer article.article-placeholder * {
peter_rabbit's avatar
peter_rabbit committed
  background-color: #d4d9dd;
}
main #page-container #home-page #news .articles-displayer article.article-placeholder .date {
peter_rabbit's avatar
peter_rabbit committed
  height: 10px;
}
main #page-container #home-page #news .articles-displayer article.article-placeholder .title {
peter_rabbit's avatar
peter_rabbit committed
  height: 40px;
}
main #page-container #home-page #news .articles-displayer article.article-placeholder .subtitle {
peter_rabbit's avatar
peter_rabbit committed
  height: 30px;
}
peter_rabbit's avatar
peter_rabbit committed
@media screen and (max-width: 900px) {
  main #page-container #home-page #news .articles-displayer article {
peter_rabbit's avatar
peter_rabbit committed
    gap: 5px;
peter_rabbit's avatar
peter_rabbit committed
    padding: 0;
  }
  main #page-container #home-page #news .articles-displayer article.grid-2 {
peter_rabbit's avatar
peter_rabbit committed
    grid-template-columns: 1fr;
    grid-template-rows: 300px auto auto auto 1fr;
  }
peter_rabbit's avatar
peter_rabbit committed
  main #page-container #home-page #news .articles-displayer article.grid-2 .date {
peter_rabbit's avatar
peter_rabbit committed
    grid-row: 2;
  }
peter_rabbit's avatar
peter_rabbit committed
  main #page-container #home-page #news .articles-displayer article.grid-2 .title {
peter_rabbit's avatar
peter_rabbit committed
    grid-row: 3;
  }
peter_rabbit's avatar
peter_rabbit committed
  main #page-container #home-page #news .articles-displayer article.grid-2 .subtitle {
peter_rabbit's avatar
peter_rabbit committed
    grid-row: 4;
  }
peter_rabbit's avatar
peter_rabbit committed
  main #page-container #home-page #news .articles-displayer article.grid-2 .body {
peter_rabbit's avatar
peter_rabbit committed
    grid-row: 5;
  }
peter_rabbit's avatar
peter_rabbit committed
  main #page-container #home-page #news .articles-displayer article.grid-2 .image-carousel {
peter_rabbit's avatar
peter_rabbit committed
    grid-row: 1;
    grid-column: 1;
  }
peter_rabbit's avatar
peter_rabbit committed
  main #page-container #home-page #news .articles-displayer article.grid-1 .date {
    grid-row: 1;
  }
  main #page-container #home-page #news .articles-displayer article.grid-1 .title {
    grid-row: 2;
  }
  main #page-container #home-page #news .articles-displayer article.grid-1 .subtitle {
    grid-row: 3;
  }
  main #page-container #home-page #news .articles-displayer article.grid-1 .body {
    grid-row: 4;
  }
  main #page-container #home-page #news .articles-displayer article .date,
main #page-container #home-page #news .articles-displayer article .title,
main #page-container #home-page #news .articles-displayer article .subtitle {
    padding: 0 10px;
  }
  main #page-container #home-page #news .articles-displayer article .body {
    padding: 0 10px 30px;
  }
main #page-container #home-page .poles {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
peter_rabbit's avatar
peter_rabbit committed
  gap: 30px;
peter_rabbit's avatar
peter_rabbit committed
  padding: 100px 0;
peter_rabbit's avatar
peter_rabbit committed
}
main #page-container #home-page .poles .theme-card {
peter_rabbit's avatar
peter_rabbit committed
  display: flex;
  flex-direction: column;
  width: 100%;
  cursor: pointer;
  transition: transform 0.3s;
}
main #page-container #home-page .poles .theme-card .card-img {
peter_rabbit's avatar
peter_rabbit committed
  width: 100%;
  height: 240px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-direction: column;
  position: relative;
}
main #page-container #home-page .poles .theme-card .card-img img {
peter_rabbit's avatar
peter_rabbit committed
  position: absolute;
peter_rabbit's avatar
peter_rabbit committed
  max-width: 100%;
  height: 100%;
peter_rabbit's avatar
peter_rabbit committed
  padding: 10px;
peter_rabbit's avatar
peter_rabbit committed
}
main #page-container #home-page .poles .theme-card .card-title h2 {
peter_rabbit's avatar
peter_rabbit committed
  margin: 0;
  text-align: center;
  padding: 10px 20px;
  color: #4baabb;
peter_rabbit's avatar
peter_rabbit committed
  display: block;
  background-color: white;
peter_rabbit's avatar
peter_rabbit committed
}
main #page-container #home-page .poles .theme-card .card-description {
peter_rabbit's avatar
peter_rabbit committed
  flex: 1;
peter_rabbit's avatar
peter_rabbit committed
  padding: 30px 20px;
peter_rabbit's avatar
peter_rabbit committed
}
main #page-container #home-page .poles .theme-card .card-description p {
peter_rabbit's avatar
peter_rabbit committed
  margin: 0;
  color: #4baabb;
peter_rabbit's avatar
peter_rabbit committed
  text-align: center;
}
main #page-container #home-page .poles .theme-card:hover {
peter_rabbit's avatar
peter_rabbit committed
  transform: scale(1.03);
}
main #page-container #home-page .kuadrado-values {
  background-image: url("/assets/images/wallpaper_binary_light.png");
  padding: 100px 0 120px;
}
main #page-container #home-page .kuadrado-values *:not(a, blue) {
  color: #d4d9dd;
}
main #page-container #home-page .kuadrado-values h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  margin: 0 auto 60px;
  width: 120px;
  height: 120px;
  background-image: url("/assets/images/wallpaper_binary.png");
  border-radius: 100%;
  color: #72e3f0;
}
main #page-container #home-page .kuadrado-values ul.values-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
main #page-container #home-page .kuadrado-values ul.values-list li {
  background-image: url("/assets/images/wallpaper_binary.png");
  padding: 30px 20px 40px;
}
main #page-container #home-page .kuadrado-values ul.values-list li h3 {
  text-align: center;
}
main #page-container #home-page .kuadrado-values ul.values-list li p {
  text-align: justify;
}
peter_rabbit's avatar
peter_rabbit committed
main #page-container #home-page #whoami {
  padding: 20px 0 50px;
peter_rabbit's avatar
peter_rabbit committed
}
peter_rabbit's avatar
peter_rabbit committed
main #page-container #home-page #whoami .page-contents-center {
peter_rabbit's avatar
peter_rabbit committed
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-direction: column;
}
peter_rabbit's avatar
peter_rabbit committed
main #page-container #home-page #whoami .page-contents-center h2 {
peter_rabbit's avatar
peter_rabbit committed
  text-align: center;
  background-color: #6b7880;
peter_rabbit's avatar
peter_rabbit committed
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-direction: column;
  width: 220px;
  height: 220px;
  border-radius: 100%;
  padding: 30px;
  margin: 40px 0;
  color: #72e3f0;
peter_rabbit's avatar
peter_rabbit committed
}
peter_rabbit's avatar
peter_rabbit committed
main #page-container #home-page #whoami .page-contents-center .presentation-card .header {
peter_rabbit's avatar
peter_rabbit committed
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 30px;
peter_rabbit's avatar
peter_rabbit committed
  padding: 50px 0;
peter_rabbit's avatar
peter_rabbit committed
}
peter_rabbit's avatar
peter_rabbit committed
main #page-container #home-page #whoami .page-contents-center .presentation-card .header .pic {
peter_rabbit's avatar
peter_rabbit committed
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-direction: column;
}
peter_rabbit's avatar
peter_rabbit committed
main #page-container #home-page #whoami .page-contents-center .presentation-card .header .pic img {
peter_rabbit's avatar
peter_rabbit committed
  width: 150px;
  height: auto;
  border-radius: 100%;
}
peter_rabbit's avatar
peter_rabbit committed
main #page-container #home-page #whoami .page-contents-center .presentation-card .header .header-text h3 {
peter_rabbit's avatar
peter_rabbit committed
  font-size: 22px;
  color: #96a5ae;
peter_rabbit's avatar
peter_rabbit committed
  margin: 0;
}
peter_rabbit's avatar
peter_rabbit committed
main #page-container #home-page #whoami .page-contents-center .presentation-card .header .header-text h4 {
peter_rabbit's avatar
peter_rabbit committed
  font-size: 18px;
}
peter_rabbit's avatar
peter_rabbit committed
main #page-container #home-page #whoami .page-contents-center .presentation-card .header .header-text strong,
main #page-container #home-page #whoami .page-contents-center .presentation-card .header .header-text h4 {
peter_rabbit's avatar
peter_rabbit committed
  color: #96a5ae;
}
peter_rabbit's avatar
peter_rabbit committed
main #page-container #home-page #whoami .page-contents-center .presentation-card .body p {
peter_rabbit's avatar
peter_rabbit committed
  font-size: 18px;
  font-style: italic;
  font-family: serif;
  color: #555d61;
}
peter_rabbit's avatar
peter_rabbit committed
main #page-container #home-page #whoami .page-contents-center .presentation-card .body p *:not(blue, a) {
peter_rabbit's avatar
peter_rabbit committed
  color: #555d61;
}
peter_rabbit's avatar
peter_rabbit committed
@media screen and (max-width: 560px) {
  main #page-container #home-page #whoami .page-contents-center .presentation-card .header {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-direction: column;
  }
  main #page-container #home-page #whoami .page-contents-center .presentation-card .header .header-text {
    text-align: center;
  }
}
peter_rabbit's avatar
peter_rabbit committed
@media screen and (max-width: 900px) {
  main #page-container #home-page .poles {
peter_rabbit's avatar
peter_rabbit committed
    grid-template-columns: 1fr;
    gap: 40px;
  }
  main #page-container #home-page .poles .theme-card {
peter_rabbit's avatar
peter_rabbit committed
    transition: transform 0.3s;
  }
  main #page-container #home-page .poles .theme-card .card-img {
peter_rabbit's avatar
peter_rabbit committed
    height: 300px;
  }
  main #page-container #home-page .poles .theme-card .card-img img {
peter_rabbit's avatar
peter_rabbit committed
    min-width: unset;
    height: 100%;
  }
  main #page-container #home-page .poles .theme-card .card-title h2 {
peter_rabbit's avatar
peter_rabbit committed
    padding: 5px 20px;
  }
  main #page-container #home-page .poles .theme-card .card-description {
peter_rabbit's avatar
peter_rabbit committed
    padding: 20px 30px;
  main #page-container #home-page .poles .theme-card:hover {
peter_rabbit's avatar
peter_rabbit committed
    transform: none;
  }
  main #page-container #home-page .kuadrado-values ul.values-list {
    grid-template-columns: 1fr;
  }
peter_rabbit's avatar
peter_rabbit committed
@media screen and (max-width: 1300px) {
  main #page-container #home-page .poles {
peter_rabbit's avatar
peter_rabbit committed
    padding: 20px;
peter_rabbit's avatar
peter_rabbit committed
  }
  main #page-container #home-page .articles-displayer {
    padding: 0;
peter_rabbit's avatar
peter_rabbit committed
  }
}
peter_rabbit's avatar
peter_rabbit committed
main #page-container #education-page h3.big {
  font-size: 30px;
}
main #page-container #education-page .title-banner {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  height: 20vw;
  min-height: 250px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
main #page-container #education-page .title-banner.game-banner {
peter_rabbit's avatar
peter_rabbit committed
  background-image: url("/assets/images/game_studio_banner.png");
}
main #page-container #education-page .title-banner.popu-banner {
peter_rabbit's avatar
peter_rabbit committed
  background-image: url("/assets/images/popularization_banner.png");
main #page-container #education-page .title-banner h2 {
  color: white;
  font-size: 2.5em;
  margin: 40px;
  text-shadow: 0 0 6px #0003;
main #page-container #education-page .special-announcement {
  background-color: #ffd000;
}
main #page-container #education-page .special-announcement .page-contents-center {
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  height: 100px;
}
main #page-container #education-page .special-announcement .page-contents-center p {
  color: #555d61;
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}
main #page-container #education-page .section-contents {
  padding: 20px 40px 60px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
peter_rabbit's avatar
peter_rabbit committed
  height: auto;
peter_rabbit's avatar
peter_rabbit committed
main #page-container #education-page .section-contents .full-row {
  grid-column: 1/span 2;
}
main #page-container #education-page .section-contents .practical-infos {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  gap: 40px;
peter_rabbit's avatar
peter_rabbit committed
  background-image: url("/assets/images/wallpaper_binary_light.png");
peter_rabbit's avatar
peter_rabbit committed
  padding: 30px;
}
main #page-container #education-page .section-contents .practical-infos .info-item {
  display: flex;
  flex-direction: column;
  background-color: white;
  padding: 20px;
}
main #page-container #education-page .section-contents .practical-infos .info-item strong {
  margin-bottom: 10px;
peter_rabbit's avatar
peter_rabbit committed
  white-space: nowrap;
  color: #6b7880;
}
main #page-container #education-page .section-contents .practical-infos .info-item span,
main #page-container #education-page .section-contents .practical-infos .info-item a {
  font-size: 14px;
}
peter_rabbit's avatar
peter_rabbit committed
main #page-container #education-page .section-contents .list-wrapper {
  grid-column: 1;
  grid-row: 2;
peter_rabbit's avatar
peter_rabbit committed
}
main #page-container #education-page .section-contents .list-wrapper ul.learning-themes {
  display: flex;
  gap: 20px 30px;
  flex-wrap: wrap;
}
peter_rabbit's avatar
peter_rabbit committed
main #page-container #education-page .section-contents .list-wrapper ul.learning-themes li.learning-theme {
  position: relative;
peter_rabbit's avatar
peter_rabbit committed
  border: solid #d4d9dd;
  border-width: 0 2px 2px 0;
  display: flex;
  flex-direction: column;
peter_rabbit's avatar
peter_rabbit committed
main #page-container #education-page .section-contents .list-wrapper ul.learning-themes li.learning-theme .title {
peter_rabbit's avatar
peter_rabbit committed
  color: #6b7880;
  display: block;
  position: absolute;
peter_rabbit's avatar
peter_rabbit committed
  background-color: #fffa;
  padding: 3px 10px;
peter_rabbit's avatar
peter_rabbit committed
  width: 100%;
peter_rabbit's avatar
peter_rabbit committed
main #page-container #education-page .section-contents .list-wrapper ul.learning-themes li.learning-theme img {
  width: 100%;
  height: auto;
peter_rabbit's avatar
peter_rabbit committed
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
peter_rabbit's avatar
peter_rabbit committed
main #page-container #education-page .section-contents .list-wrapper ul.learning-themes li.learning-theme .details {
peter_rabbit's avatar
peter_rabbit committed
  background-color: #fffe;
  position: absolute;
peter_rabbit's avatar
peter_rabbit committed
  top: 25px;
  left: 25px;
  width: 300px;
  height: auto;
  max-height: 0;
  visibility: hidden;
  z-index: 1;
  transition: max-height 0.6s;
  padding: 20px;
peter_rabbit's avatar
peter_rabbit committed
  border: solid #d4d9dd;
  border-width: 0 1px 1px 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
peter_rabbit's avatar
peter_rabbit committed
main #page-container #education-page .section-contents .list-wrapper ul.learning-themes li.learning-theme .details .comment {
  font-style: italic;
}
peter_rabbit's avatar
peter_rabbit committed
main #page-container #education-page .section-contents .list-wrapper ul.learning-themes li.learning-theme .details .comment * {
  color: #6b7880;
}
main #page-container #education-page .section-contents .list-wrapper ul.learning-themes li.learning-theme .details ul {
  list-style-type: disc;
  font-size: 14px;
  margin-left: 10px;
}
peter_rabbit's avatar
peter_rabbit committed
main #page-container #education-page .section-contents .list-wrapper ul.learning-themes li.learning-theme .details ul li {
  color: #6b7880;
}
main #page-container #education-page .section-contents .list-wrapper ul.learning-themes li.learning-theme:hover .details {
  max-height: 1000px;
  visibility: visible;
}
main #page-container #education-page .section-contents .infos-inscriptions {
  display: flex;
  gap: 40px;
peter_rabbit's avatar
peter_rabbit committed
  background-image: url("/assets/images/wallpaper_binary_light.png");
peter_rabbit's avatar
peter_rabbit committed
  padding: 30px;
}
main #page-container #education-page .section-contents .infos-inscriptions .groups,
main #page-container #education-page .section-contents .infos-inscriptions .pricing {
peter_rabbit's avatar
peter_rabbit committed
  background-color: white;
  padding: 20px;
  display: flex;
  flex-direction: column;
}
peter_rabbit's avatar
peter_rabbit committed
main #page-container #education-page .section-contents .infos-inscriptions .groups h3,
main #page-container #education-page .section-contents .infos-inscriptions .pricing h3 {
peter_rabbit's avatar
peter_rabbit committed
  margin: 0;
  color: #96a5ae;
peter_rabbit's avatar
peter_rabbit committed
}
main #page-container #education-page .section-contents .infos-inscriptions .groups .table-wrapper table,
main #page-container #education-page .section-contents .infos-inscriptions .pricing .table-wrapper table {
  border: 1px solid #dde;
  border-collapse: collapse;
}
main #page-container #education-page .section-contents .infos-inscriptions .groups .table-wrapper table td,
main #page-container #education-page .section-contents .infos-inscriptions .pricing .table-wrapper table td {
  border: 1px solid #dde;
  padding: 10px 20px;
peter_rabbit's avatar
peter_rabbit committed
main #page-container #education-page .section-contents .infos-inscriptions .groups .documents,
main #page-container #education-page .section-contents .infos-inscriptions .pricing .documents {
  margin-top: 20px;
}
main #page-container #education-page .section-contents .infos-inscriptions .groups .documents .links,
main #page-container #education-page .section-contents .infos-inscriptions .pricing .documents .links {
  display: flex;
  gap: 20px;
}
main #page-container #education-page .section-contents .infos-inscriptions .groups .documents .links .download-link,
main #page-container #education-page .section-contents .infos-inscriptions .pricing .documents .links .download-link {
peter_rabbit's avatar
peter_rabbit committed
  border: 1px solid;
peter_rabbit's avatar
peter_rabbit committed
  padding: 8px;
  display: flex;
peter_rabbit's avatar
peter_rabbit committed
  margin: 10px 0 0;
peter_rabbit's avatar
peter_rabbit committed
  border-radius: 4px;
}
main #page-container #education-page .section-contents .teacher {
  grid-column: 1/span 2;
  background: url("/assets/images/wallpaper_binary_light.png");
peter_rabbit's avatar
peter_rabbit committed
  padding: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-direction: column;
}
main #page-container #education-page .section-contents .teacher .teacher-card {
  background-color: white;
peter_rabbit's avatar
peter_rabbit committed
  display: grid;
  grid-template-columns: auto 1fr;
  width: 100%;
  gap: 20px;
  padding: 20px;
}
main #page-container #education-page .section-contents .teacher .teacher-card h3 {
  margin: 0;
  width: 100%;
  color: #96a5ae;