
html,
body {
	height: 100%;
	font-family: "Nunito Sans", sans-serif;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	padding-top: 0px;
}

.caroussel-willfitness{
    background-color: black;
    background-image: url('/img/clubs-clients/equinox/bann.png');
	background-repeat: no-repeat;
	background-size: contain;
	
   
}

.caroussel-willfitness h2{
    color: black;
    padding-top : 70px;
    text-transform: uppercase;
    font-weight: 800;
    color: white;
    text-align: center;
    font-size: 20pt;
}

.caroussel-willfitness img{
	display: block;
    margin: 0 auto;
	width: 50%;
	padding-bottom: 30px;
}

.caroussel-willfitness p{
    color: white;
    text-align: center;
    padding-top: 20px;
}


.carousel-item {
    border-top: 2px solid rgb(251, 222, 2);
}

/*---------------------
  AboutUs Section
-----------------------*/

.aboutus-section {
	background: white;
}

.aboutus-page-text .section-title {
	text-align: center;
}

.aboutus-page-text .section-title h2{
	color: black;
	font-weight: 800;
}

.aboutus-page-text img {
	margin-bottom: 54px;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* ratio 16:9 */
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.aboutus-page-text .about-us h4 {
	color: black;
	font-weight: 800;
	text-transform: uppercase;
	margin-bottom: 30px;
	font-size: 20pt;
}

.aboutus-page-text .about-us p {
	color: black;
	line-height: 26px;
}

.aboutus-page-text .about-quality h4 {
	color: black;
	font-weight: 500;
	text-transform: uppercase;
	margin-bottom: 30px;
	font-size: 20pt;
	font-weight: 800;
}

.aboutus-page-text .about-quality p {
	color: black;
	line-height: 22px;
}

.aboutus-page-text .about-quality ul li {
	list-style: none;
	font-size: 16px;
	color: black;
	line-height: 26px;
	margin-bottom: 10px;
}

.aboutus-page-text .about-quality ul li i {
	color: #e4381C;
	display: inline-block;
	margin-right: 9px;
}

/*---------------------
  Cta Section
-----------------------*/

.cta-section {
	background: #baa342;
}

.cta-section .cta-text {
	float: left;
}

.cta-section .cta-text h3 {
	color: black;
	text-transform: uppercase;
}

.cta-section .cta-text p {
	color: #ffffff;
	margin-bottom: 0;
}


/*---------------------
  Map Section
-----------------------*/

.map {
	height: 590px;
	position: relative;
}

.map iframe {
	width: 100%;
}



.cta-section-fin {
	background: black;
    width: 100%;
}

.cta-section-fin .cta-text {
	float: left;
}

.cta-section-fin .container .row .col-lg-12 .h3{

} 

.cta-section .cta-text p {
	color: #ffffff;
	margin-bottom: 0;
}

/* Container principal */
.contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Item de contact individuel */
.contact-item {
  display: flex;
  align-items: center;
  margin: 10px 15px;
  font-size: 18px;
}

/* Icônes */
.contact-item i {
  font-size: 30px;
  margin-right: 10px;
  color: #baa342;
}

/* Texte de contact */
.contact-text {
  font-size: 20px;
  color: white;
  font-weight: 500;
}

/* Responsivité : pour les petits écrans */
@media (max-width: 768px) {
  .contact-item {
    font-size: 16px;
    flex-basis: 100%; /* Chaque élément prendra toute la largeur */
    text-align: center;
    margin: 10px 0;
  }

  .contact-item i {
    font-size: 22px;
  }

  .contact-text {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .contact-item i {
    font-size: 20px;
  }

  .contact-text {
    font-size: 12px;
  }
}

/* Container principal des liens sociaux */
.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  border-top: 2px solid white;
}

/* Style des icônes sociales */
.social-item {
  font-size: 30px;
  color: white; /* Couleur de l'icône */
  transition: color 0.3s ease, transform 0.3s ease;
  text-decoration: none; /* Pas de soulignement */
}

.social-item:hover {
  color: rgb(251, 222, 2); /* Changer la couleur au survol */
  transform: scale(1.2); /* Agrandir légèrement au survol */
}

/* Responsivité pour les petits écrans */
@media (max-width: 768px) {
  .social-item {
    font-size: 28px; /* Taille réduite sur mobile */
  }
}

@media (max-width: 480px) {
  .social-item {
    font-size: 24px; /* Taille encore plus petite sur très petits écrans */
  }
}

