@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@300;400;500;700&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box !important;
}

body,
html {
  font-family: 'Work Sans', sans-serif !important;
  box-sizing: border-box;
  -webkit-font-smoothing: subpixel-antialiased;
  backface-visibility: hidden;
  scroll-behavior: smooth;
  overflow-x: hidden;
  font-size: 15px;
  line-height: 28px;
  color: #111;
}

::-webkit-scrollbar {
  width: 6px !important;
}

::-webkit-scrollbar-track {
  background: white !important;
}

::-webkit-scrollbar-thumb {
  background: #d69b2a !important;
}

/************************************
*              BRAND                *
************************************/
.brand {
  position: absolute;
  top: 2.6vh;
  left: 5vw;
  width: 15vw;
  z-index: 1000;
}

/************************************
*              HEADER               *
************************************/
.header {
  max-width: 100vw;
  width: 100vw;
  height: auto;
  position: relative;
  background-size: cover;
  background-position: center center;
  font-size: 1rem;
  padding: 20vh 0;
  background-image: url('../assets/img/169.jpg');
}

.header::after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100;
  z-index: 10;
  background-color: rgba(210, 151, 35, 0.8);
  content: '';
}

.header__head {
  position: relative;
  z-index: 50;
  color: #fff;
  width: 70vw;
  margin: 0 auto;
  text-align: center;
}

.header__title {
  font-size: 3.3em;
  font-weight: 500;
  margin-bottom: 4vh;
  animation: fade 1500ms forwards;
  animation-delay: 200ms;
  opacity: 0;
}

.header__subtitle {
  font-size: 1.5em;
  font-weight: 500;
  line-height: 1.6em;
  margin-bottom: 4vh;
  animation: fade 1500ms forwards;
  animation-delay: 400ms;
  opacity: 0;
}

.header__nav {
  font-size: 1.2em;
  font-weight: 300;
  animation: fade 1500ms forwards;
  animation-delay: 600ms;
  opacity: 0;
}

.header__nav a {
  color: #fff;
  text-decoration: none;
}

.header__nav a:not(:last-child) {
  margin-right: 0.5em;
}

.header__nav a:hover {
  color: #111;
}

.header__nav span {
  margin-right: 0.5em;
}

@keyframes fade {
  from {
    transform: translateY(150%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/************************************
*             PARTNERS              *
************************************/
.partners {
  max-width: 100vw;
  width: 100vw;
  height: auto;
  background-color: #f6f6f6;
  font-size: 1rem;
  background-image: url(../../../academy/img/contact/bandes-fond.png);
  background-size: cover;
  padding: 10vh 0;
}

.partners__title {
  text-align: center;
  font-size: 2.33em;
  font-weight: 700;
}

.partners__content {
  width: 80vw;
  height: auto;
  margin: 0 auto;
  display: grid;
  align-items: center;
  position: relative;
}

.partners__arrow {
  width: 2vw;
  cursor: pointer;
}

.partners__arrow--prev {
  grid-column: 1 / 1;
  grid-row: 1 / 1;
}

.partners__arrow--next {
  grid-column: 3 / 3;
  grid-row: 1 / 1;
}

.partners__container {
  width: 75vw;
  height: 60vh;
  grid-column: 2 / 2;
  grid-row: 1 / 1;
}

.partners__inner {
  width: 100%;
  height: 100%;
}

.partners__slide {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  padding: 10vh 7vw;
}

.partners__cover {
  width: 27vw;
  height: 100%;
  box-shadow: 0 5px 35px 0 rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-color: #fff;
}

.partners__cover img {
  width: 75%;
}

.partners__body {
  height: 100%;
  width: 30vw;
}

.partners__name {
  font-size: 1.66em;
  font-weight: 700;
  margin-bottom: 5vh;
}

.partners__description {
  font-size: 1.2em;
  line-height: 1.5em;
}

.partners__site {
  font-weight: 700;
  text-decoration: none;
  color: #d29723;
}

.partners__nav {
  display: flex;
  margin: 0 auto;
  justify-self: center;
  grid-column: 1 / 3;
  grid-row: 2 / 2;
}

.partners__nav__item {
  width: 0.78vw;
  height: 0.78vw;
  border: 1px solid #d29723;
  border-radius: 100%;
  cursor: pointer;
}

.partners__nav__item:not(:last-child) {
  margin-right: 1.25vw;
}

.partners .carousel__nav__item--current {
  background-color: #d29723;
}

/************************************
*               GRID                *
************************************/

.partners-grid {
  max-width: 100vw;
  width: 100vw;
  padding: 15vh 0;
  background-color: #fff;
}

.partners-grid__text {
  font-size: 1.4em;
  font-weight: 400;
  line-height: 1.6em;
  width: 50vw;
  margin: 0 auto;
  margin-bottom: 7vh;
  text-align: center;
}

.partners-grid__container {
  width: 72vw;
  margin: 0 auto;
}

.partners-grid__row {
  width: 100%;
  height: 25.5vh;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
}

.partners-grid__row:not(:last-child) {
  border-bottom: 1px solid #919191;
}

.partners-grid__col {
  width: 100%;
  height: 70%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partners-grid__col:not(:last-child) {
  border-right: 1px solid #919191;
}

.partners-grid__col img {
  width: 80%;
}

/************************************
*             FOOTER                *
************************************/

.footer {
  font-size: 1rem;
  max-width: 100vw;
  width: 100vw;
  padding: 15vh 0;
  position: relative;
  overflow: hidden;
}

.footer:hover .footer__cover {
  transform: scale(1.05);
}

.footer::after {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 50;
  background-color: rgba(210, 151, 35, 0.8);
  content: '';
}

.footer__cover {
  width: 120%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  background: url('../assets/img/3016411.jpg');
  background-position: 10% center;
  background-size: cover;
  transition: 1000ms;
}

.footer__content {
  position: relative;
  z-index: 100;
  color: #fff;
}

.footer__title {
  font-size: 2.1em;
  line-height: 1.5em;
  font-weight: 500;
  width: 60vw;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 5vh;
}

.footer__button {
  background-color: #fff;
  color: #d29723;
  font-size: 1.3em;
  display: flex;
  align-items: center;
  border-radius: 2rem;
  padding: 0.8em 1.2em;
  margin: 0 auto;
  width: max-content;
  height: max-content;
  font-weight: 500;
  text-decoration: none;
  line-height: 1.5em;
}

.footer__button > span {
  margin-right: 1em;
  transition: margin-right 500ms ease;
}

.footer__button img {
  width: 0.7em;
  height: auto;
}

.footer__button:hover > span {
  margin-right: 1.5em;
}

@media only screen and (max-width: 1366px) {
  .header {
    font-size: 0.71rem;
  }
  .partners {
    font-size: 0.71rem;
  }
  .partners-grid {
    font-size: 0.71rem;
  }
  .footer {
    font-size: 0.71rem;
  }
}

@media only screen and (max-width: 1280px) {
  .header {
    font-size: 0.66rem;
  }
  .partners {
    font-size: 0.66rem;
  }
  .partners-grid {
    font-size: 0.66rem;
  }
  .footer {
    font-size: 0.66rem;
  }
}

@media only screen and (max-width: 1024px) {
  .header {
    font-size: 0.53rem;
  }
  .header__title,
  .header__subtitle,
  .header__nav {
    opacity: 1;
    animation: none;
  }

  .partners {
    font-size: 0.53rem;
  }
  .partners__name {
    margin-bottom: 3vh;
  }
  .partners__description {
    font-size: 1.4em;
  }
  .partners__nav__item {
    width: 1vw;
    height: 1vw;
  }

  .partners-grid {
    font-size: 0.53rem;
  }
  .partners-grid__text {
    font-size: 1.5em;
  }
  .footer {
    font-size: 0.53rem;
  }
}

@media only screen and (max-width: 768px) {
  .brand {
    left: 10vw;
    width: 20vw;
  }
  .header {
    font-size: 1rem;
  }
  .header__head {
    width: 70vw;
  }
  .header__title {
    font-size: 3em;
    margin-bottom: 4vh;
  }
  .header__subtitle {
    font-size: 1.3em;
  }
  .header__nav {
    font-size: 1em;
  }

  .partners {
    font-size: 1rem;
  }
  .partners__title {
    font-size: 2.3em;
  }
  .partners__arrow {
    width: 5vw;
    display: block;
    margin: 0 auto;
  }
  .partners__arrow--prev {
    grid-column: 1 / 1;
    grid-row: 2 / 2;
  }
  .partners__arrow--next {
    grid-column: 3 / 3;
    grid-row: 2 / 2;
  }
  .partners__content {
    width: 100%;
  }
  .partners__container {
    width: 100%;
    grid-column: 1 / 3;
  }
  .partners__cover {
    width: 30vw;
    height: 50%;
    background-position: center center;
    background-size: 90% 80%;
    background-repeat: no-repeat;
    background-color: #fff;
  }
  .partners__slide {
    padding: 5vh 10vw;
    padding-right: 1vw;
    align-items: center;
  }
  .partners__body {
    width: 40vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .partners__cover {
    margin-right: 10vw;
  }
  .partners__name {
    font-size: 1.5em;
  }
  .partners__description {
    font-size: 1em;
  }
  .partners__site {
    font-size: 1em;
  }
  .partners__nav {
    grid-column: 2 / 2;
  }
  .partners__nav__item {
    width: 1.5vh;
    height: 1.5vh;
  }

  .partners-grid {
    font-size: 1rem;
  }
  .partners-grid__text {
    width: 70vw;
  }
  .partners-grid__container {
    width: 80vw;
  }
  .partners-grid__row {
    width: 100%;
    height: 20vh;
  }
  .partners-grid__col {
    height: 50%;
  }

  .footer {
    font-size: 1rem;
    padding: 10vh 0;
  }
  .footer__title {
    font-size: 1.9em;
    width: 70vw;
  }
}

@media only screen and (max-width: 420px) {
  .header {
    font-size: 0.54rem;
  }
  .partners {
    font-size: 0.54rem;
  }
  .partners-grid {
    font-size: 0.54rem;
  }
  .footer {
    font-size: 0.54rem;
  }
}
