html, body {
	background-color: #040011;
	padding: 0 10px;
}

h1 {
	display: block;
	font-size: 1.6em;
	text-decoration: underline;
	margin: 20px 0 30px 0;
}

h2 {
	display: block;
	font-size: 1.2em;
	margin-bottom: 15px;
}

h3 {
	display: block;
	font-size: 1.2em;
	margin-bottom: 15px;
}

li {
	list-style: none;
}


.container {
	padding-left: 0;
	padding-right: 0;
	padding-bottom: 50px;
}
.banner {
	border: 4px solid #d9e4e8;
}

span.subtitle {
	display: block;
	font-weight: bold;
	margin: 10px 0;
}



.my-navbar {
	background-color: #040011;
	border-bottom: 1px solid #e2e1df;
	padding-left: 0;
	padding-right: 0;
	margin-left: 0;
	margin-right: 0;
}

.company{
	line-height: 40px;
}

.my-navbar-brand {
	font-size: 1.15rem;
}

.navbar-dark .navbar-nav .nav-link {
    color: white;
}

.menu-logo {
	height: 40px;
}

.content-box {
	background-color: transparent;
}

.logo {
	margin-top: 20px;
	width: 200px;
}

.content {
	padding: 20px 5px;
	text-align: center;
	color: #e2e1df;
}
.contentLeft p, .contentLeft h2, .contentLeft h3, .contentLeft li{
	text-align: center !important;
}
.contentLeft h2{
	color: #f1e4b6;
}
.contentLeft h3{
	color: #c1b392;
}
.contentLeft li::before {
  content: "• ";
  color: #FFF; /* or whatever color you prefer */
}
.highlight {
	font-size: 2rem;
	font-weight: bold;
}

@media (min-width: 768px) and (max-width: 991px) {
	
	.menu-logo {
		height: 75px;
	}

	.company {
		line-height: 75px;
	}

	.my-navbar-brand {
		font-size: 1.20rem;
	}

	.logo {
		width: 1;
		height: 300px;
		margin-right: 20px;
		margin-top: 0;
		margin-bottom: 100px;
	}

	h1 {
		font-size: 1.8em;
	}

	h2 {
		font-size: 1.6em;
	}

	h3 {
		font-size: 1.4em;
	}

	.content {
		min-width: 300px;
		padding: 25px 0;
		text-align: center;
	}

}

@media (min-width: 992px) {
	
	.menu-logo {
		height: 80px;
	}

	.company {
		line-height: 80px;
	}

	.my-navbar-brand {
		font-size: 1.25rem;
	}

	.logo {
		width: 300px;
		margin-right: 20px;
		margin-top: 0;
		margin-bottom: 100px;
	}

	h1 {
		font-size: 1.8em;
	}

	h2 {
		font-size: 1.6em;
	}

	h3 {
		font-size: 1.4em;
	}	

	.content {
		min-width: 300px;
		padding: 25px 0;
		text-align: center;
	}
}

.my-btn-contact { 
  color: #3A373E; 
  background-color: #E2E1DF; 
  border-color: #000000; 
} 
 
.my-btn-contact:hover, 
.my-btn-contact:focus, 
.my-btn-contact:active, 
.my-btn-contact.active, 
.open .dropdown-toggle.my-btn-contact { 
  color: #3A373E; 
  background-color: #CFCECB; 
  border-color: #000000; 
} 
 
.my-btn-contact:active, 
.my-btn-contact.active, 
.open .dropdown-toggle.my-btn-contact { 
  background-image: none; 
} 
 
.my-btn-contact.disabled, 
.my-btn-contact[disabled], 
fieldset[disabled] .my-btn-contact, 
.my-btn-contact.disabled:hover, 
.my-btn-contact[disabled]:hover, 
fieldset[disabled] .my-btn-contact:hover, 
.my-btn-contact.disabled:focus, 
.my-btn-contact[disabled]:focus, 
fieldset[disabled] .my-btn-contact:focus, 
.my-btn-contact.disabled:active, 
.my-btn-contact[disabled]:active, 
fieldset[disabled] .my-btn-contact:active, 
.my-btn-contact.disabled.active, 
.my-btn-contact[disabled].active, 
fieldset[disabled] .my-btn-contact.active { 
  background-color: #E2E1DF; 
  border-color: #000000; 
} 
 
.my-btn-contact .badge { 
  color: #E2E1DF; 
  background-color: #3A373E; 
}

/*
.grecaptcha-badge { 
visibility: hidden; 
}*/
.grecaptcha-badge {
    position: fixed;
    bottom: 10px;
    left: 10px;
    z-index: 1000;
}


.services-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 colonnes sur la ligne du haut */
    grid-template-rows: auto;
    gap: 20px;
    padding: 20px;
}

.service-block {
	margin-bottom: 20px;
    background-color: #040011;
    border: 1px solid #f5f5dc;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
	font-size: 14px;
}
.service2 {
    padding: 0 10px 20px !important;
}
.service2 p{
    padding: 10px;
}
.service2 .service-image {
    border-radius: 10px 10px 0 0;
}
.service-block:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 40px;
    color: #f1e4b6;
    margin-bottom: 20px;
}

.service-image {
    width: 100%;        /* L'image prend toute la largeur du bloc */
    max-height: 190px;      /* Hauteur fixe à 200px */
    object-fit: cover;  /* Coupe l'image pour garder le centre */
    margin-bottom: 20px;
    border-radius: 10px; /* Optionnel : arrondi des coins si souhaité */
}

.services-section h3 {
    margin-bottom: 15px;
    font-size: 20px;
    color: #f1e4b6;
}

.services-section p {
    color: #FFF;
    line-height: 1.6;
    flex-grow: 1;
}

/* Spécifique à la disposition de 5 blocs : 3 blocs sur la première ligne, 2 sur la deuxième */
.services-section > div:nth-child(4),
.services-section > div:nth-child(5) {
    grid-column: span 1 / span 2;
}












/* Responsive pour mobile : 1 bloc par ligne */
@media (max-width: 768px) {
    .services-section {
        grid-template-columns: 1fr;
    }

    .services-section > div:nth-child(4),
    .services-section > div:nth-child(5) {
        grid-column: span 1;
    }
}