@charset "UTF-8";
.header {
  position: relative;
  height: 100vh;
  transition: height 0.5s;
  margin-top: 5px;
}
.header__intro {
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-left: 27px;
  margin-right: 27px;
}
.header__content {
  display: flex;
  align-items: center;
}
.header__content__texte {
  margin-right: 20px;
}
.header__icone {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.header__icone img {
  width: 35px;
  transition: transform 0.3s;
}
.header .navigation__list {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: flex-start;
}
.header .navigation__el {
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
  text-decoration: none;
  color: #333;
  font-weight: 700;
  transition: transform 0.3s;
}
.header .navigation__el::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #476662;
  transition: width 0.3s ease;
}
.header__image {
  width: 100%;
  height: 95%;
  -o-object-fit: cover;
     object-fit: cover;
  transform-origin: top;
  position: absolute;
  left: 0;
  z-index: 0;
}
.header__texte-petit {
  font-family: "ClashDisplay", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
  position: absolute;
  top: calc(50% - 50px);
  left: 50%;
  transform: translate(-50%, -100%);
  color: #d9d9d9;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  z-index: 10;
}
.header__texte-img {
  font-family: "ClashDisplay", sans-serif;
  font-size: 63px;
  font-weight: 200;
  color: #fafaf9;
  line-height: 120%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%);
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  z-index: 10;
}

@media (min-width: 0px) {
  .main {
    margin-left: 28px;
    margin-right: 28px;
  }
}
@media (min-width: 600px) {
  .header__texte-petit {
    font-size: 20px;
  }
  .header__texte-img {
    font-size: 112px;
  }
  .header .navigation__list {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }
}
@media (min-width: 800px) {
  .main {
    margin-left: 36px;
    margin-right: 36px;
  }
}
@media (min-width: 1000px) {
  .header__texte-petit {
    font-size: 27px;
  }
  .header__texte-img {
    font-size: 199px;
  }
  .header img:hover {
    transform: scale(1.1);
  }

  .navigation__el:hover::before {
    width: 100%;
  }
}
@media (min-width: 1400px) {
  .main {
    margin-left: 63px;
  }
}
@media (min-width: 1600px) {
  .header__texte-petit {
    font-size: 36px;
  }
  .header__texte-img {
    font-size: 266px;
  }
}
@media (min-width: 1800px) {
  .main {
    margin-left: 112px;
  }
}
.footer {
  margin-top: 60px;
  margin-bottom: 20px;
  margin-left: 27px;
  margin-right: 27px;
  font-size: 12px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  transition: opacity 0.5s ease-in-out;
}
.footer__texte {
  margin: 0;
}
.footer__el {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #333;
  font-weight: 700;
}
.footer__el::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #476662;
  transition: width 0.3s ease;
}
.footer__contact {
  margin-bottom: 10px;
}
.footer__centre {
  display: flex;
  flex-direction: column;
}
.footer__credits {
  font-size: 12px;
  background-color: #fafaf9;
  border: 1px solid #ccc;
  margin: 20px;
  padding: 20px;
  border-radius: 11px;
  position: fixed;
  bottom: 10px;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: opacity 0.5s ease-in-out;
  opacity: 0;
}
.footer .hidden {
  display: none;
}
.footer .overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 100;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.footer__credits.visible,
.footer .overlay.visible {
  opacity: 1;
}
.footer__credits-titre {
  font-family: "ClashDisplay", sans-serif;
  font-weight: 400;
}
.footer__credits-el {
  list-style: none;
  padding: 0;
  padding-bottom: 10px;
}
.footer__credits-btn {
  font-family: "ClashDisplay", sans-serif;
  margin-top: 20px;
  padding: 12px 15px;
  border: 2px dotted #333;
  border-radius: 11px;
  background-color: transparent;
  color: #333;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s, transform 0.3s;
  cursor: pointer;
}
.footer__follow {
  flex: 1 1 100%;
}
.footer__socials {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 10px;
}

@media (min-width: 600px) {
  .footer__centre {
    align-items: center;
  }
  .footer__follow {
    flex: 0 1 auto;
  }
}
@media (min-width: 700px) {
  .footer__credits {
    font-size: 16px;
    bottom: 50px;
  }
}
@media (min-width: 900px) {
  .footer__credits-content {
    display: flex;
    justify-content: space-around;
  }
  .footer__credits-content > div {
    flex-basis: 30%;
    flex-shrink: 0;
    flex-grow: 0;
  }
  .footer__credits-btn {
    margin-left: 15px;
  }
}
@media (min-width: 1000px) {
  .footer__el:hover::before {
    width: 100%;
  }
  .footer__credits-btn:hover {
    background-color: #415351;
    color: #fff;
    border-color: #fff;
    transform: scale(1.1);
  }
}
@media (min-width: 1600px) {
  .footer__credits {
    font-size: 20px;
  }
  .footer__credits-titre {
    font-size: 27px;
  }
  .footer__credits-btn {
    font-size: 16px;
  }
}
.a-propos {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  margin-bottom: 150px;
}
.a-propos__titre {
  font-family: "ClashDisplay", sans-serif;
  font-size: 21px;
  color: #476662;
  text-transform: uppercase;
  word-spacing: 5px;
  margin-bottom: 60px;
  font-weight: 400;
  line-height: 140%;
}
.a-propos__texte {
  line-height: 250%;
  margin-bottom: 60px;
  font-size: 12px;
}
.a-propos__texte-bold {
  font-weight: 700;
}
.a-propos__img-span {
  width: 40px;
  height: 20px;
  vertical-align: text-bottom;
}
.a-propos__modif-1 {
  font-family: "Jura", sans-serif;
  background-color: #e4f7b3;
  color: #ce230c;
  padding: 5px;
}
.a-propos__modif-2 {
  background-color: #6b8bf6;
  color: #fcf520;
  padding: 0.2em 0.4em;
  border-radius: 5px;
}
.a-propos__modif-3 {
  position: relative;
}
.a-propos__modif-3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 0.5px;
  background-color: #f57a6a;
}
.a-propos__modif-4 {
  font-family: "ClashDisplay", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #415351;
}
.a-propos__modif-5 {
  font-size: 18px;
  font-weight: bold;
  vertical-align: middle;
}
.a-propos__img {
  display: block;
  margin-left: auto;
  width: 120px;
  height: 147px;
}
.a-propos__btn {
  font-family: "ClashDisplay", sans-serif;
  font-size: 12px;
  display: block;
  margin-left: auto;
  margin-top: 20px;
  padding: 12px 15px;
  border: 2px dotted #333;
  border-radius: 11px;
  background-color: transparent;
  color: #333;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s, transform 0.3s;
  cursor: pointer;
}
.a-propos__img-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.projets {
  position: relative;
  margin-top: 120px;
}
.projets__categories {
  list-style-type: none;
  margin-bottom: 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.projets__btn {
  font-family: "ClashDisplay", sans-serif;
  font-size: 28px;
  text-transform: uppercase;
  color: #415351;
  cursor: pointer;
  background: url("../assets/images/décoration/flèche.svg") left top no-repeat;
  background-size: 20px;
  margin-bottom: 20px;
  margin-right: 40px;
  padding-left: 30px;
  background-color: transparent;
  border: none;
  position: relative;
  transition: transform 0.3s;
}
.projets__btn.active {
  color: #333;
  font-weight: 500;
}
.projets__type-btn, .projets__theme-btn {
  margin-bottom: 60px;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
}
.projets__boutons {
  font-family: "ClashDisplay", sans-serif;
  font-size: 12px;
  margin: 10px;
  padding: 15px 20px;
  white-space: nowrap;
  border: 2px dotted #333;
  border-radius: 11px;
  background-color: transparent;
  color: #333;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s, transform 0.3s;
  cursor: pointer;
}
.projets__boutons.active {
  background-color: #333;
  color: #fff;
  border-color: #fff;
}
.projets__contenu {
  margin: 0;
  padding: 0;
}
.projets__titre {
  font-family: "ClashDisplay", sans-serif;
  font-size: 28px;
  font-weight: 400;
  color: #333;
}
.projets__sous-titre {
  font-weight: bold;
  color: #415351;
  margin-top: 40px;
  margin-bottom: 20px;
}
.projets__texte {
  font-size: 12px;
}
.projets__grid {
  position: relative;
  margin-top: 80px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 250px;
  gap: 20px;
}
.projets__grid img {
  width: 100px;
}
.projets__grid a {
  text-decoration: none;
  color: #333;
  font-size: 12px;
  text-align: center;
}
.projets__grid-item {
  position: relative;
}
.projets__grid-item .hover-grid {
  display: none;
}
.projets__grid-item1 {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: end;
  position: relative;
  overflow: hidden;
}
.projets__grid-item1.scaling {
  transform: scale(1.4);
  transition: transform 0.3s ease;
}
.projets__grid-item1.reduced {
  transform: scale(0.6);
  transition: transform 0.3s ease;
}
.projets__grid-item2 {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: start;
  position: relative;
  overflow: hidden;
}
.projets__grid-item2.scaling {
  transform: scale(1.4);
  transition: transform 0.3s ease;
}
.projets__grid-item2.reduced {
  transform: scale(0.6);
  transition: transform 0.3s ease;
}
.projets__grid-item3 {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.projets__grid-item3.scaling {
  transform: scale(1.4);
  transition: transform 0.3s ease;
}
.projets__grid-item3.reduced {
  transform: scale(0.6);
  transition: transform 0.3s ease;
}

.notes {
  font-family: "SplineSansMono", sans-serif;
  width: 15%;
  padding: 10px;
  border-left: 2px dotted #ccc;
  box-sizing: border-box;
  margin-left: 150px;
  display: none;
}
.notes p {
  font-size: 12px;
  line-height: 150%;
  padding-left: 20px;
  padding-bottom: 20px;
}
.notes p:last-child {
  border-bottom: none;
}
.notes__avatar {
  margin-top: 540px;
}
.notes__texte {
  margin-top: 30px;
}
.notes__images {
  margin-top: 200px;
}
.notes__clic {
  margin-top: 20px;
}
.notes__a-propos:hover, .notes__avatar:hover, .notes__projets:hover, .notes__premier:hover, .notes__deuxieme:hover, .notes__texte:hover, .notes__images:hover, .notes__clic:hover {
  cursor: pointer;
  background-color: rgb(244, 244, 244);
  border-radius: 11px;
}

@media (min-width: 500px) {
  .projets__grid img {
    width: 120px;
  }
}
@media (min-width: 600px) {
  .a-propos {
    margin-bottom: 200px;
  }
  .a-propos__titre {
    font-size: 28px;
  }
  .a-propos__texte {
    font-size: 16px;
  }
  .a-propos__img-span {
    width: 50px;
    height: 30px;
  }

  .projets__categories {
    flex-direction: row;
  }
  .projets__sous-titre {
    font-size: 20px;
  }
  .projets__texte {
    font-size: 16px;
    width: 80%;
  }
}
@media (min-width: 700px) {
  .projets__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .projets__grid img {
    width: 120px;
  }
  .projets__btn-container {
    display: flex;
  }
}
@media (min-width: 800px) {
  .a-propos {
    margin-top: 100px;
    margin-bottom: 200px;
  }
  .a-propos__content {
    display: flex;
    margin-top: 150px;
  }
  .a-propos__titre {
    font-size: 36px;
  }
  .a-propos__texte {
    width: 85%;
  }
  .a-propos__img {
    margin-right: auto;
  }
  .a-propos__btn {
    margin-right: auto;
  }

  .projets__container-flex {
    display: flex;
  }
  .projets__container {
    width: 100%;
  }
  .projets__btn {
    font-size: 36px;
  }
  .projets__titre {
    font-size: 36px;
  }
  .projets__grid {
    margin-top: 150px;
  }
  .projets__grid a {
    font-size: 16px;
  }
}
@media (min-width: 1000px) {
  .a-propos__container {
    width: 100%;
  }
  .a-propos__img {
    width: 170px;
    height: 217px;
  }
  .a-propos__btn:hover {
    background-color: #415351;
    color: #fff;
    border-color: #fff;
    transform: scale(1.1);
  }
  .a-propos__container.hovered {
    background-color: rgb(244, 244, 244);
    border-radius: 11px;
  }
  .a-propos__img-container.hovered {
    background-color: rgb(244, 244, 244);
    border-radius: 11px;
  }

  .projets__container.hovered {
    background-color: rgb(244, 244, 244);
    border-radius: 11px;
  }
  .projets__categories.hovered {
    background-color: rgb(244, 244, 244);
    border-radius: 11px;
  }
  .projets__btn:hover {
    transform: scale(1.1);
    font-weight: 500;
  }
  .projets__type-btn.hovered, .projets__theme-btn.hovered {
    background-color: rgb(244, 244, 244);
    border-radius: 11px;
  }
  .projets__boutons {
    font-size: 16px;
  }
  .projets__boutons:hover {
    background-color: #415351;
    color: #fff;
    border-color: #fff;
    transform: scale(1.1);
  }
  .projets__contenu.hovered {
    background-color: rgb(244, 244, 244);
    border-radius: 11px;
  }
  .projets__texte {
    width: 60%;
  }
  .projets__grid img {
    width: 150px;
  }
  .projets__grid.hovered {
    background-color: rgb(244, 244, 244);
    border-radius: 11px;
  }
  .projets__grid-item .hover-grid {
    position: absolute;
    top: -18px;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .projets__grid-item .hover-grid__img {
    width: 210px;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .projets__grid-item:hover .hover-grid {
    opacity: 1;
  }
  .projets__grid-item.hovered {
    background-color: rgb(244, 244, 244);
    border-radius: 11px;
  }
}
@media (min-width: 1200px) {
  .notes {
    display: block;
  }
}
@media (min-width: 1400px) {
  .a-propos__titre {
    font-size: 40px;
  }
  .a-propos__texte {
    font-size: 20px;
  }
}
@media (min-width: 1600px) {
  .a-propos__titre {
    font-size: 47px;
  }

  .projets__btn {
    font-size: 40px;
  }
}
@media (min-width: 1800px) {
  .a-propos__img {
    width: 200px;
    height: 247px;
  }

  .projets__btn {
    font-size: 47px;
  }
  .projets__boutons {
    font-size: 20px;
  }
  .projets__titre {
    font-size: 47px;
    margin-top: 100px;
  }
  .projets__sous-titre {
    font-size: 27px;
    margin-top: 60px;
    margin-bottom: 40px;
  }
  .projets__texte {
    font-size: 20px;
  }
  .projets__grid {
    margin-top: 200px;
  }

  .notes {
    margin-left: 180px;
  }
}
@font-face {
  font-family: "Satoshi";
  src: url("../assets/font/Satoshi-Variable.ttf") format("truetype");
}
@font-face {
  font-family: "ClashDisplay";
  src: url("../assets/font/ClashDisplay-Variable.ttf") format("truetype");
}
@font-face {
  font-family: "SplineSansMono";
  src: url("../assets/font/SplineSansMono-VariableFont_wght.ttf") format("truetype");
}
@font-face {
  font-family: "MigraItalic";
  src: url("../assets/font/MigraItalic-ExtralightItalic.otf") format("opentype");
}
.projet-body {
  margin: 8px;
  padding: 0;
}

.travaux {
  margin-top: 100px;
}
.travaux__titre {
  font-family: "ClashDisplay", sans-serif;
  font-weight: 400;
  font-size: 28px;
  text-transform: uppercase;
  color: #333;
  line-height: 120%;
}
.travaux__date {
  font-size: 16px;
  margin-left: 10px;
  color: #415351;
}
.travaux__skills {
  margin: 0;
  padding: 0;
  display: flex;
}
.travaux__skills-texte {
  font-size: 10px;
  list-style: none;
  font-family: "ClashDisplay", sans-serif;
  margin-bottom: 40px;
  margin-right: 5px;
  padding: 3px 5px;
  border: 1px solid #415351;
  border-radius: 11px;
  background-color: transparent;
  color: #415351;
  text-decoration: none;
}
.travaux__texte--hidden {
  display: none;
}
.travaux__texte--visible {
  display: block;
}
.travaux__texte-btn {
  background-color: transparent;
  border: none;
  cursor: pointer;
  transition: transform 0.2s;
  padding: 10px;
}
.travaux .btn-img {
  width: 150%;
}
.travaux .hidden {
  display: none;
}

.slider {
  width: 80%;
  max-width: 1200px;
  margin: 100px auto 0;
  position: relative;
}
.slider__list {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  height: 320px;
}
.slider__el {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
  transform: translateX(-50px);
}
.slider__el--show {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
  transform: translateX(0);
}
.slider__img {
  max-width: 200px;
  margin: 0;
}
.slider__img--grande {
  max-width: 100px;
}
.slider__content {
  font-size: 12px;
  text-align: center;
  padding: 10px;
  width: 100%;
  color: #333;
}
.slider__audio {
  margin-top: 10px;
}
.slider__controls {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  list-style: none;
}
.slider__controls .slider__btn button {
  border: none;
  background-color: transparent;
  padding: 10px;
  cursor: pointer;
  transition: transform 0.2s;
}
.slider__indicateurs-wrapper {
  display: flex;
  justify-content: space-around;
  flex-grow: 1;
}
.slider__indicateurs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: baseline;
}
.slider__indicateurs-el {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid #333;
  background-color: transparent;
  margin-right: 5px;
  cursor: pointer;
}
.slider__indicateurs-el:last-child {
  margin-right: 0;
}
.slider__indicateurs-el--active {
  background-color: #333;
}
.slider__acces {
  display: flex;
  justify-content: center;
  margin-top: 80px;
  padding: 0;
}
.slider__acces-list {
  list-style: none;
}
.slider__acces-el {
  font-family: "ClashDisplay", sans-serif;
  font-size: 12px;
  padding: 15px 20px;
  white-space: nowrap;
  border: 2px dotted #333;
  border-radius: 11px;
  background-color: transparent;
  color: #333;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s, transform 0.3s;
  cursor: pointer;
}
.slider__images {
  display: flex;
  justify-content: flex-start;
  list-style: none;
  position: relative;
  z-index: 1;
  cursor: pointer;
  overflow-x: hidden;
  padding: 0;
  padding-top: 20px;
  padding-bottom: 20px;
}
.slider__images:before {
  content: "";
  flex-shrink: 0;
  width: 10px;
}
.slider__images-el {
  margin-left: 10px;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.slider__images-img {
  width: 100px;
  display: block;
}
.slider__images-el--active {
  transform: scale(1.2);
}

.footer {
  margin-top: 240px;
}

@media (min-width: 300px) {
  .travaux__titre {
    font-size: 38px;
  }
  .travaux__date {
    font-size: 21px;
  }
  .travaux__skills-texte {
    font-size: 12px;
    padding: 5px 10px;
  }

  .slider__list {
    height: 300px;
  }
  .slider__img {
    max-width: 250px;
  }
  .slider__img--grande {
    max-width: 150px;
  }
}
@media (min-width: 500px) {
  .travaux__skills-texte {
    margin-right: 10px;
  }

  .slider__list {
    height: 420px;
  }
  .slider__img {
    max-width: 350px;
  }
  .slider__img--grande {
    max-width: 250px;
  }
}
@media (min-width: 600px) {
  .travaux__top {
    margin-left: 36px;
    margin-right: 36px;
  }
}
@media (min-width: 800px) {
  .travaux__titre {
    font-size: 47px;
  }
  .travaux__top {
    margin-left: 84px;
    margin-right: 84px;
  }
}
@media (min-width: 1000px) {
  .travaux {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    font-size: 20px;
  }
  .travaux__titre {
    font-size: 63px;
  }
  .travaux__date {
    font-size: 27px;
  }
  .travaux__skills-texte {
    font-size: 16px;
    padding: 10px 12px;
  }
  .travaux__top {
    margin-right: 266px;
    margin-bottom: 80px;
  }
  .travaux__mid {
    width: 50%;
    max-width: 100%;
    margin-right: 60px;
  }
  .travaux__bottom {
    width: 50%;
    max-width: 500%;
  }
  .travaux__texte-btn:hover {
    transform: scale(1.3);
  }
  .travaux .slider {
    display: flex;
    width: 90%;
    justify-content: space-between;
  }
  .travaux .slider__content {
    font-size: 16px;
  }
  .travaux .slider__acces-el {
    font-size: 16px;
  }
  .travaux .slider__acces-el:hover {
    background-color: #415351;
    color: #fff;
    border-color: #fff;
    transform: scale(1.1);
  }
  .travaux .slider .slider__btn button:hover {
    transform: scale(1.3);
  }
}
@media (min-width: 1200px) {
  .slider {
    width: 100%;
  }
  .slider__list {
    height: 500px;
  }
  .slider__img {
    max-width: 450px;
  }
  .slider__img--grande {
    max-width: 300px;
  }
}
@media (min-width: 1400px) {
  .travaux__top {
    margin-right: 472px;
  }

  .slider {
    width: 100%;
  }
  .slider__list {
    height: 500px;
  }
  .slider__img {
    max-width: 550px;
  }
  .slider__img--grande {
    max-width: 400px;
  }
  .slider__audio {
    height: 100px;
  }
}
@media (min-width: 1600px) {
  .travaux__travaux__texte {
    margin-left: 150px;
    margin-right: 629px;
  }

  .slider {
    gap: 100px;
  }
  .slider__list {
    height: 650px;
  }
  .slider__img {
    max-width: 600px;
  }
  .slider__img--grande {
    max-width: 420px;
  }
}
@media (min-width: 1800px) {
  .slider {
    gap: 200px;
  }
  .slider__img {
    max-width: 650px;
  }
  .slider__img--grande {
    max-width: 450px;
  }
}
@media (min-width: 1900px) {
  .travaux__titre {
    font-size: 70px;
  }
  .travaux__date {
    font-size: 36px;
  }
  .travaux__top {
    margin-right: 629px;
    margin-bottom: 100px;
  }

  .slider__list {
    height: 700px;
  }
  .slider__img {
    max-width: 700px;
  }
  .slider__img--grande {
    max-width: 500px;
  }
}
html {
  scroll-behavior: smooth;
}

body {
  background-color: #fafaf9;
  font-family: "Satoshi", sans-serif;
  color: #333;
  font-size: 16px;
  line-height: 150%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/*# sourceMappingURL=app.css.map*/