@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translate(-10rem);
  }
  80% {
    transform: translate(1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translate(20rem);
  }
  80% {
    transform: translate(-1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(3rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInLCA {
  0% {
    transform: translateY(6rem);
  }
  100% {
    transform: translate(0);
  }
}
@keyframes AmineSlogan {
  0% {
    opacity: 1;
    transform: translateY(-3rem);
    color: #000;
  }
  100% {
    color: #B8D3DE;
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes animate {
  0% {
    background-position: 0;
  }
  100% {
    background-position: 1360px;
  }
}
@keyframes animate-inverse {
  0% {
    background-position: 1360px;
  }
  100% {
    background-position: 0;
  }
}
* {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

html::-webkit-scrollbar {
  width: 1rem;
}

html::-webkit-scrollbar-track {
  background: #fff;
}

html::-webkit-scrollbar-thumb {
  background: #10221b;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

.heading-primary {
  color: #fff;
  text-transform: uppercase;
  backface-visibility: hidden;
  padding-bottom: 6rem;
}

.heading-primary-main {
  display: block;
  font-size: 2rem !important;
  font-weight: 400;
  animation-name: moveInLeft;
  animation-duration: 5s;
  animation-timing-function: ease-in-out;
  padding: 15px 0;
  background: linear-gradient(90deg, transparent 0%, #B8D3DE 30%, white 50%, #B8D3DE 70%, transparent 95%);
  text-align: center;
  margin-top: 20px;
}

.heading-primary-sub {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1.75rem;
  animation: moveInRight 5s ease-in-out;
}

.heading-primary-pageone {
  display: block;
  font-size: 5rem;
  font-weight: 400;
  letter-spacing: 2rem;
  animation-name: moveInLeft;
  animation-duration: 5s;
  animation-timing-function: ease-in-out;
}

.slogan-heading {
  display: block;
  color: #000;
  margin-top: 20vh;
  font-size: 4rem;
}

.heading-secondary {
  font-size: 3.5rem;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-block;
  background-image: linear-gradient(to right, #B8D3DE, #B8D3DE);
  -webkit-background-clip: text;
  color: transparent;
  letter-spacing: 0.2rem;
  transition: all 0.2s;
}
.heading-secondary:hover {
  text-shadow: 0.5rem 1rem 2rem rgba(0, 0, 0, 0.2);
}

.slogan__paragraphe {
  display: block;
  color: #000;
  margin-top: 2rem;
  font-size: 2rem;
}

.u-center-text {
  text-align: center;
}

.u-margin-bottom-small {
  margin-bottom: 2rem;
}

.u-margin-bottom-mediun {
  margin-bottom: 4rem;
}

.u-margin-bottom-big {
  margin-bottom: 8rem;
}

.u-margin-top-small {
  margin-top: 2rem;
}

.u-margin-top-mediun {
  margin-top: 4rem;
}

.u-margin-top-big {
  margin-top: 8rem;
}

.white {
  color: #fff !important;
}

.btn, .btn:link, .btn:visited {
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 2rem;
  display: inline-block;
  border-radius: 5rem;
  transition: all 0.2s;
  position: relative;
  font-size: 1rem;
  background: #fff;
  color: #1C1E21;
  border: none;
  cursor: pointer;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
}
.btn:hover::after {
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
}
.btn:active, .btn:focus {
  outline: none;
  transform: translateY(-1px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
}
.btn--white {
  background-color: #fff;
  color: #B5B6B8;
}
.btn--white::after {
  background-color: #fff;
}
.btn--blue {
  background-color: #B8D3DE !important;
  color: #fff !important;
}
.btn--blue::after {
  background-color: #B8D3DE;
}
.btn::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: 10rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.4s;
}
.btn--animated {
  animation: moveInBottom 0.5s ease-out 0.75s;
  animation-fill-mode: backwards;
}

.btn-text:link, .btn-text:visited {
  font-size: 1.2rem;
  color: #B8D3DE;
  display: inline-block;
  text-decoration: none;
  border-bottom: 1px solid #B8D3DE;
  padding: 3px;
  transition: all 0.2s;
}
.btn-text:hover {
  background-color: #B8D3DE;
  color: #fff;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}
.btn-text:active {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  transform: translateY(0);
}

.inputBox {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
}

.inputBox input, .inputBox textarea {
  width: 100%;
  outline: none;
  border: 1px solid #B8D3DE;
  background: #fff;
  padding: 8px 10px;
  padding-left: 35px;
  padding-bottom: 10px;
  border-radius: 6px;
  color: #000;
  font-size: 16px;
  font-weight: 300;
}

.inputBox input[type=checkbox] {
  width: 50px;
  padding-left: 10px;
  background: none;
  box-shadow: none;
}

.inputBox input[type=radio] {
  width: 50px;
  padding-right: 10px;
  background: none;
  box-shadow: none;
}

.inputBox label {
  padding-left: 20px;
  margin-bottom: 10px;
  color: #000;
}

.white {
  background-color: #fff;
}

.contact {
  position: relative;
  padding: 50px 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-size: cover;
}

.contact .contact_content {
  max-width: 800px;
  text-align: center;
}

.contact .contact_content h3 {
  font-size: 36px;
  font-weight: 500;
  color: #000;
}

.contact .contact_content .box p {
  font-weight: 300;
  color: #000;
}

.contact_container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.contact_container .contact_info {
  width: 50%;
  display: flex;
  flex-direction: column;
}

.contact_container .contact_info .box {
  position: relative;
  padding: 20px 0;
  display: flex;
}

.contact_container .contact_info .box .icon {
  min-width: 60px;
  height: 60px;
  background: #B8D3DE;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 22px;
}

.contact_container .contact_info .box .text {
  display: flex;
  margin-left: 20px;
  font-size: 16px;
  color: #000;
  flex-direction: column;
  font-weight: 300;
}

.contact_container .contact_info .box .text h3 {
  font-size: 22px;
  font-weight: 500;
  color: #B8D3DE;
  padding: 0;
  margin: 0;
  padding-bottom: 5px;
}

.contact_container .contact_info .box .text p {
  color: #000;
  font-size: 16px;
}

.contact_form {
  width: 40%;
  padding: 40px;
  background: #fff;
}

.contact_form h2 {
  font-size: 30px;
  color: #B8D3DE;
  font-weight: 500;
}

.contact_form .inputbox {
  position: relative;
  width: 100%;
  margin-top: 10px;
}

.contact_form .inputbox input,
.contact_form .inputbox textarea {
  width: 100%;
  padding: 5px 0;
  font-size: 16px;
  margin: 10px 0;
  border: none;
  border-bottom: 2px solid #B8D3DE;
  outline: none;
  resize: none;
}

.contact_form .inputbox span {
  position: absolute;
  left: 0;
  padding: 5px 0;
  font-size: 16px;
  margin: 10px 0;
  pointer-events: none;
  transition: 0.5s;
}

.contact_form .inputbox input:focus ~ span,
.contact_form .inputbox input:valid ~ span,
.contact_form .inputbox textarea:focus ~ span,
.contact_form .inputbox textarea:valid ~ span {
  color: #B8D3DE;
  font-size: 12px;
  transform: translateY(-20px);
}

.contact_form .inputbox input[type=submit] {
  width: 100%;
  background: #B8D3DE;
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 10px;
  font-size: 18px;
}

@media screen and (max-width: 991px) {
  .contact {
    padding: 20px;
  }
  .contact_container {
    flex-direction: column;
  }
  .contact_container .contact_info,
  .contact_container .contact_form {
    margin-bottom: 40px;
    width: 100%;
  }
  .contact_content {
    width: 100%;
  }
  .contact_container .contact_info .box .text p {
    font-size: 12px;
  }
}
.partenaires .silde {
  text-align: center;
}

.partenaires .silde img {
  height: 12rem;
  padding: 10px;
}

.partenaires-wrapper {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.reviews .slide .text {
  padding: 2rem;
  font-size: 1.5rem;
  font-style: italic;
  background: #eee;
  border-radius: 0.5rem;
  color: #1C1E21;
  line-height: 2;
  position: relative;
  z-index: 0;
  margin-bottom: 3rem;
}

.reviews .slide .text::before {
  content: "";
  position: absolute;
  bottom: -1.5rem;
  left: 0.7rem;
  height: 3rem;
  width: 3rem;
  background: #eee;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.reviews .slide .user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
}

.reviews .slide .user img {
  height: 7rem;
  width: 7rem;
  border-radius: 50%;
}

.reviews .slide .user h3 {
  font-size: 2rem;
  color: #1C1E21;
}

.reviews .slide .user span {
  color: #B5B6B8;
  font-size: 1.5rem;
}

.carousel-container {
  position: relative;
  width: 80%;
  max-width: 1200px;
  overflow: hidden;
  margin: auto;
}

.carousel-track-container {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  min-width: 100%;
  box-sizing: border-box;
  text-align: center;
}

.carousel-slide img {
  width: 50%;
  border: none;
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
}

.left-button {
  left: 10px;
}

.right-button {
  right: 10px;
}

/* Tableau Partenaire */
.lespartenaires {
  width: 90%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 50px;
}

.item-partenaire {
  width: 250px;
  list-style-type: none;
}

.item-partenaire img {
  width: 250px;
  transition: transform 0.3s ease; /* Animation douce de l'effet de zoom */
}

.item-partenaire img:hover {
  transform: scale(1.5); /* Agrandit l'image à 120% de sa taille originale */
}

.annuaire h1 {
  text-align: center;
  width: 100%;
}

.fichesadherents {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-wrap: wrap;
  color: #000000;
}

.fiche {
  width: 350px;
  height: 540px;
  background: url(../images/fiche-adherent.png);
  background-size: cover;
  margin: 10px;
  border-radius: 20px;
  border: 2px solid #02495f;
  box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
  position: relative;
}

.fiche .partenaire, .fiche .adherent {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 150px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  z-index: 1;
}

.fiche .adherent::before {
  content: "ADHÉRENT";
  position: absolute;
  width: 150%;
  height: 30px;
  background: #6ccedc;
  transform: rotate(-45deg) translateY(-20px);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  text-transform: uppercase;
  color: white;
  letter-spacing: 0.1em;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.fiche .adherent::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 10px;
  height: 10px;
  background: #02495f;
  z-index: -1;
  box-shadow: 132px -132px #02495f;
}

.fiche .partenaire::before {
  content: "PARTENAIRE";
  position: absolute;
  width: 150%;
  height: 30px;
  background: hwb(42 9% 10%);
  transform: rotate(-45deg) translateY(-20px);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  text-transform: uppercase;
  color: white;
  letter-spacing: 0.1em;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.fiche .partenaire::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 10px;
  height: 10px;
  background: #B8860B;
  z-index: -1;
  box-shadow: 132px -132px #B8860B;
}

.fiche .entete {
  width: 250px;
  height: 250px;
  position: relative;
  margin-left: 100px;
}

.titrefiche {
  position: absolute;
  right: 15px;
}

.photoidentite {
  position: absolute;
  right: 40px;
  top: 65px;
  overflow: hidden;
  border-radius: 50%; /* Make the container round */
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
}

.titreadherents {
  font-size: 60px;
  text-align: center;
}

.fiche h2 {
  color: #02495f !important;
  padding: 5px;
  font-size: 20px;
}

.fiche img {
  width: 175px;
  height: auto;
}

.fiche p {
  color: #000000;
}

.infos {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: #B8D3DE;
  padding: 5px;
}

.contact_info .box {
  display: flex;
  align-items: center;
  text-align: left;
  padding: 2px;
}

.fiche .contact_info .box .contact_info_text p {
  padding-left: 15px;
  margin: 0;
  color: #02495f !important;
  font-size: 0.8rem;
}

.fiche .contact_info .box .icons {
  font-size: 12px;
  color: #02495f;
  width: 10px;
  text-align: center;
}

.fiche .contact_info .box .contact_info_text a {
  padding-left: 15px;
  margin: 0;
  color: #02495f !important;
  font-size: 0.8rem;
  text-decoration: none;
}

.infos img {
  width: 100px;
}

.infos .social {
  width: 50px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
}

.infos .social a span {
  height: 25px;
  width: 25px;
  color: #B8D3DE;
  background-color: #02495f;
  line-height: 25px;
  text-align: center;
  font-size: 12px;
  border-radius: 5px;
  transition: 0.3s;
  margin-bottom: 5px;
}

.text-presentation {
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.fiche .text-presentation p {
  font-size: 1rem !important;
  padding: 10px;
  line-height: 20px;
}

.social-adherent {
  margin: 10px 0 0 0;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.social-adherent a {
  padding: 5px;
}

.social-adherent a span {
  height: 30px;
  width: 30px;
  color: #fff;
  background-color: #B8D3DE;
  line-height: 30px;
  text-align: center;
  font-size: 10px;
  border-radius: 5px;
  transition: 0.3s;
}

.social-adherent a span:hover {
  color: #fff;
  background-color: #B8D3DE;
}

.boxlogo {
  text-align: left;
}

.boxlogo img {
  width: 125px !important;
  height: auto;
  padding: 5px;
}

.fiche .btn {
  background: #B8D3DE !important;
}

.footerfiche {
  width: 100%;
  position: absolute;
  bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding-left: 5px;
  padding-right: 5px;
}

.contact_info_text {
  width: 100%;
  color: #f2f2f2;
  font-size: 15px;
}

.img-size {
  width: 600px;
  height: auto;
}

.ensavoir .btn {
  color: #fff;
  background-color: #B8D3DE;
}

.adherent_action .ensavoir {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: first baseline;
  gap: 10px;
}

.slideshow-container {
  position: relative;
  max-width: 100%;
  margin: auto;
}

.mySlides_actu {
  display: none;
}

.mySlides_actu img {
  width: 100%;
  max-height: 100vh;
  object-fit: contain;
}

.landscape {
  width: 100%;
  height: auto;
}

.portrait {
  height: 50%;
  width: auto;
}

.prev, .next {
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  cursor: pointer;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.fade_actu {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
.partager {
  width: 80%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 20px;
}

.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

.mySlides {
  display: none;
}

img {
  vertical-align: middle;
  cursor: pointer;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dots {
  text-align: center;
  padding: 5px;
}

.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
/* Modal (background) */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.9);
}

/* Modal Content (Image) */
.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
}

/* Caption of Modal Image (Image Text) - Same Width as the Image */
#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

/* Add Animation - Zoom in the Modal */
.modal-content, #caption {
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: zoom;
  animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(0);
  }
  to {
    -webkit-transform: scale(1);
  }
}
@keyframes zoom {
  from {
    transform: scale(0.1);
  }
  to {
    transform: scale(1);
  }
}
/* The Close Button */
.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

@media screen and (max-width: 500px) {
  .slideshow-container {
    max-width: 300px;
    position: relative;
    margin: auto;
  }
  .mySlides img {
    width: 300px;
  }
}
.img-events {
  width: 350px;
  height: auto;
  margin-top: 50px;
}

.events {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.event_contenu {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.visu_events {
  width: 700px;
  background: white;
}

.visu_event {
  width: 670px;
  margin: auto;
  padding: 2rem;
  text-align: center;
}

.visu_event img {
  /* height: 25rem; */
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 0.5rem;
}

.visu_event .icons {
  width: 90%;
  margin: auto;
  background: black;
  border-radius: 0.5rem;
  padding: 0.5rem;
  position: relative;
  top: -1rem;
  display: inline-block;
}

.visu_event .icons a {
  font-size: 0.8rem;
  color: #fff;
  margin: 0 1rem;
}

.visu_event .icons a:hover {
  color: #fff;
}

.visu_event .icons a i {
  padding-right: 0.5rem;
  color: white;
}

.visu_event h3 {
  font-size: 1.4rem;
  color: black;
}

.tarif {
  text-align: left;
}

.visu_event p {
  font-size: 1rem;
  padding: 1rem 0;
  line-height: 2;
  color: black;
  text-align: justify;
}

.visu_event form {
  text-align: left;
}

.visu_event .partager {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.social-event a span, .social-actu a span {
  height: 40px;
  width: 40px;
  color: #fff;
  background-color: #B8D3DE;
  line-height: 40px;
  text-align: center;
  font-size: 15px;
  border-radius: 5px;
  transition: 0.3s;
}

.social-event a span:hover, .social-actu a span:hover {
  color: #B8D3DE;
  background-color: #fff;
}

.slide-event {
  width: 340px;
  margin: auto;
  padding: 2rem;
  text-align: center;
}

.slide-event img {
  /* height: 25rem; */
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 0.5rem;
}

.slide-event .icons {
  width: 90%;
  margin: auto;
  background: black;
  border-radius: 0.5rem;
  padding: 0.5rem;
  position: relative;
  top: -1rem;
  display: inline-block;
}

.slide-event .icons a {
  font-size: 0.8rem;
  color: #fff;
  margin: 0 1rem;
}

.slide-event .icons a:hover {
  color: #fff;
}

.slide-event .icons a i {
  padding-right: 0.5rem;
  color: white;
}

.slide-event h3 {
  font-size: 1.4rem;
  color: black;
}

.lesevents {
  width: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
}

.item_event {
  width: 450px;
  height: 410px;
  /* margin: auto;
  padding: 2rem; */
  text-align: center;
  position: relative;
  background-color: #B8D3DE;
  overflow: hidden;
  margin: 15px;
}

.item_event .titre_event {
  position: absolute;
  text-align: center;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  top: 50px;
  font-size: 2rem;
}

.item_event img {
  width: 450px;
}

.item_event_contenu {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.item_event_date {
  width: 110px;
  height: 110px;
  text-align: center;
  color: #000;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 1rem;
}

.item_event_date p {
  font-size: 0.8rem;
  font-weight: 600;
  color: #000;
}

.item_event_date .day {
  font-size: 3.5rem;
  color: #A40E4C;
  margin: 0;
  line-height: 3.5rem;
}

.item_event_date .dayfin {
  font-size: 2rem;
  color: #A40E4C;
  margin: 0;
  line-height: 3.5rem;
}

.item_event_infos {
  width: 300px;
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-direction: column;
  font-size: 1.6rem;
}

.item_event_infos p {
  color: #2C2C54;
  text-align: left;
  font-size: 0.8rem;
  line-height: 20px;
}

.item_event::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.4); /* Adjust the color and opacity as needed */
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.7s cubic-bezier(0.5, 0, 0.1, 1), height 0.7s cubic-bezier(0.5, 0, 0.1, 1);
}

.item_event:hover::before {
  width: 850px;
  height: 500px;
}

.visu_event .btn {
  background-color: #B8D3DE;
  color: #fff;
}

.thumb {
  width: 800px;
  display: flex;
  flex-wrap: wrap;
  padding: 20px;
}

.thumb li:hover {
  transform: translateY(-20px);
}

.thumb li {
  list-style: none;
  display: inline-block;
  margin: 0 20px;
  cursor: pointer;
  transition: 0.5s;
}

.thumb li img {
  width: 100px;
}

.titre_event_special {
  width: 100%;
  color: #50545c;
  font-size: 25px;
  padding: 20px;
}

@media screen and (max-width: 500px) {
  .visu_event p {
    font-size: 1.4rem;
  }
  .item_event {
    width: 100%;
    height: auto;
  }
  .item_event img {
    width: 100%;
  }
  .item_event_contenu {
    gap: 30px;
  }
  .btn-event {
    position: relative !important;
    right: 0;
  }
}
.tickets {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 50px;
  margin: 0;
}

.tickets h2 {
  font-size: 18px;
  text-transform: uppercase;
}

.ticket {
  background: #B8D3DE;
  border: 4px dashed #ccc;
  border-radius: 10px;
  padding: 20px;
  width: 650px; /* Largeur augmentée pour accommoder l'image */
  height: 350px;
  border: 3px dashed #a0a0a0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  margin: 5px;
}

.ticket:before,
.ticket:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #f4f4f4;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.ticket:before {
  left: -10px;
}

.ticket:after {
  right: -10px;
}

.infos_contenu {
  display: flex;
  align-items: center;
}

.ticket .ticket_infos_contenu img {
  width: 350px;
  height: 250px;
  border-radius: 10px;
  margin-right: 20px;
  object-fit: cover; /* Pour s'assurer que l'image couvre bien la zone */
}

.ticket-content {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 250px;
  display: flex;
  align-items: center;
  flex-direction: column;
  border-left: 3px dashed #888;
}

.ticket h1 {
  font-size: 24px;
  margin: 0 0 10px;
  color: #333;
}

.ticket p {
  font-size: 16px;
  margin: 5px 0;
  color: #666;
  padding: 10px;
}

.ticket .ticket_infos_contenu .ticket-content .date-circle {
  width: 120px;
  height: 120px;
  background-color: #666;
  border-radius: 50%;
  border: 5px solid white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: bold;
  margin-bottom: 10px;
}

.ticket .ticket_infos_contenu .date-circle .day {
  font-size: 24px;
  line-height: 1;
}

.ticket .ticket_infos_contenu .location {
  font-style: italic;
  color: #033f68;
  text-align: center;
}

.ticket .ticket_infos_contenu .barcode {
  margin-top: 10px;
  font-family: "Libre Barcode 128", cursive;
  font-size: 30px;
  color: #333;
}

i {
  font-size: 25px;
}

.btn-event {
  text-decoration: none;
  padding: 5px;
  border: 2px solid white;
  width: 150px;
  background-color: #666;
  text-align: center;
  color: white;
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  border-radius: 5px;
}

@media (max-width: 768px) {
  .ticket_infos_contenu {
    flex-direction: column;
  }
  .ticket {
    width: 320px;
    height: auto;
    margin: auto;
    padding: 5px;
    text-align: center;
  }
  .ticket .ticket_infos_contenu img {
    width: 300px;
    height: auto;
    margin: auto;
    padding-bottom: 10px;
  }
  .ticket-content {
    position: relative;
    width: 100%;
    top: 0;
    right: 0;
    padding-top: 10px;
    border-top: 3px dashed #888;
    border-left: none;
  }
}
.row {
  margin: 0 auto;
}
.row:not(:last-child) {
  margin-bottom: 8rem;
}
@media only screen and (max-width: 56.25em) {
  .row:not(:last-child) {
    margin-bottom: 6rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .row {
    max-width: 50rem;
    padding: 0 3rem;
  }
}
.row:not(:last-child) {
  margin-bottom: 8rem;
}
.row::after {
  content: "";
  display: table;
  clear: both;
}
.row [class^=col-] {
  float: left;
}
.row [class^=col-]:not(:last-child) {
  margin-right: 6rem;
}
.row .col-1-of-2 {
  width: calc((100% - 6rem) / 2);
}
.row .col-1-of-3 {
  width: calc((100% - 2 * 6rem) / 3);
}
.row .col-2-of-3 {
  width: calc(2 * ((100% - 2 * 6rem) / 3) + 6rem);
}
.row .col-1-of-4 {
  width: calc((100% - 3 * 6rem) / 4);
}
.row .col-2-of-4 {
  width: calc(2 * ((100% - 3 * 6rem) / 4) + 6rem);
}
.row .col-3-of-4 {
  width: calc(3 * ((100% - 3 * 6rem) / 4) + 2 * 6rem);
}

/* CSS de base */
header {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  color: white;
  background: url("../images/club-le-pradet-var.jpg") no-repeat;
  background-size: cover;
}

.page_secondaire {
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
}

#bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
  transform: translate(-50%, -50%);
  background: url("club-le-pradet-var.jpg") no-repeat;
  background-size: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  position: relative;
  z-index: 3;
}

.logo img {
  height: 50px;
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin: 0 15px;
  padding: 5px;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-size: 16px;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #f0f0f0;
}

.logo_accueil {
  width: 25%;
  height: auto;
  animation: AmineSlogan 2s ease-in-out;
}

.header-content {
  width: 100%;
  position: absolute;
  bottom: 100px;
  text-align: center;
  z-index: 2;
}

.header-content h1 {
  font-size: 4rem;
  text-transform: uppercase;
  animation-name: moveInLeft;
  animation-duration: 5s;
  animation-timing-function: ease-in-out;
}

.header-content h2 {
  font-size: 5rem;
  text-transform: uppercase;
  letter-spacing: 1.75rem;
  animation-name: moveInRight;
  animation-duration: 5s;
  animation-timing-function: ease-in-out;
}

.header-content p {
  width: 90%;
  margin: auto;
  font-size: 1.4rem;
  margin-top: 20px;
  padding: 10px;
}

/* Menu burger */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle .bar {
  width: 25px;
  height: 3px;
  background-color: #1C1E21;
  margin: 4px 0;
  transition: 0.4s;
}

.wave {
  position: absolute;
  width: 100%;
  height: 143px;
  bottom: 0;
  left: 0;
  background: url(../images/club-pradet/wave.png);
  animation: animate 10s linear infinite;
  z-index: 2;
}

.wave::before {
  content: "";
  width: 100%;
  height: 143px;
  background: url(../images/club-pradet/wave.png);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.4;
  animation: animate-inverse 10s linear infinite;
  z-index: 2;
}

.wave::after {
  content: "";
  width: 100%;
  height: 143px;
  background: url(../images/club-pradet/wave.png);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.6;
  animation-delay: -5s;
  animation: animate 20s linear infinite;
  z-index: 2;
}

.btnadherent {
  padding: 5px;
  background: #B8D3DE;
  border-radius: 5px;
}

.btnadherent a {
  color: #000;
}

/* Styles responsives */
@media (max-width: 768px) {
  .navbar {
    width: 100%;
  }
  .navbar.active {
    height: 600px;
  }
  .header-content h1 {
    font-size: 2rem;
  }
  .header-content h2 {
    font-size: 2.5rem;
  }
  .nav-links {
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: -100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    transition: 0.5s;
  }
  .nav-links.active {
    left: 0;
  }
  .nav-links li {
    margin: 20px 0;
    padding-left: 20px;
  }
  .nav-links:hover li {
    margin: 20px 0;
    padding-left: 20px;
    color: #B8D3DE;
  }
  .menu-toggle {
    display: flex;
  }
  .header-content h1 {
    font-size: 2.5rem;
  }
  .header-content p {
    font-size: 0.8rem;
    text-align: justify;
  }
}
footer {
  width: 100%;
  background-color: #50545c;
}

.main-content {
  display: flex;
}

.main-content .box {
  flex-basis: 50%;
  padding: 10px 20px;
}

.footer__logo {
  width: 150px;
  margin-top: 1rem;
}

.box h2 {
  font-family: Poppins, sans-serif;
  margin-top: 3rem;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
}

.box p {
  font-family: Poppins, sans-serif;
  margin-top: 1rem;
  color: #fff;
  font-size: 1rem;
}

.box .content {
  margin: 20px 0 0 0;
  position: relative;
}

.box .content:before {
  position: absolute;
  content: "";
  top: -10px;
  height: 2px;
  width: 100%;
  background: #fff;
}

.box .content:after {
  position: absolute;
  content: "";
  height: 2px;
  width: 15%;
  background: #B8D3DE;
  top: -10px;
}

.left .content p {
  color: #fff;
  text-align: left;
  width: 80%;
}

.center .content .social {
  margin: 20px 0 0 0;
  text-align: center;
}

.center .content .social a {
  padding: 0 10px;
}

.center .content .social a span {
  height: 50px;
  width: 50px;
  color: #fff;
  background-color: #B8D3DE;
  line-height: 50px;
  text-align: center;
  font-size: 18px;
  border-radius: 5px;
  transition: 0.3s;
}

.center .content .social a span:hover {
  color: #B8D3DE;
  background-color: #fff;
}

.right .liens a span {
  color: #fff;
  font-size: 1.2rem;
}

.right .liens a {
  text-decoration: none;
}

.right .liens a span:hover {
  color: #B8D3DE;
}

.bottom center {
  padding: 5px;
  font-size: 1rem;
  background: #fff;
}

.bottom center span {
  color: #B8D3DE;
  font-size: 1rem;
}

.bottom center a {
  font-size: 1rem;
  color: #50545c;
  text-decoration: none;
}

.bottom center a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 900px) {
  footer {
    position: relative;
    bottom: 0px;
  }
  .main-content {
    flex-wrap: wrap;
    flex-direction: column;
  }
  .main-content .box {
    margin: 5px 0;
    padding: 10px 10px;
  }
  .left .content p {
    width: 100%;
  }
}
.home {
  padding: 0;
}

.home .box {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-size: cover !important;
  background-position: center !important;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 2rem 9%;
}

.home .box.second {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.home .box .content {
  width: 50rem;
}

.home .box .content span {
  font-size: 4rem;
  color: #1C1E21;
}

.home .box .content h3 {
  font-size: 6rem;
  color: #B5B6B8;
  padding-top: 0.5rem;
  text-transform: uppercase;
}

.home .box .content p {
  line-height: 2;
  color: #1C1E21;
  font-size: 1.5rem;
  padding: 1rem 0;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 3rem;
  color: #1C1E21;
}

.about {
  background: #eee;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 2rem;
}

.about .image {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 42rem;
  flex: 1 1 42rem;
  padding-right: 5rem;
  padding-bottom: 5rem;
}

.about .image img {
  width: 100%;
  -webkit-box-shadow: 4rem 4rem 0 rgba(0, 0, 0, 0.1);
  box-shadow: 4rem 4rem 0 rgba(0, 0, 0, 0.1);
}

.about .content {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 42rem;
  flex: 1 1 42rem;
}

.about .content h3 {
  font-size: 3rem;
  color: #B5B6B8;
}

.about .content p {
  font-size: 1.5rem;
  color: #1C1E21;
  padding: 1rem 0;
  line-height: 2;
}

.clubs {
  width: 100%;
  margin: 20px;
  background: #1C1E21;
}

.lesclubs {
  width: 90%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.logoclubs {
  width: 300px;
  margin: auto;
  text-align: center;
}

.logoclubs img {
  width: 250px;
  height: auto;
}

.logoclubs h3 {
  font-size: 3rem;
  color: grey;
  text-align: center;
}

.newsletter {
  background: #eee;
}

.newsletter .content {
  max-width: 70rem;
  margin: 1rem auto;
  text-align: center;
}

.newsletter .content p {
  font-size: 1.5rem;
  line-height: 2;
  color: #1C1E21;
}

.newsletter .content form {
  margin-top: 2rem;
  background: #fff;
  border-radius: 5rem;
  border: 0.2rem solid #1C1E21;
  padding: 0.7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.newsletter .content form .email {
  width: 100%;
  background: none;
  text-transform: none;
  font-size: 1.6rem;
  color: #1C1E21;
  padding: 0 1.3rem;
}

.newsletter .content form .btn {
  margin-top: 0;
  border-radius: 5rem;
  background: #1C1E21;
  color: #fff;
}

.newsletter .content form .btn:hover {
  background: none;
  color: #1C1E21;
}

.packages {
  background: #eee;
}

.packages .box-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(22rem, 1fr) [auto-fit];
  grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr));
  gap: 1.5rem;
}

.packages .box-container .box {
  text-align: center;
  background: #fff;
  border: 0.2rem solid #1C1E21;
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
}

.packages .box-container .box:hover {
  background: #1C1E21;
}

.packages .box-container .box:hover .content > * {
  color: #fff;
}

.packages .box-container .box:hover .btn {
  border-color: #fff;
}

.packages .box-container .box:hover .btn:hover {
  background: #fff;
  color: #1C1E21;
}

.packages .box-container .box .image {
  height: 25rem;
  overflow: hidden;
  padding: 2rem;
  padding-bottom: 0;
  border-radius: 0.5rem;
}

.packages .box-container .box .image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 0.5rem;
}

.packages .box-container .box .content {
  padding: 2rem;
}

.packages .box-container .box .content h3 {
  font-size: 1.5rem;
  color: #1C1E21;
}

.packages .box-container .box .content p {
  font-size: 1rem;
  color: #1C1E21;
  padding: 1rem 0;
  line-height: 2;
}

.packages .box-container .box .content .price {
  font-size: 2rem;
  color: #B5B6B8;
}

.presentation_content {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
}

.presentation_content .box_text p {
  padding: 10px 20px;
  font-size: 1.2rem;
  text-align: justify;
}

.slogan__paragraphe {
  width: 80%;
  margin-left: 10%;
  position: absolute;
  bottom: 100px;
  background: rgba(0, 0, 0, 0.4);
  padding: 30px;
}

.slogan__paragraphe p {
  font-size: large;
  font-weight: 500;
  color: #B5B6B8;
}

#slider {
  position: relative;
  width: 100%;
  height: auto; /* Full viewport height */
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.img-clublepradet {
  width: 800px;
  height: 600px;
  overflow: hidden;
}

.book-cards {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
  position: relative;
  padding: 50px;
}

.book-card {
  margin-top: 20px;
  background-color: #B8D3DE;
  height: 270px;
  box-shadow: -1px 3px 8px -1px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  padding: 0 0 20px 20px;
  color: #fff;
}

.book-card h2 {
  font-size: 1.2rem;
}

.book-card-img {
  width: 160px;
  height: 160px;
  margin-top: -35px;
  border-radius: 2px;
  box-shadow: 0px 1px 7px 2px #1C1E21;
  border-bottom: 1px solid #1C1E21;
  object-fit: cover;
  margin-bottom: 20px;
  transition: 0.3s ease;
}

.book-card-img:hover {
  transform: scale(1.04);
}

.card-content {
  color: #1C1E21;
  padding: 30px;
  overflow: hidden;
  position: relative;
}

.book-name {
  font-size: 1rem;
  font-weight: 500;
  text-overflow: ellipsis;
}

.book-by {
  font-size: 13px;
  color: #1C1E21;
  margin-top: 4px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.book-rate > label {
  color: #1C1E21;
}

.rate {
  display: inline-block;
  white-space: nowrap;
}

.book-rate > input:checked ~ label,
.book-rate:not(:checked) > label:hover,
.book-rate:not(:checked) > label:hover ~ label {
  color: #ff9700;
}

.book-rate > input:checked + label:hover,
.book-rate > input:checked ~ label:hover,
.book-rate > label:hover ~ input:checked ~ label,
.book-rate > input:checked ~ label:hover ~ label {
  color: #ff9700;
}

.book_footer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
}

.card-vote {
  color: #1C1E21;
}

.card-sum {
  color: #1C1E21;
  font-size: 13px;
  line-height: 1.6em;
  -webkit-line-clamp: 4;
  margin-top: 15px;
}

.content-wrapper {
  width: 500px;
  display: flex;
  border-bottom: 1px solid #1C1E21;
  position: relative;
}

.content-wrapper:before {
  content: "";
  position: absolute;
  background-color: #8f98a9;
  background-color: #aaaebc;
  box-shadow: 0 -6px 0 0 #aaaebc, 0 6px 0 0 #aaaebc;
  width: 4px;
  height: 4px;
  border: 0;
  padding: 0;
  right: 12px;
  top: 17px;
  border-radius: 50%;
  margin-left: auto;
}

.presentation_content {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  padding: 30px;
}

@media screen and (max-width: 500px) {
  .book-cards {
    flex-direction: column;
    padding: 0;
    gap: 20px;
  }
  .book-card {
    width: 100%;
    height: auto;
    padding: 0;
    margin-top: 50px;
    margin-bottom: 30px;
  }
  .img-clublepradet {
    width: 300px;
    height: auto;
    margin: auto;
  }
  .thumb {
    width: 300px;
    margin: auto;
  }
  .content-wrapper {
    flex-direction: column;
    width: 100%;
    height: auto;
    align-items: center;
  }
  .content-wrapper {
    flex-direction: column;
  }
  .card-content {
    width: 100%;
  }
  .book_footer {
    flex-direction: column;
  }
  .presentation_content .box_text p {
    font-size: 1rem;
    padding: 5px;
  }
  .card-sum {
    width: 100%;
  }
}
.evenements, .actualites {
  width: 90%;
  margin: auto;
  background-image: radial-gradient(circle at 13% 47%, rgba(140, 140, 140, 0.03) 0%, rgba(140, 140, 140, 0.03) 25%, transparent 25%, transparent 100%), radial-gradient(circle at 28% 63%, rgba(143, 143, 143, 0.03) 0%, rgba(143, 143, 143, 0.03) 16%, transparent 16%, transparent 100%), radial-gradient(circle at 81% 56%, rgba(65, 65, 65, 0.03) 0%, rgba(65, 65, 65, 0.03) 12%, transparent 12%, transparent 100%), radial-gradient(circle at 26% 48%, rgba(60, 60, 60, 0.03) 0%, rgba(60, 60, 60, 0.03) 6%, transparent 6%, transparent 100%), radial-gradient(circle at 97% 17%, rgba(150, 150, 150, 0.03) 0%, rgba(150, 150, 150, 0.03) 56%, transparent 56%, transparent 100%), radial-gradient(circle at 50% 100%, rgba(25, 25, 25, 0.03) 0%, rgba(25, 25, 25, 0.03) 36%, transparent 36%, transparent 100%), radial-gradient(circle at 55% 52%, rgba(69, 69, 69, 0.03) 0%, rgba(69, 69, 69, 0.03) 6%, transparent 6%, transparent 100%), linear-gradient(90deg, rgb(181, 182, 184), rgb(181, 182, 184));
}

/* Section Slogan Parallax */
.slogan-parallax {
  width: 100%;
  padding: 50px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(255, 255, 255, 0.5)), url(../images/background-membre.jpg);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.mauboussin-parallax {
  width: 100%;
  height: 45vh;
  padding: 50px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(255, 255, 255, 0.5)), url(../images/castel-nauboussin.png);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.soiree-partenaire-parallax {
  width: 100%;
  padding: 50px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(255, 255, 255, 0.5)), url(../images/soiree-des-partenaires.jpg);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.mauboussin-parallax .logo, .soiree-partenaire-parallax .logo {
  width: 350px;
  padding: 10px;
}

.slogan-parallax h2, .mauboussin-parallax h2, .soiree-partenaire-parallax h2 {
  font-size: 30px;
  font-weight: 300;
  color: #fff;
  text-align: center;
}

.mauboussin-parallax p {
  background: rgba(255, 255, 255, 0.5);
  padding: 10px;
}

.soiree-partenaire-parallax .textbox {
  width: 40%;
  margin: auto;
  background: rgba(255, 255, 255, 0.2);
  padding: 20px;
  border-radius: 20px;
}

.soiree-partenaire-parallax p {
  padding: 10px;
  text-align: justify;
}

.slogan-parallax a, .mauboussin-parallax a, .soiree-partenaire-parallax a {
  border-radius: 10px;
  background: #B8D3DE;
  color: #f1f1f1;
  text-align: center;
  font-size: 18px;
  display: block;
  width: 300px;
  height: 65px;
  line-height: 65px;
  text-decoration: none;
  margin: 30px auto 0;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.slogan-parallax a:hover, .mauboussin-parallax a:hover {
  color: #fff;
}

.inscription {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.carte_partenaire, .carte_membre {
  width: 60%;
  margin: auto;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 20px;
  margin-bottom: 10px;
}

.carte_partenaire h3, .carte_membre h3 {
  font-size: 25px;
  background: #B8D3DE;
  padding: 10px;
  margin-bottom: 10px;
}

.carte_partenaire p, .carte_membre p {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}

@media screen and (max-width: 500px) {
  .mauboussin-parallax, .soiree-partenaire-parallax {
    width: 100%;
    height: auto;
  }
  .slogan-parallax h2, .mauboussin-parallax h2, .soiree-partenaire-parallax h2 {
    font-size: 2rem;
  }
  .inscription {
    flex-direction: column;
  }
  .slogan-parallax a, .mauboussin-parallax a, .soiree-partenaire-parallax a {
    font-size: 14px;
  }
  .carte_partenaire, .carte_membre, .soiree-partenaire-parallax {
    width: 100%;
  }
  .soiree-partenaire-parallax .textbox {
    width: 100%;
  }
}
.profile, .structure {
  display: flex;
  align-items: start;
  justify-content: stretch;
  padding: 25px;
  gap: 30px;
}

.club {
  background-color: #B8860B;
  border-radius: 20px;
  padding: 25px;
}

.boxtextprofile {
  width: 100%;
  margin-right: 50px;
}

.profilePhotoLink {
  display: inline-block;
  text-decoration: none;
  margin: 10px;
  padding: 10px;
  background-color: #B8D3DE;
  color: #1C1E21;
}

.entete_profile {
  background-color: #B8D3DE;
  color: #1C1E21;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 20px;
}

.entete_profile img {
  width: 150px;
}

.adherent_action {
  width: 100%;
  padding: 10px;
}

.boxtextstructure {
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: stretch;
  gap: 30px;
}

.profile p, .structure p {
  font-size: 1rem;
  padding: 3px;
}

.profile h2, .structure h2 {
  font-size: 1.2rem;
}

.boximageporfile {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.boximageporfile img {
  width: 200px;
}

.entete_profile .boxtext {
  width: 100%;
  text-align: right;
}

.entete_profile .boxtext h1 {
  font-size: 3rem;
}

.entete_profile .boxtext p {
  font-size: 1rem;
}

.boxtextprofile h2 {
  color: #1C1E21;
  background: #B8D3DE;
  padding: 10px;
  margin-bottom: 30px;
}

.boxtextprofile p, .descriptif p {
  font-size: 1rem;
  text-align: justify;
}

.descriptif {
  padding: 20px;
  width: 100%;
}

.descriptif h2 {
  color: #1C1E21;
  background: #B8D3DE;
  padding: 10px;
  margin-bottom: 30px;
}

.boxtextprofile strong {
  width: 200px;
  display: block;
}

.libelle {
  font-weight: 800;
  color: #B8D3DE;
}

@media screen and (max-width: 500px) {
  .presentation_content {
    flex-direction: column;
  }
  .profile, .structure {
    flex-direction: column;
  }
  .boximageporfile img {
    width: 100%;
  }
  .entete_profile {
    flex-direction: column;
  }
  .entete_profile .boxtext h1 {
    font-size: 2rem;
    text-align: center;
  }
  .entete_profile .boxtext p {
    font-size: 1rem;
    text-align: left;
    padding-left: 20px;
  }
  .profile p, .structure p {
    font-size: 1rem;
  }
  .boxtextprofile p, .descriptif p {
    font-size: 1rem;
    text-align: justify;
  }
  .descriptif {
    width: 100%;
  }
}
.adherent_action {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.section-adherent {
  width: 60%;
  margin: auto;
}

.new_adherent {
  width: 60%;
  margin: auto;
  padding: 20px;
}

/*# sourceMappingURL=tams-editions.css.map */
