@import url("https://fonts.googleapis.com/css2?family=Afacad:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=Dosis:wght@200;300;400;500;600;700;800&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
header {
  margin-bottom: 80px;
}
header nav {
  transition-duration: 400ms;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  background: rgba(255, 255, 255, 0.24);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(12.6px);
  -webkit-backdrop-filter: blur(12.6px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
header nav h1 {
  font-family: "Dosis";
  font-size: 2.4em;
  color: #444;
  margin: 0;
  text-align: center;
  padding: 10px;
  font-weight: 400;
}
header nav a {
  text-decoration: none;
  color: #444;
}
header nav .desktop-menu {
  display: none;
}
header nav div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 40px auto;
}
header nav div .link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 10px 0;
  text-decoration: none;
  color: #444;
  font-size: 1.6em;
  font-family: "Afacad", sans-serif;
  font-weight: 400;
}
header nav button {
  position: absolute;
  background-color: transparent;
  border: none;
  outline: none;
  top: 20px;
  right: 20px;
}
header nav button:hover {
  cursor: pointer;
}

@media screen and (min-width: 1000px) {
  header nav {
    display: flex;
    justify-content: space-around;
    padding: 8px 100px;
  }
  header nav h1 {
    min-width: 230px;
  }
  header nav .phone-menu {
    display: none;
  }
  header nav .menu-btn {
    display: none;
  }
  header nav .desktop-menu {
    display: flex !important;
    flex-direction: row;
    margin: 10px auto;
    width: 70%;
  }
  header nav .desktop-menu .link {
    padding: 0 20px;
    margin: 4px 10px;
    border-radius: 16px;
    font-weight: 300;
    font-size: 1em;
    white-space: nowrap;
    text-overflow: ellipsis;
    transition-duration: 150ms;
  }
  header nav .desktop-menu .link:hover {
    backdrop-filter: blur(13.2px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    background: rgba(238, 238, 238, 0.38);
  }
}
body, html {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
}

/* <reset-style> ============================ */
button {
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  font-family: inherit;
}

/* <style for menu__icon> ======== */
.menu__icon {
  width: 32px;
  height: 32px;
  padding: 4px;
}

.menu__icon span {
  display: block;
  width: 100%;
  height: 0.125rem;
  border-radius: 2px;
  background-color: rgb(37, 37, 37);
  box-shadow: 0 0.5px 2px 0 hsla(0, 0%, 0%, 0.2);
  transition: background-color 0.4s;
  position: relative;
}

.menu__icon span + span {
  margin-top: 0.375rem;
}

.menu__icon span:nth-child(1) {
  animation: ease 0.8s menu-icon-top-2 forwards;
}

.menu__icon span:nth-child(2) {
  animation: ease 0.8s menu-icon-scaled-2 forwards;
}

.menu__icon span:nth-child(3) {
  animation: ease 0.8s menu-icon-bottom-2 forwards;
}

.menu__icon:hover span:nth-child(1) {
  animation: ease 0.8s menu-icon-top forwards;
}

.menu__icon:hover span:nth-child(2) {
  animation: ease 0.8s menu-icon-scaled forwards;
}

.menu__icon:hover span:nth-child(3) {
  animation: ease 0.8s menu-icon-bottom forwards;
  background-color: rgb(255, 59, 48);
}

@keyframes menu-icon-top {
  0% {
    top: 0;
    transform: rotate(0);
  }
  50% {
    top: 0.5rem;
    transform: rotate(0);
  }
  100% {
    top: 0.5rem;
    transform: rotate(45deg);
  }
}
@keyframes menu-icon-top-2 {
  0% {
    top: 0.5rem;
    transform: rotate(45deg);
  }
  50% {
    top: 0.5rem;
    transform: rotate(0);
  }
  100% {
    top: 0;
    transform: rotate(0);
  }
}
@keyframes menu-icon-bottom {
  0% {
    bottom: 0;
    transform: rotate(0);
  }
  50% {
    bottom: 0.5rem;
    transform: rotate(0);
  }
  100% {
    bottom: 0.5rem;
    transform: rotate(135deg);
  }
}
@keyframes menu-icon-bottom-2 {
  0% {
    bottom: 0.5rem;
    transform: rotate(135deg);
  }
  50% {
    bottom: 0.5rem;
    transform: rotate(0);
  }
  100% {
    bottom: 0;
    transform: rotate(0);
  }
}
@keyframes menu-icon-scaled {
  50% {
    transform: scale(0);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes menu-icon-scaled-2 {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
body {
  background-image: url("../icons/photos/background-mountains.webp");
  background-size: cover;
  background-repeat: no-repeat;
}

@media screen and (min-width: 1000px) {
  body {
    background-position: center;
  }
}
.glass {
  background: rgba(255, 255, 255, 0.24);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(12.6px);
  -webkit-backdrop-filter: blur(12.6px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
}

.glass-dark {
  background: rgba(108, 108, 108, 0.15);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(12.6px);
  -webkit-backdrop-filter: blur(12.6px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
}

.index-content {
  width: 95%;
  margin: 20px auto;
  padding: 7px;
}
.index-content h2 {
  font-family: "Dosis";
  width: 100%;
  text-align: center;
  font-size: 2.5em;
  color: #6363ac;
}
.index-content h3 {
  font-family: "Dosis";
  width: 100%;
  text-align: center;
  font-size: 1.8em;
  color: #6363ac;
}
.index-content p {
  font-family: "Roboto";
  text-align: justify;
  font-size: 0.9em;
  color: #444;
  margin: 25px 20px;
}
.index-content .indoor {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 5px;
  border-radius: 10px;
}
.index-content .indoor img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 7px;
}
.index-content .indoor img:nth-child(1) {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.index-content .indoor img:nth-child(2) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

@media screen and (min-width: 1000px) {
  .index-content {
    width: 60%;
    margin-top: 150px;
    padding: 20px;
  }
  .index-content p {
    width: 60%;
    font-size: 1.2em;
    margin: 40px auto;
    text-align: center;
  }
  .index-content .indoor {
    flex-direction: row;
    justify-content: space-around;
    background: none !important;
  }
  .index-content .indoor img {
    width: 50%;
    margin: 5px;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
  }
  .index-content .indoor img:nth-child(1) {
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
  }
  .index-content .indoor img:nth-child(2) {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
  }
}
*, *::before, *::after {
  box-sizing: border-box;
}

ul {
  padding: 0;
  margin: 0;
  border-radius: 16px;
}

img {
  display: block;
  border-radius: 16px;
  width: 100%;
}

.slideshow input {
  display: none;
}

/* input{position:absolute;left:-9999px} */
label {
  cursor: pointer;
}

/*on rend cliquable tous les labels*/
.slideshow {
  position: relative;
  margin: 10px;
  border-radius: 16px;
}

.slideshow > ul {
  position: relative;
  overflow: hidden;
}

.slideshow > ul > li {
  display: flex;
  width: 100%;
  height: 100%;
  transform: translate3d(0, 0, 0); /*accelere l'animation / optionnel*/
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 2s cubic-bezier(0.4, 1, 0.2, 1);
  border-radius: 16px;
}

.slideshow > ul > li.img1 {
  left: 0%;
}

.slideshow > ul > li.img2 {
  left: 100%;
}

.slideshow > ul > li.img3 {
  left: 200%;
}

.slideshow > ul > li.img4 {
  left: 300%;
}

.slideshow > #slide_img1:checked ~ ul > li,
.slideshow > #pause_img1:checked ~ ul > li {
  transform: translatex(0%);
}

.slideshow > #slide_img2:checked ~ ul > li,
.slideshow > #pause_img2:checked ~ ul > li {
  transform: translatex(-100%);
}

.slideshow > #slide_img3:checked ~ ul > li,
.slideshow > #pause_img3:checked ~ ul > li {
  transform: translatex(-200%);
}

.slideshow > #slide_img4:checked ~ ul > li,
.slideshow > #pause_img4:checked ~ ul > li {
  transform: translatex(-300%);
}

/*******************animation slide********************/
@keyframes slide {
  0%, 13% {
    transform: translatex(0);
  }
  25%, 38% {
    transform: translatex(-100%);
  }
  50%, 63% {
    transform: translatex(-200%);
  }
  75%, 88% {
    transform: translatex(-300%);
  }
}
/******************fleches**************************/
.slideshow > .precedent,
.slideshow > .suivant {
  width: 44px;
  height: 44px;
  margin-top: -22px;
  position: absolute;
  top: 50%;
  z-index: 1;
}

.slideshow > .precedent {
  left: 1rem;
}

.slideshow > .suivant {
  right: 1rem;
}

.slideshow > .precedent > label,
.slideshow > .suivant > label {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  z-index: -1;
  width: inherit;
  height: inherit;
  border-radius: 50%;
  background-color: hsl(0, 0%, 15%);
}

.slideshow > .precedent > label::after {
  content: "";
  transform: rotate(-135deg);
}

.slideshow > .suivant > label::after {
  content: "";
  transform: rotate(45deg);
}

.slideshow > .precedent > label::after,
.slideshow > .suivant > label::after {
  height: 20px;
  width: 20px;
  border-width: 5px 5px 0 0;
  border-style: solid;
  border-color: #f2f2f2;
}

.slideshow > .slide:checked ~ .precedent > label,
.slideshow > .slide:checked ~ .suivant > label {
  opacity: 0;
  z-index: -1;
}

.slideshow > #slide_img1:checked ~ .precedent > label.img4,
.slideshow > #pause_img1:checked ~ .precedent > label.img4,
.slideshow > #slide_img1:checked ~ .suivant > label.img2,
.slideshow > #pause_img1:checked ~ .suivant > label.img2,
.slideshow > #slide_img2:checked ~ .precedent > label.img1,
.slideshow > #pause_img2:checked ~ .precedent > label.img1,
.slideshow > #slide_img2:checked ~ .suivant > label.img3,
.slideshow > #pause_img2:checked ~ .suivant > label.img3,
.slideshow > #slide_img3:checked ~ .precedent > label.img2,
.slideshow > #pause_img3:checked ~ .precedent > label.img2,
.slideshow > #slide_img3:checked ~ .suivant > label.img4,
.slideshow > #pause_img3:checked ~ .suivant > label.img4,
.slideshow > #slide_img4:checked ~ .precedent > label.img3,
.slideshow > #pause_img4:checked ~ .precedent > label.img3,
.slideshow > #slide_img4:checked ~ .suivant > label.img1,
.slideshow > #pause_img4:checked ~ .suivant > label.img1 {
  opacity: 1;
  z-index: 1;
}

.slideshow > #play_img1:checked ~ .precedent > label.img4,
.slideshow > #play_img1:checked ~ .suivant > label.img2 {
  animation: anim_fleches 17.2s infinite -2s;
}

.slideshow > #play_img1:checked ~ .precedent > label.img1,
.slideshow > #play_img1:checked ~ .suivant > label.img3 {
  animation: anim_fleches 17.2s infinite 2.3s;
}

.slideshow > #play_img1:checked ~ .precedent > label.img2,
.slideshow > #play_img1:checked ~ .suivant > label.img4 {
  animation: anim_fleches 17.2s infinite 6.6s;
}

.slideshow > #play_img1:checked ~ .precedent > label.img3,
.slideshow > #play_img1:checked ~ .suivant > label.img1 {
  animation: anim_fleches 17.2s infinite 10.9s;
}

/* stop */
.slideshow > .slide:checked ~ .precedent > label,
.slideshow > .slide:checked ~ .suivant > label,
.slideshow > .pause:checked ~ .precedent > label,
.slideshow > .pause:checked ~ .suivant > label {
  animation-play-state: paused;
}

/*********************************animation fleches*************************************************/
@keyframes anim_fleches {
  0%, 24.99% {
    opacity: 1;
    z-index: 1;
  }
  25%, 100% {
    opacity: 0;
    z-index: -1;
  }
}
/********************bouton play/pause*************************/
.slideshow:hover {
  animation-play-state: paused;
}

.slideshow > .play_pause,
.slideshow > .play_pause > label {
  position: absolute;
}

.slideshow > .play_pause {
  top: 50%;
  left: 50%;
  z-index: 1;
}

.slideshow > #play_img1:checked ~ .play_pause > .pause,
.slideshow > .slide:checked ~ .play_pause > .play,
.slideshow > .pause:checked ~ .play_pause > .play {
  display: block;
  z-index: 1;
}

.slideshow > #play_img1:checked ~ .play_pause > .play,
.slideshow > .slide:checked ~ .play_pause > .pause,
.slideshow > .pause:checked ~ .play_pause > .pause {
  display: none;
  z-index: -1;
}

.slideshow > #play_img1:checked ~ .play_pause > .pause.img1,
.slideshow > #play_img1:checked ~ .play_pause > .pause.img2,
.slideshow > #play_img1:checked ~ .play_pause > .pause.img3,
.slideshow > #play_img1:checked ~ .play_pause > .pause.img4 {
  opacity: 0;
  z-index: -1;
}

.slideshow > #play_img1:checked ~ .play_pause > .pause.img1 {
  animation: anim_fleches 17.2s infinite -2s;
}

.slideshow > #play_img1:checked ~ .play_pause > .pause.img2 {
  animation: anim_fleches 17.2s infinite 2.3s;
}

.slideshow > #play_img1:checked ~ .play_pause > .pause.img3 {
  animation: anim_fleches 17.2s infinite 6.6s;
}

.slideshow > #play_img1:checked ~ .play_pause > .pause.img4 {
  animation: anim_fleches 17.2s infinite 10.9s;
}

/* stop */
.slideshow > .slide:checked ~ .play_pause > .pause,
.slideshow > .pause:checked ~ .play_pause > .pause {
  animation-play-state: paused;
}

.slideshow > #play_img1:checked ~ ul > li {
  animation: slide 17.2s infinite;
}

.slideshow > #play_img1:checked ~ ul > li,
.slideshow > .pause:checked ~ ul > li {
  transition: none;
}

.slideshow > .play_pause {
  transition: 0.4s 0s ease;
}

.slideshow > .precedent {
  transition: 0.4s 0.15s ease;
}

.slideshow > .suivant {
  transition: 0.4s 0.3s ease;
}

/*apparition/disparition des fleches + bouton play/pause*/
.slideshow > .precedent,
.slideshow > .suivant,
.slideshow > .play_pause {
  opacity: 0;
}

.slideshow:hover > .precedent,
.slideshow:hover > .suivant,
.slideshow:hover > .play_pause {
  opacity: 1;
}

.slideshow > .play_pause > label {
  margin-top: -22px;
  margin-left: -22px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: 0.3s ease;
}

.slideshow > .play_pause > .play {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 485 485' style='enable-background:new 0 0 485 485' xml:space='preserve'%3E%3Cg fill='%23fff'%3E%3Cpath d='M413.974 71.026C368.171 25.225 307.274 0 242.5 0S116.829 25.225 71.026 71.026C25.225 116.829 0 177.726 0 242.5s25.225 125.671 71.026 171.474C116.829 459.775 177.726 485 242.5 485s125.671-25.225 171.474-71.026C459.775 368.171 485 307.274 485 242.5s-25.225-125.671-71.026-171.474zM242.5 455C125.327 455 30 359.673 30 242.5S125.327 30 242.5 30 455 125.327 455 242.5 359.673 455 242.5 455z'/%3E%3Cpath d='M181.062 336.575 343.938 242.5l-162.876-94.075z'/%3E%3C/g%3E%3C/svg%3E%0A");
}

.slideshow > .play_pause > .pause {
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='iso-8859-1'%3F%3E%3C!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3E%3Csvg version='1.1' id='Capa_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 512 512' style='enable-background:new 0 0 512 512;' xml:space='preserve'%3E%3Cg fill='%23fff'%3E%3Cpath d='M256,0C114.842,0,0,114.842,0,256s114.842,256,256,256s256-114.842,256-256S397.158,0,256,0z M256,465.455 c-115.493,0-209.455-93.961-209.455-209.455S140.507,46.545,256,46.545S465.455,140.507,465.455,256S371.493,465.455,256,465.455z '/%3E%3Cpath d='M318.061,139.636c-12.853,0-23.273,10.42-23.273,23.273v186.182c0,12.853,10.42,23.273,23.273,23.273 c12.853,0,23.273-10.42,23.273-23.273V162.909C341.333,150.056,330.913,139.636,318.061,139.636z'/%3E%3Cpath d='M193.939,139.636c-12.853,0-23.273,10.42-23.273,23.273v186.182c0,12.853,10.42,23.273,23.273,23.273 c12.853,0,23.273-10.42,23.273-23.273V162.909C217.212,150.056,206.792,139.636,193.939,139.636z'/%3E%3C/g%3E%3C/svg%3E%0A");
}

/***************************navigation puces bas********************************/
.slideshow > .puces {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 1;
  font-size: 0;
  text-align: center;
  bottom: 0.3125rem;
}

.slideshow > .puces > label {
  position: relative;
  display: inline-flex;
  margin: 0 0.625rem;
  padding: 0.5rem;
  border-radius: 50%;
  background-color: hsla(0, 0%, 0%, 0.6);
}

/********************simulation lien actif sur les puces******************************/
.slideshow > .puces > label > .actif_puces {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  z-index: 1;
  background-color: hsl(0, 0%, 100%);
  transition: 0.3s ease;
  transform: scale(0);
}

.slideshow > #slide_img1:checked ~ .puces > label.img1 > .actif_puces,
.slideshow > #pause_img1:checked ~ .puces > label.img1 > .actif_puces,
.slideshow > #slide_img2:checked ~ .puces > label.img2 > .actif_puces,
.slideshow > #pause_img2:checked ~ .puces > label.img2 > .actif_puces,
.slideshow > #slide_img3:checked ~ .puces > label.img3 > .actif_puces,
.slideshow > #pause_img3:checked ~ .puces > label.img3 > .actif_puces,
.slideshow > #slide_img4:checked ~ .puces > label.img4 > .actif_puces,
.slideshow > #pause_img4:checked ~ .puces > label.img4 > .actif_puces {
  transform: scale(1);
}

/* bouton play -  puces */
.slideshow > #play_img1:checked ~ .puces > label.img1 > .actif_puces {
  animation: anim_puces 17.2s infinite -2s;
}

.slideshow > #play_img1:checked ~ .puces > label.img2 > .actif_puces {
  animation: anim_puces 17.2s infinite 2.3s;
}

.slideshow > #play_img1:checked ~ .puces > label.img3 > .actif_puces {
  animation: anim_puces 17.2s infinite 6.6s;
}

.slideshow > #play_img1:checked ~ .puces > label.img4 > .actif_puces {
  animation: anim_puces 17.2s infinite 10.9s;
}

@keyframes anim_puces {
  0%, 24.99% {
    transform: scale(1);
    background-color: hsl(0, 0%, 100%);
  }
  25%, 100% {
    transform: scale(0);
    background-color: unset;
  }
}
.slideshow > #play_img1:checked ~ .puces > label > .actif_puces,
.slideshow > .pause:checked ~ .puces > label > .actif_puces {
  transition: none;
}

/* stop */
.slideshow > .slide:checked ~ .puces > label > .actif_puces,
.slideshow > .pause:checked ~ .puces > label > .actif_puces {
  animation-play-state: paused;
}

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7px;
  width: 95%;
  margin: 20px auto;
}
.about-content h2 {
  font-family: "Dosis";
  text-align: center;
  font-size: 2.5em;
  color: #6363ac;
  margin: 10px 20px;
}
.about-content h3 {
  font-family: "Dosis";
  text-align: center;
  font-size: 1.8em;
  color: #6363ac;
  margin: 10px 20px;
}
.about-content p {
  font-family: "Roboto";
  text-align: justify;
  font-size: 0.9em;
  color: #444;
  margin: 25px 20px;
}
.about-content .about-picture {
  width: 100%;
}

@media screen and (min-width: 1000px) {
  .about-content {
    width: 60%;
    margin-top: 150px;
    padding: 20px;
  }
  .about-content p {
    width: 60%;
    text-align: center;
    font-size: 1.05em;
    margin: 30px auto;
  }
  .about-content h2 {
    font-size: 3em;
    margin-top: 30px;
  }
  .about-content .about-picture {
    height: 350px;
    object-fit: cover;
  }
}
.equipments-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7px;
  width: 95%;
  margin: 20px auto;
}
.equipments-content h2 {
  font-family: "Dosis";
  text-align: center;
  font-size: 2.5em;
  color: #6363ac;
  margin: 10px 20px;
}
.equipments-content h3 {
  font-family: "Dosis";
  text-align: center;
  font-size: 1.8em;
  color: #6363ac;
  margin: 10px 20px 20px 20px;
}
.equipments-content .equipment {
  background: rgba(255, 255, 255, 0.5);
  padding: 4px;
  margin: 5px 0;
}
.equipments-content .equipment img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
}
.equipments-content .equipment img:nth-child(1) {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.equipments-content .equipment img:nth-child(2) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.equipments-content .equipment h3 {
  font-size: 1.6em;
  margin-top: 20px;
}
.equipments-content .equipment ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.equipments-content .equipment ul li {
  font-family: "Roboto";
  text-align: center;
  font-size: 0.9em;
  color: #444;
  margin: 10px 20px;
}
.equipments-content .equipment p {
  font-family: "Roboto";
  text-align: center;
  font-size: 0.9em;
  color: #000;
  margin: 20px 20px;
}

@media screen and (min-width: 1000px) {
  .equipments-content {
    width: 60%;
    margin-top: 150px;
    padding: 20px;
  }
  .equipments-content .equipment {
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
    display: flex;
    margin-top: 40px;
  }
  .equipments-content .equipment div {
    width: 50%;
    margin: auto;
  }
  .equipments-content .equipment img {
    width: 50%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px !important;
  }
  .equipments-content .equipment h3 {
    font-size: 2em;
    margin-top: 20px;
  }
  .equipments-content .equipment ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .equipments-content .equipment ul li {
    font-family: "Roboto";
    text-align: center;
    font-size: 1.1em;
    color: #444;
    margin: 20px;
  }
  .equipments-content .equipment p {
    font-family: "Roboto";
    text-align: center;
    font-size: 0.9em;
    color: #000;
    margin: 20px 20px;
  }
}
.pictures-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7px;
  width: 95%;
  margin: 20px auto;
}
.pictures-content h2 {
  font-family: "Dosis";
  text-align: center;
  font-size: 2.5em;
  color: #6363ac;
  margin: 10px 20px;
}
.pictures-content .pictures {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.pictures-content .pictures .picture {
  width: 100%;
  height: 300px;
  object-fit: cover;
  margin: 5px 0;
}

@media screen and (min-width: 1000px) {
  .pictures-content {
    width: 80%;
    margin: 140px auto 20px auto;
  }
  .pictures-content h2 {
    font-size: 3em;
    margin: 20px 0;
  }
  .pictures-content .pictures {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 20px 50px;
  }
  .pictures-content .pictures .picture {
    width: 300px;
    height: 300px;
    object-fit: cover;
    margin: 25px 0;
    transition-duration: 400ms;
  }
}
.booking-content {
  margin: 30px auto;
  display: flex;
  width: 100%;
  flex-direction: column;
}
.booking-content h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
  color: #444444;
  width: 100%;
  margin-top: 0;
}
.booking-content .booking-selector-container {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  width: 95%;
  padding: 30px 10px;
}
.booking-content .booking-selector-container label {
  font-size: 1rem;
  font-weight: 300;
  text-align: center;
  color: #FFFFFF;
  height: 40px;
  align-items: center;
  margin-bottom: 0;
  background-color: #444444;
  padding: 10px 30px;
  border-radius: 12px 12px 0 0;
}
.booking-content .booking-selector-container .booking-price {
  font-size: 1.4em;
  text-align: center;
  width: 100%;
  color: #444444;
}
.booking-content .booking-selector-container .booking-selector {
  height: 40px;
  width: 100%;
  margin-top: 0;
  text-align: center;
  padding: 0 20px;
  border-radius: 0 0 12px 12px;
  font-size: 1em;
}
.booking-content .booking-selector-container .booking-selector option {
  text-align: center;
  font-size: 1.2em;
  align-items: center;
}
.booking-content .booking-services-container {
  width: 95%;
  margin: 10px auto;
  padding: 20px;
}
.booking-content .booking-services-container h2 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  text-align: center;
  color: #444444;
}
.booking-content .booking-services-container .booking-services {
  display: flex;
  flex-direction: column;
}
.booking-content .booking-services-container .booking-services .booking-service {
  padding: 10px;
  margin: 10px 0;
  border-radius: 12px;
  text-align: center;
}
.booking-content .booking-services-container .booking-services .booking-service h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 400;
  text-align: center;
  color: #444444;
}
.booking-content .booking-services-container .booking-services .booking-service ul {
  padding-inline-start: 20px;
  text-align: left;
}
.booking-content .booking-services-container .booking-services .booking-service ul li {
  font-size: 1rem;
  margin-bottom: 10px;
}

@media screen and (min-width: 1000px) {
  .booking-content {
    width: 60%;
    margin-top: 150px;
    padding: 20px;
  }
  .booking-content p {
    width: 60%;
    font-size: 1.2em;
  }
  .booking-content .booking-selector-container label {
    width: 50%;
    margin: 0 auto;
  }
  .booking-content .booking-selector-container .booking-selector {
    font-size: 1.2em;
    width: 50%;
    margin: 0 auto;
  }
  .booking-content .booking-services-container .booking-services {
    width: 60%;
    margin: 0 auto;
  }
  .booking-content .booking-services-container .booking-services .booking-service {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
  }
  .booking-content .booking-services-container .booking-services .booking-service h3 {
    margin: 10px auto 20px auto;
    font-size: 1.4rem;
    width: 100%;
    text-align: center;
  }
  .booking-content .booking-services-container .booking-services .booking-service ul {
    margin: 0 auto;
    width: 100%;
    text-align: center;
  }
  .booking-content .booking-services-container .booking-services .booking-service ul li {
    text-align: left;
    font-size: 1.2rem;
  }
  .booking-content .booking-services-container .booking-services .booking-service p {
    font-size: 1.2rem;
    margin: 0 auto;
    width: 100%;
    text-align: center;
  }
}
.login-content {
  width: 30%;
  margin: 150px auto;
  padding: 40px;
  display: flex;
  flex-direction: column;
}
.login-content h2 {
  font-family: "Dosis", sans-serif;
  text-align: center;
  font-size: 2.5em;
  color: #6363ac;
  margin: 10px 20px;
}
.login-content p {
  font-family: "Dosis", sans-serif;
  text-align: center;
  font-size: 1.2em;
  color: #444;
  margin: 10px 20px 30px 20px;
}
.login-content form label {
  font-family: "Dosis", sans-serif;
  font-size: 1.2em;
  color: #444;
  margin: 10px 20px;
}
.login-content form input {
  width: -webkit-fill-available;
  height: 50px;
  border: 1px solid #6363ac;
  border-radius: 5px;
  margin: 5px 20px;
  font-family: "Dosis", sans-serif;
  font-size: 1.2em;
  color: #444;
  display: flex;
  padding: 5px 10px;
}
.login-content form input[type=submit] {
  width: -webkit-fill-available;
  background-color: #6363ac;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 10px;
  font-family: "Dosis", sans-serif;
  font-size: 1.2em;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}
.login-content form #invalid_passmail {
  color: #ff5757;
  font-size: 1em;
  margin: 20px 0 0 0;
  text-align: center;
}

.admin-home-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 40%;
  margin: 150px auto 0 auto;
  padding: 20px;
}
.admin-home-content h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
  color: #444444;
}
.admin-home-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  text-align: center;
  color: #444444;
}

.admin-booking-content {
  display: flex;
  align-items: center;
  width: 80%;
  margin: 150px auto 0 auto;
  padding: 20px;
  justify-content: space-around;
}
.admin-booking-content section {
  width: 40%;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.admin-booking-content section h2 {
  font-size: 2rem;
  text-align: center;
  color: #444444;
  margin: 40px auto;
}
.admin-booking-content section .add-booking {
  display: flex;
  flex-direction: column;
  margin-bottom: 50px;
  gap: 15px;
  align-items: center;
  width: 60%;
}
.admin-booking-content section .add-booking input {
  border-radius: 10px;
  border: 1px solid #444444;
  padding-right: 10px;
}
.admin-booking-content section .add-booking label {
  margin-right: 10px;
  width: -webkit-fill-available;
  text-align: center;
}
.admin-booking-content section .add-booking .date-start {
  display: flex;
  flex-direction: row;
  margin: 10px;
  width: 100%;
  align-items: center;
}
.admin-booking-content section .add-booking .date-start label {
  margin-right: 10px;
  width: -webkit-fill-available;
  text-align: center;
}
.admin-booking-content section .add-booking .date-start input {
  width: -webkit-fill-available;
  height: 30px;
  text-align: center;
}
.admin-booking-content section .add-booking .date-end {
  display: flex;
  flex-direction: row;
  margin: 10px;
  width: 100%;
  align-items: center;
}
.admin-booking-content section .add-booking .date-end label {
  margin-right: 10px;
  width: -webkit-fill-available;
  text-align: center;
}
.admin-booking-content section .add-booking .date-end input {
  width: -webkit-fill-available;
  text-align: center;
  height: 30px;
}
.admin-booking-content section .add-booking .add-booking-price-container {
  display: flex;
  margin: 10px;
  width: 100%;
  align-items: center;
}
.admin-booking-content section .add-booking .add-booking-price-container label {
  margin-right: 10px;
}
.admin-booking-content section .add-booking .add-booking-price-container input {
  width: -webkit-fill-available;
  text-align: center;
  height: 30px;
}
.admin-booking-content section .add-booking input[type=submit] {
  width: 100%;
  margin: 10px auto;
  padding: 10px;
  border-radius: 15px;
  background-color: #444;
  color: #FFFFFF;
  font-size: 1.2rem;
  font-family: "Afacad";
  font-weight: 400;
  cursor: pointer;
  border: 2px solid #444;
  transition: all 0.3s ease-in-out;
}
.admin-booking-content section .add-booking input[type=submit]:hover {
  background-color: transparent;
  color: #444444;
}
.admin-booking-content section .modify-booking {
  display: flex;
  flex-direction: column;
  margin-bottom: 50px;
  gap: 15px;
  align-items: center;
  width: 60%;
}
.admin-booking-content section .modify-booking input {
  border-radius: 10px;
  border: 1px solid #444444;
  padding-right: 10px;
}
.admin-booking-content section .modify-booking label {
  margin-right: 10px;
  width: -webkit-fill-available;
  text-align: center;
}
.admin-booking-content section .modify-booking .date-to-modify {
  display: flex;
  flex-direction: row;
  margin: 10px;
  width: 100%;
  align-items: center;
}
.admin-booking-content section .modify-booking .date-to-modify label {
  margin-right: 10px;
  width: -webkit-fill-available;
  text-align: center;
}
.admin-booking-content section .modify-booking .date-to-modify select {
  width: 150px;
  height: 30px;
  text-align: center;
}
.admin-booking-content section .modify-booking input[type=submit] {
  width: 100%;
  margin: 10px auto;
  padding: 10px;
  border-radius: 15px;
  background-color: #ff6c6c;
  color: #FFFFFF;
  font-size: 1.2rem;
  font-family: "Afacad";
  font-weight: 400;
  cursor: pointer;
  border: 2px solid #ff6c6c;
  transition: all 0.3s ease-in-out;
}
.admin-booking-content section .modify-booking input[type=submit]:hover {
  background-color: transparent;
  color: #ff6c6c;
}

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