/* 
    Created on : 9 janv. 2024, 15:17:15
    Author     : carlito
*/
@charset "utf-8";
/* CSS Document */

.AvisClient {
	padding: 2%;
    width: 96%;
    position: relative;
    clear: both;
    display: flex;
    justify-content: center;
	margin-bottom: 50px;
}
.contentAvis {
	max-width: 1200px;
    width: 100%;
	z-index: 1;
  display: flex;
    flex-direction: column;
    align-items: center;
}
.contentAvis h3 {
	font-family: 'Roboto', sans-serif;
    float: left;
    clear: both;
    width: 100%;
    text-align: center;
    display: grid;
    text-transform: uppercase;
    font-size: 2em;
    line-height: 1em;
    color: black;
    margin-top: 2em;
    font-weight: 600;
    border: none;
    padding: unset;
    margin: unset;
}
.contentAvis h3 span {
    font-family: 'Exo 2', sans-serif;
    font-size: 2.2em;
    color: #8cbe23;
}
.contentAvis img {
  width: 80%;
  max-width: 200px;
  margin: 16px 0;
}
.contentAvis p {
  font-weight: 100;
  color: #fdd216;
  line-height: 0em;
  margin: 0 0 30px;
}
.contentAvis .TousAvis {
        text-align: center;
    width: 90%;
    clear: both;
    float: left;
    margin: 35px 0;
    padding: 0px 5%;
    position: relative;
}
.contentAvis .TousAvis:before {
	content: "";
	width: 100%;
	height: 1px;
	/*background-color: #8cbe23;*/
	background: rgb(255,255,255);
background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(140,190,35,1) 50%, rgba(255,255,255,0) 100%);
background: -o-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(140,190,35,1) 50%, rgba(255,255,255,0) 100%);
background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(140,190,35,1) 50%, rgba(255,255,255,0) 100%);
	position: absolute;
	left: 0;
	top: 24px;
	z-index: 0;
}
.contentAvis .TousAvis a {
	font-size: 0.8em;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
	color: #000000;
	background: white;
	padding: 0 12px;
    position: absolute;
        height: 50px;
    line-height: 50px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 0);
	transition: all 0.5s;
}
.contentAvis .TousAvis a:hover {
	color: #8cbe23;
	letter-spacing: 0.2em;
}

/* Slider */
#slider {
  width: 100%;
  height: 250px;
  position: relative;
  overflow: hidden;
}
@keyframes load {
  from {
    left: -100%;
  }
  to {
    left: 0;
  }
}
.slides {
  width: 400%;
  height: 100%;
  position: relative;
  -webkit-animation: slide 50s infinite;
  -moz-animation: slide 50s infinite;
  animation: slide 50s infinite;
}
.slider {
  width: 25%;
  height: 100%;
  float: left;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* Contents */
.slider .content {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
}
.slider .content:before, .content:after {
	font-family: 'Exo 2', sans-serif;
    font-size: 16em;
    position: absolute;
    color: #efefef;
	z-index: 0;
}
.slider .content:before {
	content: '“';
    left: 10%;
	top: -60px;
}
.slider .content:after {
	content: '”';
    right: 10%;
	top: 60px;
}
.content-txt {
    -webkit-animation: content-s 15s infinite;
    -moz-animation: content-s 15s infinite;
    animation: content-s 15s infinite;
	margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
	z-index: 5;
}

.content-txt p {
  font-weight: normal;
    font-size: 1em;
    line-height: 1.5em;
    font-style: italic;
    color: #444;
    text-align: center;
	margin: 7px;
}
.content-txt p small {
  font-weight: bold;
    font-size: 0.8em;
    font-style: normal;
    color: #000;
	text-transform: uppercase;
}
.content-txt p small span {
    color: #6b6b6b;
    margin-right: 12px;
	text-transform: none;
}
.content-txt a {
	font-family: 'Exo 2', sans-serif;
    color: #8cbe23;
    width: 100%;
	padding: 0;
    text-align: center;
	display: inline-grid;
	text-decoration: none;
	transition: letter-spacing 0.5s;
}
.content-txt a:before {
	content: "\f216";
	font-family: "Ionicons";
    font-size: 4rem;
	margin-right: 5px;
}
.content-txt a:after {
	content: attr(data-TitreChantier);
    margin-left: 7px;
	opacity: 0;
	transition: opacity 2s;
}
.content-txt a:hover {
    color: #000000;
	font-style: italic;
	letter-spacing: 0.1em;
}
.content-txt a:hover:after {
    opacity: 1;
}
.content-txt a:hover:before {
    font-style: normal;
}

/* Switch */
.switch {
    position: absolute;
    bottom: 50px;
    z-index: 99;
    left: 45%;
}
.switch > ul {
  list-style: none;
}
.switch > ul > li {
      width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #333;
    float: left;
    margin-right: 5px;
    cursor: pointer;
}
.switch ul {
  overflow: hidden;
}
.on {
  width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #8cbe23;
    position: relative;
    -webkit-animation: on 30s infinite;
    -moz-animation: on 30s infinite;
    animation: on 30s infinite;
}

/* Animation */
@-webkit-keyframes slide {
  0%,
  100% {
    margin-left: 0%;
  }
  21% {
    margin-left: 0%;
  }
  25% {
    margin-left: -100%;
  }
  46% {
    margin-left: -100%;
  }
  50% {
    margin-left: -200%;
  }
  71% {
    margin-left: -200%;
  }
  75% {
    margin-left: -300%;
  }
  96% {
    margin-left: -300%;
  }
}
@-moz-keyframes slide {
  0%,
  100% {
    margin-left: 0%;
  }
  21% {
    margin-left: 0%;
  }
  25% {
    margin-left: -100%;
  }
  46% {
    margin-left: -100%;
  }
  50% {
    margin-left: -200%;
  }
  71% {
    margin-left: -200%;
  }
  75% {
    margin-left: -300%;
  }
  96% {
    margin-left: -300%;
  }
}
@keyframes slide {
  0%,
  100% {
    margin-left: 0%;
  }
  21% {
    margin-left: 0%;
  }
  25% {
    margin-left: -100%;
  }
  46% {
    margin-left: -100%;
  }
  50% {
    margin-left: -200%;
  }
  71% {
    margin-left: -200%;
  }
  75% {
    margin-left: -300%;
  }
  96% {
    margin-left: -300%;
  }
}


@media (max-width: 1400px) {
	
}

/*Large devices (desktops, less than 1200px)*/
@media (max-width: 1199.98px) {
	
}

/*Medium devices (tablets, less than 992px)*/
@media (max-width: 991.98px) {
	.content-txt {
		width: 70%;
	}
	.slider .content:before {
		left: 5%;
	}
	.slider .content:after {
		right: 5%;
	}
}

/*Small devices (landscape phones, less than 768px)*/
@media (max-width: 767.98px) {
	#slider {
	  height: 300px;
	}
	.content-txt {
		width: 80%;
	}
	.slider .content:before {
		left: 0%;
	}
	.slider .content:after {
		right: 0%;
	}
}

/*Small devices (landscape phones, less than 768px)*/
@media (max-width: 575.98px) {
	.contentAvis h3 {
		font-size: 1.2em;
		margin-top: 4em;
	}
	#slider {
	  height: 300px;
	}
	.content-txt {
		width: 80%;
	}
}

/* XXXXXXXXXXXXXXXXXXXXXXXXXXXX     Liste des avis    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */

.AvisClientListContainer {
  background: #fff;
  box-shadow: 0px 0px 30px #dddddd;
  padding: 4%;
  width: 92%;
  position: relative;
  margin: 0px auto 30px;
  display: inline-block;
  height: fit-content;
}
.AvisClientFicheLinkContent {
  width: 25%;
  position: sticky;
  top: 180px;
  float: left;
}
.AvisClientFicheLink {
  text-decoration: none;
  background: #171717;
  display: block;
  border-radius: 0 0 7px 7px;
}
.AvisClientFicheLink:hover img {
  filter: brightness(0.5);
}
.AvisClientFicheLink legend {
  color: white;
  font-size: 100%;
  line-height: 140%;
  padding: 10px 5%;
  margin-bottom: 20px;
}
.AvisClientFicheLink legend small {
  font-size: 12px;
  font-weight: 400;
  margin-top: 5px;
  color: #8c8c8c;
  padding-top: 2px;
}
.AvisClientFicheLink legend small span {
  border: solid 1px;
  padding: 0 3px;
  transition: all 0.5s;
}
.AvisClientFicheLink mark {
  color: #6daa38;
  border: solid 1px #6daa38;
  background: #fff;
  margin: 0px 7px 4px 0;
  padding: 5px;
  float: left;
  transition: all 0.5s;
  white-space: nowrap;
  position: relative;
  font-size: 0.7em;
}
.AvisClientFicheLink img {
  width: 100%!important;
  transition: all 0.5s;
  max-width: unset;
  margin: 0;
}
.AvisClientListContent {
  width: 70%;
  margin-left: 30%;
  position: relative;
}
.AvisClientItemClient {
  position: relative;
  width: 100%;
  margin: 0;
}
.AvisClientItemClient p {
  float: left;
  margin: 20px 0 40px 5%!important;
  font-style: italic;
  font-size: 1.2em;
  color: black!important;
  line-height: 150%!important;
  width: 95%;
}
.AvisClientItemID {
  width: 100%;
  position: relative;
  float: left;
  display: flex;
}
.AvisClientItemID::before {
/*    content: "";
  width: 18%;
  padding-bottom: 18%;
  transform: scale(0.8);
  clip-path: circle(50% at center);
  filter: grayscale(1);
  transition: all 0.5s;
  filter: brightness(0.8);
  float: left;
  position: relative;
  top: -10px;
  left: 0;
  margin: 0 3% 0 0;
  background: url(https://www.reseau-proeco-energies.fr/img/profil_client.jpg);
  background-size: cover !important;
  background-position: center;*/
}
.AvisClientItemID img {
  float: right;
  width: 30%;
  height: fit-content;
  max-width: 250px;
}
.AvisClientItemIDContent {
  width: 50%;
  float: left;
  position: relative;
}
.AvisClientItemIDContent span {
  float: left;
  font-weight: bold;
  font-size: 1.2em;
  margin: 6px 0 0;
}
.AvisClientItemIDContent small {
  float: left;
  clear: left;
  color: grey;
  line-height: 160%;
}
.AvisClientItemIDContent time {
  float: left;
  clear: left;
  color: #6daa38;
  border: solid 1px;
  margin: 10px 0;
  padding: 1px 4px;
  font-size: 0.8em;
}
.AvisClientItemReponse {
  margin: 0 0 0 15%;
  position: relative;
}
.AvisClientItemReponse p {
  float: left;
  line-height: 150%;
  margin: 0;
  padding: 0 0 30px;
  color: #555;
}
.AvisClientItemReponseID {
  position: relative;
  margin: 0 0;
  width: 100%;
  display: flex;
  /* justify-content: right; */
}
.AvisClientItemReponseID:first-of-type:before {
  content: "";
  width: 100%;
  height: 1px;
  background: #e5e5e5;
  position: absolute;
}
.AvisClientItemReponseID img {
  width: 80px;
  clip-path: circle(42% at center);
  transition: all 0.5s;
}
.AvisClientItemReponseID span {
  margin: 30px 0 30px 0;
}

@media screen and (max-width: 800px) {
  .AvisClientListContainer {
      margin: 0px auto 30px;
  }
  .AvisClientFicheLinkContent {
    width: 100%;
    position: relative;
    top: 0;
    float: left;
    margin-bottom: 40px;
}
.AvisClientListContent {
  width: 100%;
  margin-left: 0;
  position: relative;
}
.AvisClientItemClient p {
  float: left;
  margin: 20px 0 30px;
}
.AvisClientItemID::before {
  display: none;
}
.AvisClientItemReponse {
  width: 90%;
  margin: 0 0 0 10%;
}
}

/* XXXXXXXXXXXXXXXXXXXXXXXXXXXX     Liste des avis    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */
