@import url("https://fonts.googleapis.com/css2?family=Hind:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;1,100&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
}

/* width */
::-webkit-scrollbar {
  width: .5rem;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #308456;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgba(48, 132, 86, 0.8);
}

body {
  font-size: 1.6rem;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

a, a:hover {
  text-decoration: none !important;
}

p, span {
  margin-bottom: 0;
  color: #0f0f0f;
}

li {
  list-style: none;
}

button {
  border: none;
  cursor: pointer;
  background-color: none;
}

button:focus {
  outline: none;
}

input:focus {
  outline: none;
}

.navigation {
  width: 100%;
  padding: 1rem;
}

.navigation-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navigation-content .logo {
  height: 5rem;
  width: 5rem;
}

.navigation-content .logo img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.navigation-form {
  display: flex;
  border: 1px solid rgba(111, 193, 125, 0.5);
  border-radius: 4px;
  overflow: hidden;
}

.navigation-form .input-group {
  display: flex;
  align-items: center;
  padding: 0 .5rem;
  flex-wrap: nowrap;
  height: 4rem;
}

.navigation-form .input-group:first-child {
  border-right: 1px solid rgba(111, 193, 125, 0.5);
}

.navigation-form .input-group .icon {
  height: 3rem;
  width: 2rem;
  margin-right: .5rem;
}

.navigation-form .input-group .icon img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.navigation-form .input-group input {
  border: none;
  font-size: 1.4rem;
  width: 90%;
}

.navigation-form .input-group input:focus {
  outline: none;
}

.navigation-form .btn-search {
  width: 20rem;
  background-color: #6fc17d;
  border: none;
  font-size: 1.5rem;
  color: white;
  cursor: pointer;
  transition: all .3s;
}

.navigation-form .btn-search:focus {
  outline: none;
}

.navigation-form .btn-search:hover {
  background-color: rgba(111, 193, 125, 0.9);
}

.navigation-menu {
  display: flex;
  align-items: center;
}

.navigation-menu li {
  margin-left: 3rem;
}

.navigation-menu li a {
  display: block;
  padding: 2rem 0;
  color: rgba(0, 0, 0, 0.8);
  font-size: 1.6rem;
}

@media only screen and (max-width: 48em) {
  .navigation-menu {
    display: none;
  }
}

.navigation-menu .menu--hover ul {
  top: 7rem;
}

.navigation-menu .menu--hover ul li {
  margin: 0;
}

.navigation-menu .menu--hover ul li a {
  padding: 0;
}

.navigation .icon-form {
  height: 2rem;
  width: 2rem;
  display: none;
  cursor: pointer;
}

.navigation .icon-form img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.navigation .icon-menu {
  height: 3rem;
  width: 3rem;
  border-radius: 50%;
  background-color: #6fc17d;
  margin-left: 1rem;
  cursor: pointer;
  display: none;
  text-align: center;
}

.navigation .icon-menu img {
  height: 100%;
  width: 50%;
  object-fit: contain;
}

.navigation .close-form {
  height: 3rem;
  width: 3rem;
  background-color: white;
  border: 1px solid #e51e25;
  border-radius: 50%;
  margin-left: 2rem;
  text-align: center;
  display: none;
  cursor: pointer;
}

.navigation .close-form img {
  height: 100%;
  width: 50%;
  object-fit: contain;
}

@media only screen and (max-width: 75em) {
  .navigation .icon-form {
    display: block;
  }
  .navigation-form {
    background-color: white;
    width: 70%;
  }
  .navigation .box-from {
    position: absolute;
    left: 0;
    right: 0;
    top: -150%;
    padding: 0 3rem;
    height: 100%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
    z-index: 12;
  }
  .navigation .box-from .close-form {
    display: block;
  }
  .navigation .box-from.active {
    top: 0;
  }
}

@media only screen and (max-width: 48em) {
  .navigation {
    padding: 2rem 0;
  }
  .navigation .icon-menu {
    display: block;
  }
  .navigation-form {
    width: 100%;
  }
  .navigation .box-from .close-form {
    position: absolute;
    left: -1.7rem;
    top: .4rem;
    height: 2.5rem;
    width: 2.5rem;
  }
}

.navigation-menu__responsive {
  position: fixed;
  width: 26rem;
  background-color: #6fc17d;
  height: 100vh;
  overflow: auto;
  top: 0;
  right: -100%;
  display: block;
  padding: 0 2rem;
  transition: all .3s ease-in-out;
  z-index: 12;
}

.navigation-menu__responsive.active {
  right: 0;
}

.navigation-menu__responsive li {
  margin-left: 0;
  margin: 1rem 0;
}

.navigation-menu__responsive li a {
  color: white;
}

.navigation-menu__responsive .icon-close {
  height: 3rem;
  width: 3rem;
  background-color: white;
  border-radius: 50%;
  cursor: pointer;
  text-align: center;
  display: none;
}

.navigation-menu__responsive .icon-close img {
  height: 100%;
  width: 50%;
  object-fit: contain;
}

.navigation-menu__responsive .icon-close {
  display: block;
}

.navigation-menu__responsive .bordered {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.navigation-menu__responsive .js-target {
  background-color: #ffffff;
  padding: 1rem;
  border-radius: .5rem;
}

.navigation-menu__responsive .js-target a {
  color: #0f0f0f;
}

.menu--hover ul {
  display: block;
  position: absolute;
  min-width: 18rem;
  background-color: #F8F7F7;
  right: 0;
  padding-left: 0;
  top: 5rem;
  visibility: hidden;
  opacity: 0;
  transition: all .3s ease-in-out;
}

.menu--hover ul a {
  color: rgba(15, 15, 15, 0.5);
  width: 18rem;
}

.menu--hover ul li {
  padding: 1rem;
  transition: all ease-in-out .3s;
  margin-right: 0;
}

.menu--hover ul li:hover {
  background-color: rgba(111, 193, 125, 0.5);
}

.menu--hover:hover ul {
  visibility: visible;
  opacity: 1;
  z-index: 111;
}

.nav2 {
  background: #6fc17d;
  background: linear-gradient(90deg, #6fc17d 40%, #308456 100%);
  padding: 3rem;
}

.nav2 .menu1 .menu--hover ul {
  display: block;
}

.nav2 .menu1 .menu--hover ul li {
  margin: 0;
}

.nav2 .menu1 .menu--hover ul li a {
  color: #0f0f0f;
}

.nav2 .menu--accueil2 ul {
  display: flex;
  justify-content: center;
}

@media only screen and (max-width: 62em) {
  .nav2 .menu--accueil2 ul {
    display: none;
  }
}

.nav2 .menu--accueil2 ul li {
  margin-right: 2rem;
  position: relative;
}

@media only screen and (max-width: 62em) {
  .nav2 .menu--accueil2 ul li {
    margin-right: 0;
  }
}

.nav2 .menu--accueil2 ul li a {
  color: #ffffff;
}

.nav2 .menu--accueil2__responsive {
  left: -100%;
}

.nav2 .menu--bars i {
  font-size: 2.5rem;
  color: #ffffff;
  display: none;
  cursor: pointer;
}

@media only screen and (max-width: 62em) {
  .nav2 .menu--bars i {
    display: block;
  }
}

.nav3 {
  background: #6fc17d;
  background: linear-gradient(90deg, #6fc17d 40%, #308456 100%);
  padding: 2rem 0;
}

.nav3 .little--header {
  padding: 0;
}

.nav3 .little--header p {
  color: #ffffff;
}

@media only screen and (max-width: 48em) {
  .nav3 .little--header p {
    margin-bottom: 2rem;
  }
}

.pages--categories__sidebar {
  width: 100%;
  height: 100vh !important;
  border-right: 1px solid #f1f1f1;
  padding: 2rem;
  position: sticky;
  top: 0;
  left: 0;
  overflow: auto !important;
}

.pages--categories__sidebar--title {
  display: flex;
  justify-content: space-between;
}

.pages--categories__sidebar--title img {
  height: 2rem;
  cursor: pointer;
  display: none;
}

@media only screen and (max-width: 62em) {
  .pages--categories__sidebar--title img {
    display: block;
  }
}

@media only screen and (max-width: 62em) {
  .pages--categories__sidebar {
    position: fixed;
    top: 0;
    width: 28rem !important;
    z-index: 1000;
    height: 100vh;
    left: -100%;
    z-index: 100000;
    transition: .3s ease-in-out all;
    background: white;
  }
}

.pages--categories__sidebar ul a li {
  color: #0f0f0f;
  padding: 1rem;
  transition: all .3s ease-in-out;
}

.pages--categories__sidebar ul a li:hover {
  background-color: #faf8f8;
  color: #6fc17d;
}

.header {
  min-height: 75vh;
  background-image: url(../icones/Groupe-52.png);
  padding: 2rem 0;
  background-position: center;
  background-size: cover;
}

.header .index-phones {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header .index-phones img {
  height: 45rem;
  object-fit: contain;
}

@media only screen and (max-width: 36em) {
  .header .index-phones img {
    height: 30rem;
  }
}

@media only screen and (max-width: 48em) {
  .header .index-descrition {
    text-align: center;
  }
}

.header .index-descrition h1 {
  font-size: 4rem;
  color: #ffffff;
  font-weight: bold;
}

@media only screen and (max-width: 62em) {
  .header .index-descrition h1 {
    font-size: 3rem;
  }
}

.header .index-descrition h3 {
  margin: 3.5rem 0;
  color: #ffffff;
  font-weight: 200;
  font-size: 2.5rem;
}

@media only screen and (max-width: 62em) {
  .header .index-descrition h3 {
    font-size: 2rem;
  }
}

.header .index-descrition__store {
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 48em) {
  .header .index-descrition__store {
    justify-content: center;
  }
}

.header .index-descrition__store a img {
  height: 6rem;
  margin-right: 1rem;
}

@media only screen and (max-width: 62em) {
  .header .index-descrition__store a img {
    height: 4rem;
  }
}

@media only screen and (max-width: 425px) {
  .header .index-descrition__store a img {
    height: 3rem;
  }
}

.little--header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 0 0;
}

@media only screen and (max-width: 62em) {
  .little--header {
    justify-content: space-between;
  }
}

@media only screen and (max-width: 48em) {
  .little--header {
    display: block;
    text-align: center;
  }
}

.little--header__store {
  margin-left: 4rem;
  display: flex;
}

@media only screen and (max-width: 62em) {
  .little--header__store {
    margin-left: 0;
  }
}

@media only screen and (max-width: 48em) {
  .little--header__store {
    justify-content: center;
  }
}

.little--header__store h1 {
  margin-bottom: 0;
}

.little--header__store a img {
  height: 4rem;
  margin-right: 1rem;
}

@media only screen and (max-width: 62em) {
  .little--header__store a img {
    height: 4rem;
  }
}

@media only screen and (max-width: 425px) {
  .little--header__store a img {
    height: 3rem;
  }
}

.pagination {
  text-align: center;
  margin: 2rem auto;
  max-width: 40rem;
  display: flex;
  justify-content: space-between;
  padding: 1rem;
  background-color: #ffffff;
  box-shadow: -1px -1px 10px 0px rgba(0, 0, 0, 0.25);
  border-radius: .5rem;
}

.pagination li {
  display: inline-block;
  list-style: none;
}

.pagination a {
  display: block;
  font-size: 1.3rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: .8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  text-align: center;
  color: rgba(15, 15, 15, 0.5);
  border: none;
  margin-left: 1rem;
  font-weight: bold;
  transition: all .2s;
}

.pagination .p-left, .pagination .p-right {
  color: #6fc17d;
}

.pagination .active {
  box-shadow: 3px 9px 34px -8px rgba(0, 0, 0, 0.25);
  background-color: #6fc17d;
  color: #ffffff;
  transform: scale(1.1);
}

.filters ul {
  margin-top: 1rem;
}

.filters ul a {
  color: #0f0f0f;
}

.filters ul li {
  padding: 1rem;
  transition: all ease-in-out .3s;
}

.filters ul li:hover {
  background-color: rgba(111, 193, 125, 0.5);
}

.articles--photos {
  min-height: 70vh;
  background-color: #ccc;
}

@media only screen and (max-width: 48em) {
  .articles--photos .articles--photos__pa {
    display: none;
  }
}

.articles--photos__description .price--tag {
  background-color: #6fc17d;
  padding: 1rem;
  margin: 2rem 0;
  width: 20rem;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.articles--photos__description .price--tag:after {
  content: " ";
  position: absolute;
  background-color: #ffffff;
  height: 3rem;
  width: 3rem;
  left: -14px;
  transform: rotate(45deg);
}

.articles--photos__description h3 {
  margin-bottom: 0;
  font-size: 2rem;
}

.articles--photos__description p a {
  color: #6fc17d;
  font-weight: bold;
}

.articles--photos__description p span {
  text-transform: uppercase;
}

.carrousel--part {
  margin-top: 8rem;
}

.carrousel--part__tag div {
  margin: 0 .6rem;
  border-radius: .5rem;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
  padding: 1rem 0;
}

.carrousel--part1 {
  display: none;
}

@media only screen and (max-width: 48em) {
  .carrousel--part1 {
    display: block;
  }
}

.card__accordion {
  margin-bottom: 2rem;
}

.card__accordion .accordion {
  background-color: #ffffff;
  cursor: pointer;
  padding: 1.8rem;
  border-radius: .5rem;
  width: 100%;
  border: 1px solid #ccc;
  text-align: left;
  outline: none;
  font-size: 2rem;
  transition: 0.4s;
}

.card__accordion .accordion__icon {
  height: 3rem;
  width: 3rem;
  float: left;
  margin-right: 1rem;
}

.card__accordion .accordion__icon img {
  float: left;
  height: 3rem;
  width: 3rem;
  object-fit: contain;
}

.card__accordion .active, .card__accordion .accordion:hover {
  background-color: #ffffff;
}

.card__accordion .accordion:after {
  content: '\276F';
  color: #6fc17d;
  font-weight: bold;
  float: right;
  margin-left: 5px;
  transform: rotate(90deg);
}

.card__accordion .active:after {
  content: '\276F';
  transform: rotate(-90deg);
}

.card__accordion .panel {
  padding: 0 1rem;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: .5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.card__accordion .panel p {
  margin-top: 2rem;
}

.card__accordion .panel ul {
  font-size: 1.6rem;
  margin-left: 5rem;
}

.card__accordion .panel input {
  padding: 1rem;
  margin: 1rem 0;
  border-radius: .5rem;
  border: 1px solid #ccc;
  width: 100%;
}

.slider {
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  height: 10px;
  border-radius: 5px;
  background: #dde5ff;
  outline: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.slider-container input {
  margin: 2rem 0 !important;
  padding: 0 !important;
  width: 100%;
}

input[type="range"],
input[type="range"]::-moz-range-track {
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  border-radius: 5px;
  background: #dde5ff;
  outline: none;
  transition: opacity 0.2s;
}

input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #6fc17d;
  cursor: pointer;
  outline: none;
}

input[type="range"]::-moz-range-thumb {
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #6fc17d;
  cursor: pointer;
  outline: none;
  z-index: 10;
}

input[type="range"]:focus {
  outline: none;
}

.ticks {
  font-size: 10px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  height: 30px;
  text-align: center;
  counter-reset: count -1;
}

.ticks > div {
  height: 100%;
  width: 19%;
  counter-increment: count 1;
  position: relative;
}

.ticks > div span::before {
  content: '';
  position: absolute;
  width: 1px;
  height: 6px;
  top: -1rem;
  background-color: #0f0f0f;
  right: 50%;
}

.p--divider {
  position: relative;
}

.p--divider::after {
  position: absolute;
  content: "";
  width: 20%;
  height: .2rem;
  background-color: #ccc;
  left: 25%;
  top: 50%;
}

.p--divider::before {
  position: absolute;
  content: "";
  width: 20%;
  top: 50%;
  right: 25%;
  height: .2rem;
  background-color: #ccc;
}

@media only screen and (max-width: 62em) {
  .bigcard--filters {
    display: none;
  }
}

@media only screen and (max-width: 62em) {
  .bigcard--filters1 {
    display: block;
  }
}

.filters--responsive {
  height: 6rem;
  width: 6rem;
  border-radius: 50%;
  background-color: #6fc17d;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  z-index: 11;
}

@media only screen and (max-width: 62em) {
  .filters--responsive {
    visibility: visible;
    opacity: 1;
  }
}

.filters--responsive i {
  color: #ffffff;
}

.preloader {
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background-color: #ffffff;
  z-index: 9999;
  overflow: hidden;
  opacity: 2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-content {
  text-align: center;
}

.preloader-content .logo {
  height: 10rem;
  width: 10rem;
  animation: 2s img linear infinite;
}

.preloader-content .logo img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

@keyframes img {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  33% {
    transform: scale(0.9);
    opacity: 1;
  }
  66% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.9);
    opacity: 0;
  }
}

.pages--categories__body {
  padding: 2rem 0;
  position: relative !important;
}

.btn--side {
  padding: 1rem;
  margin: 0 1rem 2rem 0rem;
  box-shadow: 0px 0px 9px 1px #6fc17d;
  background-color: #6fc17d;
  border-radius: .5rem;
  width: 5rem;
  position: fixed;
  left: 0;
  cursor: pointer;
  display: none;
}

.btn--side img {
  height: 3rem;
  margin: auto;
}

@media only screen and (max-width: 62em) {
  .btn--side {
    display: block;
  }
}

.illustrations--part {
  min-height: 100vh;
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 70%;
  margin: 0 auto;
}

@media only screen and (max-width: 36em) {
  .illustrations--part {
    width: 100%;
  }
}

.illustrations--part img {
  height: 30rem;
}

@media only screen and (max-width: 36em) {
  .illustrations--part img {
    height: 15rem;
  }
}

.illustrations--part h3 {
  font-size: 3rem;
  text-transform: uppercase;
  color: #6fc17d;
}

@media only screen and (max-width: 36em) {
  .illustrations--part h3 {
    font-size: 2rem;
  }
}

.conditions--text__title {
  margin: 3rem 0;
}

.conditions--text__title h1 {
  color: #6fc17d;
  font-size: 4rem;
}

@media only screen and (max-width: 62em) {
  .conditions--text__title h1 {
    font-size: 3rem;
  }
}

@media only screen and (max-width: 48em) {
  .conditions--text__title h1 {
    font-size: 2rem;
  }
}

.conditions--text__title i {
  color: #0f0f0f;
  font-size: 3rem;
}

.conditions--text__body h3 {
  color: #6fc17d;
  margin: 3rem 0 2rem;
}

.partform {
  display: flex;
  align-items: center;
  height: 100vh;
}

@media only screen and (max-width: 62em) {
  .partform {
    display: block;
  }
}

.partform .part-leftform {
  height: 100%;
  text-align: center;
  width: 40%;
  padding: 4rem;
  position: relative;
  background-image: url(../icones/Groupe-52.png);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 62em) {
  .partform .part-leftform {
    width: 100%;
    height: initial !important;
    display: block;
  }
}

.partform .part-leftform .descripform {
  color: #ffffff;
}

.partform .part-leftform .descripform h1 {
  font-size: 3rem;
}

.partform .part-leftform .descripform h3 {
  font-size: 2rem;
  margin: 2rem 0;
}

.partform .part-leftform .descripform .logo img {
  height: 7rem;
  margin: 2rem 0;
}

.partform .part-leftform .descripform .index-descrition__store {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media only screen and (max-width: 48em) {
  .partform .part-leftform .descripform .index-descrition__store {
    justify-content: center;
  }
}

.partform .part-leftform .descripform .index-descrition__store a img {
  height: 4rem;
  margin-right: 1rem;
}

@media only screen and (max-width: 62em) {
  .partform .part-leftform .descripform .index-descrition__store a img {
    height: 4rem;
  }
}

@media only screen and (max-width: 425px) {
  .partform .part-leftform .descripform .index-descrition__store a img {
    height: 3rem;
  }
}

.partform .part-rightform {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  height: 100%;
  width: 60%;
}

@media only screen and (max-width: 62em) {
  .partform .part-rightform {
    width: 100%;
    height: initial !important;
  }
}

.partform .part-rightform form {
  width: 60%;
}

@media only screen and (max-width: 48em) {
  .partform .part-rightform form {
    width: 80%;
  }
}

@media only screen and (max-width: 36em) {
  .partform .part-rightform form {
    width: 90%;
  }
}

.partform .part-rightform form h1 {
  margin-bottom: 2rem !important;
  text-align: center;
}

.partform .part-rightform form .formgroup {
  width: 100%;
  background-color: rgba(48, 132, 86, 0.2);
  padding: 1rem;
  margin-bottom: 2rem;
  border-radius: 5px;
}

.partform .part-rightform form .formgroup input {
  width: 85%;
  height: 3rem;
  padding: 0 1rem;
  border: none;
  background: transparent;
  outline: none;
  color: #333;
  font-size: 1.4rem;
}

.partform .part-rightform form .formgroup input::placeholder {
  color: #0f0f0f;
  font-weight: 500;
}

.partform .part-rightform form .formgroup i {
  color: #0f0f0f;
  font-size: 2rem;
}

footer {
  min-height: 40vh;
  background-image: url(../icones/Groupe-54.png);
  padding: 4rem 0;
  background-position: center;
  background-size: cover;
}

@media only screen and (max-width: 48em) {
  footer .menu--footer ul {
    text-align: center;
  }
}

footer .menu--footer ul li {
  display: inline-block;
}

footer .menu--footer ul li a {
  color: #ffffff;
  display: inline-block;
  padding-right: 2rem;
  transition: all .3s ease-in-out;
}

footer .menu--footer ul li a:hover {
  text-decoration: underline;
}

footer .copy--social {
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 48em) {
  footer .copy--social {
    display: block;
  }
}

footer .copy--social p {
  font-size: 1.4rem;
  color: #ffffff;
}

@media only screen and (max-width: 48em) {
  footer .copy--social p {
    text-align: center;
  }
}

footer .copy--social .icones--social {
  margin-left: 7rem;
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 48em) {
  footer .copy--social .icones--social {
    margin-left: 0;
    justify-content: center;
  }
}

footer .copy--social .icones--social__link {
  padding: 2rem;
  height: 2rem;
  width: 2rem;
  border-radius: 50%;
  background-color: #ffffff;
  cursor: pointer;
  margin-right: 1rem;
  transition: all .3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6fc17d;
}

footer .copy--social .icones--social__link:hover {
  transform: scale(1.1);
}

footer .text--footer {
  color: #ffffff;
}

@media only screen and (max-width: 48em) {
  footer .text--footer {
    text-align: center;
    margin-top: 4rem;
  }
}

footer .text--footer__store {
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 48em) {
  footer .text--footer__store {
    justify-content: center;
  }
}

footer .text--footer__store a img {
  height: 4rem;
  margin-right: 1rem;
}

@media only screen and (max-width: 425px) {
  footer .text--footer__store a img {
    height: 3rem;
  }
}

.cardarcticles--flex {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-flow: row wrap;
}

.cardarcticles--flex a {
  width: 25%;
}

@media only screen and (max-width: 62em) {
  .cardarcticles--flex a {
    width: 33%;
  }
}

@media only screen and (max-width: 48em) {
  .cardarcticles--flex a {
    width: 50%;
  }
}

@media only screen and (max-width: 425px) {
  .cardarcticles--flex a {
    width: 100%;
  }
}

.cardarcticles--flex1 a {
  width: 20%;
}

@media only screen and (max-width: 62em) {
  .cardarcticles--flex1 a {
    width: 33%;
  }
}

@media only screen and (max-width: 48em) {
  .cardarcticles--flex1 a {
    width: 50%;
  }
}

@media only screen and (max-width: 425px) {
  .cardarcticles--flex1 a {
    width: 100%;
  }
}

.card--article {
  border: 1px solid #ececec;
  margin: 0 .5rem 1rem;
  border-radius: 5px;
  transition: all .3s ease-in-out;
}

.card--article:hover {
  box-shadow: 0px 0px 9px 1px #6fc17d;
}

.card--article__illustration img {
  width: 100%;
  height: 20rem;
  object-fit: cover;
  object-position: top;
  border-radius: .5rem .5rem 0 0;
}

.card--article__description {
  padding: 1rem;
}

.card--article__description--name h4 {
  font-weight: bold;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 1 !important;
  color: #0f0f0f;
}

.card--article__description--localisation {
  display: flex;
}

.card--article__description--localisation span {
  margin-left: .7rem;
  font-size: 1.2rem;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 1 !important;
}

.card--article__description--localisation i {
  color: #6fc17d;
}

.card-filters {
  padding: 2rem 0rem;
  border-top: 5px solid #6fc17d;
  background-color: #F8F7F7;
  max-height: 40rem;
  overflow: auto;
  margin: 0 0 2rem;
  border-radius: .5rem;
}

.card-filters__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
}

.card-filters__title h3 {
  text-transform: uppercase;
  margin-bottom: 0;
  color: #6fc17d;
}

.card-filters__title i {
  color: #ccc;
}

.card-filters ul li a {
  font-size: 1.6rem;
  color: black;
  display: flex;
}

.card-filters ul li a .icon {
  height: 2rem;
  width: 2rem;
  margin-right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-filters ul li a .icon img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.card-filters ul li .ul--listmenu {
  position: absolute;
  background-color: #fff;
  height: 43.5rem;
  width: 80rem;
  z-index: 10;
  box-shadow: 10px 11px 30px -9px rgba(0, 0, 0, 0.31);
  overflow: auto;
  right: -79rem;
  top: 0;
  padding: 2rem;
  border-left: 1px solid #ccc;
  visibility: hidden;
  opacity: 0;
  transition: all .3s ease-in-out;
}

@media only screen and (max-width: 75em) {
  .card-filters ul li .ul--listmenu {
    width: 64rem;
    right: -64rem;
  }
}

@media only screen and (max-width: 62em) {
  .card-filters ul li .ul--listmenu {
    display: none;
  }
}

.card-filters ul li .ul--listmenu__items {
  margin-bottom: 1rem;
}

.card-filters ul li .ul--listmenu__items h4 {
  font-weight: bold;
  border-bottom: 1px solid #ccc;
}

.card-filters ul li .ul--listmenu__items ul li {
  width: 100%;
  padding: .2rem 0;
}

.card-filters ul li .ul--listmenu__items ul li a {
  transition: all .3s ease-in-out;
  font-size: 1.5rem;
}

.card-filters ul li .ul--listmenu__items ul li a:hover {
  color: #0f0f0f;
}

.card-filters ul li:hover .ul--listmenu {
  visibility: visible;
  opacity: 1;
}

.articles--photos__seilor {
  width: 100%;
  padding: 2rem;
  border: 1px solid #ccc;
  border-radius: .5rem;
}

.articles--photos__seilor .seilor--infos {
  display: flex;
  align-items: center;
}

.articles--photos__seilor .seilor--infos__img {
  border-radius: 50%;
}

.articles--photos__seilor .seilor--infos__img img {
  height: 7rem;
  width: 7rem;
  border-radius: 50%;
}

.articles--photos__seilor .seilor--infos__stars {
  margin-left: 2rem;
}

.articles--photos__seilor .seilor--infos__stars h4 {
  font-size: 2rem;
}

.articles--photos__seilor .seilor--infos__stars .stars {
  color: orange;
}

.articles--photos__seilor .seilor--infos__stars p {
  font-size: 1.3rem;
}

.articles--photos__seilor .seilor--infos__stars a {
  color: #308456;
  text-decoration: underline;
  margin: 1rem 0;
}

.articles--photos__seilor .seilor--infos__btn {
  margin: 1rem 0;
}

.articles--photos__seilor .seilor--infos__btn button {
  padding: 1rem;
  border-radius: .5rem;
  background-color: #308456;
  color: #ffffff;
  width: 100%;
}

.articles--photos__iframe {
  width: 70%;
}

@media only screen and (max-width: 62em) {
  .articles--photos__iframe {
    width: 100%;
  }
}

iframe {
  width: 100%;
  height: 30rem;
  margin-top: 2rem;
}

.localistion--iframe {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem .5rem;
  border-radius: 0 0 .5rem .5rem;
  border: 1px solid #ccc;
  margin: -.8rem 0 2rem;
}

.localistion--iframe p {
  font-size: 1.4rem;
}

.articles--photos__pa {
  display: flex;
  align-items: center;
}

.articles--photos__pa--cards {
  height: 70vh;
  width: 33.33%;
  margin: 0 .3rem;
  position: relative;
}

.articles--photos__pa--cards img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.articles--photos__pa--cards .overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: rgba(111, 193, 125, 0.7);
  top: 2rem;
  margin-top: -2rem;
  padding: 2rem;
  visibility: hidden;
  opacity: 0;
  transition: all .3s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media only screen and (max-width: 48em) {
  .articles--photos__pa--cards .overlay {
    visibility: visible;
    opacity: 1;
    background-color: rgba(111, 193, 125, 0.4);
  }
}

.articles--photos__pa--cards .overlay p {
  color: #ffffff;
}

.articles--photos__pa--cards .overlay .button-overlay {
  background-color: #0f0f0f;
  height: 5rem;
  width: 5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.articles--photos__pa--cards .overlay .button-overlay i {
  margin-top: 0;
  color: #ffffff;
}

.articles--photos__pa--cards:hover .overlay {
  visibility: visible;
  opacity: 1;
}

.articles--photos__pa--cards__responsive {
  height: 70vh;
  width: 100%;
  position: relative;
}

.articles--photos__pa--cards__responsive img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top;
}

.articles--photos__pa--cards__responsive .overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 2rem;
  margin-top: -2rem;
  padding: 2rem;
  visibility: visible;
  opacity: 1;
  background-color: rgba(111, 193, 125, 0.4);
  transition: all .3s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}

.articles--photos__pa--cards__responsive .overlay p {
  color: #ffffff;
}

.articles--photos__pa--cards__responsive .overlay .button-overlay {
  background-color: #0f0f0f;
  height: 5rem;
  width: 5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.articles--photos__pa--cards__responsive .overlay .button-overlay i {
  margin-top: 0;
  color: #ffffff;
}

.articles--photos__pa--cards__responsive:hover .overlay {
  visibility: visible;
  opacity: 1;
}

.modal-card {
  height: 100vh;
  width: 100%;
  margin: 0 auto;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: all .3s ease-in-out;
}

.modal-card p a {
  color: #6fc17d;
}

.modal-card .modal-main {
  min-height: 20vh;
  max-height: 95vh;
  border-radius: .5rem;
  width: 45%;
  margin: 2rem auto;
  text-align: center;
  padding: 2rem;
  background-color: white;
  overflow: auto;
}

@media only screen and (max-width: 62em) {
  .modal-card .modal-main {
    width: 60%;
  }
}

@media only screen and (max-width: 48em) {
  .modal-card .modal-main {
    width: 90%;
  }
}

.modal-card .modal-main__title .logo-img {
  text-align: center;
  height: 10rem;
  width: 10rem;
  border-radius: 50%;
  margin: 0 auto;
}

.modal-card .modal-main__title .logo-img img {
  height: 6rem;
  object-fit: cover;
  margin: 2rem auto;
}

.modal-card .modal-main__title h3 {
  font-weight: 600;
  font-size: 2rem;
}

.modal-card .modal-main .close .fa {
  color: #6fc17d;
  font-size: 3rem;
  transition: all .2s ease-in-out;
}

.modal-card .modal-main .close:hover {
  color: #6fc17d;
}

.modal-card .modal-main__body input {
  padding: 1rem;
  margin: 1rem 0;
  border-radius: .5rem;
  border: 1px solid #ccc;
  width: 90%;
}

@media only screen and (max-width: 48em) {
  .modal-card .modal-main__body input {
    width: 100%;
  }
}

.modal-card .modal-main__body .btn--site {
  width: 90%;
}

.Cmail {
  display: none;
}

.Ctel {
  display: none;
}

.Imail {
  display: none;
}

.Itel {
  display: none;
}

.modal-block {
  visibility: visible;
  opacity: 1;
}

.buttons--connexion button {
  width: 100%;
  padding: 1rem .5rem;
  border-radius: .5rem;
  background-color: #ffffff;
  box-shadow: 0px 0px 9px 1px #ccc;
  margin: 1rem 0 .5rem;
  font-size: 1.3rem;
  font-weight: bold;
}

.buttons--connexion button img {
  height: 2rem;
  width: 2rem;
}

.buttons--connexion button i {
  font-size: 2rem;
  color: white;
}

.buttons--connexion .btn-facebook {
  background-color: #4781F5;
  color: #ffffff;
}

.buttons--connexion .btn-mobile {
  background-color: #6fc17d;
  color: #ffffff;
}

.buttons--connexion .btn-mail {
  background-color: #fc6565;
  color: #ffffff;
}

.btn--site {
  padding: 1rem;
  background-color: #6fc17d;
  border-radius: .5rem;
  color: #ffffff;
  border: 1px solid #6fc17d;
  transition: all .3s ease-in-out;
}

.btn--site:hover {
  background-color: transparent;
  border: 1px solid #6fc17d;
  color: #6fc17d;
}

/*** Button return top ***/
.button-return {
  position: fixed;
  bottom: 10rem;
  right: 2rem;
  background-color: #ffffff;
  border-radius: .5rem;
  border: none;
  height: 5rem;
  width: 5rem;
  cursor: pointer;
  text-align: center;
  transition: all .3s;
  z-index: 2;
  box-shadow: 0px -1px 19px -4px rgba(56, 56, 56, 0.75);
  transition: all .3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.button-return i {
  font-size: 3rem;
  color: #308456;
}

.button-return:hover {
  box-shadow: 8px 20px 60px -4px rgba(56, 56, 56, 0.75);
}

.owl-carousel {
  width: 100%;
  display: block !important;
}

.owl-carousel .owl-nav {
  display: block !important;
  font-size: 2rem;
  color: #ffffff;
}

.owl-carousel .owl-prev {
  position: absolute;
  top: 5%;
  width: 4rem;
  height: 4rem;
  background-color: #6fc17d !important;
  outline: none;
  text-align: center;
  align-items: center;
}

.owl-carousel .owl-next {
  position: absolute;
  top: 5%;
  right: 0;
  width: 4rem;
  height: 4rem;
  background-color: #6fc17d !important;
  outline: none;
  text-align: center;
  align-items: center;
}

.carrousel_custom .owl-prev {
  position: absolute;
  top: 45%;
  width: 4rem;
  height: 4rem;
  background-color: #6fc17d !important;
  outline: none;
  text-align: center;
  align-items: center;
}

.carrousel_custom .owl-next {
  position: absolute;
  top: 45%;
  right: 0;
  width: 4rem;
  height: 4rem;
  background-color: #6fc17d !important;
  outline: none;
  text-align: center;
  align-items: center;
}

.carrousel_custom .owl-dots {
  text-align: center;
}

.carrousel_custom .owl-dots button {
  height: 1rem !important;
  width: 1rem  !important;
  background-color: #6fc17d !important;
  border-radius: 50% !important;
  margin-left: .3rem;
}

.carousel {
  height: 75vh;
  width: 100%;
  position: relative;
}

@media only screen and (max-width: 550px) {
  .carousel {
    height: 40rem;
  }
}

.carousel .carousel-inner {
  height: 100%;
  width: 100%;
}

.carousel .carousel-inner .carousel-item {
  height: 100%;
  width: 100%;
}

.carousel-image {
  height: 100%;
  width: 101%;
  object-fit: cover;
  filter: brightness(60%);
}

.carousel-indicators li {
  height: 1rem !important;
  width: 1rem !important;
  border-radius: 50%;
}

.carousel-indicators .active {
  background: #6fc17d !important;
}

.carousel-control-prev {
  background-color: #6fc17d;
  position: absolute;
  height: 5rem;
  width: 5rem;
  border-radius: 50%;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
}

@media only screen and (max-width: 991px) {
  .carousel-control-prev {
    left: 5%;
  }
}

@media only screen and (max-width: 550px) {
  .carousel-control-prev {
    height: 3.5rem;
    width: 3.5rem;
  }
}

.carousel-control-prev-icon {
  background-image: url("../images/left-arrow.svg");
}

.carousel-control-next {
  background-color: #6fc17d;
  position: absolute;
  height: 5rem;
  width: 5rem;
  border-radius: 50%;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
}

@media only screen and (max-width: 991px) {
  .carousel-control-next {
    right: 5%;
  }
}

@media only screen and (max-width: 550px) {
  .carousel-control-next {
    height: 3.5rem;
    width: 3.5rem;
  }
}

.carousel-control-next-icon {
  background-image: url("../images/right-arrow.svg");
}
.part--blog__une {
  margin: 4rem 0;
}

.part--blog__une a {
  display: flex;
}

@media only screen and (max-width: 48em) {
  .part--blog__une a {
    display: block;
  }
}

.part--blog__une .part--blog__une--illus {
  width: 60%;
}

@media only screen and (max-width: 62em) {
  .part--blog__une .part--blog__une--illus {
    width: 50%;
  }
}

@media only screen and (max-width: 48em) {
  .part--blog__une .part--blog__une--illus {
    width: 100%;
  }
}

.part--blog__une .part--blog__une--illus img {
  width: 100%;
  height: 43rem;
  object-fit: cover;
}

@media only screen and (max-width: 48em) {
  .part--blog__une .part--blog__une--illus img {
    height: 35rem;
  }
}

.part--blog__une .part--blog__une--descrip {
  padding: 5rem;
  background-color: #f6f6f6;
  width: 40%;
  position: relative;
}

@media only screen and (max-width: 62em) {
  .part--blog__une .part--blog__une--descrip {
    width: 50%;
  }
}

@media only screen and (max-width: 48em) {
  .part--blog__une .part--blog__une--descrip {
    width: 100%;
    padding: 3rem;
  }
}

.part--blog__une .part--blog__une--descrip h2 {
  color: #0f0f0f;
  font-size: 2.5rem;
  text-transform: uppercase;
  margin-bottom: 3rem;
  font-weight: bold;
}

.part--blog__une .part--blog__une--descrip p {
  margin-bottom: 3rem;
  font-size: 1.4rem;
  display: -webkit-box !important;
  overflow: hidden !important;
  -webkit-line-clamp: 4 !important;
}

.part--blog__une .part--blog__une--descrip .blog--dateBottom {
  position: absolute;
  bottom: 3.5rem;
  margin-bottom: 0 !important;
  font-size: 1.3rem !important;
  color: #999;
}

.part--blog__cards__card {
  transition: all .3s ease-in-out;
  margin: 1rem 0;
}

.part--blog__cards__card--illus img {
  width: 100%;
  height: 20rem;
  object-fit: cover;
}

.part--blog__cards__card--descrip {
  padding: 3rem;
  background-color: #f6f6f6;
  height: 14rem;
}

.part--blog__cards__card--descrip h2 {
  font-size: 1.8rem;
  color: #0f0f0f;
}

.part--blog__cards__card--descrip .blog--dateBottom {
  position: absolute;
  bottom: 2.5rem;
  margin-bottom: 0 !important;
  font-size: 1.3rem !important;
  color: #999;
}

.part--blog__cards__card:hover {
  box-shadow: 0px 12px 60px 0px rgba(10, 10, 10, 0.2);
}

.part--blogdetails__title {
  width: 70%;
  margin: 0 auto;
}

@media only screen and (max-width: 62em) {
  .part--blogdetails__title {
    width: 100%;
  }
}

.part--blogdetails__title h2 {
  font-size: 3rem;
  color: #0f0f0f;
  font-weight: bold;
}

@media only screen and (max-width: 48em) {
  .part--blogdetails__title h2 {
    font-size: 2rem;
  }
}

.part--blogdetails__title p {
  font-size: 1.3rem !important;
  color: #999;
}

.part--blogdetails__body--img {
  height: 50rem;
  width: 100%;
  margin: 3rem 0;
}

.part--blogdetails__body--img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.part--blogdetails__body--descrip {
  width: 70%;
  margin: 0 auto;
}

@media only screen and (max-width: 62em) {
  .part--blogdetails__body--descrip {
    width: 100%;
  }
}

.part--blogdetails__body--descrip h3 {
  font-weight: bold;
  margin-bottom: 1rem;
}

.part--blogdetails__body--descrip p {
  margin-bottom: 2rem;
}

.part--blogdetails .bar--media {
  margin-top: 2rem;
}

.part--blogdetails .bar--media ul {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  flex-wrap: wrap;
  width: 10rem;
  background: white;
  padding: 1rem;
  position: fixed;
  top: calc(50% - 200px);
  box-shadow: 0px 2px 9px 0px rgba(10, 10, 10, 0.2);
  left: 6rem;
  z-index: 1111;
}

@media only screen and (max-width: 62em) {
  .part--blogdetails .bar--media ul {
    position: relative;
    width: 100%;
    left: 0;
    flex-direction: row;
    justify-content: flex-start;
    padding: 1rem 0;
    box-shadow: none;
  }
}

.part--blogdetails .bar--media ul li a {
  color: #0f0f0f;
  transition: all .3s ease-in-out;
  margin: 1rem;
}

.part--blogdetails .bar--media ul li a:hover {
  color: #6fc17d;
}

.part--blogdetails .bar--media ul li a i {
  font-size: 2.5rem;
  margin: 1rem 0;
}

.part--blogdetails__body--descrip__end {
  margin-top: 4rem;
  position: relative;
}

.part--blogdetails__body--descrip__end::after {
  content: "";
  width: 30px;
  height: 1px;
  background: #0f0f0f;
  position: absolute;
  top: -10px;
}

.part--blogdetails__body--descrip__end p {
  margin-top: 2rem;
}

.part--blogVP {
  margin: 4rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.part--blogVP a p {
  box-shadow: 0 1px #0f0f0f;
  transition: all .3s ease-in-out;
}

.part--blogVP a p:hover {
  color: #6fc17d;
  box-shadow: 0 2px #0f0f0f;
}

.part--blogdetails__AA--title {
  margin: 4rem 0;
}

.part--blogdetails__AA--title h2 {
  font-weight: bold;
  text-align: center;
}
/*# sourceMappingURL=main.css.map */
