/*------------- polices ---------------------------------------------*/
/*----------------- playfair display --------------------------------*/
@font-face {
  font-family: "playfair-regular";
  src: url(../polices/playfair/PlayfairDisplay-Regular.woff2);
  font-weight: 400;
}
@font-face {
  font-family: "playfair-bold";
  src: url(../polices/playfair/PlayfairDisplay-Bold.woff2);
  font-weight: 700;
}
/*----------------- poppins --------------------------------*/
@font-face {
  font-family: "poppins-light";
  src: url(../polices/poppins/Poppins-Light.woff2);
  font-weight: 300;
}
@font-face {
  font-family: "poppins-regular";
  src: url(../polices/poppins/Poppins-Regular.woff2);
  font-weight: 400;
}
@font-face {
  font-family: "poppins-medium";
  src: url(../polices/poppins/Poppins-Medium.woff2);
  font-weight: 500;
}
@font-face {
  font-family: "poppins-bold";
  src: url(../polices/poppins/Poppins-Bold.woff2);
  font-weight: 700;
}
/*----------------- ubuntu --------------------------------*/
@font-face {
  font-family: "ubuntu-light";
  src: url(../polices/ubuntu/Ubuntu-Light.woff2);
  font-weight: 300;
}
@font-face {
  font-family: "ubuntu-regular";
  src: url(../polices/ubuntu/Ubuntu-Regular.woff2);
  font-weight: 400;
}
@font-face {
  font-family: "ubuntu-bold";
  src: url(../polices/ubuntu/Ubuntu-Bold.woff2);
  font-weight: 700;
}
@font-face {
  font-family: "anton";
  src: url(../polices/Anton/Anton-Regular.ttf);
  font-weight: 700;
}
* {
  margin: 0 ;
  padding: 0 ;
  box-sizing: border-box;
  scroll-behavior: smooth !important;
}

body {
  color: white;
}

.primary {
  color: var(--primary);
}

:root {
  --primary:#1a73a8;
  --clear-grey:#F0F0F0;
  --black: #000000;
  --pink:#0b3c67;
  --yellow: #ffde59;
  --police-text: "ubuntu-regular", sans-serif;
  --police-anton: "Anton", sans-serif;
  /*----------------------------------------------------------------------------Utils-----------------------------------------------------------------*/
  --shadow:rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

header {
  background-color: white;
  position: fixed;
  width: 100%;
  font-family: "poppins-regular";
  z-index: 999;
  display: flex;
  flex-direction: column;
  top: 0;
}
header .barre-top {
  width: 100%;
  display: flex;
  gap: 20px;
  background-color: var(--yellow);
  padding: 5px 30px;
}
@media screen and (max-width: 500px) {
  header .barre-top {
    gap: 15px;
	padding: 5px 10px;
  }
}
header .barre-top .mail-icon {
  display: flex;
  align-items: center;
  gap: 10px;
	font-size:14px;
}
header .barre-top .mail-icon a {
  	color: var(--pink);
	text-decoration:none;
	font-size:14px;
}

.link-number{
	position:relative;
}
.link-number::after{
	content:" ";
	width:0%;
	height:2px;
	background-color:var(--pink);
	position:absolute;
	bottom:0;
	left:0;
}
.link-number:hover::after{
	width:100%;
	transition: all 1s;
}
.link-email{
	position:relative;
}
.link-email::after{
	content:" ";
	width:0%;
	height:2px;
	background-color:var(--pink);
	position:absolute;
	bottom:0;
	left:0;
}
.link-email:hover::after{
	width:100%;
	transition: all 1s;
}

@media screen and (max-width: 705px) {
  header .barre-top .mail-icon {
    font-size: 12px;
  }
}

header .top-site {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 20px;
	min-height:110px;
}
@media screen and (max-width: 1200px) {
  header .top-site {
    justify-content: space-between;
  }
}
header .header-logo {
  	display: flex;
  	justify-content: start;
	position:absolute;
	z-index:999;
	margin-top:5px;
}
@media screen and (max-width: 500px) {
  header .header-logo {
    width: 100%;
  }
}
header .header-logo .img-logo {
  width: 150px;
}
@media screen and (max-width: 600px) {
  header .header-logo .img-logo {
    width: 120px;
  }
}
@media screen and (max-width: 500px) {
  header .header-logo .img-logo {
    width: 100px;
  }
}
header .header-logo .logo-prov {
  color: white;
}
header .navbar-block {
  width: 100%;
}


header .navbar-block .navbar .menu {
  display: flex;
  gap: 60px;
  list-style-type: none;
  color: var(--primary);
}
header .navbar-block .navbar .menu ul {
  display: flex;
  list-style-type: none;
  gap: 30px;
}
header .navbar-block .navbar .menu a {
  color: var(--primary);
  text-decoration: none !important;
  font-family: var(--police-anton), sans-serif;
  font-weight: 300;
  font-size: 15px;
  letter-spacing: 2px;
  transition: 0.5s all;
  position: relative;
}
header .navbar-block .navbar .menu a::after {
  content: "";
  position: absolute;
  background: var(--primary);
  width: 0%;
  bottom: -7px;
  left: 0;
  height: 2px;
  box-shadow: 4px 4px 7px 0px var(--primary);
  transition: all 0.8s;
}
header .navbar-block .navbar .menu a:hover::after {
  width: 100%;
}
header .navbar-block .navbar-mobile {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: var(--black);
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 30px;
  display: none;
  transition: all 1s;
  z-index: 999;
}
header .navbar-block .navbar-mobile .menu {
  display: flex;
  align-items: center;
  text-align: center;
  flex-direction: column;
  gap: 15px;
  color: white;
  list-style-type: none;
}
header .navbar-block .navbar-mobile .menu a {
  color: white;
  text-decoration: none !important;
  font-family: var(--police-anton), sans-serif;
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 2px;
  transition: 0.5s all;
  position: relative;
}
@media screen and (max-width: 500px) {
  header .navbar-block .navbar-mobile .menu a {
    font-size: 12px;
  }
}
header .navbar-block .navbar-mobile .menu a::after {
  content: "";
  position: absolute;
  background: var(--yellow);
  width: 0%;
  bottom: -7px;
  left: 0;
  height: 2px;
  box-shadow: 4px 4px 7px 0px rgba(68, 178, 95, 0.8);
  transition: all 0.8s;
}
header .navbar-block .navbar-mobile .menu a:hover::after {
  width: 100%;
}
header .navbar-block .navbar-mobile .icone-close-hamburger {
  position: absolute;
  top: 8%;
  right: 5%;
  cursor: pointer;
}
@media screen and (max-width: 500px) {
  header .navbar-block .navbar-mobile .icone-close-hamburger img {
    width: 25px;
  }
}
@media screen and (max-width: 500px) {
  header .navbar-block .navbar-mobile .icone-close-hamburger img {
    width: 25px;
  }
}
header .navbar-block .navbar-mobile .navbar-mobile-logo {
  display: inline-block;
}
header .navbar-block .navbar-mobile .navbar-mobile-logo .img-logo {
  width: 270px;
}
@media screen and (max-width: 500px) {
  header .navbar-block .navbar-mobile .navbar-mobile-logo .img-logo {
    width: 150px;
  }
}
header .navbar-block .navbar-mobile .navbar-mobile-logo h1 {
  color: white;
}
header .navbar-block .navbar-mobile .icone-whatsapp {
  color: var(--primary);
  font-size: 30px;
  transition: all 0.5s;
}
@media screen and (max-width: 500px) {
  header .navbar-block .navbar-mobile .icone-whatsapp {
    font-size: 20px;
  }
}
header .navbar-block .navbar-mobile .icone-whatsapp:hover {
  color: var(--primary);
}
header .navbar-block .btn-bascule-navbar-mobile {
  display: none;
}
@media screen and (max-width: 1200px) {
  header .navbar-block .btn-bascule-navbar-mobile {
    display: flex;
    justify-content: end;
  }
}
header .header-icones {
  position:absolute;
	right:0;
	z-index:999;
  display: flex;
	margin-right:20px;
  
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  header .header-icones {
    display: none;
  }
}
header .header-icones .icone-whatsapp {
  color: var(--pink);
  font-size: 30px;
  transition: all 0.5s;
}
header .header-icones .icone-whatsapp:hover {
  color: var(--primary);
}

#icone_menu_mobile {
  cursor: pointer;
}

#icone_menu_mobile {
  width: 30px;
}
@media screen and (max-width: 600px) {
  #icone_menu_mobile {
    width: 25px;
  }
}

.flex {
  display: flex;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.column {
  flex-direction: column;
}

.row {
  flex-direction: row;
}

.space-between {
  justify-content: space-between;
}

.space-around {
  justify-content: space-around;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: end;
}

.justify-start {
  justify-content: start;
}

.align-center {
  align-items: center;
}

.align-end {
  align-items: end;
}

.contenu {
  max-width: 1600px;
  margin: 0 auto;
}

.logo_class {
  margin: 30px;
}

.color-1 {
  color: var(--color1);
}

.color-2 {
  color: var(--color2);
}

.color-3 {
  color: var(--color3);
}

.color-fond {
  color: var(--fond);
}

.fs1 {
  font-size: 1rem;
}

.fs2 {
  font-size: 2rem;
}

.fs3 {
  font-size: 3rem;
}

.fs4 {
  font-size: 4rem;
}

.fs5 {
  font-size: 5rem;
}

.fw-regular {
  font-weight: 400;
}

.fw-medium {
  font-weight: 500;
}

.fw-bold {
  font-weight: 700;
}

.fw-black {
  font-weight: 900;
}

.m10 {
  margin: 10px;
}

.m20 {
  margin: 20px;
}

.m30 {
  margin: 30px;
}

.m40 {
  margin: 40px;
}

.m50 {
  margin: 50px;
}

.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mt50 {
  margin-top: 50px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb50 {
  margin-bottom: 50px;
}

.ml10 {
  margin-left: 10px;
}

.ml20 {
  margin-left: 20px;
}

.ml30 {
  margin-left: 30px;
}

.ml40 {
  margin-left: 40px;
}

.ml50 {
  margin-left: 50px;
}

.mr10 {
  margin-right: 10px;
}

.mr20 {
  margin-right: 20px;
}

.mr30 {
  margin-right: 30px;
}

.mr40 {
  margin-right: 40px;
}

.mr50 {
  margin-right: 50px;
}

.p10 {
  padding: 10px;
}

.p20 {
  padding: 20px;
}

.p30 {
  padding: 30px;
}

.p40 {
  padding: 40px;
}

.p50 {
  padding: 50px;
}

.pt10 {
  padding-top: 10px;
}

.pt20 {
  padding-top: 20px;
}

.pt30 {
  padding-top: 30px;
}

.pt40 {
  padding-top: 40px;
}

.pt50 {
  padding-top: 50px;
}

.pb10 {
  padding-bottom: 10px;
}

.pb20 {
  padding-bottom: 20px;
}

.pb30 {
  padding-bottom: 30px;
}

.pb40 {
  padding-bottom: 40px;
}

.pb50 {
  padding-bottom: 50px;
}

.pl10 {
  padding-left: 10px;
}

.pl20 {
  padding-left: 20px;
}

.pl30 {
  padding-left: 30px;
}

.pl40 {
  padding-left: 40px;
}

.pl50 {
  padding-left: 50px;
}

.pr10 {
  padding-right: 10px;
}

.pr20 {
  padding-right: 20px;
}

.pr30 {
  padding-right: 30px;
}

.pr40 {
  padding-right: 40px;
}

.pr50 {
  padding-right: 50px;
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}

.center {
  text-align: center;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.absolute-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.absolute-cover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.top {
  top: 0;
}

.left {
  left: 0;
}

.right {
  right: 0;
}

.bottom {
  bottom: 0;
}

.zi--1 {
  z-index: -1;
}

.zi-2 {
  z-index: 2;
}

.w10 {
  width: 10%;
}

.w20 {
  width: 20%;
}

.w30 {
  width: 30%;
}

.w40 {
  width: 40%;
}

.w50 {
  width: 50%;
}

.w60 {
  width: 60%;
}

.w70 {
  width: 70%;
}

.w80 {
  width: 80%;
}

.w90 {
  width: 90%;
}

.w100 {
  width: 100%;
}

.color-blue {
  color: var(--color1);
}

.white {
  color: var(--color2);
}

.orange {
  color: var(--color3);
}

.fond {
  color: var(--fond);
}

.g10 {
  gap: 10px;
}

.g20 {
  gap: 20px;
}

.g30 {
  gap: 30px;
}

.g50 {
  gap: 50px;
}

.underline {
  text-decoration: underline;
}

.none {
  display: none;
}

/*------------- responsive ---------------*/
@media screen and (max-width: 1200px) {
  .block-lg {
    display: block;
  }
  .none-lg {
    display: none;
  }
  .column-lg {
    flex-direction: column;
  }
  .row-lg {
    flex-direction: row;
  }
  .space-between-lg {
    justify-content: space-between;
  }
  .space-around-lg {
    justify-content: space-around;
  }
  .justify-center-lg {
    justify-content: center;
  }
  .justify-end-lg {
    justify-content: end;
  }
  .justify-start-lg {
    justify-content: start;
  }
  .align-center-lg {
    align-items: center;
  }
  .align-end-lg {
    align-items: end;
  }
  .fs1-lg {
    font-size: 1rem;
  }
  .fs2-lg {
    font-size: 2rem;
  }
  .fs3-lg {
    font-size: 3rem;
  }
  .fs4-lg {
    font-size: 4rem;
  }
  .fs5-lg {
    font-size: 5rem;
  }
  .fw-regular-lg {
    font-weight: 400;
  }
  .fw-medium-lg {
    font-weight: 500;
  }
  .fw-bold-lg {
    font-weight: 700;
  }
  .fw-black-lg {
    font-weight: 900;
  }
  .m10-lg {
    margin: 10px;
  }
  .m20-lg {
    margin: 20px;
  }
  .m30-lg {
    margin: 30px;
  }
  .m40-lg {
    margin: 40px;
  }
  .m50-lg {
    margin: 50px;
  }
  .mt10-lg {
    margin-top: 10px;
  }
  .mt20-lg {
    margin-top: 20px;
  }
  .mt30-lg {
    margin-top: 30px;
  }
  .mt40-lg {
    margin-top: 40px;
  }
  .mt50-lg {
    margin-top: 50px;
  }
  .mb10-lg {
    margin-bottom: 10px;
  }
  .mb20-lg {
    margin-bottom: 20px;
  }
  .mb30-lg {
    margin-bottom: 30px;
  }
  .mb40-lg {
    margin-bottom: 40px;
  }
  .mb50-lg {
    margin-bottom: 50px;
  }
  .ml10-lg {
    margin-left: 10px;
  }
  .ml20-lg {
    margin-left: 20px;
  }
  .ml30-lg {
    margin-left: 30px;
  }
  .ml40-lg {
    margin-left: 40px;
  }
  .ml50-lg {
    margin-left: 50px;
  }
  .mr10-lg {
    margin-right: 10px;
  }
  .mr20-lg {
    margin-right: 20px;
  }
  .mr30-lg {
    margin-right: 30px;
  }
  .mr40-lg {
    margin-right: 40px;
  }
  .mr50-lg {
    margin-right: 50px;
  }
  .p10-lg {
    padding: 10px;
  }
  .p20-lg {
    padding: 20px;
  }
  .p30-lg {
    padding: 30px;
  }
  .p40-lg {
    padding: 40px;
  }
  .p50-lg {
    padding: 50px;
  }
  .pt10-lg {
    padding-top: 10px;
  }
  .pt20-lg {
    padding-top: 20px;
  }
  .pt30-lg {
    padding-top: 30px;
  }
  .pt40-lg {
    padding-top: 40px;
  }
  .pt50-lg {
    padding-top: 50px;
  }
  .pb10-lg {
    padding-bottom: 10px;
  }
  .pb20-lg {
    padding-bottom: 20px;
  }
  .pb30-lg {
    padding-bottom: 30px;
  }
  .pb40-lg {
    padding-bottom: 40px;
  }
  .pb50-lg {
    padding-bottom: 50px;
  }
  .pl10-lg {
    padding-left: 10px;
  }
  .pl20-lg {
    padding-left: 20px;
  }
  .pl30-lg {
    padding-left: 30px;
  }
  .pl40-lg {
    padding-left: 40px;
  }
  .pl50-lg {
    padding-left: 50px;
  }
  .pr10-lg {
    padding-right: 10px;
  }
  .pr20-lg {
    padding-right: 20px;
  }
  .pr30-lg {
    padding-right: 30px;
  }
  .pr40-lg {
    padding-right: 40px;
  }
  .pr50-lg {
    padding-right: 50px;
  }
  .left-lg {
    text-align: left;
  }
  .right-lg {
    text-align: right;
  }
  .center-lg {
    text-align: center;
  }
  .absolute-lg {
    position: absolute;
  }
  .relative-lg {
    position: relative;
  }
  .top-lg {
    top: 0;
  }
  .left-lg {
    left: 0;
  }
  .right-lg {
    right: 0;
  }
  .bottom-lg {
    bottom: 0;
  }
  .zi--1-lg {
    z-index: -1;
  }
  .zi-2-lg {
    z-index: 2;
  }
  .w10-lg {
    width: 10%;
  }
  .w20-lg {
    width: 20%;
  }
  .w30-lg {
    width: 30%;
  }
  .w40-lg {
    width: 40%;
  }
  .w50-lg {
    width: 50%;
  }
  .w60-lg {
    width: 60%;
  }
  .w70-lg {
    width: 70%;
  }
  .w80-lg {
    width: 80%;
  }
  .w90-lg {
    width: 90%;
  }
  .w100-lg {
    width: 100%;
  }
}
/*------------------------------------- mobile ----------------------------*/
@media screen and (max-width: 768px) {
  .block-md {
    display: block;
  }
  .none-md {
    display: none;
  }
  .column-md {
    flex-direction: column;
  }
  .row-md {
    flex-direction: row;
  }
  .space-between-md {
    justify-content: space-between;
  }
  .space-around-md {
    justify-content: space-around;
  }
  .justify-center-md {
    justify-content: center;
  }
  .justify-end-md {
    justify-content: end;
  }
  .justify-start-md {
    justify-content: start;
  }
  .align-center-md {
    align-items: center;
  }
  .align-end-md {
    align-items: end;
  }
  .fs1-md {
    font-size: 1rem;
  }
  .fs2-md {
    font-size: 2rem;
  }
  .fs3-md {
    font-size: 3rem;
  }
  .fs4-md {
    font-size: 4rem;
  }
  .fs5-md {
    font-size: 5rem;
  }
  .fw-regular-md {
    font-weight: 400;
  }
  .fw-medium-md {
    font-weight: 500;
  }
  .fw-bold-md {
    font-weight: 700;
  }
  .fw-black-md {
    font-weight: 900;
  }
  .m10-md {
    margin: 10px;
  }
  .m20-md {
    margin: 20px;
  }
  .m30-md {
    margin: 30px;
  }
  .m40-md {
    margin: 40px;
  }
  .m50-md {
    margin: 50px;
  }
  .mt10-md {
    margin-top: 10px;
  }
  .mt20-md {
    margin-top: 20px;
  }
  .mt30-md {
    margin-top: 30px;
  }
  .mt40-md {
    margin-top: 40px;
  }
  .mt50-md {
    margin-top: 50px;
  }
  .mb10-md {
    margin-bottom: 10px;
  }
  .mb20-md {
    margin-bottom: 20px;
  }
  .mb30-md {
    margin-bottom: 30px;
  }
  .mb40-md {
    margin-bottom: 40px;
  }
  .mb50-md {
    margin-bottom: 50px;
  }
  .ml10-md {
    margin-left: 10px;
  }
  .ml20-md {
    margin-left: 20px;
  }
  .ml30-md {
    margin-left: 30px;
  }
  .ml40-md {
    margin-left: 40px;
  }
  .ml50-md {
    margin-left: 50px;
  }
  .mr10-md {
    margin-right: 10px;
  }
  .mr20-md {
    margin-right: 20px;
  }
  .mr30-md {
    margin-right: 30px;
  }
  .mr40-md {
    margin-right: 40px;
  }
  .mr50-md {
    margin-right: 50px;
  }
  .p10-md {
    padding: 10px;
  }
  .p20-md {
    padding: 20px;
  }
  .p30-md {
    padding: 30px;
  }
  .p40-md {
    padding: 40px;
  }
  .p50-md {
    padding: 50px;
  }
  .pt10-md {
    padding-top: 10px;
  }
  .pt20-md {
    padding-top: 20px;
  }
  .pt30-md {
    padding-top: 30px;
  }
  .pt40-md {
    padding-top: 40px;
  }
  .pt50-md {
    padding-top: 50px;
  }
  .pb10-md {
    padding-bottom: 10px;
  }
  .pb20-md {
    padding-bottom: 20px;
  }
  .pb30-md {
    padding-bottom: 30px;
  }
  .pb40-md {
    padding-bottom: 40px;
  }
  .pb50-md {
    padding-bottom: 50px;
  }
  .pl10-md {
    padding-left: 10px;
  }
  .pl20-md {
    padding-left: 20px;
  }
  .pl30-md {
    padding-left: 30px;
  }
  .pl40-md {
    padding-left: 40px;
  }
  .pl50-md {
    padding-left: 50px;
  }
  .pr10-md {
    padding-right: 10px;
  }
  .pr20-md {
    padding-right: 20px;
  }
  .pr30-md {
    padding-right: 30px;
  }
  .pr40-md {
    padding-right: 40px;
  }
  .pr50-md {
    padding-right: 50px;
  }
  .left-md {
    text-align: left;
  }
  .right-md {
    text-align: right;
  }
  .center-md {
    text-align: center;
  }
  .absolute-md {
    position: absolute;
  }
  .relative-md {
    position: relative;
  }
  .top-md {
    top: 0;
  }
  .left-md {
    left: 0;
  }
  .right-md {
    right: 0;
  }
  .bottom-md {
    bottom: 0;
  }
  .zi--1-md {
    z-index: -1;
  }
  .zi-2-md {
    z-index: 2;
  }
  .w10-md {
    width: 10%;
  }
  .w20-md {
    width: 20%;
  }
  .w30-md {
    width: 30%;
  }
  .w40-md {
    width: 40%;
  }
  .w50-md {
    width: 50%;
  }
  .w60-md {
    width: 60%;
  }
  .w70-md {
    width: 70%;
  }
  .w80-md {
    width: 80%;
  }
  .w90-md {
    width: 90%;
  }
  .w100-md {
    width: 100%;
  }
}
/*----------------------------- animations ----------------------------------*/
@keyframes icon-car {
  0% {
    transform: translateY(0px) rotate(90deg);
  }
  100% {
    transform: translateY(50px) rotate(90deg);
  }
}
@keyframes defilement-bande {
  0% {
    transform: translate(0);
    -webkit-transform: translate(0);
  }
  100% {
    transform: translate(-100%);
    -webkit-transform: translate(-100%);
  }
}
.zone-hero{
	height:600px;
}
.zone-hero .bloc-zone-hero {
  position: relative;
	height:100%;
}

.zone-hero .img-hero {
  width: 100%;
  height: 100%;
  position: relative;
}
.zone-hero .img-hero img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  filter: brightness(0.3);
}


.bloc-cards-prestations-presentation {
 
  background-color:black;
  display: flex;
  height: auto;
  padding: 0px 20px;
  max-width: 100%;
  z-index: 998;
	justify-content:center;
}
@media screen and (max-width: 1000px) {
  .bloc-cards-prestations-presentation {
    bottom: -25%;
  }
}
@media screen and (max-width: 768px) {
 .bloc-cards-prestations-presentation {
    flex-direction: column;
	  bottom: -40%;
  }
}
@media screen and (max-width: 600px) {
 .bloc-cards-prestations-presentation {
    flex-direction: column;
	  bottom: -47%;
  }
}


.bloc-cards-prestations-presentation .titre-card-presentation {
  font-family: var(--police-anton);
  color: white;
  font-size: 18px;
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
}
@media screen and (max-width: 900px) {
   .bloc-cards-prestations-presentation .titre-card-presentation {
    font-size: 18px;
  }
}
@media screen and (max-width: 500px) {
  .bloc-cards-prestations-presentation .titre-card-presentation {
    font-size: 15px;
  }
}
 .bloc-cards-prestations-presentation .text-card-presentation {
  color: white;
  font-size: 14px;
  font-family: "poppins-regular", sans-serif;
  text-align: center;
}
@media screen and (max-width: 500px) {
  .bloc-cards-prestations-presentation .text-card-presentation {
    font-size: 12px;
  }
}
 .bloc-cards-prestations-presentation .card_presentation_prestation1 {
  padding: 20px;
  width: 33.3333333333%;
  background-color: var(--pink);
  border-radius: 20px 0px 0px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .bloc-cards-prestations-presentation .card_presentation_prestation1 {
    width: 100%;
    border-radius: 20px 20px 0 0;
	  padding: 20px;
  }
}
.bloc-cards-prestations-presentation .card_presentation_prestation2 {
  width: 33.3333333333%;
  background-color: var(--primary);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .bloc-cards-prestations-presentation .card_presentation_prestation2 {
    width: 100%;
	padding: 20px;
  }
}
.bloc-cards-prestations-presentation .card_presentation_prestation3 {
  width: 33.3333333333%;
  background-color: var(--yellow);
  padding: 20px;
  border-radius: 0px 0px 0px 0px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .bloc-cards-prestations-presentation .card_presentation_prestation3 {
    width: 100%;
    border-radius: 0 0 0px 0px;
  }
}
.bloc-cards-prestations-presentation .card_presentation_prestation4 {
  width: 33.3333333333%;
  background-color: var(--pink);
  padding: 20px;
  border-radius: 0px 20px 20px 0px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .bloc-cards-prestations-presentation .card_presentation_prestation4 {
    width: 100%;
    border-radius: 0 0 20px 20px;
  }
}
.bloc-cards-prestations-presentation .card_presentation_prestation3 .titre-card-presentation {
  font-family: var(--police-anton);
  color: var(--pink);
  font-size: 18px;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
}
@media screen and (max-width: 900px) {
  .bloc-cards-prestations-presentation .card_presentation_prestation3 .titre-card-presentation {
    font-size: 18px;
  }
}
@media screen and (max-width: 500px) {
  .bloc-cards-prestations-presentation .card_presentation_prestation3 .titre-card-presentation {
    font-size: 15px;
  }
}
 .bloc-cards-prestations-presentation .card_presentation_prestation3 .text-card-presentation {
  color: var(--pink);
  font-size: 14px;
  font-family: "poppins-regular", sans-serif;
  text-align: center;
}
@media screen and (max-width: 500px) {
   .bloc-cards-prestations-presentation .card_presentation_prestation3 .text-card-presentation {
    font-size: 12px;
  }
}
.zone-hero .text-hero {
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-shadow: var(--primary);
  gap: 20px;
  width: 90%;
  padding: 20px;
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 860px) {
  .zone-hero .text-hero {
    width: 100%;
  }
}
@media screen and (max-width: 1000px) {
  .zone-hero .text-hero {
    gap: 15px;
    
  }
}
@media screen and (max-width: 500px) {
  .zone-hero .text-hero {
    
	  
  }
}
.zone-hero .text-hero h1 {
  font-family: var(--police-text);
  font-size: 35px;
  text-align: center;
  letter-spacing: 3px;
  text-shadow: 1px 1px 2px var(--primary);
}
@media screen and (max-width: 900px) {
  .zone-hero .text-hero h1 {
    padding: 0 30px;
  }
}
@media screen and (max-width: 668px) {
  .zone-hero .text-hero h1 {
    font-size: 30px;
  }
}

@media screen and (max-width: 500px) {
  .zone-hero .text-hero h1 {
    font-size: 20px;
	  padding:0;
  }
}
.zone-hero .text-hero p {
  font-family: var(--police-text);
  font-size: 20px;
  text-align: center;
  letter-spacing: 2px;
  text-shadow: 1px 1px 2px var(--primary);
}
@media screen and (max-width: 900px) {
  .zone-hero .text-hero p {
    font-size: 18px;
    padding: 0 30px;
  }
}
@media screen and (max-width: 668px) {
  .zone-hero .text-hero p {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  .zone-hero .text-hero p {
    font-size: 12px;
  }
}
.zone-hero .text-hero .link-btn-hero {
  text-decoration: none;
}
.zone-hero .text-hero .btn-hero {
  background-color: var(--primary);
  width: 40%;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  margin: auto;
  cursor: pointer;
  box-shadow: 4px 4px 30px 0px var(--primary);
  transition: all 0.5s;
}
.zone-hero .text-hero .btn-hero:hover {
  box-shadow: 4px 4px 30px 0px rgba(255, 255, 255, 0.8);
  background-color: white;
}
.zone-hero .text-hero .btn-hero:hover span {
  color: var(--primary) !important;
  font-family: var(--police-anton), sans-serif;
}
@media screen and (max-width: 860px) {
  .zone-hero .text-hero .btn-hero {
    height: 60px;
    width: 50%;
  }
}
@media screen and (max-width: 555px) {
  .zone-hero .text-hero .btn-hero {
    width: 100%;
  }
}
@media screen and (max-width: 400px) {
  .zone-hero .text-hero .btn-hero {
    height: 45px;
    width: 100%;
  }
}
.zone-hero .text-hero .btn-hero span {
  text-align: center;
  font-family: var(--police-anton);
  font-size: 18px;
  letter-spacing: 2px;
  color: white;
  text-decoration: none;
}
@media screen and (max-width: 860px) {
  .zone-hero .text-hero .btn-hero span {
    font-size: 16px;
  }
}
@media screen and (max-width: 668px) {
  .zone-hero .text-hero .btn-hero span {
    font-size: 14px;
  }
}
@media screen and (max-width: 400px) {
  .zone-hero .text-hero .btn-hero span {
    font-size: 12px;
  }
}
.zone-hero .text-hero .icon-scroll {
  text-align: center;
  cursor: pointer;
}
.zone-hero .text-hero .icon-scroll img {
  animation: icon-car 1.5s infinite linear alternate;
}
@media screen and (max-width: 500px) {
  .zone-hero .text-hero .icon-scroll img {
    width: 50px;
  }
}
.zone-hero .text-hero .icon-scroll span {
  font-family: var(--police-text);
  color: white;
}

.fond-section-1 {
  position: absolute;
  width: 100%;
  margin-top: -125px;
}
@media screen and (max-width: 1200px) {
  .fond-section-1 {
    margin-top: -60px;
  }
}
@media screen and (max-width: 720px) {
  .fond-section-1 {
    margin-top: -50px;
  }
}
@media screen and (max-width: 450px) {
  .fond-section-1 {
    margin-top: -30px;
  }
}

.section1 {
  position: relative;
  z-index: 997;
  background-color: var(--black);
  padding: 150px 20px 100px 20px;
}

.section1 .titre-section1 {
  max-width: 1440px;
  margin: auto;
  padding: 0 20px;
  text-align: center;
}
.section1 .titre-section1 h2 {
  font-family: var(--police-anton), sans-serif;
  color: white;
  font-size: 25px;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  display: inline-flex;
}
@media screen and (max-width: 600px) {
  .section1 .titre-section1 h2 {
    font-size: 20px;
  }
}
@media screen and (max-width: 500px) {
  .section1 .titre-section1 h3 {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  .section1 .titre-section1 {
    padding: 0;
  }
}
.section1 .text-section1 {
  max-width: 1440px;
  margin: auto;
  display: flex;
  padding: 50px 20px;
  gap: 30px;
}
@media screen and (max-width: 1200px) {
  .section1 .text-section1 {
    flex-direction: column;
  }
}
@media screen and (max-width: 500px) {
  .section1 .text-section1 {
    padding: 50px 0;
  }
}
.section1 .text-section1 .carte2 {
  transform: translateY(50px);
}
@media screen and (max-width: 1200px) {
  .section1 .text-section1 .carte2 {
    transform: none;
  }
}
.section1 .text-section1 .bloc-1-section1 {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  text-align: center;
  width: 33%;
  background-color: white;
  border-radius: 20px;
  padding: 20px;
  font-family: var(--police-text);
  gap: 10px;
  box-shadow: 4px 4px 30px 0px var(--primary);
}
@media screen and (max-width: 1200px) {
  .section1 .text-section1 .bloc-1-section1 {
    width: 100%;
  }
}
.section1 .text-section1 .bloc-1-section1 h3 {
  font-size: 23px;
  font-family: var(--police-anton), sans-serif;
  color: var(--primary);
}
@media screen and (max-width: 860px) {
  .section1 .text-section1 .bloc-1-section1 h3 {
    font-size: 20px;
  }
}
@media screen and (max-width: 500px) {
  .section1 .text-section1 .bloc-1-section1 h3 {
    font-size: 18px;
  }
}
@media screen and (max-width: 500px) {
  .section1 .text-section1 .bloc-1-section1 h3 {
    font-size: 16px;
  }
}
.section1 .text-section1 .bloc-1-section1 img {
  align-self: center;
  color: var(--primary);
	width:50px;
	height:50px;
}
@media screen and (max-width: 500px) {
  .section1 .text-section1 .bloc-1-section1 img {
    width: 40px;
  }
}
.section1 .text-section1 .bloc-1-section1 p {
  color: var(--black);
  font-family: "poppins-light";
  font-size: 14px;
}
@media screen and (max-width: 860px) {
  .section1 .text-section1 .bloc-1-section1 p {
    font-size: 14px;
  }
}
@media screen and (max-width: 500px) {
  .section1 .text-section1 .bloc-1-section1 p {
    font-size: 12px;
  }
}

.section2 {
  position: relative;
  padding: 150px 20px;
  background-color: black;
}
@media screen and (max-width: 500px) {
  .section2 {
    padding: 100px 20px;
  }
}
.section2 .animation_elmt-top {
  position: absolute;
  top: 0%;
  left: -35px;
  width: 130px;
}
.section2 .animation_elmt-top .div-animation {
  background-color: var(--primary);
  position: relative;
  height: 8px;
  width: 100%;
  left: 20px;
}
.section2 .animation_elmt-top .elmt1 {
  width: 80%;
}
.section2 .animation_elmt-top .elmt2 {
  width: 95%;
  margin-top: 10px;
}
.section2 .animation_elmt-top .elmt3 {
  width: 105%;
  margin-top: 10px;
}
.section2 .animation_elmt-btm {
  position: absolute;
  bottom: 4%;
  right: 0;
  width: 130px;
  transform: rotate(180deg);
}
.section2 .animation_elmt-btm .div-animation {
  background-color: var(--primary);
  position: relative;
  height: 8px;
  width: 100%;
}
.section2 .animation_elmt-btm .elmt1 {
  width: 105%;
}
.section2 .animation_elmt-btm .elmt2 {
  width: 95%;
  margin-top: 10px;
}
.section2 .animation_elmt-btm .elmt3 {
  width: 80%;
  margin-top: 10px;
}
.section2 .bloc-section2 {
  display: flex;
  max-width: 1440px;
  gap: 50px;
  align-items: center;
	margin:auto;
}
@media screen and (max-width: 1205px) {
  .section2 .bloc-section2 {
    flex-direction: column;
    height: auto;
    gap: 50px;
  }
}
.section2 .bloc-section2 .div-img-blc-2 {
  width: 50%;
}
@media screen and (max-width: 1205px) {
  .section2 .bloc-section2 .div-img-blc-2 {
    width: 100%;
    margin-top: 30px;
    height: auto;
  }
}
.section2 .bloc-section2 .div-img-blc-2 .img-histoire {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
  height: 500px;
}
.section2 .bloc-section2 .bloc_text {
  width: 50%;
}
@media screen and (max-width: 1205px) {
  .section2 .bloc-section2 .bloc_text {
    width: 100%;
    margin-top: 30px;
  }
}
.section2 .bloc-section2 .bloc_text h3 {
  font-family: "ubuntu-bold", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--);
  font-size: 25px;
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 860px) {
  .section2 .bloc-section2 .bloc_text h3 {
    font-size: 20px;
  }
}
@media screen and (max-width: 500px) {
  .section2 .bloc-section2 .bloc_text h3 {
    font-size: 16px;
  }
}
.section2 .bloc-section2 .bloc_text h2 {
  font-family: var(--police-anton), sans-serif;
  margin-top: 20px;
  font-size: 40px;
  color: var(--primary);
}
@media screen and (max-width: 860px) {
  .section2 .bloc-section2 .bloc_text h2 {
    font-size: 30px;
  }
}
@media screen and (max-width: 500px) {
  .section2 .bloc-section2 .bloc_text h2 {
    font-size: 20px;
  }
}
.section2 .bloc-section2 .bloc_text p {
  margin-top: 20px;
  font-family: "poppins-light";
  width: 80%;
  font-size: 14px;
}
@media screen and (max-width: 500px) {
  .section2 .bloc-section2 .bloc_text p {
    font-size: 12px;
  }
}
.section2 .bloc-section2 .bloc_text .span-link-section2 {
  margin-top: 40px;
  font-family: "poppins-light";
  display: inline-block;
  position: relative;
}
.section2 .bloc-section2 .bloc_text .span-link-section2::after {
  width: 100%;
  content: "";
  position: absolute;
  background-color: var(--primary);
  height: 1px;
  bottom: -10px;
  left: 0;
  transform: rotate(-2deg);
}
.section2 .bloc-section2 .bloc_text .link_section2 {
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
}
.section2 .bloc-section2 .bloc_text .link_section2 .span-link-section2 {
  color: white !important;
}
.section2 .bloc-section2 .bloc_text .link_section2 .arrow-right-link-section2 {
  transition: all 0.2s;
}
.section2 .bloc-section2 .bloc_text .link_section2:hover {
  color: var(--primary);
  transform: translateX(2px);
}
.section2 .bloc-section2 .bloc_text .link_section2:hover .arrow-right-link-section2 {
  transform: translateX(2px);
}
@media screen and (max-width: 500px) {
  .section2 .bloc-section2 .bloc_text .link_section2 {
    font-size: 14px;
  }
}
.section2 .bloc-section2 .img-bloc-2 {
  width: 50%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
@media screen and (max-width: 1205px) {
  .section2 .bloc-section2 .img-bloc-2 {
    width: 100%;
    height: 500px;
    margin-top: 30px;
  }
}

.bande-mots {
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: black;
  height: 200px;
}
@media screen and (max-width: 500px) {
  .bande-mots {
    height: 130px;
    padding: 0;
  }
}
.bande-mots .bande {
  color: white;
  font-size: 30px;
  font-family: var(--police-anton), sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  white-space: nowrap;
  animation: defilement-bande 10s infinite linear;
  cursor: pointer;
  text-shadow: 0 3px 20px var(--primary);
}
@media screen and (max-width: 1024px) {
  .bande-mots .bande {
    font-size: 30px;
  }
}
@media screen and (max-width: 500px) {
  .bande-mots .bande {
    font-size: 18px;
  }
}

.section3 {
  position: relative;
}
.section3::before {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  display: block;
  
  
  filter: brightness(0.3);
  z-index: -1;
  left: 0;
  top: 0;
  background-position: 50%;
}
.section3 .animation_elmt-top {
  position: absolute;
  top: 4%;
  left: -35px;
  width: 130px;
}
@media screen and (max-width: 500px) {
  .section3 .animation_elmt-top {
    top: 2%;
  }
}
.section3 .animation_elmt-top .div-animation {
  background-color: var(--primary);
  position: relative;
  height: 8px;
  width: 100%;
  left: 20px;
}
.section3 .animation_elmt-top .elmt1 {
  width: 80%;
}
.section3 .animation_elmt-top .elmt2 {
  width: 95%;
  margin-top: 10px;
}
.section3 .animation_elmt-top .elmt3 {
  width: 105%;
  margin-top: 10px;
}
.section3 .animation_elmt-btm {
  position: absolute;
  bottom: 4%;
  right: 0;
  width: 130px;
  transform: rotate(180deg);
}
@media screen and (max-width: 500px) {
  .section3 .animation_elmt-btm {
    bottom: 1%;
  }
}
.section3 .animation_elmt-btm .div-animation {
  background-color: var(--primary);
  position: relative;
  height: 8px;
  width: 100%;
}
.section3 .animation_elmt-btm .elmt1 {
  width: 105%;
}
.section3 .animation_elmt-btm .elmt2 {
  width: 95%;
  margin-top: 10px;
}
.section3 .animation_elmt-btm .elmt3 {
  width: 80%;
  margin-top: 10px;
}
.section3 .bloc-section3 {
  margin: auto;
  max-width: 1440px;
  padding: 120px 20px;
}
@media screen and (max-width: 500px) {
  .section3 .bloc-section3 {
    padding: 100px 20px;
  }
}
.section3 h3 {
  margin-top: 50px;
  color: var(--pink);
  font-size: 25px;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 860px) {
  .section3 h3 {
    font-size: 20px;
  }
}
@media screen and (max-width: 500px) {
  .section3 h3 {
    font-size: 16px;
  }
}
.section3 h3::after {
  content: "";
  position: absolute;
  right: -25px;
  background: url("../images/icon-bulles-green.png");
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
}
.section3 h2 {
  margin-top: 20px;
  font-family: var(--police-anton), sans-serif;
  font-size: 25px;
  text-transform: uppercase;
  text-align: center;
  color: var(--primary);
  letter-spacing: 2px;
}
@media screen and (max-width: 1200px) {
  .section3 h2 {
    font-size: 30px;
  }
}
@media screen and (max-width: 500px) {
  .section3 h2 {
    font-size: 20px;
  }
}
.section3 .bloc-cartes-section3 {
  
  display: flex;
  gap: 50px;
  flex-direction: column;
  justify-content: center;
  width: 70%;
  margin: auto;
  padding-top:50px;
}
@media screen and (max-width: 900px) {
  .section3 .bloc-cartes-section3 {
    width: 100%;
    margin: 0;
  }
}
.section3 .bloc-cartes-section3 .carte-section3 {
  color: black;
  background-color: white;
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.section3 .bloc-cartes-section3 .carte-section3 img {
    width: 50px;
	height:50px;
	
  }
@media screen and (max-width: 1200px) {
  .section3 .bloc-cartes-section3 .carte-section3 {
    width: 100%;
	 padding: 20px;
  }
}
@media screen and (max-width: 500px) {
  .section3 .bloc-cartes-section3 .carte-section3 img {
    width: 50px;
  }
}
.section3 .bloc-cartes-section3 .carte-section3 h4 {
  font-size: 20px;
  font-family: var(--police-anton), sans-serif;
  color: var(--primary);
  text-align: center;
}
@media screen and (max-width: 860px) {
  .section3 .bloc-cartes-section3 .carte-section3 h4 {
    font-size: 20px;
  }
}
@media screen and (max-width: 500px) {
  .section3 .bloc-cartes-section3 .carte-section3 h4 {
    font-size: 16px;
  }
}
.section3 .bloc-cartes-section3 .carte-section3 p {
  font-family: "poppins-light";
  text-align: left;
  font-size: 14px;
}
.section3 .bloc-cartes-section3 .carte-section3 li{
	font-family: "poppins-light";
	font-size:14px;
}
@media screen and (max-width: 860) {
  .section3 .bloc-cartes-section3 .carte-section3 p {
    font-size: 14px;
  }
}
@media screen and (max-width: 500px) {
  .section3 .bloc-cartes-section3 .carte-section3 p {
    font-size: 12px !important;
  }
}
@media screen and (max-width: 500px) {
  .section3 .bloc-cartes-section3 .carte-section3 li {
    font-size: 12px !important;
  }
}
.section3 .span-link-section3 {
  margin-top: 40px;
  font-family: "poppins-bold";
  position: relative;
  letter-spacing: 1.5px;
  color:var(--primary);
}
.section3 .span-link-section3::after {
  width: 100%;
  content: "";
  position: absolute;
  background-color: var(--primary);
  height: 3px;
  bottom: -10px;
  left: 0;
  transform: rotate(-2deg);
}
.section3 .link_section3 {
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s;
  align-items: center;
}
.section3 .link_section3 a {
  color: white;
  text-decoration: none;
}
.section3 .link_section3 .arrow-right-link-section3 {
  transition: all 0.2s;
}
.section3 .link_section3:hover {
  color: var(--primary);
  transform: translateX(5px) translate(-50%, -50%);
}
.section3 .link_section3:hover .arrow-right-link-section3 {
  transform: translateX(5px);
}
@media screen and (max-width: 500px) {
  .section3 .link_section3 {
    font-size: 12px;
  }
}

.section4 {
  background-color: white;
}
.section4 .bloc-section4 {
	font-family: var(--police-anton), sans-serif;
  max-width: 1440px;
  margin: auto;
  padding: 150px 20px;
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;
	gap:10px;
}
@media screen and (max-width: 1024px) {
  .section4 .bloc-section4 {
    padding: 100px 20px 10px 20px;
  }
}
.section4 .bloc-section4 h3 {
  font-family:"ubuntu-bold", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--pink);
  font-size: 25px;
  text-align:center;
  display: inline-block;
  
}
@media screen and (max-width: 768px) {
  .section4 .bloc-section4 h3 {
    font-size: 20px;
  }
}
@media screen and (max-width: 500px) {
  .section4 .bloc-section4 h3 {
    font-size: 18px;
  }
}
.section4 h2 {
  margin-top: 20px;
  font-family: var(--police-anton), sans-serif;
  font-size: 30px;
  text-align: center;
  color: var(--primary);
}
@media screen and (max-width: 900px) {
  .section4 h2 {
    font-size: 25px;
  }
}
@media screen and (max-width: 500px) {
  .section4 h2 {
    font-size: 16px;
  }
}
.section4 .bloc-car-section4 {
  margin: 100px 0 0 0;
  height: 560px;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}
@media screen and (max-width: 1204px) {
  .section4 .bloc-car-section4 {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 1024px) {
  .section4 .bloc-car-section4 {
    gap: 40px;
    margin: 50px 0;
  }
}
@media screen and (max-width: 900px) {
  .section4 .bloc-car-section4 {
    grid-template-columns: 1fr;
  }
}
.section4 .bloc-car-section4 .carte-bloc-car-section4 {
  text-align: left;
  display: flex;
  flex-direction: column;
  box-shadow: 4px 4px 10px 0px var(--primary);
  padding: 30px;
  gap: 20px;
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  .section4 .bloc-car-section4 .carte-bloc-car-section4 {
    gap: 10px;
  }
}
.section4 .bloc-car-section4 .carte-bloc-car-section4 .title {
  color: var(--primary);
  font-family: var(--police-anton);
}
@media screen and (max-width: 1024px) {
  .section4 .bloc-car-section4 .carte-bloc-car-section4 .title {
    gap: 10px;
  }
}
.section4 .bloc-car-section4 .carte-bloc-car-section4 h4 {
  font-family: var(--police-anton);
  font-size: 20px;
  color: var(--primary);
}
@media screen and (max-width: 500px) {
  .section4 .bloc-car-section4 .carte-bloc-car-section4 h4 {
    font-size: 16px;
    text-align: center;
  }
}
.section4 .bloc-car-section4 .carte-bloc-car-section4 p {
  font-family: "poppins-light";
  font-size: 14px;
  color: var(--primary);
}
@media screen and (max-width: 1024px) {
  .section4 .bloc-car-section4 .carte-bloc-car-section4 p {
    text-align: center;
    width: 80%;
    margin: auto;
  }
}
@media screen and (max-width: 500px) {
  .section4 .bloc-car-section4 .carte-bloc-car-section4 p {
    font-size: 12px;
  }
}
.section4 .bloc-car-section4 .carte-bloc-car-section4 .title {
  justify-content: space-between;
}
.section4 .bloc-car-section4 .carte-bloc-car-section4 .title img {
  width: 45px;
}
@media screen and (max-width: 1024px) {
  .section4 .bloc-car-section4 .carte-bloc-car-section4 .title {
    flex-direction: column;
  }
}
@media screen and (max-width: 1024px) {
  .section4 .bloc-car-section4 {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .section4 {
    flex-direction: column;
    height: auto;
  }
}
.section4 .bloc2img {
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
}
.section4 .bloc2img img {
  width: 100%;
  object-fit: cover;
}
.section4 .bloc3 {
  width: 25%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
}
.section4 .bloc3 .carte-bloc-car-section4 {
  text-align: right;
  display: flex;
  flex-direction: column;
  box-shadow: 4px 4px 30px 0px var(--primary);
}
@media screen and (max-width: 1024px) {
  .section4 .bloc3 .carte-bloc-car-section4 {
    gap: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .section4 .bloc3 .carte-bloc-car-section4 .title {
    gap: 10px;
    flex-direction: column-reverse;
  }
}
.section4 .bloc3 .carte-bloc-car-section4 h4 {
  font-family: var(--police-anton);
  color: var(--primary);
  font-size: 20px;
}
@media screen and (max-width: 500px) {
  .section4 .bloc3 .carte-bloc-car-section4 h4 {
    font-size: 16px;
  }
}
.section4 .bloc3 .carte-bloc-car-section4 p {
  font-family: "poppins-light";
  font-size: 16px;
  color: var(--primary);
}
@media screen and (max-width: 1024px) {
  .section4 .bloc3 .carte-bloc-car-section4 p {
    text-align: center;
    width: 80%;
    margin: auto;
  }
}
@media screen and (max-width: 500px) {
  .section4 .bloc3 .carte-bloc-car-section4 p {
    font-size: 14px;
  }
}
.section4 .bloc3 .carte-bloc-car-section4 .title {
  justify-content: space-between;
}
.section4 .bloc3 .carte-bloc-car-section4 .title img {
  width: 45px;
}
@media screen and (max-width: 1024px) {
  .section4 .bloc3 .carte-bloc-car-section4 .title {
    flex-direction: column-reverse;
    gap: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .section4 .bloc3 {
    width: 100%;
  }
}

.endroits {
  background-color: black;
  position: relative;
}
.endroits .animation_elmt-top {
  position: absolute;
  top: 4%;
  left: -35px;
  width: 130px;
}
.endroits .animation_elmt-top .div-animation {
  background-color: var(--primary);
  position: relative;
  height: 8px;
  width: 100%;
  left: 20px;
}
.endroits .animation_elmt-top .elmt1 {
  width: 80%;
}
.endroits .animation_elmt-top .elmt2 {
  width: 95%;
  margin-top: 10px;
}
.endroits .animation_elmt-top .elmt3 {
  width: 105%;
  margin-top: 10px;
}
.endroits .animation_elmt-btm {
  position: absolute;
  bottom: 4%;
  right: 0;
  width: 130px;
  transform: rotate(180deg);
}
.endroits .animation_elmt-btm .div-animation {
  background-color: var(--primary);
  position: relative;
  height: 8px;
  width: 100%;
}
.endroits .animation_elmt-btm .elmt1 {
  width: 105%;
}
.endroits .animation_elmt-btm .elmt2 {
  width: 95%;
  margin-top: 10px;
}
.endroits .animation_elmt-btm .elmt3 {
  width: 80%;
  margin-top: 10px;
}
.endroits .bloc-endroits {
  max-width: 1440px;
  margin: auto;
  padding: 150px 20px;
}
@media screen and (max-width: 500px) {
  .endroits .bloc-endroits {
    padding: 100px 20px;
  }
}
.endroits .bloc-endroits h3 {
  margin-top: 50px;
  font-family: "ubuntu-bold";
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  font-size: 25px;
  position: relative;
  display: inline-block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .endroits .bloc-endroits h3 {
    font-size: 20px;
  }
}
@media screen and (max-width: 500px) {
  .endroits .bloc-endroits h3 {
    font-size: 18px;
  }
}
.endroits .bloc-endroits h3::after {
  content: "";
  position: absolute;
  right: -25px;
  background: url(../images/icon-bulles-green.png);
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
}
.endroits h2 {
  margin-top: 20px;
  font-family: var(--police-anton), sans-serif;
  font-size: 30px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .endroits h2 {
    font-size: 20px;
  }
}
@media screen and (max-width: 500px) {
  .endroits h2 {
    font-size: 16px;
  }
}
.endroits .bloc-section5 {
  display: flex;
  margin: 110px 0;
  gap: 30px;
}
@media screen and (max-width: 1024px) {
  .endroits .bloc-section5 {
    flex-direction: column;
    margin: 50px 0;
    gap: 50px;
  }
}
.endroits .bloc-section5 .carte-endroit {
  width: 33.3333333333%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .endroits .bloc-section5 .carte-endroit {
    width: 100%;
  }
}
.endroits .bloc-section5 .carte-endroit .img-endroit {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 4px 4px 30px 0px var(--primary);
}
@media screen and (max-width: 500px) {
  .endroits .bloc-section5 .carte-endroit .img-endroit {
    width: 150px;
    height: 150px;
  }
}
.endroits .bloc-section5 .carte-endroit p {
  font-family: var(--police-anton), sans-serif;
  font-size: 18px;
  text-align: center;
  margin-top: 20px;
  color: white;
}
@media screen and (max-width: 1024px) {
  .endroits .bloc-section5 .carte-endroit p {
    width: 80%;
  }
}
@media screen and (max-width: 500px) {
  .endroits .bloc-section5 .carte-endroit p {
    font-size: 14px;
  }
}
.endroits .bloc-section5 .carte-endroit .name {
  font-family: var(--police-text), sans-serif;
  font-size: 14px;
  text-align: center;
  margin-top: 20px;
  color: var(--yellow);
}
@media screen and (max-width: 500px) {
  .endroits .bloc-section5 .carte-endroit .name {
    font-size: 12px;
  }
}
.endroits .bloc-section5 .carte2 {
  transform: translateY(70px);
}
@media screen and (max-width: 1024px) {
  .endroits .bloc-section5 .carte2 {
    transform: none;
  }
}

.contact {
  background-color: black;
}
.contact .bloc-contact-accueil {
  max-width: 1440px;
  margin: auto;
  padding: 100px 20px;
}
@media screen and (max-width: 1024px) {
  .contact .bloc-contact-accueil {
    padding: 50px 20px;
  }
}
@media screen and (max-width: 500px) {
  .contact .bloc-contact-accueil {
    padding: 20px 20px;
  }
}
.contact .bloc-contact-accueil h3 {
  font-family: "ubuntu-bold";
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  font-size: 25px;
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 860px) {
  .contact .bloc-contact-accueil h3 {
    font-size: 20px;
  }
}
@media screen and (max-width: 450px) {
  .contact .bloc-contact-accueil h3 {
    font-size: 18px;
  }
}
.contact .bloc-contact-accueil h3::after {
  content: "";
  position: absolute;
  right: -25px;
  background: url("../images/icon-bulles-green.png");
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
}
.contact .bloc-contact-accueil h2 {
  font-family: "ubuntu-bold";
  margin-top: 20px;
  font-size: 30px;
  text-align: center;
}
@media screen and (max-width: 860px) {
  .contact .bloc-contact-accueil h2 {
    font-size: 20px;
  }
}
@media screen and (max-width: 500px) {
  .contact .bloc-contact-accueil h2 {
    font-size: 16px;
  }
}
.contact .bloc-contact-accueil form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact .bloc-contact-accueil .form {
  padding-top: 100px;
  width: 70%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .contact .bloc-contact-accueil .form {
    width: 100%;
  }
}
.contact .bloc-contact-accueil .form label {
  font-family: "poppins-regular";
}
@media screen and (max-width: 500px) {
  .contact .bloc-contact-accueil .form label {
    font-size: 12px;
  }
}
.contact .bloc-contact-accueil .form .blocform {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}
@media screen and (max-width: 900px) {
  .contact .bloc-contact-accueil .form .blocform {
    flex-direction: column;
  }
}
.contact .bloc-contact-accueil .form .blocform .form-field {
  width: 50%;
}
@media screen and (max-width: 900px) {
  .contact .bloc-contact-accueil .form .blocform .form-field {
    width: 100%;
  }
}
.contact .bloc-contact-accueil .form .blocform input {
  height: 50px;
  width: 100%;
  border-radius: 8px;
  border: none;
}
.contact .bloc-contact-accueil .form .blocform input:focus {
  border-color: var(--primary);
  outline-color: var(--primary);
}
.contact .bloc-contact-accueil .form .textarea {
  width: 100%;
}
.contact .bloc-contact-accueil .form .textarea textarea {
  width: 100%;
  height: 100px;
  border-radius: 8px;
  border: none;
}
.contact .bloc-contact-accueil .form .textarea textarea:focus {
  border-color: var(--primary);
  outline-color: var(--primary);
}
.contact .bloc-contact-accueil .form .btn_submit {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.contact .bloc-contact-accueil .form .btn_submit p {
  display: flex;
  justify-content: center;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.contact .bloc-contact-accueil .form .btn_submit p input {
  border-radius: 10px;
  background-color: var(--primary);
  font-family: "poppins-regular";
  border: none;
  color: white;
  width: 40%;
  cursor: pointer;
  font-size: 16px;
  box-shadow: 4px 4px 30px 0px var(--primary);
}
.contact .bloc-contact-accueil .form .btn_submit p input:hover {
  box-shadow: 4px 4px 30px 0px white;
}
@media screen and (max-width: 550px) {
  .contact .bloc-contact-accueil .form .btn_submit p input {
    width: 60%;
    padding: 20px 45px;
    font-size: 12px;
  }
}
.contact .bloc-contact-accueil .form .wpcf7-response-output {
  width: 50%;
  margin: auto;
  margin-top: 30px;
  font-family: "poppins-regular";
}
.contact .bloc-contact-accueil .form .wpcf7 form .wpcf7-response-output {
  margin: 2em 0.5em 1em;
  padding: 0.2em 1em;
  border: 2px solid var(--primary);
  width: 50%;
  margin: auto;
  text-align: center;
  border-radius: 10px;
}
.contact .bloc-contact-accueil .form .wpcf7 form.sent .wpcf7-response-output {
  border-color: var(--primary);
  display: flex;
  justify-content: center;
}

input:focus {
  border-color: var(--primary) !important;
}

.map-zone {
  background-color: white;
  padding: 100px 0px;
  position: relative;
}
@media screen and (max-width: 550px) {
  .map-zone {
    padding: 50px 20px;
  }
}
.map-zone .bloc-map-zone {
  max-width: 100%;
  padding: 0px 20px;
}
@media screen and (max-width: 600px) {
  .map-zone .bloc-map-zone {
 
  padding: 0px;
}
}
.map-zone .bloc-map-zone h2 {
  margin-top: 20px;
  font-family: var(--police-anton), sans-serif;
  font-size: 30px;
  text-align: center;
  color: var(--primary);
}
@media screen and (max-width: 860px) {
  .map-zone .bloc-map-zone h2 {
    font-size: 30px;
  }
}
@media screen and (max-width: 500px) {
  .map-zone .bloc-map-zone h2 {
    font-size: 16px;
  }
}
.map-zone .bloc-map-zone .para {
  font-family: "ubuntu-bold";
  font-size: 14px;
  color: var(--primary);
  text-align: center;
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
@media screen and (max-width: 500px) {
  .map-zone .bloc-map-zone .para {
    font-size: 12px;
  }
}
.map-zone .bloc-map-zone #map {
  margin-top: 50px;
  height: 500px;
  max-width: 100%;
}

.text-bg-blue {
  background-color: var(--pink);
  color: white;
}

.patch {
  position: absolute;
  top: 33%;
  left: 3%;
}


.pink {
  color: var(--pink);
}

.white {
  color: white;
}

.yellow {
  color: #ffde59;
}
.yellow-blue {
  color: #ffde59;
	background-color:var(--pink);
}

.cercle1 {
  width: 200px;
  height: 200px;
  background-color: var(--pink);
  padding: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-direction: column;
  position: relative;
}

@media screen and (max-width: 600px) {
  .cercle1 {
    width: 130px;
    height: 130px;
    padding: 10px;
  }
}
.cercle1 p {
  display: inline-block;
  justify-content: center;
  flex-direction: column;
  font-family: var(--police-anton);
  text-align: center;
  font-size: 16px;
}
@media screen and (max-width: 1300px) {
  .cercle1 p {
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  .cercle1 p {
    font-size: 12px;
  }
}

.cercle2 {
  width: 130px;
  height: 130px;
  background-color: var(--primary);
  padding: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  position: absolute;
  top: -20%;
  right: -35%;
}



@media screen and (max-width: 600px) {
  .cercle2 {
    width: 90px;
    height: 90px;
	  right: -50%;
	  padding: 0px;
  }
}
.cercle2 p {
  display: inline-block;
  justify-content: center;
  flex-direction: column;
  font-family: var(--police-anton);
  text-align: center;
  font-size: 15px;
}
@media screen and (max-width: 1300px) {
  .cercle2 p {
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  .cercle2 p {
    font-size: 12px;
  }
}

.page-mentionslegales {
  background-color: black;
  padding: 250px 20px 50px 20px;
  max-width: 1440px;
  margin: auto;
  display: flex;
  justify-content: center;
  flex-direction: column;
  font-family: var(--police-anton);
  text-align: center;
}
@media screen and (max-width:500px){
	.page-mentionslegales{
   padding: 150px 20px 50px 20px;
	}	
}
.page-mentionslegales .text-mentionleg {
  padding: 100px 0;
  padding: 100px 0 0 0;
  text-align: left;
  font-size: 14px;
  font-family: var(--police-text);
}
.page-mentionslegales .hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../images/img-clean-conddeg.jpg);
  background-position: bottom;
  height: 400px;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.page-mentionslegales h1 {
  font-size: 30px;
}

.page-condgen {
  background-color: black;
  padding: 250px 20px 50px 20px;
  max-width: 1440px;
  margin: auto;
  display: flex;
  justify-content: center;
  flex-direction: column;
  font-family: var(--police-anton);
  text-align: center;
}
@media screen and (max-width:500px){
	.page-condgen{
   padding: 150px 20px 50px 20px;
	}	
}
.page-condgen .text-condgen {
  padding: 100px 0 0 0;
  text-align: left;
  font-size: 14px;
  font-family: var(--police-text);
}
@media screen and (max-width:500px){
	.page-condgen .text-condgen{
  font-size: 12px;
	}	
}
.page-condgen .hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../images/hand-img.jpg);
  background-position: bottom;
  height: 400px;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.page-condgen h1 {
  font-size: 30px;
}

.text-20 {
  font-size: 20px;
	
}
@media screen and (max-width:500px){
	.text-20 {
  font-size: 16px;
	}
}


.nojq {
  display: none;
}


footer {
  background-color: var(--pink);
  padding: 0 0 20px 0;
  position: relative;
}
footer .bloc-footer {
  margin: auto;
  margin-left: 20px;
  margin-right: 20px;
  display: flex;
  justify-content: space-between;
  padding: 20px 0px;
}
@media screen and (max-width: 1024px) {
  footer .bloc-footer {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
  }
}
footer .bloc-footer .footer-logo {
  width: 33.3333333333%;
  color: white;
}
@media screen and (max-width: 1024px) {
  footer .bloc-footer .footer-logo {
    width: 100%;
    text-align: center;
  }
}
footer .bloc-footer .footer-logo h2 {
  font-family: "poppins-bold";
  font-size: 45px;
}
@media screen and (max-width: 500px) {
  footer .bloc-footer .footer-logo h2 {
    font-size: 30px;
  }
}
footer .bloc-footer .footer-logo .txt-logo {
  font-family: var(--police-anton), sans-serif;
  margin-top: 10px;
  width: 70%;
}
@media screen and (max-width: 1024px) {
  footer .bloc-footer .footer-logo .txt-logo {
    width: 100%;
  }
}
@media screen and (max-width: 800px) {
  footer .bloc-footer .footer-logo .txt-logo {
    font-size: 14px;
  }
}
@media screen and (max-width: 400px) {
  footer .bloc-footer .footer-logo .txt-logo {
    font-size: 12px;
  }
}
footer .bloc-footer .footer-logo .footer-icones {
  margin-top: 10px;
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 1024px) {
  footer .bloc-footer .footer-logo .footer-icones {
    justify-content: center;
  }
}
footer .bloc-footer .footer-logo .footer-icones a {
  color: white;
  transition: all 0.5s;
  font-size: 25px;
}
@media screen and (max-width: 800px) {
  footer .bloc-footer .footer-logo .footer-icones a {
    font-size: 18px;
  }
}
footer .bloc-footer .footer-logo .footer-icones a:hover {
  color: var(--primary);
}
footer .bloc-footer .bloc2-footer {
  font-family: "poppins-regular";
  text-align: center;
  width: 33.3333333333%;
  color: white;
}
@media screen and (max-width: 1024px) {
  footer .bloc-footer .bloc2-footer {
    width: 100%;
  }
}
footer .bloc-footer .bloc2-footer h3 {
  cursor: pointer;
  font-family: "poppins-bold";
  font-size: 25px;
  color: var(--yellow);
  letter-spacing: 2px;
}
@media screen and (max-width: 500px) {
  footer .bloc-footer .bloc2-footer h3 {
    font-size: 18px;
  }
}
footer .bloc-footer .bloc2-footer .adresse-footer {
  margin-top: 22px;
}
@media screen and (max-width: 1024px) {
  footer .bloc-footer .bloc2-footer .adresse-footer {
    margin-top: 10px;
  }
}
@media screen and (max-width: 800px) {
  footer .bloc-footer .bloc2-footer .adresse-footer p {
    font-size: 14px;
  }
}
footer .bloc-footer .bloc2-footer .adresse-footer p a {
  color: white;
  transition: all 0.5s;
  text-decoration: none;
  font-size: 14px;
}
footer .bloc-footer .bloc2-footer .adresse-footer p a:hover {
  color: var(--primary);
}
@media screen and (max-width: 500px) {
  footer .bloc-footer .bloc2-footer .adresse-footer p a {
    font-size: 12px;
  }
}
footer .bloc-footer .nav-footer {
  font-family: "poppins-regular";
  text-align: right;
  width: 33.3333333333%;
  color: white;
}
footer .bloc-footer .nav-footer ul {
  list-style-type: none;
}
@media screen and (max-width: 1024px) {
  footer .bloc-footer .nav-footer {
    text-align: center;
    width: 100%;
  }
}
footer .bloc-footer .nav-footer h3 {
  cursor: pointer;
  letter-spacing: 2px;
  font-family: "poppins-bold";
  font-size: 25px;
  color: var(--yellow);
}
@media screen and (max-width: 500px) {
  footer .bloc-footer .nav-footer h3 {
    font-size: 18px;
  }
}
footer .bloc-footer .nav-footer .menu {
  margin-top: 22px;
}
footer .bloc-footer .nav-footer .menu ul {
  list-style-type: none !important;
}
@media screen and (max-width: 1024px) {
  footer .bloc-footer .nav-footer .menu {
    margin-top: 10px;
  }
}
footer .bloc-footer .nav-footer .menu li a {
  color: white;
  text-decoration: none;
  transition: all 0.5s;
  font-size: 14px;
}
footer .bloc-footer .nav-footer .menu li a:hover {
  color: var(--primary);
}
@media screen and (max-width: 500px) {
  footer .bloc-footer .nav-footer .menu li a {
    font-size: 12px;
  }
}

.bottom-line{
	display: flex;
    justify-content: center;
    font-family: "poppins-regular";
    font-size: 14px;
	gap:5px;
}
@media screen and (max-width: 500px) {
  .bottom-line {
    font-size: 12px;
  }
}

.page-prestation {
  position: relative;
  padding: 200px 20px 150px 20px;
  background-color: black;
}
@media screen and (max-width: 900px) {
  .page-prestation {
    padding: 170px 20px 100px 20px;
  }
}
.page-prestation .zone-hero-prestation {
  max-width: 1440px;
  margin: auto;
  display: flex;
  justify-content: center;
  flex-direction: column;
  font-family: "ubuntu-regular";
  text-align: center;
}
.page-prestation .zone-hero-prestation .hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../images/image-menage.jpg);
  background-position: bottom;
  height: 400px;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
	border-radius:30px;
}
.page-prestation .zone-hero-prestation .title-hero {
  margin-top: 50px;
  text-align: left;
}
@media screen and (max-width: 500px) {
  .page-prestation .zone-hero-prestation .title-hero {
    font-size: 14px;
  }
}
.page-prestation .zone-hero-prestation .title-hero a {
  color: white;
  text-decoration: none;
  position: relative;
  transition: all 0.4s;
}
.page-prestation .zone-hero-prestation .title-hero a:hover {
  color: var(--primary);
}
.page-prestation .zone-hero-prestation .title-hero a::after {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 0;
  background-color: var(--primary);
  width: 83%;
  height: 2px;
}
.page-prestation .zone-hero-prestation h1 {
  font-family: var(--police-anton), sans-serif;
  margin-top: 50px;
  font-size: 35px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .page-prestation .zone-hero-prestation h1 {
    font-size: 30px;
  }
}
@media screen and (max-width: 500px) {
  .page-prestation .zone-hero-prestation h1 {
    font-size: 20px;
  }
}
.page-prestation .zone-hero-prestation h2 {
  font-family: "poppins-regular";
  margin-top: 10px;
  font-size: 25px;
  color: white;
}
@media screen and (max-width: 1000px) {
  .page-prestation .zone-hero-prestation h2 {
    font-size: 20px;
  }
}
@media screen and (max-width: 500px) {
  .page-prestation .zone-hero-prestation h2 {
    font-size: 16px;
  }
}
.page-prestation .zone-hero-prestation .bloc-card-prestations {
  margin-top: 60px;
}
.page-prestation .zone-hero-prestation .bloc-card-prestations h3 {
  text-align: left;
  font-family: var(--police-anton), sans-serif;
  font-size: 18px;
  text-transform: capitalize;
}
@media screen and (max-width: 1000px) {
  .page-prestation .zone-hero-prestation .bloc-card-prestations h3 {
    font-size: 16px;
    text-align: center;
  }
}
.page-prestation .zone-hero-prestation .bloc-card-prestations .list-taxonomies {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .page-prestation .zone-hero-prestation .bloc-card-prestations .list-taxonomies {
    flex-direction: column;
  }
}
.page-prestation .zone-hero-prestation .bloc-card-prestations .list-taxonomies .titre-all {
  background-color: var(--primary);
}
.page-prestation .zone-hero-prestation .bloc-card-prestations .list-taxonomies h3 {
  cursor: pointer;
  position: relative;
  font-family: var(--police-anton), sans-serif;
  padding: 20px;
  transition: all 0.5s;
  border-radius: 10px;
}
.page-prestation .zone-hero-prestation .bloc-card-prestations .list-taxonomies h3:hover {
  background-color: var(--primary);
}
@media screen and (max-width: 1000px) {
  .page-prestation .zone-hero-prestation .bloc-card-prestations .list-taxonomies h3 {
    padding: 15px;
  }
}
@media screen and (max-width: 500px) {
  .page-prestation .zone-hero-prestation .bloc-card-prestations .list-taxonomies h3 {
    font-size: 14px;
  }
}
.page-prestation .zone-hero-prestation .bloc-card-prestations .bloc-cards-nettoyage {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 3fr);
  gap: 30px;
  display: none;
}
@media screen and (max-width: 1200px) {
  .page-prestation .zone-hero-prestation .bloc-card-prestations .bloc-cards-nettoyage {
    grid-template-columns: repeat(2, 2fr);
  }
}
@media screen and (max-width: 768px) {
  .page-prestation .zone-hero-prestation .bloc-card-prestations .bloc-cards-nettoyage {
    grid-template-columns: repeat(1, 1fr);
  }
}
.page-prestation .zone-hero-prestation .bloc-card-prestations .bloc-cards-nettoyage .card-nettoyage {
  background-color: white;
  padding: 20px;
  border-radius: 20px;
  font-family: var(--police-text);
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 4px 4px 30px 0px var(--primary);
  height: 500px;
  justify-content: space-between;
  text-decoration: none;
}
.page-prestation .zone-hero-prestation .bloc-card-prestations .bloc-cards-nettoyage .card-nettoyage img {
  width: 100%;
  height: 60%;
  object-fit: cover;
}
.page-prestation .zone-hero-prestation .bloc-card-prestations .bloc-cards-nettoyage .card-nettoyage h3 {
  color: var(--primary);
  text-align: center;
  font-family: var(--police-anton), sans-serif;
  font-size: 20px;
}
@media screen and (max-width: 500px) {
  .page-prestation .zone-hero-prestation .bloc-card-prestations .bloc-cards-nettoyage .card-nettoyage h3 {
    font-size: 18px;
  }
}
.page-prestation .zone-hero-prestation .bloc-card-prestations .bloc-cards-nettoyage .card-nettoyage p {
  color: var(--black);
  font-family: "poppins-light";
  font-size: 14px;
}
@media screen and (max-width: 500px) {
  .page-prestation .zone-hero-prestation .bloc-card-prestations .bloc-cards-nettoyage .card-nettoyage p {
    font-size: 14px;
  }
}
.page-prestation .zone-hero-prestation .bloc-card-prestations .bloc-cards-nettoyage .card-nettoyage .prix {
  font-family: "poppins-bold", sans-serif;
}
.page-prestation .zone-hero-prestation .bloc-card-prestations .bloc-cards-nettoyage .card-nettoyage .btn-card {
  color: white;
  text-decoration: none;
  font-family: "poppins-light";
  background-color: var(--primary);
  padding: 10px 40px;
  border-radius: 15px;
}
@media screen and (max-width: 500px) {
  .page-prestation .zone-hero-prestation .bloc-card-prestations .bloc-cards-nettoyage .card-nettoyage .btn-card {
    font-size: 14px;
  }
}
.page-prestation .zone-hero-prestation .bloc-card-prestations .bloc-cards-service {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 3fr);
  gap: 30px;
  display: none;
}
@media screen and (max-width: 1200px) {
  .page-prestation .zone-hero-prestation .bloc-card-prestations .bloc-cards-service {
    grid-template-columns: repeat(2, 2fr);
  }
}
@media screen and (max-width: 768px) {
  .page-prestation .zone-hero-prestation .bloc-card-prestations .bloc-cards-service {
    grid-template-columns: repeat(1, 1fr);
  }
}
.page-prestation .zone-hero-prestation .bloc-card-prestations .bloc-cards-service .card-service {
  background-color: white;
  padding: 20px;
  border-radius: 20px;
  font-family: var(--police-text);
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 4px 4px 30px 0px rgba(68, 178, 95, 0.8);
  height: 500px;
  justify-content: space-between;
  text-decoration: none;
}
.page-prestation .zone-hero-prestation .bloc-card-prestations .bloc-cards-service .card-service:hover .btn-card {
  background-color: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}
.page-prestation .zone-hero-prestation .bloc-card-prestations .bloc-cards-service .card-service img {
  width: 100%;
  height: 60%;
  object-fit: cover;
}
.page-prestation .zone-hero-prestation .bloc-card-prestations .bloc-cards-service .card-service h3 {
  color: var(--primary);
  text-align: center;
  font-family: var(--police-anton), sans-serif;
  font-size: 20px;
}
@media screen and (max-width: 500px) {
  .page-prestation .zone-hero-prestation .bloc-card-prestations .bloc-cards-service .card-service h3 {
    font-size: 18px;
  }
}
.page-prestation .zone-hero-prestation .bloc-card-prestations .bloc-cards-service .card-service p {
  color: var(--black);
  font-family: "poppins-light";
}
@media screen and (max-width: 500px) {
  .page-prestation .zone-hero-prestation .bloc-card-prestations .bloc-cards-service .card-service p {
    font-size: 14px;
  }
}
.page-prestation .zone-hero-prestation .bloc-card-prestations .bloc-cards-service .card-service .prix {
  font-family: "poppins-bold", sans-serif;
}
.page-prestation .zone-hero-prestation .bloc-card-prestations .bloc-cards-service .card-service .btn-card {
  color: white;
  text-decoration: none;
  font-family: "poppins-light";
  background-color: var(--primary);
  padding: 10px 40px;
  border-radius: 15px;
  border: 2px solid transparent;
  transition: all 0.4s;
}
@media screen and (max-width: 500px) {
  .page-prestation .zone-hero-prestation .bloc-card-prestations .bloc-cards-service .card-service .btn-card {
    font-size: 14px;
  }
}
.page-prestation .zone-hero-prestation .bloc-card-prestations .bloc-cards-all {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 3fr);
  gap: 50px;
  grid-row-gap: 70px;
}
@media screen and (max-width: 1200px) {
  .page-prestation .zone-hero-prestation .bloc-card-prestations .bloc-cards-all {
    grid-template-columns: repeat(2, 2fr);
  }
}
@media screen and (max-width: 900px) {
  .page-prestation .zone-hero-prestation .bloc-card-prestations .bloc-cards-all {
    grid-template-columns: repeat(1, 1fr);
  }
}
.page-prestation .zone-hero-prestation .bloc-card-prestations .bloc-cards-all .card-prestation {
  background-color: white;
  padding: 20px 20px;
  border-radius: 20px;
  font-family: var(--police-text);
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 4px 4px 30px 0px var(--primary);
  height:500px;
  justify-content: space-between;
  text-decoration: none;
}
@media screen and (max-width: 900px) {
  .page-prestation .zone-hero-prestation .bloc-card-prestations .bloc-cards-all .card-prestation {
    
    justify-content: space-evenly;
  }
}
.page-prestation .zone-hero-prestation .bloc-card-prestations .bloc-cards-all .card-prestation:hover .btn-card {
  background-color: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}
.page-prestation .zone-hero-prestation .bloc-card-prestations .bloc-cards-all .card-prestation img {
  width: 100%;
  height: 60%;
  object-fit: cover;
  border-radius: 20px;
}
.page-prestation .zone-hero-prestation .bloc-card-prestations .bloc-cards-all .card-prestation h3 {
  color: var(--primary);
  text-align: center;
  font-family: var(--police-anton), sans-serif;
  font-size: 20px;
}
@media screen and (max-width: 500px) {
  .page-prestation .zone-hero-prestation .bloc-card-prestations .bloc-cards-all .card-prestation h3 {
    font-size: 18px !important;
  }
}
.page-prestation .zone-hero-prestation .bloc-card-prestations .bloc-cards-all .card-prestation p {
  color: var(--black);
  font-family: "poppins-light";
  font-size: 14px !important;
}
@media screen and (max-width: 500px) {
  .page-prestation .zone-hero-prestation .bloc-card-prestations .bloc-cards-all .card-prestation p {
    font-size: 12px !important;
  }
}
.page-prestation .zone-hero-prestation .bloc-card-prestations .bloc-cards-all .card-prestation .prix {
  font-family: "poppins-bold", sans-serif;
}
.page-prestation .zone-hero-prestation .bloc-card-prestations .bloc-cards-all .card-prestation .btn-card {
  color: white;
  text-decoration: none;
  font-family: "poppins-light";
  background-color: var(--primary);
  padding: 10px 40px;
  border-radius: 15px;
  border: 2px solid transparent;
  transition: all 0.4s;
}
@media screen and (max-width: 500px) {
  .page-prestation .zone-hero-prestation .bloc-card-prestations .bloc-cards-all .card-prestation .btn-card {
    font-size: 14px;
  }
}

.text-anton {
  font-family: var(--police-anton), sans-serif;
}

.single-prestation {
	background-color:black;
  padding: 200px 20px;
}
@media screen and (max-width:768px){
	.single-prestation{
		padding:150px 20px;
	}
}
.single-prestation .bloc-single-prestation {
  max-width: 1440px;
  margin: auto;
}
.single-prestation .bloc-single-prestation .bloc-zone-hero-single {
	height:350px;
	position:relative;
}

.single-prestation .bloc-single-prestation .bloc-zone-hero-single img {
  width: 100%;
  border-radius: 30px;
  filter: brightness(0.4);
  position: relative;
  height: 100%;
  object-fit: cover;
}
.single-prestation .bloc-single-prestation .bloc-zone-hero-single .text-hero-single {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .single-prestation .bloc-single-prestation .bloc-zone-hero-single .text-hero-single {
    top: 50%;
  }
}
.single-prestation .bloc-single-prestation .bloc-zone-hero-single .text-hero-single .title_hero_single {
  color: white;
  font-family: var(--police-anton), sans-serif;
  font-size: 30px;
  text-transform: uppercase;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .single-prestation .bloc-single-prestation .bloc-zone-hero-single .text-hero-single .title_hero_single {
    font-size: 25px;
  }
}
@media screen and (max-width: 500px) {
  .single-prestation .bloc-single-prestation .bloc-zone-hero-single .text-hero-single .title_hero_single {
    font-size: 18px;
  }
}
.single-prestation .bloc-single-prestation .bloc-zone-hero-single .text-hero-single p {
  color: white;
  text-align: center;
  font-family: "ubuntu-regular", sans-serif;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .single-prestation .bloc-single-prestation .bloc-zone-hero-single .text-hero-single p {
    font-size: 14px;
  }
}
.single-prestation .bloc-single-prestation .bloc-description-single {
  background-color: white;
  margin-top: 90px;
  display: flex;
  border-radius: 30px;
}
@media screen and (max-width: 900px) {
  .single-prestation .bloc-single-prestation .bloc-description-single {
    flex-direction: column;
	  height:auto;
  }
}
.single-prestation .bloc-single-prestation .bloc-description-single .text-desc-single {
  color: var(--pink);
  width: 50%;
  font-family: "poppins-regular";
  padding: 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
  font-size: 14px;
}
@media screen and (max-width: 900px) {
  .single-prestation .bloc-single-prestation .bloc-description-single .text-desc-single {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .single-prestation .bloc-single-prestation .bloc-description-single .text-desc-single {
    font-size: 16px;
	  padding:30px;
	  font-size:14px;
  }
}
@media screen and (max-width: 500px) {
  .single-prestation .bloc-single-prestation .bloc-description-single .text-desc-single {
    
	  font-size:12px;
  }
}
.single-prestation .bloc-single-prestation .bloc-description-single .text-desc-single h2 {
  color: var(--primary);
  font-family: "poppins-bold";
  font-size: 30px;
}
.single-prestation .bloc-single-prestation .bloc-description-single .text-desc-single a {
  color: white;
  text-decoration: none;
  font-weight: 700;
}
.single-prestation .bloc-single-prestation .bloc-description-single .text-desc-single .btn-desc-single {
  color: white;
  text-decoration: none;
  font-family: "poppins-light";
  background-color: var(--primary);
  padding: 10px 40px;
  border-radius: 15px;
  border: 2px solid transparent;
  transition: all 0.4s;
  width: 50%;
  cursor: pointer;
}
@media screen and (max-width: 900px) {
  .single-prestation .bloc-single-prestation .bloc-description-single .text-desc-single .btn-desc-single {
    width: 70%;
  }
}
@media screen and (max-width: 500px) {
  .single-prestation .bloc-single-prestation .bloc-description-single .text-desc-single .btn-desc-single {
    font-size: 14px;
  }
}
.single-prestation .bloc-single-prestation .bloc-description-single .text-desc-single .prev-txt-desc-single {
  font-size: 15px;
}
@media screen and (max-width: 900px) {
  .single-prestation .bloc-single-prestation .bloc-description-single .text-desc-single .prev-txt-desc-single {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .single-prestation .bloc-single-prestation .bloc-description-single .text-desc-single .prev-txt-desc-single {
    font-size: 10px;
  }
}
.single-prestation .bloc-single-prestation .bloc-description-single .img-desc-single {
  width: 50%;
}
@media screen and (max-width: 900px) {
  .single-prestation .bloc-single-prestation .bloc-description-single .img-desc-single {
    width: 100%;
	  height:auto;
  }
}
.single-prestation .bloc-single-prestation .bloc-description-single .img-desc-single img {
  width: 100%;
  height: 100%;
  border-radius: 0px 30px 30px 0;
  object-fit: cover;
	object-position:top;
}
@media screen and (max-width: 900px) {
  .single-prestation .bloc-single-prestation .bloc-description-single .img-desc-single img {
    border-radius: 0px 0px 30px 30px;
  }
}
.single-prestation .bloc-single-prestation .bloc-description-single-complete {
  width: 100%;
  background-color: white;
  margin-top: 90px;
  border-radius: 30px;
  padding: 50px;
  font-family: "poppins-regular", sans-serif;
}
.single-prestation .bloc-single-prestation .bloc-description-single-complete h2 {
  color: var(--primary);
  font-family: "poppins-bold", sans-serif;
  font-size: 30px;
}
.single-prestation .bloc-single-prestation .bloc-description-single-complete a {
  color: var(--primary);
}
.single-prestation .bloc-single-prestation .bloc-description-single-complete .text-description-complete-single {
  color: black;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.single-prestation .bloc-single-prestation .bloc-description-single-complete .text-description-complete-single .btn-desc-single {
  color: white;
  text-decoration: none;
  font-family: "poppins-light";
  background-color: var(--primary);
  padding: 10px 40px;
  border-radius: 15px;
  border: 2px solid transparent;
  transition: all 0.4s;
  width: 50%;
  margin-top: 30px;
  cursor: pointer;
}
@media screen and (max-width: 500px) {
  .single-prestation .bloc-single-prestation .bloc-description-single-complete .text-description-complete-single .btn-desc-single {
    font-size: 14px;
  }
}
.single-prestation .bloc-single-prestation .bloc-contact-single {
  width: 100%;
  background-color: white;
  border-radius: 30px;
  padding: 50px;
}
.single-prestation .bloc-single-prestation .bloc-contact-single h2 {
  color: var(--primary);
  font-family: "poppins-bold", sans-serif;
  font-size: 20px;
  text-align: center;
}
.single-prestation .bloc-single-prestation .bloc-contact-single .form {
  text-align: center;
  width: 70%;
  margin: auto;
}
.single-prestation .bloc-single-prestation .bloc-contact-single .form .blocform {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.single-prestation .bloc-single-prestation .bloc-contact-single .form .blocform .form-field {
  width: 50%;
}
.single-prestation .bloc-single-prestation .bloc-contact-single .form .blocform input {
  height: 50px;
  border-radius: 8px;
  border: 1px solid light-dark(rgb(118, 118, 118), rgb(133, 133, 133));
  width: 100%;
}
.single-prestation .bloc-single-prestation .bloc-contact-single .form .blocform input:focus {
  border-color: var(--primary);
  outline-color: var(--primary);
}
.single-prestation .bloc-single-prestation .bloc-contact-single .form p {
  margin-top: 15px;
  gap: 5px;
}
.single-prestation .bloc-single-prestation .bloc-contact-single .form label {
  color: var(--primary);
  font-family: "poppins-regular", sans-serif;
}
.single-prestation .bloc-single-prestation .bloc-contact-single .form textarea {
  height: 30%;
  border-radius: 8px;
  width: 100%;
}
.single-prestation .bloc-single-prestation .bloc-contact-single .form textarea:focus {
  border-color: var(--primary);
  outline-color: var(--primary);
}
.single-prestation .bloc-single-prestation .bloc-contact-single .form .btn_form {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.single-prestation .bloc-single-prestation .bloc-contact-single .form .btn_form p {
  display: flex;
  justify-content: center;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.single-prestation .bloc-single-prestation .bloc-contact-single .form .btn_form p input {
  height: 45px;
  margin-top: 30px;
  border-radius: 10px;
  background-color: var(--primary);
  font-family: "poppins-regular";
  border: none;
  color: white;
  width: 40%;
  cursor: pointer;
  font-size: 16px;
  box-shadow: 4px 4px 30px 0px rgba(68, 178, 95, 0.8);
}
@media screen and (max-width: 550px) {
  .single-prestation .bloc-single-prestation .bloc-contact-single .form .btn_form p input {
    width: 60%;
    padding: 20px 45px;
  }
}

.prix {
  font-family: "poppins-bold", sans-serif;
  margin-left: 20px;
  font-size: 20px;
}

.underline-primary {
  text-decoration: underline;
  color: var(--primary);
}

.bold-primary {
  color: var(--primary);
  font-family: "poppins-bold", sans-serif;
}

.bold {
  font-family: "poppins-bold", sans-serif;
}
.bold-dark {
  color: var(--pink);
  font-family: "poppins-bold", sans-serif;
}


.formulaire_devis{
  padding:200px 30px;
  font-family: var(--police-text);
  display:flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color:black;
  height:100vh;
}
.title-formulaire-devis{
  color:var(--pink);
  font-size:30px;
  font-weight:bold;
  font-family:var(--police-anton);
}
@media screen and (max-width:768px){
    .title-formulaire-devis{
        font-size:20px;
    }
}
.sstitle-formulaire-devis{
  color:white;
  font-size:18px;
}
@media screen and (max-width:768px){
    .sstitle-formulaire-devis{
        font-size:15px;
    }
}
.devis-form{
  padding-top:70px;
  display:inline-flex;
  font-family: var(--police-text);
  flex-direction: column;
  gap:20px;
  font-size:18px;
  width:100%;
}
.devis-form label{
  color:white;
}

.indicatif{
  font-size:14px;
  color:red;
  display:block;
}
.devis-form .form-group{
  display:flex;
  flex-direction: column;
}
.devis-form select, input{
  height:50px;
  width:100%;
}

.hidden { 
  display:none !important; 
}

.bloc-checkbox{
  display:flex;
  flex-direction: column;
  align-items: center;
  gap:10px;
}


.input-checkbox-vitre{
  height:20px !important;
}
.input-checkbox-nbre{
  width:30% !important;
}


input[type=number]::-webkit-inner-spin-button {
  opacity: 1 !important;
}

.hidden {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.visible {
  display: block;
  opacity: 1;
}

.spanVitreNotPossible{
  color:var(--pink);
}

.devis-result{
  color:var(--pink);
  font-size: 16px;
  font-weight:bold;
}
@media screen and (max-width:768px){
    .devis-result{
        font-size: 14px;
    }
}
.heure-result{
  color:var(--primary);
  font-size:16px;
}
@media screen and (max-width:768px){
    .heure-result{
        font-size: 14px;
    }
}
.deplacement-result{
  color:var(--primary);
  font-size: 16px;
}
@media screen and (max-width:768px){
    .deplacement-result{
        font-size: 14px;
    }
}

.result-canape-text{
color:var(--primary);
  font-size: 16px;
}
@media screen and (max-width:768px){
    .result-canape-text{
        font-size: 14px;
    }
}
.text-heure-information-heure{
  color:red;
  font-size:13px;
}
.supplementResultatDevis{
    color:var(--primary);
    font-size:16px;
}
@media screen and (max-width:768px){
   .supplementResultatDevis{
        font-size: 14px;
    }
}

#boutonSubmit{
  height:50px;
  border: 1px solid var(--pink);
  background-color: white;
  cursor:pointer;
}

#boutonSubmit:hover{
  background-color:var(--pink);
  color:white;
}

.desc-estim-prov{
    color:var(--yellow);
    font-size:14px;
    
}
@media screen and (max-width:768px){
    .desc-estim-prov{
        font-size:12px;
    }
}
#confirmation-section{
    color:var(--pink);
}
.descDevisFinalConfirm{
    color:var(--pink);
    font-size:14px;
}
@media screen and (max-width:768px){
    .descDevisFinalConfirm{
        font-size:12px;
    }
}
#btnclickConfirm{
    height: 50px;
    margin-top: 20px;
    background-color: white;
    padding: 0 30px;
    border: 1px solid var(--pink);
    cursor: pointer;
}
#btnclickConfirm:hover{
    background-color:var(--pink);
    color:white;
}
#resultatHeureSpan{
    font-size:17px;
    color:red;
}
@media screen and (max-width:768px){
   #resultatHeureSpan{
        font-size:15px;
    }
}

.span_result{
    font-size:17px;
    color:red;
}

@media screen and (max-width:768px){
  .span_result{
        font-size:15px;
    }
}

.text-description-complete-article{
    width:100%;
    color: var(--pink);
    font-family: "poppins-regular";
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: space-between;
    font-size: 14px;
}
@media screen and (max-width:600px){
    .text-description-complete-article{
        font-size:12px;
    }
}
.text-description-complete-article h2{
    color:var(--primary);
    font-weight:bold;
    font-family:var(--police-anton);
}
@media screen and (max-width:600px){
    .text-description-complete-article h2{
        font-size:16px;
    }
}
article{
    height:100vh;
}

.title_article{
    color:var(--pink);
    font-family:var(--police-anton);
    font-size:20px;
}

.blocblog{
    position: relative;
    padding-bottom:100px;
    background-color: black; 
}


@media screen and (max-width: 900px) {
  
}
.blocblog .zone-hero-blog {
  max-width: 1440px;
  margin: auto;
	margin-top:100px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  font-family: "ubuntu-regular";
  text-align: center;
  height:500px;
}
.blocblog .zone-hero-blog .hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../images/couple-menage.jpg);
  background-position: bottom;
  height: 400px;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
	border-radius:30px;
}
.blocblog .zone-hero-blog .title-hero {
  margin-top: 50px;
  text-align: left;
}
@media screen and (max-width: 500px) {
  .blocblog .zone-hero-blog .title-hero {
    font-size: 14px;
  }
}
.blocblog .zone-hero-blog .title-hero a {
  color: white;
  text-decoration: none;
  position: relative;
  transition: all 0.4s;
}
.blocblog .zone-hero-blog .title-hero a:hover {
  color: var(--primary);
}
.blocblog .zone-hero-blog .title-hero a::after {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 0;
  background-color: var(--primary);
  width: 83%;
  height: 2px;
}
.blocblog .zone-hero-blog h1 {
  font-family: var(--police-anton), sans-serif;
  margin-top: 50px;
  font-size: 35px;
  color:white;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .blocblog .zone-hero-blog h1 {
    font-size: 30px;
  }
}
@media screen and (max-width: 500px) {
  .blocblog .zone-hero-blog h1 {
    font-size: 20px;
  }
}

.card-article{
    background-color: white;
  padding: 20px 20px;
  border-radius: 20px;
  font-family: var(--police-text);
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 4px 4px 30px 0px var(--primary);
  justify-content: space-between;
  text-decoration: none;
}
.blocblog .bloc-card-prestations{
    padding:0 20px;
}
.blocblog .bloc-card-prestations .bloc-cards-all .card-article {
  background-color: white;
  border-radius: 20px;
  font-family: var(--police-text);
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 4px 4px 30px 0px var(--primary);
  height:500px;
  width:100%;
  justify-content: space-between;
  text-decoration: none;
}
@media screen and (max-width: 900px) {
  .blocblog  .bloc-card-prestations .bloc-cards-all .card-article {
    
    justify-content: space-evenly;
  }
}

.blocblog .bloc-card-prestations .bloc-cards-all .card-article img{
     width: 100%;
  height: 60%;
  object-fit: cover;
  border-radius: 20px;
}

.blocblog .bloc-card-prestations .bloc-cards-all .card-article a{
    text-decoration:none;
    color:var(--pink);
    font-size:18px;
	font-family:"poppins-bold", sans-serif;
}
.blocblog .bloc-card-prestations .bloc-cards-all .card-article p:nth-of-type(2) a {
 text-decoration:underline !important;
}

.blocblog  .bloc-card-prestations .bloc-cards-all {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 3fr);
  gap: 50px;
  grid-row-gap: 70px;
}
@media screen and (max-width: 1200px) {
 .blocblog  .bloc-card-prestations .bloc-cards-all {
    grid-template-columns: repeat(2, 2fr);
  }
}
@media screen and (max-width: 900px) {
  .blocblog  .bloc-card-prestations .bloc-cards-all {
    grid-template-columns: repeat(1, 1fr);
  }
}

.faq{
   
}
.bloc-faq{
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.zone_hero_faq{
    position:relative;
    height:400px;
    background-color: black;
    margin-top:50px;
}
.zone_hero_faq h1{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    font-family: var(--police-anton), Sans-Serif;
}

.faq-question{
    font-size:20px;
    font-weight:bold;
    color:var(--pink);
    font-family:"poppins-bold";
    cursor:pointer;
    border-bottom: 1px solid #ccc;
    transition: all 0.3s ease;
    position:relative;
}
@media screen and (max-width:768px){
    .faq-question{
        font-size:16px;
    }
}

.faq-question::after{
    content:"+";
    position:absolute;
   right:0;
    
}

.faq-item{
    display: flex;
    flex-direction: column;
    gap: 10px;
transition: all 0.3s ease;
}


.faq-answer{
    color:var(--primary);
    font-size:16px;
    font-family:"poppins-regular";
    display: none;
    transition: all 0.3s ease;
}

@media screen and (max-width:768px){
    .faq-answer{
        font-size:14px;
    }
}

.bloc-faq{
    padding:100px 20px;
}

.galerie{
	margin-top:150px;
}