@charset "UTF-8";
*,
::before,
::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Design system */
/* Colors */
/* Text */
.home h1 {
  font: 5rem "Cormorant Garamond";
}
@media screen and (max-width: 768px) {
  .home h1 {
    font: 1.4rem "Cormorant Garamond";
  }
}

.home h2 {
  font: 2rem/1.8rem "Cormorant Garamond";
  color: #303d50;
}
@media screen and (max-width: 768px) {
  .home h2 {
    font: 1.5rem "Cormorant Garamond";
  }
}

.islande-trip h1 {
  font: 5rem "Cormorant Garamond";
  font-size: 3rem;
}
@media screen and (max-width: 768px) {
  .islande-trip h1 {
    font: 1.4rem "Cormorant Garamond";
  }
}

p {
  font: 1rem "Inter";
  color: #303d50;
}
@media screen and (max-width: 768px) {
  p {
    font: 0.7rem "Inter";
  }
}

a div, span {
  font: 1rem "Inter";
}
@media screen and (max-width: 768px) {
  a div, span {
    font: 0.7rem "Inter";
  }
}

.home {
  height: 100vh;
  background: linear-gradient(#0A2E50, #B0D7E0, #F7F7F7);
}
@media screen and (max-width: 1025px) and (min-width: 768px) {
  .home {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.home-container {
  height: 95vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .home-container {
    align-items: center;
    gap: 0.5rem;
  }
}
@media screen and (max-width: 1025px) and (min-width: 768px) {
  .home-container {
    height: 90vh;
    align-items: center;
  }
}

.home-title {
  width: 60%;
  align-self: flex-start;
  text-align: center;
  padding: 5rem 0 0 3rem;
}
@media screen and (max-width: 768px) {
  .home-title {
    padding: 3rem 1rem 1rem 1rem;
    width: 100%;
  }
}
.home-title > p:first-of-type {
  letter-spacing: 10px;
  color: #B0D7E0;
}
@media screen and (max-width: 768px) {
  .home-title > p:first-of-type {
    padding-bottom: 10px;
    letter-spacing: 5px;
  }
}
.home-title h1 {
  color: #C9882B;
}
@media screen and (max-width: 768px) {
  .home-title h1 {
    padding-bottom: 10px;
    font-size: 3rem;
  }
}
.home-title > p:nth-of-type(2) {
  color: #B0D7E0;
}

.map-wrapper {
  width: 98%;
  align-self: center;
  overflow: hidden;
  position: relative;
}

.map-image {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}

.pin {
  position: absolute;
  top: 23.5%;
  left: 44.5%;
  z-index: 10;
  width: 2vw;
  height: 2vw;
  border: 0.15vw solid #C9882B;
  border-radius: 1vw;
  animation: flashing 1.5s infinite steps(1);
  transform: translate(-50%, -50%);
}

.pin-center {
  position: absolute;
  top: 23.5%;
  left: 44.5%;
  z-index: 11;
  width: 1.2vw;
  height: 1.2vw;
  border: 0.4vw solid #C9882B;
  border-radius: 0.6vw;
  transform: translate(-50%, -50%);
  text-decoration: none;
}
.pin-center > figure {
  display: none;
}

@media screen and (max-width: 1025px) and (min-width: 768px) {
  .pin, .pin-center {
    top: 25%;
    left: 40%;
    width: 3vw;
    height: 3vw;
    border-radius: 1.5vw;
  }
  .pin-center {
    width: 1.8vw;
    height: 1.8vw;
    border: 0.6vw solid #C9882B;
  }
}
@media screen and (max-width: 768px) {
  .pin, .pin-center {
    top: 25%;
    left: 40%;
    width: 4vw;
    height: 4vw;
    border-radius: 2vw;
  }
  .pin-center {
    width: 2vw;
    height: 2vw;
    border: 0.7vw solid #C9882B;
  }
}
.pin-center:hover > figure {
  display: flex;
  flex-direction: column;
  width: 30rem;
}
@media screen and (max-width: 1025px) {
  .pin-center:hover > figure {
    display: none;
  }
}
.pin-center:hover > figure > a {
  text-decoration: none;
}
.pin-center:hover > figure > img {
  width: 30rem;
  height: auto;
  border-radius: 10px 10px 0 0;
}
.pin-center:hover > figure > figcaption {
  background-color: #303d50;
  border-radius: 0 0 10px 10px;
  color: #F7F7F7;
  font: 1rem "Inter";
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .pin-center:hover > figure > figcaption {
    font: 0.7rem "Inter";
  }
}
.pin-center:hover > figure > figcaption > .pin-icon {
  width: 2rem;
  height: auto;
  stroke: #F7F7F7;
  fill: #303d50;
}
.pin-center:hover > figure > figcaption > .calendar-icon {
  width: 1.3rem;
  height: auto;
  fill: #F7F7F7;
  stroke: #303d50;
  margin-left: 1rem;
  margin-right: 0.5rem;
}
.pin-center:hover > figure > figcaption > .clock-icon {
  width: 1.3rem;
  height: auto;
  stroke: #F7F7F7;
  fill: #303d50;
  margin-left: 1rem;
  margin-right: 0.5rem;
}

.home-subtitle {
  width: 30%;
  text-align: center;
  padding: 0 1rem 2rem 0;
  align-self: flex-end;
}
.home-subtitle > h2 {
  padding-bottom: 0.5rem;
}
@media screen and (max-width: 768px) {
  .home-subtitle {
    align-self: center;
    width: 100%;
    padding: 0 0 1rem 0;
  }
}
@media screen and (max-width: 1025px) and (min-width: 769px) {
  .home-subtitle {
    padding: 0 0 2rem 0;
    align-self: center;
  }
}

@keyframes flashing {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.trips-mobile {
  display: none;
}
@media screen and (max-width: 768px) {
  .trips-mobile {
    display: block;
  }
  .trips-mobile > a {
    text-decoration: none;
  }
  .trips-mobile > a > figure {
    display: flex;
    flex-direction: column;
    width: 14rem;
  }
  .trips-mobile > a > figure > img {
    width: 14rem;
    height: auto;
    border-radius: 10px 10px 0 0;
  }
  .trips-mobile > a > figure > figcaption {
    background-color: #303d50;
    border-radius: 0 0 10px 10px;
    color: #F7F7F7;
    padding: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Inter";
    font-size: 0.5rem;
    text-decoration: none;
  }
  .trips-mobile > a > figure > figcaption > .pin-icon {
    width: 1.5rem;
    height: auto;
    stroke: #F7F7F7;
    fill: #303d50;
  }
  .trips-mobile > a > figure > figcaption > .calendar-icon {
    width: 1.2rem;
    height: auto;
    fill: #F7F7F7;
    stroke: #303d50;
    margin-left: 1rem;
    margin-right: 0.5rem;
  }
  .trips-mobile > a > figure > figcaption > .clock-icon {
    width: 1.2rem;
    height: auto;
    stroke: #F7F7F7;
    fill: #303d50;
    margin-left: 1rem;
    margin-right: 0.5rem;
  }
}
@media screen and (max-width: 1025px) and (min-width: 769px) {
  .trips-mobile {
    display: block;
  }
  .trips-mobile > a {
    text-decoration: none;
  }
  .trips-mobile > a > figure {
    display: flex;
    flex-direction: column;
    width: 20rem;
  }
  .trips-mobile > a > figure > img {
    border-radius: 10px 10px 0 0;
  }
  .trips-mobile > a > figure > figcaption {
    background-color: #303d50;
    border-radius: 0 0 10px 10px;
    color: #F7F7F7;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-family: "Inter";
  }
  .trips-mobile > a > figure > figcaption > .pin-icon {
    width: 2rem;
    height: auto;
    stroke: #F7F7F7;
    fill: #303d50;
  }
  .trips-mobile > a > figure > figcaption > .calendar-icon {
    width: 1.3rem;
    height: auto;
    fill: #F7F7F7;
    stroke: #303d50;
    margin-left: 1rem;
    margin-right: 0.5rem;
  }
  .trips-mobile > a > figure > figcaption > .clock-icon {
    width: 1.3rem;
    height: auto;
    stroke: #F7F7F7;
    fill: #303d50;
    margin-left: 1rem;
    margin-right: 0.5rem;
  }
}

@keyframes down {
  0% {
    transform: scaleY(0);
  }
  100% {
    transform: scaleY(1);
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes scale {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes translateY {
  0% {
    transform: translateY(-1000px);
  }
  100% {
    transform: translateY(0);
  }
}
.islande-trip {
  display: flex;
  width: 100vw;
  background-color: #F7F7F7;
}
@media screen and (max-width: 1025px) {
  .islande-trip {
    flex-direction: column;
  }
}

.menu {
  margin-left: 35px;
  margin-top: 20px;
  position: fixed;
  z-index: 1;
  animation: translateY 0.9s 0.9s cubic-bezier(0.5, 0, 0.5, 1) both;
}
@media screen and (max-width: 768px) {
  .menu {
    margin-left: 10px;
    margin-top: 30px;
  }
}
@media screen and (max-width: 1025px) and (min-width: 768px) {
  .menu {
    margin-left: 25px;
    margin-top: 50px;
  }
}

.line-verticale {
  width: 5px;
  height: 95vh;
  background-color: #0A2E50;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}
@media screen and (max-width: 1025px) {
  .line-verticale {
    width: 95vw;
    height: 5px;
  }
}

.nav-bar {
  position: absolute;
  left: -7.2px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
@media screen and (max-width: 1025px) {
  .nav-bar {
    flex-direction: row;
    width: 100%;
    height: 70px;
    left: 0;
    top: -7px;
    background-color: #F7F7F7;
  }
}
.nav-bar-item {
  display: flex;
  gap: 15px;
}
@media screen and (max-width: 1025px) {
  .nav-bar-item {
    flex-direction: column;
    align-items: center;
  }
}

.cercle {
  width: 20px;
  height: 20px;
  border-radius: 20px;
  background-color: #0A2E50;
  position: relative;
  z-index: 10;
}
.cercle-border {
  width: 30px;
  height: 30px;
  border-radius: 30px;
  border: 2px solid #0A2E50;
  position: absolute;
  top: -5px;
  left: -5px;
  opacity: 0;
}
.cercle-border:hover {
  opacity: 1;
}

.active {
  width: 30px;
  height: 30px;
  border-radius: 30px;
  border: 2px solid #0A2E50;
  position: absolute;
  top: -5px;
  left: -5px;
  opacity: 1;
}

span {
  color: #0A2E50;
  width: 100px;
}
@media screen and (max-width: 768px) {
  span {
    width: 70px;
    text-align: center;
  }
}
@media screen and (max-width: 1025px) and (min-width: 768px) {
  span {
    text-align: center;
  }
}

.lien-conteneur-photo {
  position: relative;
}

.photo-hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 10px;
  color: #F7F7F7;
  font-weight: 500;
  background-color: rgba(48, 61, 80, 0.8);
  border-radius: 10px;
  display: none;
}

.lien-conteneur-photo:hover .photo-hover {
  display: flex;
}
@media screen and (max-width: 1025px) {
  .lien-conteneur-photo:hover .photo-hover {
    display: none;
  }
}

.img {
  border-radius: 10px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  animation: scale 0.5s 0.5s cubic-bezier(0.5, 0, 0.5, 1) both, appear 0.5s 0.5s linear both;
}

.video {
  overflow: hidden;
  border-radius: 10px;
  border: 3px solid #B0D7E0;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  animation: scale 0.5s 0.5s cubic-bezier(0.5, 0, 0.5, 1) both, appear 0.5s 0.5s linear both;
}

@media screen and (max-width: 1025px) {
  .pages-trip {
    display: flex;
    height: 100vh;
    overflow-y: hidden;
  }
}
/* Section 1er jour */
.day-1 {
  transform-origin: 50% 0%;
  animation: down 0.5s 0.2s cubic-bezier(0, 1, 0.8, 1) both;
}
.day-1-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 0.8fr 1.2fr;
  grid-template-rows: 6% 20% 15% 15% 5% 30%;
  gap: 1rem;
  height: 100vh;
  padding: 2rem 2rem 2rem 12rem;
}
@media screen and (max-width: 768px) {
  .day-1-grid {
    grid-template-columns: 1fr 0.5fr 0.5fr 1fr;
    grid-template-rows: 6% 13% 15% 15% 15% 15% 15%;
    padding: 6.5rem 2rem 2rem 2rem;
    width: 100vw;
    gap: 0.5rem;
  }
}
@media screen and (max-width: 1025px) and (min-width: 768px) {
  .day-1-grid {
    padding: 10rem 2rem 2rem 2rem;
    width: 100vw;
  }
}
.day-1-grid img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  border: 3px solid #B0D7E0;
}

.day-1-title {
  grid-column: 1/5;
  grid-row: 1;
  display: flex;
  align-items: center;
  padding-bottom: 20px;
  color: #C9882B;
  animation: translateY 0.5s 0.5s cubic-bezier(0.5, 0, 0.5, 1) both;
}
@media screen and (max-width: 768px) {
  .day-1-title {
    padding-bottom: 10px;
  }
}

.day-1-img-1 {
  grid-column: 1;
  grid-row: 2;
}
@media screen and (max-width: 768px) {
  .day-1-img-1 {
    grid-column: 1/3;
  }
}
.day-1-img-2 {
  grid-column: 2;
  grid-row: 2;
}
@media screen and (max-width: 768px) {
  .day-1-img-2 {
    grid-column: 3/5;
  }
}
.day-1-img-3 {
  grid-column: 1;
  grid-row: 3/6;
}
@media screen and (max-width: 768px) {
  .day-1-img-3 {
    grid-column: 1/2;
    grid-row: 4;
  }
}
.day-1-img-4 {
  grid-column: 2;
  grid-row: 3/6;
}
@media screen and (max-width: 768px) {
  .day-1-img-4 {
    grid-column: 2/4;
    grid-row: 4;
  }
}
.day-1-img-5 {
  grid-column: 3;
  grid-row: 3/5;
}
@media screen and (max-width: 768px) {
  .day-1-img-5 {
    grid-column: 4/5;
    grid-row: 4;
  }
}
.day-1-img-6 {
  grid-column: 4;
  grid-row: 3;
}
@media screen and (max-width: 768px) {
  .day-1-img-6 {
    grid-column: 1/4;
    grid-row: 5;
  }
}
.day-1-img-7 {
  grid-column: 1/3;
  grid-row: 6;
}
@media screen and (max-width: 768px) {
  .day-1-img-7 {
    grid-column: 1/4;
    grid-row: 7;
  }
}
.day-1-img-8 {
  grid-column: 4;
  grid-row: 4/6;
}
@media screen and (max-width: 768px) {
  .day-1-img-8 {
    grid-column: 1/4;
    grid-row: 6;
  }
}

.day-1-map {
  border-radius: 10px;
  grid-column: 3;
  grid-row: 2;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  animation: scale 0.5s 0.5s cubic-bezier(0.5, 0, 0.5, 1) both, appear 0.5s 0.5s linear both;
}
@media screen and (max-width: 768px) {
  .day-1-map {
    grid-column: 1/2;
    grid-row: 3;
  }
}

.day-1-text {
  grid-column: 4;
  grid-row: 2;
  animation: scale 0.5s 1s cubic-bezier(0.5, 0, 0.5, 1) both, appear 0.5s 0.5s linear both;
  overflow-y: scroll;
  padding-right: 5px;
}
@media screen and (max-width: 768px) {
  .day-1-text {
    grid-column: 2/5;
    grid-row: 3;
  }
}

.day-1-text::-webkit-scrollbar {
  width: 5px; /* Largeur de la barre verticale */
}

.day-1-text::-webkit-scrollbar-thumb {
  background-color: #303d50; /* Couleur du "pouce" (la partie que l'on manipule) */
  border-radius: 5px;
}

.day-1-text::-webkit-scrollbar-track {
  background-color: #B0D7E0; /* Couleur de la piste */
  border-radius: 5px;
}

.day-1-video-1 {
  grid-column: 3;
  grid-row: 5/7;
  background-color: black;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .day-1-video-1 {
    grid-column: 4/5;
    grid-row: 5/7;
  }
}
.day-1-video-2 {
  grid-column: 4;
  grid-row: 6;
  background-color: black;
  display: flex;
}
@media screen and (max-width: 768px) {
  .day-1-video-2 {
    grid-column: 4/5;
    grid-row: 7;
  }
}

/* Section 2ème jour */
.day-2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: 6% 25% 20% 20% 21%;
  gap: 1rem;
  height: 100vh;
  padding: 2rem 2rem 2rem 12rem;
}
@media screen and (max-width: 768px) {
  .day-2-grid {
    grid-template-columns: 1fr 0.5fr 0.5fr 1fr;
    grid-template-rows: 6% 18% 20% 15% 18% 18%;
    padding: 6.5rem 2rem 2rem 2rem;
    width: 100vw;
    gap: 0.5rem;
  }
}
@media screen and (max-width: 1025px) and (min-width: 768px) {
  .day-2-grid {
    padding: 10rem 2rem 2rem 2rem;
    width: 100vw;
  }
}
.day-2-grid img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  border: 3px solid #B0D7E0;
}

.day-2-title {
  grid-column: 1/5;
  grid-row: 1;
  display: flex;
  align-items: center;
  padding-bottom: 20px;
  color: #C9882B;
}

.day-2-img-1 {
  grid-column: 1/5;
  grid-row: 2;
}
@media screen and (max-width: 768px) {
  .day-2-img-1 {
    grid-column: 1/4;
  }
}
.day-2-img-2 {
  grid-column: 1;
  grid-row: 3;
}
@media screen and (max-width: 768px) {
  .day-2-img-2 {
    grid-column: 1;
    grid-row: 3;
  }
}
.day-2-img-3 {
  grid-column: 5;
  grid-row: 3/5;
}
@media screen and (max-width: 768px) {
  .day-2-img-3 {
    grid-column: 1;
    grid-row: 3;
  }
}
.day-2-img-4 {
  grid-column: 2;
  grid-row: 4/5;
}
@media screen and (max-width: 768px) {
  .day-2-img-4 {
    grid-column: 1/3;
    grid-row: 4;
  }
}
.day-2-img-5 {
  grid-column: 3/5;
  grid-row: 4;
}
.day-2-img-6 {
  grid-column: 2/4;
  grid-row: 5;
}
@media screen and (max-width: 768px) {
  .day-2-img-6 {
    grid-column: 2/5;
    grid-row: 5;
  }
}
.day-2-img-7 {
  grid-column: 4/6;
  grid-row: 5;
}
@media screen and (max-width: 768px) {
  .day-2-img-7 {
    grid-column: 2/5;
    grid-row: 6;
  }
}

.day-2-map {
  grid-column: 5;
  grid-row: 2;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
@media screen and (max-width: 768px) {
  .day-2-map {
    grid-column: 4/5;
    grid-row: 2;
  }
}

.day-2-text {
  grid-column: 2/5;
  grid-row: 3;
  overflow-y: scroll;
  padding-right: 5px;
}
@media screen and (max-width: 768px) {
  .day-2-text {
    grid-column: 2/5;
    grid-row: 3;
  }
}

.day-2-text::-webkit-scrollbar {
  width: 5px; /* Largeur de la barre verticale */
}

.day-2-text::-webkit-scrollbar-thumb {
  background-color: #303d50; /* Couleur du "pouce" (la partie que l'on manipule) */
  border-radius: 5px;
}

.day-2-text::-webkit-scrollbar-track {
  background-color: #B0D7E0; /* Couleur de la piste */
  border-radius: 5px;
}

.day-2-video-1 {
  grid-column: 1;
  grid-row: 4/6;
  background-color: black;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .day-2-video-1 {
    grid-column: 1;
    grid-row: 5/7;
  }
}

/* Section 3ème jour */
.day-3-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 6% 28% 34% 25%;
  gap: 1rem;
  height: 100vh;
  padding: 2rem 2rem 2rem 12rem;
}
@media screen and (max-width: 768px) {
  .day-3-grid {
    grid-template-columns: 1fr 0.5fr 0.5fr 1fr;
    grid-template-rows: 6% 18% 20% 15% 18% 18%;
    padding: 6.5rem 2rem 2rem 2rem;
    width: 100vw;
    gap: 0.5rem;
  }
}
@media screen and (max-width: 1025px) and (min-width: 768px) {
  .day-3-grid {
    padding: 10rem 2rem 2rem 2rem;
    width: 100vw;
  }
}
.day-3-grid img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  border: 3px solid #B0D7E0;
}

.day-3-title {
  grid-column: 1/5;
  grid-row: 1;
  display: flex;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 50px;
  color: #C9882B;
}

.day-3-img-1 {
  grid-column: 1/3;
  grid-row: 2;
}
@media screen and (max-width: 768px) {
  .day-3-img-1 {
    grid-column: 1;
  }
}
.day-3-img-2 {
  grid-column: 3/5;
  grid-row: 2;
}
@media screen and (max-width: 768px) {
  .day-3-img-2 {
    grid-column: 1/5;
    grid-row: 3;
  }
}
.day-3-img-3 {
  grid-column: 1;
  grid-row: 3;
}
@media screen and (max-width: 768px) {
  .day-3-img-3 {
    grid-column: 2/4;
    grid-row: 2;
  }
}
.day-3-img-4 {
  grid-column: 2;
  grid-row: 3;
}
@media screen and (max-width: 768px) {
  .day-3-img-4 {
    grid-column: 4/5;
    grid-row: 2;
  }
}
.day-3-img-5 {
  grid-column: 3;
  grid-row: 3;
}
@media screen and (max-width: 768px) {
  .day-3-img-5 {
    grid-column: 1/3;
    grid-row: 6;
  }
}
.day-3-img-6 {
  grid-column: 1/3;
  grid-row: 4;
}
@media screen and (max-width: 768px) {
  .day-3-img-6 {
    grid-column: 1/5;
    grid-row: 5;
  }
}
.day-3-img-7 {
  grid-column: 3/4;
  grid-row: 4;
}
@media screen and (max-width: 768px) {
  .day-3-img-7 {
    grid-column: 3/5;
    grid-row: 6;
  }
}

.day-3-map {
  grid-column: 4;
  grid-row: 4;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.day-3-text {
  grid-column: 4;
  grid-row: 3;
  overflow-y: scroll;
  padding-right: 5px;
}
@media screen and (max-width: 768px) {
  .day-3-text {
    grid-column: 1/4;
    grid-row: 4;
  }
}

.day-3-text::-webkit-scrollbar {
  width: 5px; /* Largeur de la barre verticale */
}

.day-3-text::-webkit-scrollbar-thumb {
  background-color: #303d50; /* Couleur du "pouce" (la partie que l'on manipule) */
  border-radius: 5px;
}

.day-3-text::-webkit-scrollbar-track {
  background-color: #B0D7E0; /* Couleur de la piste */
  border-radius: 5px;
}

/* Section 4ème jour */
.day-4-grid {
  display: grid;
  grid-template-columns: 1fr 0.5fr 0.5fr 1fr 2fr;
  grid-template-rows: 6% 28% 28% 31%;
  gap: 1rem;
  height: 100vh;
  padding: 2rem 2rem 2rem 12rem;
}
@media screen and (max-width: 768px) {
  .day-4-grid {
    grid-template-columns: 1fr 0.5fr 0.5fr 1fr;
    grid-template-rows: 6% 18% 20% 15% 18% 18%;
    padding: 6.5rem 2rem 2rem 2rem;
    width: 100vw;
    gap: 0.5rem;
  }
}
@media screen and (max-width: 1025px) and (min-width: 768px) {
  .day-4-grid {
    padding: 10rem 2rem 2rem 2rem;
    width: 100vw;
  }
}
.day-4-grid img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  border: 3px solid #B0D7E0;
}

.day-4-title {
  grid-column: 1/6;
  grid-row: 1;
  display: flex;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 50px;
  color: #C9882B;
}

.day-4-img-1 {
  grid-column: 1;
  grid-row: 2/4;
}
@media screen and (max-width: 768px) {
  .day-4-img-1 {
    grid-column: 1/2;
    grid-row: 2/4;
  }
}
.day-4-img-2 {
  grid-column: 2/4;
  grid-row: 2/4;
}
@media screen and (max-width: 768px) {
  .day-4-img-2 {
    grid-column: 2/4;
    grid-row: 2/4;
  }
}
.day-4-img-3 {
  grid-column: 4/5;
  grid-row: 2/4;
}
@media screen and (max-width: 768px) {
  .day-4-img-3 {
    grid-column: 4;
    grid-row: 2/4;
  }
}
.day-4-img-4 {
  grid-column: 5;
  grid-row: 2;
}
@media screen and (max-width: 768px) {
  .day-4-img-4 {
    grid-column: 1/3;
    grid-row: 4;
  }
}
.day-4-img-5 {
  grid-column: 5;
  grid-row: 3;
}
@media screen and (max-width: 768px) {
  .day-4-img-5 {
    grid-column: 1/5;
    grid-row: 6;
  }
}
.day-4-img-6 {
  grid-column: 1/3;
  grid-row: 4;
}
@media screen and (max-width: 768px) {
  .day-4-img-6 {
    grid-column: 3/5;
  }
}

.day-4-map {
  grid-column: 3/5;
  grid-row: 4;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
@media screen and (max-width: 768px) {
  .day-4-map {
    grid-column: 4/5;
    grid-row: 5;
  }
}

.day-4-text {
  grid-column: 5;
  grid-row: 4;
  overflow-y: scroll;
  padding-right: 5px;
}
@media screen and (max-width: 768px) {
  .day-4-text {
    grid-column: 1/4;
    grid-row: 5;
  }
}

.day-4-text::-webkit-scrollbar {
  width: 5px; /* Largeur de la barre verticale */
}

.day-4-text::-webkit-scrollbar-thumb {
  background-color: #303d50; /* Couleur du "pouce" (la partie que l'on manipule) */
  border-radius: 5px;
}

.day-4-text::-webkit-scrollbar-track {
  background-color: #B0D7E0; /* Couleur de la piste */
  border-radius: 5px;
}

/* Modal */
::backdrop {
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background-color: rgba(0, 0, 0, 0.75);
}

.modal {
  width: 80%;
  height: 80%;
  background-color: black;
  margin: auto;
  position: relative;
}

#modal-img {
  height: auto;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#modal-video {
  width: 100%;
  height: 100%;
}

#modal-caption {
  color: #F7F7F7;
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  text-align: center;
  font-family: "Inter";
  background-color: rgba(0, 0, 0, 0.7);
  padding: 10px;
}

.close {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 10px;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  color: #F7F7F7;
}