h1, h2, h3, h4, h5, p {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5,
em, strong {
  font-size: inherit;
  font-style: normal;
  font-weight: 400;
}

a {
  color: inherit;
}

ul {
  margin: 0;
  padding: 0;
}

.no-select {
  -webkit-touch-callout: none !important;
  -webkit-user-select: none !important;
  -khtml-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
  -webkit-tap-highlight-color: transparent !important;
}

.clear {
  display: block;
  float: none;
  clear: both;
}

html {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
}

body {
  width: 100%;
  min-height: 100%;
  padding: 0;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar {
  display: none;
}

* {
  scrollbar-width: none;
}

:root {
  --FS14: calc(14 * 0.05rem);
  --LH14: normal;
  --FS20: calc(20 * 0.05rem);
  --LH20: normal;
  --LH20_2: calc(113/100);
  --FS24: calc(24 * 0.05rem);
  --LH24: normal;
  --FS30: calc(30 * 0.05rem);
  --LH30: normal;
  --LH30_2: calc(113/100);
  --FS33: calc(33 * 0.05rem);
  --LH33: normal;
  --FS37: calc(37 * 0.05rem);
  --LH37: normal;
  --LH37_2: calc(113/100);
  --FS40: calc(40 * 0.05rem);
  --LH40: normal;
  --FS43: calc(43 * 0.05rem);
  --LH43: normal;
  --FS60: calc(60 * 0.05rem);
  --LH60: normal;
  --FS73: calc(73 * 0.05rem);
  --LH73: normal;
}

:root {
  --GRID_MARGIN: 0px;
  --GRID_GUTTER: 20px;
  --2: calc(2 * 0.05rem);
  --3: calc(3 * 0.05rem);
  --5: calc(5 * 0.05rem);
  --10: calc(10 * 0.05rem);
  --12: calc(12 * 0.05rem);
  --20: calc(20 * 0.05rem);
  --24: calc(24 * 0.05rem);
  --32: calc(32 * 0.05rem);
  --50: calc(50 * 0.05rem);
  --78: calc(78 * 0.05rem);
  --90: calc(90 * 0.05rem);
  --158: calc(158 * 0.05rem);
}

#main-grid {
  display: grid;
  visibility: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 0 var(--GRID_MARGIN);
  box-sizing: border-box;
  grid-template-columns: repeat(22, 1fr);
  column-gap: var(--GRID_GUTTER);
  z-index: 10000;
  pointer-events: none;
}
#main-grid .col {
  height: 100%;
  grid-column-end: span 1;
  background-color: rgba(0, 255, 255, 0.1);
}

.grid_3 {
  display: grid;
  box-sizing: border-box;
  border-top: 5px solid #000000;
}
.grid_3 .col {
  border-bottom: 5px solid #000000;
  border-left: 5px solid #000000;
  min-height: 400px;
}
.grid_3 .col:last-child {
  border-right: 5px solid #000000;
}
.grid_3 .col:first-child,
.grid_3 .col:nth-child(4n) {
  border-left: none;
}
.grid_3 a.col {
  text-decoration: none;
}

.col-title {
  font-family: "ItalianPlateNo1 Bold";
  font-size: var(--FS40);
}

.pill {
  background-color: #F6652B;
  border: 5px solid #000000;
  font-family: "ItalianPlateNo1 Bold";
  line-height: auto;
  border-radius: 8rem;
  text-align: center;
  width: max-content;
  text-transform: uppercase;
  padding: 0.3rem 0.5rem 0;
}

.picture-title {
  font-size: var(--FS60);
}

.picture-sub {
  font-size: var(--FS37);
}

html {
  font-family: "ItalianPlateNo1 Regular";
  font-size: 20px;
  line-height: normal;
  background-color: #F6652B;
}

body {
  font-size: var(--FS20);
  line-height: 1;
}

@media screen and (min-width: 768px) {
  .grid_3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .grid_3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
header {
  display: flex;
  justify-content: space-between;
  padding: var(--24) var(--COLUMN_WIDTH);
  box-sizing: border-box;
}
header #affut-logo img {
  display: block;
  width: var(--158);
  height: auto;
}
header #main-menu #main-menu-links {
  display: flex;
  gap: var(--90);
}
header #main-menu #main-menu-links a {
  position: relative;
  display: block;
  font-family: "ItalianPlateNo1 Bold";
  font-size: var(--FS30);
  line-height: 1;
  text-decoration: none;
}
header #main-menu #main-menu-links a.sel::after {
  content: "";
  display: block;
  position: absolute;
  width: calc(100% + 0.3em);
  height: max(var(--5), 2px);
  left: 50%;
  bottom: calc(var(--3) * -1);
  transform: translateX(-50%);
  border-radius: 100em;
  box-sizing: border-box;
  background-color: #000000;
}

picture {
  display: block;
  width: 100%;
}
picture img {
  width: 100%;
}
picture legend {
  font-size: var(--FS20);
  line-height: var(--LH20);
  margin-top: var(--10);
  text-align: right;
}

.textarea p:not(:last-child),
.textarea h3:not(:last-child),
.textarea ul:not(:last-child) {
  margin-bottom: 1em;
}
.textarea h3 {
  font-size: var(--FS30);
  line-height: var(--LH30);
}
.textarea em {
  font-family: "ItalianPlateNo1 Italic";
  font-style: italic;
}
.textarea em strong {
  font-family: "ItalianPlateNo1 Bold Italic";
}
.textarea strong {
  font-family: "ItalianPlateNo1 Bold";
}
.textarea strong em {
  font-family: "ItalianPlateNo1 Bold Italic";
  font-style: italic;
}

.grid_thumb {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  height: 100%;
}
.grid_thumb > * {
  display: block;
}
.grid_thumb picture {
  width: 100%;
  padding-bottom: 100%;
  height: 0;
  display: block;
  position: relative;
}
.grid_thumb picture > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}
.grid_thumb .col-title + picture {
  padding-bottom: 56%;
  border-top: 5px solid #000000;
  border-bottom: 5px solid #000000;
}
.grid_thumb .picture-title {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
  padding: 0.6rem 1rem 0.2rem;
}
.grid_thumb .picture-sub {
  position: absolute;
  top: 1rem;
  right: 1rem;
}
.grid_thumb h2.col-title {
  border-bottom: 5px solid #000000;
  padding: var(--12) var(--24);
}
.grid_thumb .date {
  border-top: 5px solid #000000;
  font-size: var(--FS30);
  padding: var(--10) var(--20) var(--5);
}
.grid_thumb .extract > p {
  text-align: center;
  font-size: var(--FS40);
  font-family: "ItalianPlateNo1 Bold Italic";
  padding: var(--12) var(--24);
}

.template-page-directory #section-schools,
.template-page-directory #section-spec,
.template-page-directory #section-years {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: var(--GRID_GUTTER);
  margin-bottom: var(--24);
  padding: 0 calc(var(--COLUMN_WIDTH) + var(--GRID_GUTTER));
  box-sizing: border-box;
}
.template-page-directory #section-schools a,
.template-page-directory #section-spec a,
.template-page-directory #section-years a {
  line-height: var(--LH20_2);
  cursor: pointer;
  text-decoration: none;
}
.template-page-directory #section-schools a.sel,
.template-page-directory #section-spec a.sel,
.template-page-directory #section-years a.sel {
  font-family: "ItalianPlateNo1 Bold Italic";
  font-style: italic;
}
.template-page-directory #section-schools a span,
.template-page-directory #section-spec a span,
.template-page-directory #section-years a span {
  font-family: "ItalianPlateNo1 Regular" !important;
  display: block;
  margin-bottom: var(--3);
  font-size: 0.75em;
}
.template-page-directory #section-spec {
  grid-template-columns: repeat(3, 1fr);
  padding-left: calc(var(--COLUMN_WIDTH) * 6 + var(--GRID_GUTTER) * 6);
  font-size: var(--FS30);
  line-height: var(--LH30_2);
}
.template-page-directory #section-years {
  grid-template-columns: repeat(5, 1fr);
  column-gap: 0;
  row-gap: var(--32);
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: calc(var(--COLUMN_WIDTH) * 11 + var(--GRID_GUTTER) * 11);
  padding-right: var(--COLUMN_WIDTH);
  font-size: var(--FS37);
  line-height: var(--LH37_2);
}
.template-page-directory #section-years a {
  text-align: center;
  box-sizing: border-box;
  width: fit-content;
  margin-left: auto;
}
.template-page-directory #section-years a.sel {
  position: relative;
  font-family: "ItalianPlateNo1 Bold";
  font-style: inherit;
}
.template-page-directory #section-years a.sel::before {
  content: "";
  display: block;
  position: absolute;
  width: calc(100% + 1.4rem);
  height: 100%;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-55%);
  border: 5px solid #000000;
  border-radius: 0.6em;
  box-sizing: content-box;
}
.template-page-directory .students-list .tab,
.template-page-directory .students-list .student .headline {
  display: grid;
  grid-template-columns: repeat(20, 1fr);
  column-gap: var(--GRID_GUTTER);
  position: relative;
  padding: var(--12) calc(var(--COLUMN_WIDTH) + var(--GRID_GUTTER));
  padding-bottom: calc(var(--12) * 0.5);
  box-sizing: border-box;
  font-size: var(--FS30);
  line-height: 1;
}
.template-page-directory .students-list .tab > :nth-child(1),
.template-page-directory .students-list .student .headline > :nth-child(1) {
  grid-column-start: 1;
  grid-column-end: span 6;
}
.template-page-directory .students-list .tab > :nth-child(2),
.template-page-directory .students-list .student .headline > :nth-child(2) {
  grid-column-start: 7;
  grid-column-end: span 8;
}
.template-page-directory .students-list .tab > :nth-child(3),
.template-page-directory .students-list .student .headline > :nth-child(3) {
  grid-column-start: 15;
  grid-column-end: span 4;
}
.template-page-directory .students-list .tab > :nth-child(4),
.template-page-directory .students-list .student .headline > :nth-child(4) {
  grid-column-start: 19;
  grid-column-end: span 2;
}
.template-page-directory .students-list .tab:before,
.template-page-directory .students-list .student .headline:before {
  content: "";
  width: 25px;
  height: 15px;
  background: url("../vectos/pointer_orange.svg") no-repeat center;
  display: block;
  position: absolute;
  top: 18px;
  left: 25px;
  transition: transform 0.3s ease;
}
.template-page-directory .students-list .tab {
  position: sticky;
  top: 0;
  border-top: max(var(--5), 2px) solid;
  border-bottom: max(var(--2), 2px) solid;
  z-index: 1;
  background-color: #F6652B;
}
.template-page-directory .students-list .tab > :first-child {
  font-family: "ItalianPlateNo1 Bold";
  font-size: var(--FS37);
}
.template-page-directory .students-list .tab > :not(:first-child) {
  cursor: pointer;
  text-decoration: none;
}
.template-page-directory .students-list .tab > .selTabItem span {
  position: relative;
  font-family: "ItalianPlateNo1 Bold";
}
.template-page-directory .students-list .tab > .selTabItem span::after {
  content: "";
  display: block;
  position: absolute;
  width: calc(100% + 0.3em);
  height: max(var(--5), 2px);
  left: 50%;
  bottom: calc(var(--3) * -1);
  transform: translateX(-50%);
  border-radius: 100em;
  box-sizing: border-box;
  background-color: #000000;
}
.template-page-directory .students-list .student.expand .headline {
  background-color: #000000;
  color: #F6652B;
}
.template-page-directory .students-list .student.expand .headline:before {
  transform: rotate(90deg);
}
.template-page-directory .students-list .student.expand .infos {
  height: auto;
  min-height: 400px;
  padding: var(--50) calc(var(--COLUMN_WIDTH));
  opacity: 1;
  border-bottom: 5px solid #000000;
}
.template-page-directory .students-list .student .headline {
  border-bottom: max(var(--2), 2px) solid;
  cursor: pointer;
}
.template-page-directory .students-list .student .headline .spe {
  display: flex;
  flex-wrap: wrap;
  column-gap: 0.25em;
}
.template-page-directory .students-list .student:hover .headline {
  background-color: #000000;
  color: #F6652B;
}
.template-page-directory .students-list .student .infos {
  display: flex;
  gap: calc(var(--COLUMN_WIDTH));
  padding: 0 calc(var(--COLUMN_WIDTH));
  box-sizing: border-box;
  height: 0;
  transition: padding-top 0.3s ease, opacity 0.3s ease;
  overflow: hidden;
  position: relative;
  opacity: 0;
}
.template-page-directory .students-list .student .infos .loader {
  background: url("../vectos/pointer.svg") no-repeat center;
  display: block;
  width: 100px;
  height: 100px;
  margin: auto;
  animation: rotation 5s linear infinite;
}
.template-page-directory .students-list .student .infos .school_status {
  position: absolute;
  font-family: "ItalianPlateNo1 Bold";
  font-size: var(--FS37);
  line-height: 1;
  text-transform: uppercase;
  padding: 0.2em 0.3em;
  padding-bottom: 0;
  border: max(var(--5), 2px) solid;
  border-radius: 0.6em;
  box-sizing: border-box;
  background-color: #F6652B;
  transform: translateX(calc(-1 * var(--GRID_GUTTER) + 0.2em)) translateY(-34%);
}
.template-page-directory .students-list .student .infos .gallery {
  display: flex;
  gap: var(--GRID_GUTTER);
}
.template-page-directory .students-list .student .infos .gallery picture {
  width: calc(var(--COLUMN_WIDTH) * 4 + var(--GRID_GUTTER) * 4);
  aspect-ratio: 1/1;
  cursor: pointer;
}
.template-page-directory .students-list .student .infos .gallery picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.template-page-directory .students-list .student .infos .gallery picture legend {
  position: absolute;
  display: none;
}
.template-page-directory .students-list .student .infos .description {
  flex-grow: 1;
  column-gap: var(--GRID_GUTTER);
  columns: 2;
  max-width: calc(var(--COLUMN_WIDTH) * 12 + var(--GRID_GUTTER) * 13);
}
.template-page-directory .students-list .student .infos .description .links {
  margin-top: 1em;
  break-inside: avoid;
  text-decoration: none;
}
.template-page-directory .students-list .student .infos .description .links a {
  display: block;
  text-decoration: none;
}
.template-page-directory .students-list .student .infos .description .links a:hover {
  text-decoration: underline;
}
.template-page-directory .students-list .student .infos:has(.gallery picture:nth-child(2)) .description {
  columns: 1;
  max-width: calc(var(--COLUMN_WIDTH) * 6 + var(--GRID_GUTTER) * 6);
}
.template-page-directory .filters > section {
  opacity: 1;
  height: auto;
  overflow: auto;
  min-height: 30px;
  transition: opacity 0.3s ease 0.3s;
}
.template-page-directory .filters > section:not(.visible) {
  opacity: 0;
  height: 0;
  overflow: hidden;
  min-height: 0;
  transition: opacity 0.3s ease;
}

@keyframes rotation {
  50% {
    transform: rotate(360deg);
  }
}
.modal {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9;
  display: none;
  background-color: #F6652B;
}
.modal figure {
  height: 60%;
  border-top: 5px solid #000000;
  border-bottom: 5px solid #000000;
  padding: 0;
  margin: 0;
}
.modal figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.modal #modal-header {
  height: 20%;
  position: relative;
}
.modal #modal-header #close {
  text-transform: uppercase;
  font-family: "ItalianPlateNo1 Bold";
  font-size: var(--FS37);
  border: 5px solid #000000;
  border-radius: 2rem;
  padding: 0.25rem 0.5rem 0;
  position: absolute;
  bottom: 1.3rem;
  right: 1.3rem;
  cursor: pointer;
}
.modal #modal-header #close:hover {
  color: #F6652B;
  background-color: #000000;
}
.modal #modal-footer {
  height: 20%;
  position: relative;
}
.modal #modal-footer #modal-nav {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 1.3rem;
  display: block;
}
.modal #modal-footer #modal-nav .dot {
  font-family: "ItalianPlateNo1 Bold";
  font-size: var(--FS37);
  border: 3px solid #000000;
  border-radius: 100%;
  width: 1.8rem;
  height: 1.8rem;
  display: inline-block;
  text-align: center;
  line-height: 1.11;
  margin: 0 0.1rem;
}
.modal #modal-footer #modal-nav .dot.active {
  color: #F6652B;
  background-color: #000000;
}
.modal #modal-footer #prev, .modal #modal-footer #next {
  position: absolute;
  top: 1.3rem;
  left: 1.3rem;
  background: url(../vectos/gallery-nav.svg) no-repeat center;
  width: 2.5rem;
  height: 1.5rem;
  display: block;
  background-size: 100%;
  cursor: pointer;
}
.modal #modal-footer #prev.hidden, .modal #modal-footer #next.hidden {
  display: none;
}
.modal #modal-footer #prev {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.modal #modal-footer #next {
  left: auto;
  right: 1.3rem;
}

.modal.opened {
  display: block;
}

.template-page-about #section-schools {
  font-size: var(--FS43);
  overflow: hidden;
}
.template-page-about #section-schools h2 {
  font-family: "ItalianPlateNo1 Bold";
  padding: var(--12) var(--24);
  padding-bottom: calc(var(--12) * 0.5);
  box-sizing: border-box;
  border-top: max(var(--5), 2px) solid;
  border-bottom: max(var(--5), 2px) solid;
}
.template-page-about #section-schools .band {
  display: flex;
  width: max-content;
  border-bottom: max(var(--5), 2px) solid;
}
@keyframes infinite-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.template-page-about #section-schools .band:nth-child(4n+1) {
  animation: infinite-scroll 60s linear infinite;
}
.template-page-about #section-schools .band:nth-child(4n+2) {
  animation: infinite-scroll 59s linear infinite;
}
.template-page-about #section-schools .band:nth-child(4n+3) {
  animation: infinite-scroll 61s linear infinite;
}
.template-page-about #section-schools .band:nth-child(4n+4) {
  animation: infinite-scroll 60.5s linear infinite;
}
.template-page-about #section-schools .band:nth-child(2n+2) {
  animation-direction: reverse;
}
.template-page-about #section-schools .band:hover, .template-page-about #section-schools .band:has(.school.sel) {
  animation-play-state: paused;
}
.template-page-about #section-schools .band .school {
  flex-shrink: 0;
  padding: var(--12) var(--24);
  padding-bottom: calc(var(--12) * 0.5);
  box-sizing: border-box;
  border-right: max(var(--5), 2px) solid;
  cursor: pointer;
}
.template-page-about #section-schools .band .school:hover, .template-page-about #section-schools .band .school.sel {
  background-color: #000000;
  color: #F6652B;
}
.template-page-about .bottom {
  display: flex;
}
.template-page-about .bottom #section-map {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: calc(var(--COLUMN_WIDTH) * 10 + var(--GRID_GUTTER) * 10);
  flex-shrink: 0;
  padding: var(--32) 0;
  box-sizing: border-box;
}
.template-page-about .bottom #section-map svg {
  display: block;
  width: calc(var(--COLUMN_WIDTH) * 7 + var(--GRID_GUTTER) * 7);
  height: auto;
}
.template-page-about .bottom #section-map svg circle {
  fill: #000000;
}
.template-page-about .bottom #section-map svg circle.sel {
  fill: #F6652B;
  stroke: #000000;
  stroke-width: 3;
}
.template-page-about .bottom #section-map #google-map {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: auto;
  transform: translateX(-58%) translateY(-51%) scaleX(0.82) scaleY(0.8);
  opacity: 0.5;
  z-index: -1;
  display: none;
}
.template-page-about .bottom #section-about {
  flex-grow: 1;
  padding: var(--78) calc(var(--COLUMN_WIDTH) + var(--GRID_GUTTER));
  padding-left: 0;
}
.template-page-about .bottom #section-about .about {
  font-size: var(--FS33);
  line-height: var(--FS33);
}
.template-page-about .bottom #section-about:has(.contact .contact-schools .contact-school.sel) .about {
  display: none;
}
.template-page-about .bottom #section-about .contact {
  display: none;
  column-gap: var(--GRID_GUTTER);
  font-size: var(--FS24);
  line-height: var(--LH24);
}
.template-page-about .bottom #section-about .contact > div {
  width: 50%;
  flex-grow: 0;
  flex-shrink: 0;
}
.template-page-about .bottom #section-about .contact .contact-school {
  display: none;
}
.template-page-about .bottom #section-about .contact .contact-school.sel {
  display: block;
}
.template-page-about .bottom #section-about .contact .contact-school h3 {
  font-family: "ItalianPlateNo1 Bold";
  font-size: var(--FS24);
  line-height: var(--LH24);
  margin-bottom: 0;
}
.template-page-about .bottom #section-about .contact:has(.contact-schools .contact-school.sel) {
  display: flex;
}

.grid_new {
  border-top: 5px solid #000000;
}
.grid_new aside .grid_thumb {
  border-bottom: 5px solid #000000;
  height: max-content;
  min-height: 450px;
}
.grid_new #section-content {
  border-left: 5px solid #000000;
  border-bottom: 5px solid #000000;
  padding: var(--20) var(--32);
}
.grid_new #section-content h2 {
  font-size: var(--FS30);
  font-family: "ItalianPlateNo1 Bold";
  margin-bottom: var(--20);
}
.grid_new #section-content p {
  max-width: 600px;
  margin: var(--20) 0;
}
.grid_new #section-content picture {
  max-width: 900px;
}

@media screen and (min-width: 768px) {
  .grid_new {
    display: grid;
    grid-template-columns: 1fr 2fr;
  }
}
.ressource > h2.col-title::before {
  content: "";
  position: relative;
  top: -2px;
  display: inline-block;
  margin-right: 10px;
  width: 25px;
  height: 15px;
  background: url(../vectos/pointer.svg) no-repeat center;
}
.ressource .textarea {
  padding: 2rem;
}
.ressource .textarea h2 {
  font-family: "ItalianPlateNo1 Bold";
  margin-bottom: 20px;
  font-size: var(--FS30);
}
.ressource .textarea a {
  font-family: "ItalianPlateNo1 Bold Italic";
}