/*génerale*/
* {
	font-family: 'Montserrat', sans-serif;
}

/*NavBar*/
/*Style pour les liens de navigation*/
.navbar-nav a {
	font-size: 15px;
	text-transform: uppercase;
	font-weight: 500;
}

.navbar-light .navbar-brand {
	color: rgb(231, 220, 220);
	font-size: 25px;
	text-transform: uppercase;
	font-weight: 900;
	letter-spacing: 2px;
}

/*styles span 1*/
.navbar-light .navbar-brand span {
	color: rgb(33, 144, 175)
}

/*styles survol et focus */
.navbar-light .navbar-brand:focus,
.navbar-light .navbar-brand:hover {
	color: #000;
}

.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
	color: rgb(33, 144, 175);
}

/*styles liens navigations*/
.navbar-light .navbar-nav .nav-link {
	color: rgb(0, 0, 0);
}

/*Ajuster hauteur */
.w-100 {
	height: 100vh;
}

/*style pour les button bascule*/
.navbar-toggler {
	width: 200px;
	padding: 1px 5px;
	margin-right: 30px;
	font-size: 18px;
	line-height: 0.3;
	background: #fff;
}

.navbar-toggler:hover {
	background-color: rgb(33, 144, 175);
}

/*Carousel*/
.carousel-item img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.carousel-item {
	height: 100vh;
	min-height: 300px;
}

.carousel-caption {
	bottom: 220px;
	z-index: 2;
}

.carousel-caption h5 {
	font-size: 45px;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-top: 25px;
}

.carousel-caption p {
	width: 60%;
	margin: auto;
	font-size: 18px;
	line-height: 1.9;
}

.carousel-caption a {
	text-transform: uppercase;
	text-decoration: none;
	background: rgb(33, 144, 175);
	padding: 5px 20px;
	display: inline-block;
	color: #fff;
	margin-top: 15px;
	border-radius: 5px;
}

.carousel-inner:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.6);
	z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
	margin-top: 10rem;
	/* fléche caroussel*/
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
	background: transparent;
}

@media only screen and (max-width: 767px) {
	.navbar-nav {
		text-align: center;
	}

	.carousel-caption {
		bottom: 270px;
	}

	.carousel-caption h5 {
		font-size: 17px;
	}

	.carousel-caption a {
		padding: 10px 15px;
		font-size: 15px;
	}

	.navbar .getstarted {
		display: none;
	}
}


/* Style de la section d'équipe */
.team-section {
	background: #BCBCBC;
	;
}

/* Marge supérieure pour les conteneurs */
.containers {
	margin-top: 50px;
}

/* Style des éléments individuels d'équipe */
.single-team {
	position: relative;
	width: auto;
	height: 500px;
	background-size: cover;
	background-position: center;
	overflow: hidden;
	box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.3);
}

/* Pseudo-élément : avant l'effet de survol */
.single-team:before {
	content: "";
	width: 100%;
	height: 100%;
	background: #161619;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	transition: all .35s ease 0s;
}

/* Effet de survol : pseudo-élément avant */
.single-team:hover:before {
	opacity: 1;
}

/* Contenu de l'élément individuel d'équipe */
.single-team .content {
	width: 90%;
	height: 90%;
	position: absolute;
	top: 5%;
	left: 5%;
}

/* Pseudo-éléments après et avant le contenu */
.single-team .content:after,
.single-team .content:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	opacity: 0;
	transition: all .7s ease 0s;
}

/* Pseudo-élément avant le contenu */
.single-team .content:before {
	border-bottom: 10px double rgba(255, 255, 255, .5);
	border-top: 10px double rgba(255, 255, 255, .5);
	transform: scale(0, 1);
	transform-origin: 0 0 0;
}

/* Pseudo-élément après le contenu */
.single-team .content:after {
	border-left: 10px double rgba(255, 255, 255, .5);
	border-right: 10px double rgba(255, 255, 255, .5);
	transform: scale(1, 0);
	transform-origin: 100% 0 0;
}

/* Effet de survol : pseudo-éléments après et avant */
.single-team:hover .content:after,
.single-team:hover .content:before {
	opacity: 1;
	transform: scale(1);
	transition-delay: .15s;
}

/* Style du titre h3 */
.single-team h3 {
	font-size: 31px;
	font-weight: 700;
	color: #fff;
	margin: 160px 0;
	opacity: 0;
	transform: translate3d(0, -50px, 0);
	transition: transform .5s ease 0s;
	text-align: center;
	line-height: 1.4;
	font-family: 'Alfa Slab One', cursive;
	text-transform: uppercase;
}

/* Style du sous-titre dans le titre h3 */
.single-team h3 span {
	font-family: 'Montserrat', sans-serif;
	font-size: 18px;
	display: block;
	letter-spacing: 5px;
	opacity: .5;
}

/* Effet de survol sur le titre h3 */
.single-team:hover h3 {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

/* Media query pour les écrans jusqu'à 991px de largeur */
@media (max-width: 991px) {
	.single-team {
		margin-bottom: 30px;
	}
}

/* Style par défaut pour les balises <section> */
section {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 110px 100px;
	color: #000;
}

/* Media query pour les écrans jusqu'à 1000px de largeur */
@media (max-width: 1000px) {
	section {
		padding: 100px 50px;
	}
}

/* Media query pour les écrans jusqu'à 600px de largeur */
@media (max-width: 600px) {
	section {
		padding: 125px 30px;
	}
}


/*about area*/
ul.about-content {
	width: 100%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	list-style: none;
}

.about-area {
	background: #BCBCBC;
}

.wellness-area {
	margin-top: 800px;
	/* Ajoute un espace de 20px au-dessus de l'élément */
	margin-bottom: 100px;
	/* Ajoute un espace de 20px en dessous de l'élément */
}



.about-area2 {
	background: #B2A5A0;
}

.about-content li {
	padding: 20px;
	height: 620px;
	background-clip: content-box;
	-webkit-background-size: cover;
	background-size: cover;
	background-position: center;
}

.about-left {
	flex-basis: 30%;
	background-image: url(photo/oum/salon/3.jpg);
}

.about-left2 {
	flex-basis: 30%;
	background-image: url(photo/oum/chien/1chat.png);
}

.about-left3 {
	flex-basis: 30%;
	background-image: url(photo/oum/salon/4.jpg);
}

.about-right2 {
	flex-basis: 48%;
	background-image: url(photo/oum/chien/21.jpg);
}



.about-right {
	flex-basis: 70%;
}

.about-right h2 {
	font-size: 35px;
}




.about-area p {
	max-width: 800px;
	margin-bottom: 35px;
	line-height: 1.5;
	text-align: left;
	padding-left: 0;
}

.section-title {
	text-transform: uppercase;
	font-size: 50px;
	margin-bottom: 5%;
}

.section-title span {
	color: #bf0a30;
}

.about-right h2 {
	margin-bottom: 3%;
}

.about-btn {
	padding: 15px 35px;
	background: #bf0a30;
	border-radius: 50px;
	text-transform: uppercase;
	color: #fff;
}

@media (max-width: 1000px) {
	.section-title {
		font-size: 35px;
	}

	.about-left,
	.about-right {
		flex-basis: 100%;
	}

	.about-content li {
		padding: 8px;
	}
}

/*msg area*/
.msg-area {
	background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(photo/12.jpg);
	-webkit-background-size: cover;
	background-size: cover;
	background-position: center center;
	background-attachment: fixed;
	color: #fff;
	text-align: center;
	filter: brightness(0.8);
}




/*.gallery*/
/* Réduire l'espace sous la galerie */
.gallery {
	margin-bottom: -250px;
	/* Ajoutez ou ajustez la marge selon vos besoins */
}

.gallery img {
	width: 100%;
	height: 400px;
	object-fit: cover;
}

.gallery {
	width: 100%;
	display: block;
	min-height: 100vh;
	background-color: #B2A5A0;
	padding: 100px 0;
}

.gallery .gallery-filter {
	padding: 0 15px;
	width: 100%;
	text-align: center;
	margin-bottom: 20px;
}

.gallery .gallery-filter .filter-item {
	color: black;
	font-size: 18px;
	font-weight: 450;
	text-transform: uppercase;
	display: inline-block;
	margin: 0 10px;
	cursor: pointer;
	border-bottom: 2px solid transparent;
	line-height: 1.2;
	transition: all 0.3s ease;
}

.gallery .gallery-filter .filter-item.active {
	color: #ff9800;
	border-color: #ff9800;
}

.gallery .gallery-item {
	width: calc(100% / 3);
	padding: 15px;
}

.gallery .gallery-item-inner img {
	width: 100%;
}

.gallery .gallery-item.show {
	animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

.gallery .gallery-item.hide {
	display: none;
}

/*responsive*/
@media(max-width: 991px) {
	.gallery .gallery-item {
		width: 50%;
	}
}

@media(max-width: 767px) {
	.gallery .gallery-item {
		width: 100%;
	}

	.gallery .gallery-filter .filter-item {
		margin-bottom: 10px;
	}
}


/*nos services*/
.services {
	margin-top: 20px;
	margin: 90px auto;
	text-align: center;
}

h1 {

	font-family: sans-serif;
	letter-spacing: 1px;
}

.titre-services {
	padding-top: 40px;
}

h1::after {
	content: '';
	background: rgb(102, 15, 15);
	display: 150px;
	width: 150px;
	margin: 10px auto;
	height: 3px;
}

.custom-container {
	padding-top: 1px;
	height: 700px;
}

.service-image {
	background-color: black;
	width: 140px;
	height: 140px;
	margin: 20px auto;
	padding: 20px;
	border-radius: 50%;
}

/*calendly*/
.calendly-inline-widget {
	background: #BCBCBC;
	overflow: hidden;
	padding-top: 40px;
	padding-bottom: 40px;
}


.navbar-brand img {
	max-width: 120px;
	/* Adjust the value according to your needs */
	height: auto;
	/* This ensures that the image maintains its aspect ratio */
}

#contact {
	background-color: #BCBCBC;
	color: #000000;
	/* Couleur du texte sur le fond, ici blanc */
	padding: 80px 0;
	/* Espacement interne pour améliorer l'apparence */
}

.gallery-item-inner img {
	width: 100%;
	height: auto;
	object-fit: cover;
	aspect-ratio: 1 / 1;
	/* Ratio d'aspect carré (largeur/hauteur) */
}



.gallery-item-inner video {
	max-width: 100%;
	height: auto;
}



.max-width-image {
	width: 600px;
	/* Largeur souhaitée */
	height: auto;
	/* Pour maintenir les proportions de l'image */
	display: block;
	/* Pour éviter tout comportement inattendu avec des marges */
	margin: 0 auto;
	/* Pour centrer l'image horizontalement */
}


.list-tarif-desc {
	list-style: decimal;
	padding-left: 1.5em;
}

.list-tarif-desc li {
	margin-bottom: 0.5em;
}

.list-tarif-desc b {
	font-weight: 500;
	font-size: 18px;
	cursor: pointer;

}
.card-header b{
	font-weight: 600;
	font-size: 20px;
}

.highlight {
    color: red;
    font-weight: bold;
}

