﻿.members {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.members .member {
    width: 30%;
    min-width: 300px;
}

.members .member .photo {
    display: block;
    margin: 0 auto;
    width: 400px;
    max-width: 100%;
    border-radius: 10px;
}

.members .member .title {
    text-align: center;
}

.images {
    overflow-x: auto;
    white-space: nowrap;
    margin: 0 auto;
}

.partners .members {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2rem;
    gap: 2rem;
}

.partners .members .member {
    width: 300px;
}

.partners .members .member .photo {
    display: block;
    margin: 0 auto;
    border-radius: 10px;
    width: 100%;
    margin-bottom: 1rem;
}

.partners .members .member .name {
    text-align: center;
    font-weight: 600;
    margin: 0 auto;
}

.partners .big-image {
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

.partners .download {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.test-protocol .footer {
    position: relative;
}

.test-protocol .footer .sign-row {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 5rem;
    z-index: 2;
    position: relative;
}

.test-protocol .footer .sign {
  position: absolute;
  right: 30%;
  top: 35%;
  max-width: 40vw;
}

.test-protocol .footer .end-of-protocol {
    margin: 0 auto;
    width: fit-content;
    margin-top: 3rem;
    z-index: 2;
    position: relative;
}

.test-protocol .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.test-protocol .header .header-left .logo {
  max-width: 30vw;
}

.test-protocol .header .header-left .description {
  font-size: 0.7rem;
  margin-top: 2rem;
  font-weight: 700;
  text-align: center;
}

.test-protocol .header .header-right {
  font-size: 0.7rem;
  font-weight: 800;
  text-align: right;
}

.test-protocol .header .header-right p {
  margin: 0.2rem 0;
}

.test-protocol h1 {
  text-align: center;
  margin: 10vh 0;
}

.test-protocol .preambule {
  margin-bottom: 3rem;
}

.test-protocol .preambule p {
  margin: 0.4rem 0;
}

.illustration {
    display: block;
    margin: 3rem auto;
    border-radius: 10px;
    box-shadow: 5px 5px 8px #000000c4;
    max-width: 100%;
}

:root {
  --fonts-default: arial;
  --fonts-size: 22px;
  --menu-width: 400px;
  font-family: var(--fonts-default);
  font-size: var(--fonts-size);
}

body {
  margin: 0 auto;
  max-width: 1920px;
  padding: 0.5rem;
}

.main-content main {
  margin-left: var(--menu-width);
}

a {
  overflow-wrap: anywhere;
}

p {
  text-align: justify;
  overflow-wrap: anywhere;
}

@media (max-width: 1440px) {
  :root {
    --fonts-size: 18px !important;
    --menu-width: 350px !important;
  }
}

@media (max-width: 1024px) {
  :root {
    --fonts-size: 16px !important;
    --menu-width: 350px !important;
  }
}

@media (max-width: 768px) {
  :root {
    --fonts-size: 14px !important;
  }

  .main-content .links {
    position: unset !important;
    width: unset !important;
    gap: unset !important;
    padding: unset !important;
  }

  .main-content main {
    margin-left: unset !important;
  }

  .main-content .links a {
    padding: 4px !important;
  }
}

.hor-images img {
  height: 500px;
  max-height: 100vw;
}

.ver-images img {
  height: 500px;
  max-height: 100vw;
}

.main-content .links {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0.3rem;
  position: fixed;
  width: var(--menu-width);
  height: 100%;
  top: 0;
  left: 0;
  box-sizing: border-box;
}

.main-content .links a {
  text-decoration: none;
  color: blue;
  padding: 8px;
  transition: 0.2s;
}

.main-content .links a.download {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-content .links .underline {
  text-decoration: underline;
}

.main-content .links a:hover {
  background-color: #d8d2ffc4;
  border-radius: 12px;
}

.main-content nav[data-menu] {
  position: relative;
}

.main-content nav[data-menu] ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  background-color: #fff;
}

.main-content nav[data-menu] li > .dropdown {
  display: none;
  position: absolute;
  border: 1px solid #d1d1d1;
  border-radius: 6px;
  box-shadow: 2px 2px 6px 0px #7f7f7f;
  left: 10%;
  padding: 5px;
}

.main-content nav[data-menu] .dropdown li {
  margin: 0.5rem 0;
}

.main-content nav[data-menu] .menu-button {
  cursor: pointer;
  display: block;
}

.main-content nav[data-menu] .menu-button::after {
  content: url(/images/menu/expand-arrow.png);
  margin-left: 10px;
  margin-top: 5px;
}
