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;
}

@media screen and (min-width: 1400px) {
  :root {
    --FS14: 14px;
    --FS20: 20px;
    --FS24: 24px;
    --FS30: 30px;
    --FS33: 33px;
    --FS37: 37px;
    --LH37_2: calc(113/100);
    --FS40: 40px;
    --FS43: 45px;
    --FS60: 60px;
    --FS73: 75px;
  }
}
: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;
  max-width: 2000px;
  margin: auto;
  border-top: 5px solid #000000;
}
@media screen and (min-width: 768px) {
  .grid_3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .grid_3 {
    border-right: 5px solid #000000;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .grid_3 {
    border-top: 5px solid #000000;
  }
}
.grid_3 .col {
  border-bottom: 5px solid #000000;
}
@media screen and (min-width: 768px) {
  .grid_3 .col {
    border-left: 5px solid #000000;
  }
  .grid_3 .col:last-child {
    position: relative;
  }
  .grid_3 .col:last-child:after {
    content: "";
    display: block;
    position: absolute;
    background: #000000;
    width: 5px;
    height: calc(100% + 5px);
    right: -5px;
    top: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .grid_3 .col {
    border-top: none;
  }
  .grid_3 .col:nth-child(even) {
    border-right: 5px solid #000000;
  }
  .grid_3 .col:nth-child(even) .grid-container {
    padding-bottom: calc(100% + 5px);
  }
}
.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(--FS37);
}
@media screen and (min-width: 768px) {
  .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: 1024px) {
  .grid_3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
#mobile-menu {
  border: 5px solid #000000;
  background: #F6652B;
  font-size: var(--FS37);
  text-transform: uppercase;
  font-family: "ItalianPlateNo1 Bold";
  border-radius: 30px;
  padding: 5px 12px 0 12px;
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 99;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  #mobile-menu {
    display: none;
  }
}

header {
  display: flex;
  justify-content: space-between;
  padding: var(--24) var(--COLUMN_WIDTH);
  box-sizing: border-box;
}
header #affut-logo {
  max-width: 150px;
  width: var(--158);
  padding: 10px;
}
header #affut-logo img {
  display: block;
  width: 100%;
  height: auto;
  max-width: auto;
}
header #affut-logo img:hover {
  transform: scaleY(-1);
}
header #main-menu #main-menu-links {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  background: #F6652B;
  top: -100vh;
  height: 100vh;
  transition: top 0.5s ease-in-out;
}
header #main-menu #main-menu-links.expanded {
  top: 170px;
}
@media screen and (min-width: 768px) {
  header #main-menu #main-menu-links {
    display: flex;
    gap: var(--90);
    position: relative;
    width: auto;
    height: auto;
    top: auto;
    height: auto;
    background: auto;
    text-transform: inherit;
  }
  header #main-menu #main-menu-links.expanded {
    top: auto;
  }
}
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;
  padding: 10px;
  text-transform: uppercase;
  border-bottom: 5px solid #000000;
  display: list-item;
}
header #main-menu #main-menu-links a:hover {
  transform: scaleX(-1);
}
@media screen and (min-width: 768px) {
  header #main-menu #main-menu-links a {
    padding: 0;
    text-transform: inherit;
    border-bottom: none;
    display: inline-block;
  }
  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 .grid-container {
  width: 100%;
  padding-bottom: 100%;
  height: 0;
  display: block;
  position: relative;
  overflow: hidden;
}
.grid_thumb picture {
  display: block;
  width: 100%;
  height: 100%;
}
.grid_thumb picture > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  .grid_thumb .col-title + picture {
    padding-bottom: 100%;
    overflow: hidden;
    position: relative;
  }
}
.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 .date.image-date {
  position: absolute;
  width: 100%;
  bottom: 0;
  background: #F6652B;
}
.grid_thumb .extract > p {
  text-align: center;
  font-size: var(--FS40);
  font-family: "ItalianPlateNo1 Bold Italic";
  padding: var(--12) var(--24);
}

@media screen and (min-width: 768px) {
  .template-page-directory #section-schools,
  .template-page-directory #section-spec,
  .template-page-directory #section-years {
    display: grid;
    column-gap: var(--GRID_GUTTER);
    margin-bottom: var(--24);
    padding: 0 calc(var(--COLUMN_WIDTH) + var(--GRID_GUTTER));
    box-sizing: border-box;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .template-page-directory #section-schools,
  .template-page-directory #section-spec,
  .template-page-directory #section-years {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 768px) and (min-width: 1024px) {
  .template-page-directory #section-schools,
  .template-page-directory #section-spec,
  .template-page-directory #section-years {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .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.selected-filter,
  .template-page-directory #section-spec a.selected-filter,
  .template-page-directory #section-years a.selected-filter {
    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;
  }
}
@media screen and (min-width: 768px) {
  .template-page-directory #section-spec {
    padding-left: calc(var(--COLUMN_WIDTH) * 6 + var(--GRID_GUTTER) * 6);
    font-size: var(--FS30);
    ine-height: var(--LH30_2);
  }
}
.template-page-directory #section-spec {
  text-transform: capitalize;
}
@media screen and (min-width: 1024px) {
  .template-page-directory #section-spec {
    grid-template-columns: repeat(3, 1fr);
  }
}
.template-page-directory #section-years {
  position: relative;
}
@media screen and (min-width: 768px) {
  .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.selected-filter {
  position: relative;
  font-family: "ItalianPlateNo1 Bold";
  font-style: inherit;
}
.template-page-directory #section-years a.selected-filter::before {
  content: "";
  display: none;
  position: absolute;
  height: 100%;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-55%);
  border: 5px solid #000000;
  border-radius: 0.6em;
  box-sizing: content-box;
}
@media screen and (min-width: 768px) {
  .template-page-directory #section-years a.selected-filter::before {
    display: block;
  }
}
.template-page-directory #section-years a.button-reset {
  font-size: 1.3rem;
  margin-top: 0.1rem;
}
.template-page-directory #section-years a.selected-filter.button-reset:before {
  display: none;
}
.template-page-directory .filters-desktop-section {
  display: none;
  border-bottom: 5px solid #000000;
  padding: 20px calc(var(--COLUMN_WIDTH) + var(--GRID_GUTTER));
}
@media screen and (min-width: 768px) {
  .template-page-directory .filters-desktop-section {
    position: sticky;
    top: 0;
    height: 30px;
    background: #F6652B;
    z-index: 99;
    display: flex;
    justify-content: space-between;
  }
}
.template-page-directory .filters-desktop-section > span {
  font-family: "ItalianPlateNo1 Bold";
  font-size: var(--FS37);
  text-decoration: none;
}
.template-page-directory .filters-desktop-section ul {
  list-style: none;
  display: inline-block;
}
.template-page-directory .filters-desktop-section ul li {
  display: inline-block;
  margin: 0 15px;
}
.template-page-directory .filters-desktop-section ul li:last-child {
  margin-right: 0;
}
.template-page-directory .filters-desktop-section ul li a {
  padding: 5px 15px 3px 15px;
  border: 3px solid #000000;
  border-radius: 30px;
  font-size: var(--FS30);
  text-decoration: none;
  font-family: "ItalianPlateNo1 Bold";
}
.template-page-directory .filters-desktop-section ul li a:hover, .template-page-directory .filters-desktop-section ul li a.selTabItem {
  color: #F6652B;
  background-color: #000000;
}
@media screen and (max-width: 768px) {
  .template-page-directory .filters-container {
    position: relative;
    padding: 15px 25px 5px 45px;
    border-bottom: 5px solid #000000;
    height: 40px;
    overflow-y: auto;
  }
}
.template-page-directory .filters {
  display: block;
}
@media screen and (max-width: 768px) {
  .template-page-directory .filters section {
    width: max-content;
  }
  .template-page-directory .filters section a {
    text-decoration: none;
    padding-right: 2rem;
    display: inline-block;
  }
}
.template-page-directory .filters > section {
  opacity: 1;
  height: auto;
  overflow: auto;
  min-height: 30px;
}
.template-page-directory .filters > section:not(.visible) {
  opacity: 0;
  height: 0;
  overflow: hidden;
  min-height: 0;
  transition: opacity 0.3s ease;
}

.mobile-array-header {
  position: relative;
}
.mobile-array-header .mobile-arrow {
  display: block;
  position: absolute;
  bottom: -60px;
  width: 30px;
  height: 45px;
  background: #F6652B;
  padding-top: 15px;
  text-align: center;
  z-index: 99;
}
@media screen and (min-width: 768px) {
  .mobile-array-header .mobile-arrow {
    display: none;
  }
}
.mobile-array-header .mobile-arrow.arrow-left {
  left: 0;
  border-right: 5px solid #000000;
}
.mobile-array-header .mobile-arrow.arrow-right {
  right: 0;
  border-left: 5px solid #000000;
}
.mobile-array-header > span:first-child {
  font-family: "ItalianPlateNo1 Bold";
  font-size: var(--FS37);
  text-decoration: none;
  padding: 10px 20px;
  border-top: 5px solid #000000;
  border-bottom: 5px solid #000000;
  display: block;
}
.mobile-array-header ul {
  display: flex;
  justify-content: space-between;
  padding: 10px 20px;
  list-style: none;
  border-bottom: 5px solid #000000;
}
.mobile-array-header ul li {
  margin: 12px 0 8px 0;
}
.mobile-array-header ul a {
  text-decoration: none;
  padding: 5px 15px 3px 15px;
  border: 3px solid #000000;
  border-radius: 30px;
  text-decoration: none;
  font-family: "ItalianPlateNo1 Bold";
}
.mobile-array-header ul a:hover, .mobile-array-header ul a.selTabItem {
  color: #F6652B;
  background-color: #000000;
}
@media screen and (min-width: 768px) {
  .mobile-array-header {
    display: none;
  }
}

.tab {
  top: 0;
  height: 45px;
  border-top: max(var(--5), 2px) solid;
  border-bottom: max(var(--2), 2px) solid;
  z-index: 1;
  background-color: #F6652B;
  padding: var(--12) calc(var(--COLUMN_WIDTH) + var(--GRID_GUTTER));
  display: none;
}
@media screen and (min-width: 768px) {
  .tab {
    display: block;
  }
}
.tab > .selTabItem span {
  position: relative;
  font-family: "ItalianPlateNo1 Bold";
}
.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;
}
.tab > :first-child {
  font-family: "ItalianPlateNo1 Bold";
  font-size: var(--FS37);
  text-decoration: none;
}
.tab > ul li {
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
}
.tab > ul li a {
  text-decoration: none;
}
.tab > ul li .selTabItem span {
  position: relative;
  font-family: "ItalianPlateNo1 Bold";
}
.tab > ul li .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;
}
@media screen and (min-width: 768px) {
  .tab {
    font-size: var(--FS30);
    display: grid;
    grid-template-columns: repeat(20, 1fr);
    column-gap: var(--GRID_GUTTER);
  }
  .tab:first-child {
    grid-column-start: 1;
    grid-column-end: span 4;
  }
  .tab > ul {
    grid-column-start: 7;
    grid-column-end: span 20;
    display: grid;
    grid-template-columns: repeat(16, 1fr);
  }
  .tab > ul > li:first-of-type {
    grid-column-start: 1;
    grid-column-end: span 6;
  }
  .tab > ul > li:nth-child(2) {
    grid-column-start: 10;
    grid-column-end: span 4;
  }
  .tab > ul > li:last-of-type {
    grid-column-start: 15;
    grid-column-end: span 4;
    text-align: right;
  }
}
@media screen and (max-width: 768px) {
  .tab ul > a:first-child {
    display: none;
  }
  .tab ul {
    display: flex;
    justify-content: space-between;
  }
}

@media screen and (min-width: 768px) {
  .student::first-child .headline {
    border-top: none;
  }
}
.student .headline {
  position: relative;
  padding: 0.5rem 1rem;
  border-top: max(var(--2), 2px) solid;
}
.student .headline .name {
  text-transform: capitalize;
}
.student .headline .school {
  display: none;
}
.student .headline .year {
  position: absolute;
  right: 1rem;
  top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .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;
  }
  .student .headline > :nth-child(1) {
    grid-column-start: 1;
    grid-column-end: span 10;
  }
  .student .headline > :nth-child(2) {
    grid-column-start: 11;
    grid-column-end: span 20;
  }
  .student .headline > :nth-child(3) {
    grid-column-start: 1;
    grid-column-end: span 10;
  }
  .student .headline > :nth-child(4) {
    grid-column-start: 11;
    grid-column-end: span 2;
  }
  .student .headline .school {
    display: block;
  }
  .student .headline .year {
    position: relative;
    right: auto;
    top: auto;
  }
  .student .headline:before {
    content: "";
    width: 20px;
    height: 10px;
    background: url("../vectos/pointer_orange.svg") no-repeat center;
    display: block;
    position: absolute;
    top: 18px;
    left: 12px;
    transition: transform 0.3s ease;
  }
}
@media screen and (min-width: 1024px) {
  .student .headline > :nth-child(1) {
    grid-column-start: 1;
    grid-column-end: span 6;
  }
  .student .headline > :nth-child(2) {
    grid-column-start: 7;
    grid-column-end: span 8;
  }
  .student .headline > :nth-child(3) {
    grid-column-start: 15;
    grid-column-end: span 4;
  }
  .student .headline > :nth-child(4) {
    grid-column-start: 19;
    grid-column-end: span 2;
  }
  .student .headline .year {
    text-align: right;
  }
  .student .headline:before {
    width: 25px;
    height: 15px;
    top: 18px;
    left: 25px;
  }
}
.student .infos {
  padding: 0;
  gap: 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;
}
.student .infos .loader {
  background: url("../vectos/pointer.svg") no-repeat center;
  display: block;
  width: 100px;
  height: 100px;
  margin: auto;
  animation: rotation 5s linear infinite;
}
.student .infos .links a {
  display: block;
}
.student .infos .description, .student .infos .links {
  margin: 1rem 0;
}
.student .infos .links {
  text-decoration: none;
}
.student .infos .gallery {
  margin: 0.5rem 1rem;
}
.student .infos .gallery picture {
  margin-bottom: 1rem;
}
.student .infos .gallery legend {
  margin-top: 0.1rem;
  font-size: 0.8rem;
}
@media screen and (min-width: 768px) {
  .student .infos .gallery {
    display: flex;
    gap: var(--GRID_GUTTER);
  }
  .student .infos .gallery picture {
    width: calc(var(--COLUMN_WIDTH) * 4 + var(--GRID_GUTTER) * 4);
    aspect-ratio: 1/1;
    cursor: pointer;
  }
  .student .infos .gallery picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .student .infos .gallery picture legend {
    position: absolute;
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .student .infos {
    display: flex;
  }
  .student .infos .description {
    flex-grow: 1;
    column-gap: var(--GRID_GUTTER);
    columns: 2;
    max-width: calc(var(--COLUMN_WIDTH) * 12 + var(--GRID_GUTTER) * 13);
  }
}
.student.expand .headline {
  background-color: #000000;
  color: #F6652B;
}
.student.expand .headline:before {
  transform: rotate(90deg);
}
.student.expand .infos {
  height: auto;
  min-height: 400px;
  padding: var(--50) 25px 0 25px;
  opacity: 1;
  border-bottom: 5px solid #000000;
}
@media screen and (min-width: 768px) {
  .student.expand .infos {
    padding: var(--50) calc(var(--COLUMN_WIDTH));
  }
}
.student:hover .headline {
  background-color: #000000;
  color: #F6652B;
}
.student .school_status {
  position: absolute;
  font-family: "ItalianPlateNo1 Bold";
  font-size: var(--FS24);
  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;
  -webkit-transform: translateX(calc(-1 * var(--GRID_GUTTER) + 0.2em)) translateY(-34%);
  transform: translateX(calc(-1 * var(--GRID_GUTTER) + 0.2em)) translateY(-34%);
}
@media screen and (min-width: 768px) {
  .student .school_status {
    font-size: var(--FS37);
  }
}

@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;
}

@media screen and (min-width: 768px) {
  .template-page-about #section-schools {
    font-size: var(--FS43);
  }
}
.template-page-about #section-schools {
  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;
}
@media screen and (max-width: 768px) {
  .template-page-about .bottom {
    flex-direction: column-reverse;
  }
}
.template-page-about .bottom #section-map {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .template-page-about .bottom #section-map {
    width: calc(var(--COLUMN_WIDTH) * 10 + var(--GRID_GUTTER) * 10);
  }
}
.template-page-about .bottom #section-map {
  flex-shrink: 0;
  padding: var(--32) 0;
  box-sizing: border-box;
}
.template-page-about .bottom #section-map svg {
  display: block;
  padding: 30px;
  height: auto;
}
@media screen and (min-width: 768px) {
  .template-page-about .bottom #section-map svg {
    padding: 0;
    width: calc(var(--COLUMN_WIDTH) * 7 + var(--GRID_GUTTER) * 7);
  }
}
.template-page-about .bottom #section-map svg circle {
  fill: #000000;
  cursor: pointer;
}
.template-page-about .bottom #section-map svg circle.sel,
.template-page-about .bottom #section-map svg circle:hover,
.template-page-about .bottom #section-map svg circle.hovered {
  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(-50%) translateY(-53%) scaleX(0.7) scaleY(0.7);
  opacity: 0.5;
  z-index: -1;
  display: none;
}
.template-page-about .bottom #section-about {
  flex-grow: 1;
  padding-left: 0;
  max-width: 900px;
  padding: 35px;
}
@media screen and (min-width: 768px) {
  .template-page-about .bottom #section-about {
    padding: var(--78) calc(var(--COLUMN_WIDTH) + var(--GRID_GUTTER));
  }
  .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);
  padding-top: 35px;
}
@media screen and (min-width: 768px) {
  .template-page-about .bottom #section-about .contact {
    padding-top: 0;
    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 {
  max-width: 2000px;
  margin: auto;
  border-top: 5px solid #000000;
}
@media screen and (min-width: 768px) {
  .grid_new {
    border: 5px solid #000000;
  }
}
.grid_new aside .grid_thumb {
  border-bottom: 5px solid #000000;
  height: max-content;
  min-height: 450px;
}
@media screen and (min-width: 768px) {
  .grid_new #section-content {
    border-left: 5px solid #000000;
  }
}
.grid_new #section-content {
  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;
}
.grid_new #section-content picture > img {
  margin: 0 -35px;
  width: calc(100% + 72px);
}
@media screen and (min-width: 768px) {
  .grid_new #section-content picture > img {
    width: 100%;
    margin: auto;
  }
}

@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";
}