@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
.navBar {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 3;
  background-color: #EEEEEE;
}

.navBar .small-device, .navBar .burger-menu {
  display: none;
}

.navBar .navBarItems {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  align-items: center;
  padding: 1% 10%;
  position: relative;
}

.navBar .navBarItems .show {
  display: block !important;
}

.navBar .navBarItems img {
  width: 8%;
}

.navBar .navBarItems li {
  list-style: none;
  color: #005E6E;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}

.navBar .navBarItems li a {
  color: #005E6E;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 20px;
}

.navBar .navBarItems .navBarDropDown#products-small {
  display: none;
}

.navBar .navBarItems .navBarDropDown {
  position: relative;
}

.navBar .navBarItems .navBarDropDown .contents {
  position: absolute;
  background-color: white;
  padding: 10% 30%;
  border-radius: 20px;
  cursor: pointer;
  display: none;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  width: 200px;
}

.navBar .navBarItems .navBarDropDown .contents li a {
  font-weight: bold;
  font-size: 12px;
  -webkit-transition: font-weight .2s ease-in-out;
  transition: font-weight .2s ease-in-out;
}

.navBar .navBarItems .navBarDropDown .contents li ul {
  position: relative;
  width: 100%;
  display: none;
  text-align: right;
}

.navBar .navBarItems .navBarDropDown .contents li ul a li {
  margin-bottom: 5px;
  color: #7B3F37;
}

.navBar .navBarItems .navBarIcon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.navBar .navBarItems .navBarIcon a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 10px;
}

.navBar .navBarItems .navBarIcon a:first-of-type {
  margin-right: 15px;
}

.navBar .navBarItems .navBarIcon a:first-of-type .form-outline {
  width: 0;
  opacity: 0;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.navBar .navBarItems .navBarIcon a:first-of-type:hover .form-outline {
  width: 100%;
  opacity: 1;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.navBar .navBarItems .navBarIcon a i {
  color: #7B3F37;
  font-size: 20px;
}

@media (max-width: 768px) {
  .navBar .mobile {
    display: none;
  }
}

@media (hover: hover) and (pointer: fine) {
  .navBarDropDown:hover .contents {
    display: block !important;
  }
  .hovredSubCategory:hover ul {
    display: block !important;
  }
  .navBarDropDown li:hover {
    font-weight: bold !important;
    color: #7B3F37;
  }
}

@media (hover: none) {
  .navBarDropDown:focus .contents {
    display: block !important;
  }
  .hovredSubCategory:focus ul {
    display: block !important;
  }
}

@media (max-width: 992px) {
  .navBar {
    padding: 20px 10%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 100;
  }
  .navBar .burger-menu {
    display: block;
    width: 40px;
    height: 40px;
    border: none;
  }
  .navBar .burger-menu img {
    width: 100%;
  }
  .navBar .small-device {
    width: 55px;
    display: block;
  }
  .navBar .navBarItems {
    position: absolute;
    top: -900px;
    left: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    margin: auto;
    min-height: 300px;
    padding: 20px 10%;
    background-color: #EEEEEE;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
  }
  .navBar .navBarItems img {
    display: none;
  }
  .navBar .navBarItems.show {
    top: 80px;
  }
  .navBar .navBarDropDown#products-small {
    display: block !important;
  }
  .navBar .navBarDropDown#products-small li {
    color: #005E6E;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 16px;
  }
  .navBar .navBarDropDown#products-small .contents {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    text-align: left;
    padding: 20px;
  }
  .navBar .navBarDropDown#products-small .contents .hovredSubCategory {
    font-weight: 400;
    font-size: 12px !important;
  }
  .navBar .navBarDropDown#products-large {
    display: none;
  }
  .navBar .navBarDropDown {
    text-align: center;
    margin: 10px;
  }
  .navBar .navBarDropDown .contents {
    position: relative !important;
  }
}

@media (max-width: 576px) {
  .navBar {
    padding: 20px 15px;
  }
}

body {
  overflow-x: hidden;
}

.header {
  margin-top: 10vh;
}

.header .carousel-indicators {
  position: absolute;
  right: 90%;
  bottom: 50%;
  left: 0;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  margin-right: 0%;
  margin-bottom: 1rem;
  margin-left: 5%;
  list-style: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.header .carousel-indicators button {
  width: 50px;
  height: 15px;
  border-radius: 14px;
}

.header .carousel-inner .carousel-item .carousel-caption {
  z-index: 3;
}

.header .carousel-inner .carousel-item .carousel-caption .HeaderWeatherAndClock {
  width: 100%;
}

.header .carousel-inner .carousel-item .carousel-caption .HeaderWeatherAndClock .clock {
  float: left;
  margin-top: 5%;
}

.header .carousel-inner .carousel-item .carousel-caption .HeaderWeatherAndClock .clock .hour {
  font-weight: bold;
  font-size: 60px;
  line-height: 30px;
}

.header .carousel-inner .carousel-item .carousel-caption .HeaderWeatherAndClock .clock .date {
  font-weight: bold;
}

.header .carousel-inner .carousel-item .carousel-caption .HeaderWeatherAndClock .weathers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.header .carousel-inner .carousel-item .carousel-caption .HeaderWeatherAndClock .weathers .weather .weatherImg {
  width: 80%;
}

.header .carousel-inner .carousel-item .carousel-caption .HeaderWeatherAndClock .weathers .weather .temp .min {
  text-indent: 15px;
}

.header .carousel-inner .carousel-item .overlay {
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 2;
  width: 100%;
  height: 90vh;
}

.header .carousel-inner .imageSlider {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 90vh;
}

/* Ard unifertcMaroc Section */
.ArdUnifertMaroc {
  margin-top: 3%;
}

.ArdUnifertMaroc .Bigtitle {
  color: #005E6E;
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  text-align: center;
}

.ArdUnifertMaroc .presentation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  background-color: #FFFFFF;
  padding: 3% 0%;
}

.ArdUnifertMaroc .presentation .ard-picture1 {
  width: 20%;
}

.ArdUnifertMaroc .presentation .paragraphe1 .title {
  color: #7B3F37;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
}

.ArdUnifertMaroc .presentation .paragraphe1 .texte {
  color: #005E6E;
  font-size: 15px;
}

.ArdUnifertMaroc .presentation .paragraphe1 .texte .more {
  font-size: 12px;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  color: #707070;
}

.ArdUnifertMaroc .history {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  background-color: #EEEEEE;
  padding: 3% 0%;
}

.ArdUnifertMaroc .history .ard-picture1 {
  width: 20%;
}

.ArdUnifertMaroc .history .paragraphe1 .title {
  color: #7B3F37;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
}

.ArdUnifertMaroc .history .paragraphe1 .texte {
  color: #005E6E;
  font-size: 15px;
}

.ArdUnifertMaroc .history .paragraphe1 .texte .more {
  font-size: 12px;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  color: #707070;
}

.ArdUnifertMaroc .commerciaux {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  background-color: #FFFFFF;
  padding: 3% 0%;
}

.ArdUnifertMaroc .commerciaux .ard-picture1 {
  width: 20%;
}

.ArdUnifertMaroc .commerciaux .paragraphe1 .title {
  color: #7B3F37;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
}

.ArdUnifertMaroc .commerciaux .paragraphe1 .texte {
  color: #005E6E;
  font-size: 15px;
}

.ArdUnifertMaroc .commerciaux .paragraphe1 .texte .more {
  font-size: 12px;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  color: #707070;
}

.ArdUnifertMaroc .locaux {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  background-color: #EEEEEE;
  padding: 3% 0%;
}

.ArdUnifertMaroc .locaux .ard-picture1 {
  width: 20%;
}

.ArdUnifertMaroc .locaux .paragraphe1 .title {
  color: #7B3F37;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
}

.ArdUnifertMaroc .locaux .paragraphe1 .texte {
  color: #005E6E;
  font-size: 15px;
}

.ArdUnifertMaroc .locaux .paragraphe1 .texte .more {
  font-size: 12px;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  color: #707070;
}

/* Catalogue Section */
.pdf .sectionPdf {
  padding: 3% 0%;
  background-color: #7B3F37;
}

.pdf .sectionPdf .contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.pdf .sectionPdf .textPdf {
  color: #FFFFFF;
  font-family: "Poppins", sans-serif;
  text-align: center;
  font-size: 30px;
}

.pdf .sectionPdf .buttonPdf {
  border: none;
  background-color: #FFFFFF;
  border-radius: 14px;
  color: #7B3F37;
  font-size: 16PX;
  padding-left: 5 PX;
  font-weight: bold;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* Price_Legume Section */
.PricingTable {
  padding: 3% 0%;
}

.PricingTable h2 {
  color: #005E6E;
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  text-align: center;
}

.PricingTable .ColumnTitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: white;
  margin-bottom: 1%;
  background-color: #005E6E;
  font-weight: bold;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  padding: 0.5% 5%;
  width: 100%;
  -webkit-box-shadow: rgba(0, 94, 106, 0.26) 1px 2px 2px;
          box-shadow: rgba(0, 94, 106, 0.26) 1px 2px 2px;
}

.PricingTable .ColumnTitle .childRow {
  width: 40%;
}

.PricingTable .ColumnTitle .childRow:last-of-type {
  width: 20%;
}

.PricingTable .Column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1%;
  font-family: "Poppins", sans-serif;
  background-color: #EEEEEE;
  padding: 1.5% 5%;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: #bfbfbf 1px 2px 2px;
          box-shadow: #bfbfbf 1px 2px 2px;
}

.PricingTable .Column .childRow1 {
  color: #005E6E;
  font-weight: bold;
  font-size: 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-transform: lowercase;
  width: 40%;
}

.PricingTable .Column .childRow1:last-of-type {
  width: 20%;
}

.PricingTable .Column .childRow1 .childRow2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  border-left-style: solid;
}

.PricingTable .Column .childRow1 .childRow2 .childRow2-1 {
  text-align: justify;
  width: 12%;
  margin-left: 5%;
}

.PricingTable .Column .childRow1 .childRow2 .childRow2-P {
  width: 10%;
  margin: 0 10px;
}

.PricingTable .Column .childRow1 .childRow2 .childRow2-2 {
  text-align: justify;
  width: 40%;
}

.PricingTable .Column .childRow1 .childRow2 .childRow2-3 {
  text-align: justify;
  width: 40%;
  margin-left: 5%;
}

.PricingTable .Column .childRow1 .childRow2 .childRow2-4 {
  text-align: justify;
  width: 40%;
  margin-left: 10px;
}

@media (max-width: 768px) {
  .presentation, .history, .commerciaux, .locaux {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 15px !important;
  }
}

@media (max-width: 576px) {
  .Bigtitle {
    margin-top: 20px;
    font-size: 30px !important;
  }
  .ard-picture1 {
    width: 120px !important;
    margin: 20px;
  }
  .textPdf {
    font-size: 25px !important;
  }
}

/* Presentation Section */
.Presentation {
  margin-top: 15%;
  font-family: "Poppins", sans-serif;
}

.Presentation .Title {
  color: #7B3F37;
  font-size: 36px;
  text-transform: uppercase;
}

.Presentation .contents {
  margin-left: 4%;
}

.Presentation .contents .bordureRight {
  border-right: 6px solid;
  border-color: #7B3F37;
  padding-bottom: 4%;
}

.Presentation .contents .bordureRight p {
  color: #005E6E;
  font-size: 15px;
  margin-bottom: 5px;
  margin-right: 10px;
}

.Presentation .contents .bordureBottom {
  border-bottom: 6px solid;
  border-color: #7B3F37;
  width: 87%;
  float: right;
}

.Presentation .resized-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.Presentation .resized-image #for_small_devices {
  display: none;
}

.Presentation .image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 6px solid #7B3F37;
}

.Presentation .image img {
  width: 70%;
}

/* Historique Section */
.Historique {
  background-color: #EEEEEE;
  font-family: "Poppins", sans-serif;
}

.Historique .HistoireInfo {
  background-image: url("./../../Saved Pictures/Map.png");
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
  height: 200vh;
  background-position: center;
}

.Historique .HistoireInfo .title {
  color: #7B3F37;
  font-size: 36px;
  text-transform: uppercase;
  padding-top: 5%;
}

.Historique .HistoireInfo .Information {
  position: absolute;
  bottom: 10px;
}

.Historique .HistoireInfo .Information .SecondeTitle {
  color: #7B3F37;
  font-size: 20px;
}

.Historique .HistoireInfo .Information .Paragraphe {
  color: #005E6E;
  font-size: 15px;
}

.Commerciaux .title {
  color: #7B3F37;
  font-size: 26px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.Commerciaux .image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.Commerciaux .image #small-devices {
  display: none;
}

.Locaux {
  background-color: #EEEEEE;
  font-family: "Poppins", sans-serif;
}

.Locaux .title {
  color: #7B3F37;
  font-size: 26px;
  text-transform: uppercase;
  padding-left: 3%;
  padding-top: 5%;
  font-weight: bold;
}

.Locaux .section {
  background-color: #EEEEEE;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  padding: 5% 20%;
}

.Locaux .section .section1 {
  cursor: pointer;
}

.Locaux .section .section2 {
  cursor: pointer;
}

.Locaux .section img {
  width: 100%;
}

.Locaux .section h6 {
  color: #005E6E;
  font-weight: bold;
  margin: 0;
}

.Locaux .section p {
  color: #7B3F37;
  font-size: 21px;
}

@media (max-width: 1200px) {
  #small-devices {
    display: block !important;
  }
  #large-devices {
    display: none !important;
  }
}

@media (max-width: 992px) {
  #for_large_devices {
    display: none !important;
  }
  .resized-image #for_small_devices {
    display: block !important;
  }
}

@media (max-width: 768px) {
  .Presentation {
    margin-top: 120px;
  }
  .Historique .HistoireInfo {
    background: none !important;
    height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;
  }
  .Historique .HistoireInfo .Information {
    position: relative;
    margin: 40px 0;
  }
}

@media (max-width: 572px) {
  .Presentation .Title {
    font-size: 30px;
  }
}

.Partenaire {
  font-family: "Poppins", sans-serif;
  margin-top: 10%;
}

.Partenaire .contents h3 {
  color: #005E6E;
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  text-align: center;
}

.Partenaire .contents .apiContents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.Partenaire .contents .apiContents .CategoryName {
  width: 100%;
  margin: 2% 0%;
}

.Partenaire .contents .apiContents .CategoryName h5 {
  color: #7B3F37;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}

.Partenaire .contents .apiContents .grayBackground {
  background-color: #EEEEEE;
}

.Partenaire .contents .apiContents .content {
  width: 50%;
  padding: 1% 1%;
}

.Partenaire .contents .apiContents .content .PartenaireRow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.Partenaire .contents .apiContents .content .PartenaireRow img {
  width: 40%;
  height: 120px;
  cursor: pointer;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (max-width: 576px) {
  .Partenaire .contents {
    margin-top: 120px;
  }
  .Partenaire .contents h3 {
    font-size: 30px;
  }
  .Partenaire .contents .apiContents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .Partenaire .contents .apiContents .content {
    width: 100%;
    margin-bottom: 20px;
  }
  .Partenaire .contents h5 {
    font-size: 20px !important;
  }
}

.events .contents {
  font-family: "Poppins", sans-serif;
  margin-top: 15%;
}

.events .contents .title h3 {
  color: #005E6E;
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  text-align: center;
}

.events .contents .eventData {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.events .contents .eventData .tomateColumn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 2% 2%;
  width: 50%;
  height: 200px;
}

.events .contents .eventData .tomateColumn .tomaterow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  width: 100%;
  cursor: pointer;
}

.events .contents .eventData .tomateColumn .tomaterow .firstSection {
  width: 100%;
}

.events .contents .eventData .tomateColumn .tomaterow .firstSection a {
  -webkit-box-shadow: #bfbfbf 1px 2px 2px;
          box-shadow: #bfbfbf 1px 2px 2px;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #EEEEEE;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0% 2%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.events .contents .eventData .tomateColumn .tomaterow .firstSection a p {
  color: #005E6E;
  padding: 6% 2%;
  height: 100px;
}

.events .contents .eventData .tomateColumn .tomaterow .firstSection a p .MedHermes {
  color: #7B3F37;
}

.events .contents .eventData .tomateColumn .tomaterow .firstSection a p .Date {
  color: #8c8c87;
}

.events .contents .eventData .tomateColumn .tomaterow .firstSection a img {
  height: 120px;
  padding: 3% 5%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (max-width: 992px) {
  .eventData {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .eventData .tomateColumn {
    width: 100% !important;
  }
}

@media (max-width: 576px) {
  .events .contents {
    margin-top: 120px;
  }
  .events .contents #TitleOfPage {
    font-size: 30px;
  }
}

@media (max-width: 450px) {
  .eventData .tomateColumn {
    margin-bottom: 50px;
  }
}

.event_details {
  margin-top: 12%;
  font-family: "Poppins", sans-serif;
}

.event_details .contents .description pre {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  text-align: center;
  margin: 4% 0%;
  white-space: pre-wrap;
}

.event_details .contents .event_img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.event_details .contents .event_img .img {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 400px;
  margin-bottom: 3%;
}

@media (max-width: 768px) {
  .event_details .contents .event_img .img {
    width: 100%;
  }
}

.event_details .contents .event_img .img img {
  width: 70%;
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}

.agenda {
  margin-top: 10%;
  font-family: "Poppins", sans-serif;
}

.agenda .contents h3 {
  color: #005E6E;
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  text-align: center;
}

.agenda .contents .accordion .accordion-item {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.5rem;
  margin-bottom: 4%;
  -webkit-box-shadow: 0px 5px 5px -1px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 5px 5px -1px rgba(0, 0, 0, 0.3);
}

.agenda .contents .accordion .accordion-item .accordion-header {
  margin-bottom: 0%;
}

.agenda .contents .accordion .accordion-item .accordion-header .accordion-button {
  background-color: #EEEEEE;
}

.agenda .contents .accordion .accordion-item .accordion-header .accordion-button .accordion-header-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.agenda .contents .accordion .accordion-item .accordion-header .accordion-button .accordion-header-contents .left-side {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.agenda .contents .accordion .accordion-item .accordion-header .accordion-button .accordion-header-contents .left-side p {
  color: #005E6E;
}

.agenda .contents .accordion .accordion-item .accordion-header .accordion-button .accordion-header-contents .rigth-side {
  margin-right: 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.agenda .contents .accordion .accordion-item .accordion-header .accordion-button .accordion-header-contents .rigth-side i {
  color: #005E6E;
  font-size: 30px;
}

.agenda .contents .accordion .accordion-item .accordion-header .accordion-button .accordion-header-contents .rigth-side p {
  margin: 0;
  margin-top: 10%;
  color: #005E6E;
}

.agenda .contents .accordion .accordion-item .accordion-body .image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 4%;
}

.agenda .contents .accordion .accordion-item .accordion-body .image img {
  width: 20%;
}

.agenda .contents .accordion .accordion-item .accordion-body .text {
  text-align: center;
}

@media (max-width: 992px) {
  .agenda .contents {
    margin-top: 120px;
  }
  .agenda .contents .accordion {
    margin-top: 20px;
  }
}

@media (max-width: 576px) {
  .agenda .contents .accordion .accordion-body img {
    width: 80px !important;
  }
}

.blog {
  margin-top: 10%;
  font-family: "Poppins", sans-serif;
}

.blog h3 {
  color: #005E6E;
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  text-align: center;
  margin-bottom: 1%;
}

.blog .contents {
  width: 100%;
  margin: auto;
  padding: 3% 0%;
}

.blog .contents:nth-of-type(even) {
  background-color: #EEEEEE;
}

.blog .contents:nth-of-type(even) .content .blogImg {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.blog .contents:nth-of-type(even) .content .blogTitle_description {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.blog .contents:nth-of-type(even) .content .blogTitle_description h2, .blog .contents:nth-of-type(even) .content .blogTitle_description pre {
  margin-left: 20%;
}

.blog .contents .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.blog .contents .content .blogImg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50%;
}

.blog .contents .content .blogImg img {
  width: 60%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10%;
}

.blog .contents .content .blogTitle_description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.blog .contents .content .blogTitle_description h2 {
  color: #7B3F37;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
}

.blog .contents .content .blogTitle_description pre {
  font-family: "Poppins", sans-serif;
  color: #005E6E;
  font-weight: 300;
  white-space: pre-wrap;
}

.blog .contents .content .blogTitle_description a {
  background-color: #005E6E;
  color: white;
  width: 30%;
}

@media (max-width: 992px) {
  .blog {
    margin-top: 120px;
  }
  .blog .contents {
    width: 90%;
  }
  .blog .contents .blogImg {
    width: 300px !important;
  }
  .blog .contents .blogImg img {
    width: 60%;
    height: 500px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 10%;
  }
  .blog .contents .blogTitle_description a {
    width: auto;
    padding: 10px 15px;
  }
}

@media (max-width: 792px) {
  .blog .contents .content {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .blog .contents .content .blogImg {
    width: 100%;
  }
  .blog .contents .content .blogTitle_description {
    text-align: center;
    margin-top: 20px;
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.blogDetails {
  margin-top: 10%;
  font-family: "Poppins", sans-serif;
}

.blogDetails .contents h2 {
  color: #005E6E;
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  text-align: center;
}

.blogDetails .contents .blogImg {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-size: cover !important;
  width: 100%;
  height: 300px;
  background-repeat: no-repeat !important;
  background-position: center !important;
  border-radius: 20px;
}

.blogDetails .contents .blogImg img {
  width: auto;
}

.blogDetails .contents .blogText {
  margin-top: 5%;
}

.blogDetails .contents .blogText pre {
  font-family: "Poppins", sans-serif;
  text-align: left;
  white-space: pre-wrap;
}

.blogDetails .contents .blogSignature {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.blogDetails .contents .blogSignature p {
  font-weight: bold;
}

@media (max-width: 992px) {
  .blogDetails .contents {
    margin-top: 120px;
  }
}

@media (max-width: 630px) {
  .blogDetails .contents .blogImg img {
    width: 100% !important;
  }
}

.product {
  margin-top: 10%;
  font-family: "Poppins", sans-serif;
}

.product .searchInput {
  position: fixed;
  right: -15%;
  bottom: 0;
  width: 20%;
  background: #005E6E;
  padding: 1%;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: right .5s ease-in-out;
  transition: right .5s ease-in-out;
}

.product .searchInput:hover {
  right: 0%;
}

.product .searchInput .icon {
  color: white;
  font-size: 20px;
}

.product .searchInput input {
  background-color: white;
}

.product .contents .content h3 {
  color: #005E6E;
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  text-align: center;
}

.product .contents .content .productsCategory .products {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.product .contents .content .productsCategory .products a {
  width: 30%;
  margin-top: 5%;
}

.product .contents .content .productsCategory .products a .product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.product .contents .content .productsCategory .products a .product:hover img {
  width: 100%;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}

.product .contents .content .productsCategory .products a .product p {
  text-align: center;
  color: #7B3F37;
  font-weight: bold;
  font-size: 20px;
  margin-top: 4%;
}

.product .contents .content .productsCategory .products a .product img {
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  width: 60%;
  height: 400px;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (max-width: 992px) {
  .product .contents {
    margin-top: 120px;
  }
}

@media (max-width: 576px) {
  .product .contents h3 {
    font-size: 30px !important;
  }
  .product .contents .productsCategory .products {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .product .contents .productsCategory .products a {
    width: 100% !important;
  }
  .product .contents .productsCategory .products a img {
    width: 80%;
  }
}

.product_details {
  margin-top: 10%;
  font-family: "Poppins", sans-serif;
}

.product_details .contents h2 {
  color: #005E6E;
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  text-align: center;
}

.product_details .contents .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.product_details .contents .content .productImg {
  width: 20%;
  margin-top: 2%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.product_details .contents .content .productImg img {
  width: 100%;
  margin-bottom: 20px;
}

.product_details .contents .content .productImg p {
  color: white;
  font-weight: bold;
  background-color: #7B3F37;
  padding: 1% 10%;
  border-radius: 20px;
}

.product_details .contents .content .productFullDescription {
  width: 50%;
}

.product_details .contents .content .productFullDescription .title {
  border: 3px solid #7B3F37;
  padding: 2%;
  border-radius: 20px;
  margin-top: 4%;
}

.product_details .contents .content .productFullDescription .title h3 {
  color: #005E6E;
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  text-align: center;
}

.product_details .contents .content .productFullDescription .title p {
  color: #7B3F37;
  text-align: center;
  font-weight: bold;
}

.product_details .contents .content .productFullDescription .title pre {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  text-align: center;
  margin: 4% 0%;
  white-space: pre-wrap;
}

.product_details .contents .content .productFullDescription .compositions {
  margin-top: 4%;
}

.product_details .contents .content .productFullDescription .compositions h4 {
  font-size: 40px;
  margin-top: 2%;
  font-weight: 500;
  font-style: italic;
  padding: 1%;
  color: #005E6E;
  width: 500px;
  border: 3px solid #7B3F37;
  border-radius: 10px;
}

.product_details .contents .content .productFullDescription .compositions .composition {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1% 3%;
  height: 80px;
  border: 3px solid #7B3F37;
  border-bottom: unset;
}

.product_details .contents .content .productFullDescription .compositions .composition:first-of-type {
  border-top-left-radius: 20px;
}

.product_details .contents .content .productFullDescription .compositions .composition:last-of-type {
  border-bottom-right-radius: 20px;
  border-bottom: 3px solid #7B3F37;
}

.product_details .contents .content .productFullDescription .compositions .composition p {
  color: black;
  letter-spacing: 1px;
}

.product_details .contents .content .productFullDescription .compositions .composition p:first-of-type {
  width: 80%;
  font-size: 16px;
}

.product_details .contents .content .productFullDescription .compositions .composition p:last-of-type {
  width: 20%;
  font-size: 16px;
}

.product_details .contents .content .productFullDescription .properties {
  margin-top: 4%;
}

.product_details .contents .content .productFullDescription .properties h5 {
  font-size: 40px;
  margin-top: 2%;
  font-weight: 500;
  font-style: italic;
  padding: 1%;
  color: #005E6E;
  width: 500px;
  border: 3px solid #7B3F37;
  border-radius: 10px;
}

.product_details .contents .content .productFullDescription .properties p {
  color: #7B3F37;
}

.product_details .contents .content .productFullDescription .properties pre {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  white-space: pre-wrap;
  word-break: break-word;
  border: 3px solid #7B3F37;
  padding: 2%;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.product_details .contents .content .productFullDescription .modeEmploi {
  margin-top: 4%;
  margin-bottom: 5%;
}

.product_details .contents .content .productFullDescription .modeEmploi img {
  width: 100%;
}

.product_details .contents .content .productPDF {
  width: 20%;
  margin-top: 14%;
}

.product_details .contents .content .productPDF button {
  width: 100%;
  margin-bottom: 3%;
  color: #005E6E;
  font-weight: 500;
  padding: 10px 0;
  border: 2px solid #7B3F37;
}

@media (max-width: 992px) {
  .product_details .contents {
    margin-top: 120px;
  }
  .product_details .contents .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .product_details .contents .content .productImg, .product_details .contents .content .productFullDescription, .product_details .contents .content .productPDF {
    width: 100%;
  }
  .product_details .contents .content .productImg .title h3, .product_details .contents .content .productFullDescription .title h3, .product_details .contents .content .productPDF .title h3 {
    font-size: 20px;
  }
  .product_details .contents .content .productImg .compositions h4, .product_details .contents .content .productFullDescription .compositions h4, .product_details .contents .content .productPDF .compositions h4 {
    font-size: 15px !important;
  }
}

@media (max-width: 768px) {
  .product_details .contents h2 {
    font-size: 30px;
  }
}

.footer {
  background-color: #EEEEEE;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  text-align: left;
}

.footer .border {
  border-left-style: solid;
  background-color: #005E6E;
  width: 4px;
  height: 280px;
  border-radius: 5PX;
  margin-top: 30px;
}

.footer .footer-services {
  padding-top: 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.footer .footer-services .social_icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 5% 0%;
}

.footer .footer-services .social_icon a {
  margin-right: 10%;
}

.footer .footer-services .social_icon a i {
  font-size: 25px;
  color: #005E6E;
}

.footer .footer-services .fit-picture {
  width: 120px;
}

.footer .footer-services h4 {
  font-size: 17px;
  color: #7B3F37;
  font-weight: bold;
  text-transform: uppercase;
  margin-right: 200px;
}

.footer .footer-services .forms {
  color: #005E6E;
  margin-left: 8%;
}

.footer .footer-services .forms span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer .footer-services .forms span p {
  font-size: 13px;
  font-weight: bold;
  margin-left: 4%;
}

.footer .footer-services .forms .inputs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer .footer-services .forms .inputs .input-zone {
  border: 2px solid #005E6E;
  background-color: #EEEEEE;
  border-radius: 25px;
  width: 66%;
  height: 28px;
}

.footer .footer-services .forms .inputs .envoyer {
  border-radius: 25px;
  width: 30%;
  height: 28px;
  border: none;
  background-color: #7B3F37;
  color: white;
  font-weight: bold;
  font-size: 12px;
}

.footer .footer-services h3 {
  font-size: 14px;
  color: #7B3F37;
  font-weight: bold;
  text-transform: uppercase;
}

.footer .footer-services .liste-services {
  font-weight: bold;
  text-decoration: none;
  list-style-type: none;
  padding: 0;
}

.footer .footer-services a {
  color: #005E6E;
  font-size: 12px;
}

@media (max-width: 992px) {
  .footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: left;
  }
  .footer .border {
    display: none;
  }
  .footer div {
    width: 90%;
  }
}
/*# sourceMappingURL=style.css.map */