/* Colors */
/* Font Weights */
.menu.home {
  position: fixed;
  z-index: 25;
  left: 13px;
  top: 18px;
  height: 50px;
  width: 50px;
  display: grid;
  justify-content: center;
}
.menu.home .bars,
.menu.home .bars:after,
.menu.home .bars:before {
  width: 35px;
  height: 3px;
}
.menu.home .bars {
  position: relative;
  transform: translateY(25px);
  background: #008F70;
}
.menu.home .bars.animate {
  background: #008F70;
}
.menu.home .bars:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 10px;
  background: #008F70;
  transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.menu.home .bars:after {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  background: #008F70;
  transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.menu.home .bars.animate:after {
  top: 0;
  transform: rotate(45deg);
  background: #008F70;
  transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.menu.home .bars.animate {
  background: none;
}
.menu.home .bars.animate:before {
  bottom: 0;
  transform: rotate(-45deg);
  background: #008F70;
  transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.menu.fixed-header .bars {
  background: #008F70;
}
.menu.fixed-header .bars.animate {
  background: #008F70;
}
.menu.fixed-header .bars:before {
  background: #008F70;
}
.menu.fixed-header .bars:after {
  background: #008F70;
}
.menu.fixed-header .bars.animate:after {
  background: #008F70;
}
.menu.fixed-header .bars.animate {
  background: none;
}
.menu.fixed-header .bars.animate:before {
  background: #008F70;
}

.fixed{
  position: fixed; 
}

#index-header {
  display: grid;
  grid-template-columns: 20% 50% 20%;
  grid-template-areas: "menu logo lang";

  /* 
  top: 0;
  background: none;
  z-index: 10;
  position: fixed;
  */
  width: 100%;
  align-items: center;
  height: 90px;
  gap: 5%;
  transition: background 300ms ease-in-out;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background-color: white;
  box-shadow: 0 6px 37px #00000014;
  padding: 1rem 5%;

    
}
#index-header .logo {
  grid-area: logo;
  width: 146px;
  justify-self: center;
}
#index-header .logo img {
  width: 100%;
}
#index-header .logo .green-logo {
  display: none;
}
#index-header .logo .white-logo {
  display: block;
}
#index-header .offer-access {
  display: none;
}
#index-header .lang {
  grid-area: lang;
  position: relative;
  width: 120px;
}
#index-header .lang svg {
  width: 60%;
}
#index-header .lang .lang-dropdown {
  display: none;
  position: absolute;
  background-color: #008F70;
  align-items: center;
  text-align: center;
  gap: 1px;
  z-index: 1;
  right: 53%;
  top: 115%;
}
#index-header .lang .lang-dropdown a {
  height: 38px;
  width: 39px;
  color: #FFFFFF;
  font-size: 1.6rem;
  text-decoration: none;
  display: grid;
  align-items: center;
  border-right: 2px solid #FFFFFF;
}
#index-header .lang .lang-dropdown a:last-child {
  border-right: none;
  width: 38px;
}
#index-header .lang .show {
  display: flex;
}
#index-header .lang.green-icon svg path {
  fill: #008F70;
}

#index-header.white-bg {
  background: #FFFFFF;
}

#index-header.no-lang {
  grid-template-columns: 20% 102%;
  grid-template-areas: "menu logo";
  grid-template-rows: 100%;
}

#index-header.fixed-header {
  background: #FFFFFF;
  transition: background 300ms ease-in-out;
}
#index-header.fixed-header .logo .green-logo {
  display: block;
}
#index-header.fixed-header .logo .white-logo {
  display: none;
}
#index-header.fixed-header .offer-access {
  color: #008F70;
}
#index-header.fixed-header .lang svg path {
  fill: #008F70;
}
/* 
.hero {
  height: 812px;
  background-color: #2e2e2e;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  padding-bottom: 65px;
}
.hero .carousel {
  position: absolute;
  height: 100%;
  overflow: hidden;
  background-color: #cdcdcd;
  display: flex;
  transition: all 300ms linear;
  z-index: 1;
  top: 0;
}
.hero .carousel .carousel-slide {
  width: 100%;
  height: 100%;
  top: 0;
  overflow: hidden;
  position: relative;
}
.hero .carousel .carousel-slide::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000;
  opacity: 0.5;
}
.hero .carousel .carousel-slide .slide-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 15%;
  z-index: 3;
}
.hero .carousel .carousel-slide .slide-text h1 {
  font-size: 3.5rem;
  color: #FFFFFF;
  font-weight: 700;
  text-transform: uppercase;
  width: 90%;
  height: 100%;
}
.hero .carousel .carousel-slide .slide-text p {
  font-size: 1.6rem;
  color: #FFFFFF;
  width: 90%;
  display: flex;
  justify-self: center;
  line-height: 1.6;
  padding-top: 1em;
}
.hero .carousel .carousel-slide .slide-img {
  height: 100%;
  transform: translate(-35%, 0%);
}
.hero .carousel-nav {
  grid-area: buttons;
  text-align: center;
  width: 100%;
  position: absolute;
  bottom: 45%;
  z-index: 2;
}
.hero .carousel-nav .carousel-button {
  cursor: pointer;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  background: none;
  border: 1px solid #FFFFFF;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}
.hero .carousel-nav .active {
  background: #FFFFFF;
} */

.deals {
  z-index: 3;
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: auto auto auto auto;
  grid-template-areas: "brand" "model" "type" "deals";
  justify-items: center;
  gap: 2em;
  position: absolute;
  bottom: 45px;
  width: 100%;
}
.deals .select-container {
  height: 50px;
  width: 90%;
  color: #FFFFFF;
}
.deals .select-container select {
  width: 100%;
  height: 100%;
  color: #FFFFFF;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background: none;
  border: 1px solid #FFFFFF;
  padding: 0 1em;
  font-size: 1.6rem;
  background-image: url(../images/arrow_down.svg);
  background-repeat: no-repeat;
  background-position: right;
  background-position-x: 95%;
  background-size: 5%;
}
.deals .select-container select option {
  color: #01040D;
}
.deals .brand {
  grid-area: brand;
}
.deals .model {
  grid-area: model;
}
.deals .type {
  grid-area: type;
}
.deals .deals-submit {
  grid-area: deals;
  height: 50px;
  width: 90%;
  color: #FFFFFF;
  background: #008F70;
  font-size: 1.6rem;
  font-weight: 700;
  border: none;
}

.newsletter {
  padding: 2em;
  display: grid;
  grid-template-rows: 75% 25%;
  height: 45%;
  background: #F4F4F4;
  gap: 2em;
}
.newsletter .news-form {
  display: grid;
  grid-template-rows: 40% 20% 30%;
  align-items: center;
}
.newsletter .news-form h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #1F1F1F;
  text-transform: uppercase;
}
.newsletter .news-form p {
  font-size: 1.6rem;
  width: 90%;
  align-self: flex-start;
}
.newsletter .news-image img {
  width: 100%;
  max-width: 1061px;
}

.form-newsletter {
  display: flex;
}
.form-newsletter input,
.form-newsletter .newsletter-submit {
  height: 50px;
  font-size: 1.6rem;
}
.form-newsletter input {
  width: 66.66%;
  padding: 1em;
  border: 1px solid #C4B9B9;
  border-right: none;
}
.form-newsletter .newsletter-submit {
  width: 33.33%;
  border: none;
  padding: 0;
  background: #2D776E;
  color: #FFFFFF;
  font-weight: 700;
}

footer.front {
  background: #f4f4f4;
}

/* Media queries */
@media only screen and (max-width: 320px) {
  #index-header .lang {
    width: 100px;
  }

  /* .hero .carousel .carousel-slide .slide-text {
    top: 18%;
  }
  .hero .carousel .carousel-slide .slide-text h1 {
    font-size: 3rem;
  }
  .hero .carousel .carousel-slide .slide-text p {
    font-size: 1.4rem;
  } */

  .newsletter {
    height: 60%;
  }

  .form-newsletter input,
.form-newsletter .newsletter-submit {
    font-size: 1.4rem;
  }
}
/* Mobile : 360px */
@media only screen and (width: 360px) {
  .newsletter {
    height: 52%;
  }
}
/* Tablet : 768px ~ 900px *iPad+ */
@media only screen and (min-width: 768px) and (max-width: 900px) {
  .menu.home {
    left: 24px;
    top: 22px;
  }

  #index-header {
    grid-template-columns: 15% 60% 15%;
    height: 90px;
  }
  #index-header .logo {
    width: 300px;
  }
  #index-header .lang {
    width: 200px;
  }
  #index-header .lang .lang-dropdown {
    right: 60%;
    top: 130%;
  }

  /* .hero {
    height: 755px;
    padding-bottom: 45px;
  }
  .hero .carousel .carousel-slide .slide-text {
    top: 20%;
  }
  .hero .carousel .carousel-slide .slide-text h1 {
    width: 70%;
    height: 90px;
    text-align: center;
  }
  .hero .carousel .carousel-slide .slide-text p {
    text-align: center;
  }
  .hero .carousel .carousel-slide .slide-img {
    transform: translate(-16%, 0%);
  }
  .hero .carousel-nav {
    bottom: 50%;
  } */

  .deals .select-container select {
    background-size: 3%;
  }

  .newsletter {
    padding: 4em;
    grid-template-rows: 60% 40%;
  }
  .newsletter .news-image {
    padding: 0 10em;
  }
}
/* Tablet : 901px+ *iPad Pro range */
@media only screen and (min-width: 901px) {
  .menu.home {
    left: 60px;
    top: 40px;
  }
  .menu.home .bars,
.menu.home .bars:before,
.menu.home .bars:after {
    width: 60px;
    height: 4px;
  }

  #index-header {
    height: 130px;
    grid-template-columns: 29% 46% 23% 7%;
    grid-template-areas: "menu logo offer lang";
    gap: 0;
  }
  #index-header .logo {
    width: 355px;
    margin-right: 47px;
  }
  #index-header .offer-access {
    grid-area: offer;
    text-decoration: none;
    font-size: 1.8rem;
    color: #FFFFFF;
    grid-template-columns: 94% 6%;
    display: grid;
    width: 180px;
    align-items: center;
  }
  #index-header .offer-access span {
    font-size: 3rem;
    padding-bottom: 5px;
  }
  #index-header .lang {
    display: grid;
    align-content: center;
    width: 40px;
  }
  #index-header .lang .lang-dropdown {
    right: 22%;
    top: 125%;
  }
/* 
  .hero {
    height: 1077px;
    padding-bottom: 65px;
  }
  .hero .carousel .carousel-slide .slide-text {
    padding-left: 45px;
    width: 80%;
    align-items: start;
    top: 25%;
  }
  .hero .carousel .carousel-slide .slide-text h1 {
    font-size: 8.1rem;
    width: 100%;
  }
  .hero .carousel .carousel-slide .slide-text p {
    width: 100%;
    font-size: 2.5rem;
    padding-top: 2em;
  }
  .hero .carousel-nav {
    display: flex;
    width: auto;
    flex-direction: column;
    justify-content: center;
    right: 150px;
    height: 100%;
    bottom: 50px;
  }
  .hero .carousel-nav .carousel-button {
    width: 17px;
    height: 17px;
    margin-bottom: 10px;
  } */

  .deals {
    grid-template-columns: 29% 29% 29%;
    grid-template-rows: 50% 50%;
    grid-template-areas: "brand model type" "deals deals deals";
    justify-content: center;
    padding-top: 12em;
    width: 100%;
  }
  .deals .select-container,
.deals .deals-submit {
    font-size: 2.5rem;
    width: 100%;
    height: 94px;
  }
  .deals .select-container select,
.deals .deals-submit select {
    font-size: 2.5rem;
    background-size: 10%;
  }

  .newsletter {
    padding: 6em;
    grid-template-rows: 60% 30%;
    height: 637px;
  }
  .newsletter .news-form {
    grid-template-rows: 30% 25% 30%;
    width: 75%;
  }
  .newsletter .news-form h2 {
    font-size: 4rem;
  }
  .newsletter .news-form p {
    font-size: 2rem;
  }
  .newsletter .news-image img {
    width: 87%;
  }

  .form-newsletter input,
.form-newsletter .newsletter-submit {
    height: 87px;
  }
  .form-newsletter input {
    font-size: 2rem;
  }
  .form-newsletter .newsletter-submit {
    font-size: 2.5rem;
  }
}
@media only screen and (min-width: 1025px) {
  .menu.home {
    cursor: pointer;
    left: 98px;
  }

  #index-header {
    grid-template-columns: 29% 46% 23% 7%;
  }
  #index-header .offer-access {
    width: 188px;
    justify-self: end;
    margin-right: 2em;
  }
  #index-header .lang {
    cursor: pointer;
  }
/* 
  .hero {
    height: 100vh;
    padding-bottom: 45px;
    display: flex;
    flex-direction: column;
  }
  .hero .carousel .carousel-slide .slide-text {
    padding-left: 90px;
    top: 30%;
    width: 65%;
  }
  .hero .carousel .carousel-slide .slide-text h1 {
    height: 230px;
  }
  .hero .carousel .carousel-slide .slide-img {
    height: unset;
    width: 100%;
    transform: unset;
  }
  .hero .carousel-nav {
    bottom: 0;
  } */

  .deals {
    grid-template-columns: 23% 23% 23% 15%;
    grid-template-rows: 100%;
    grid-template-areas: "brand model type deals";
    gap: 4em;
    padding-top: 0;
  }
  .deals .select-container select {
    background-size: 5%;
  }
  .deals .deals-submit {
    cursor: pointer;
    background: #008F70;
    transition: all 300ms linear;
  }
  .deals .deals-submit:hover {
    background: #1F1F1F;
    transition: all 300ms linear;
  }

  .newsletter {
    grid-template-rows: 100%;
    grid-template-columns: 62% 37%;
    grid-template-areas: "image form";
    padding: 16em 10em 0em 10em;
    height: 435px;
  }
  .newsletter .news-form {
    grid-area: form;
    width: 100%;
  }
  .newsletter .news-form p {
    width: 100%;
  }
  .newsletter .news-image {
    grid-area: image;
  }

  .form-newsletter .newsletter-submit {
    cursor: pointer;
    background: #2D776E;
    transition: all 300ms linear;
  }
  .form-newsletter .newsletter-submit:hover {
    background: #1F1F1F;
    transition: all 300ms linear;
  }
}
/* Desktop: 1280px ~ 1725px */
@media only screen and (max-width: 1725px) and (min-width: 1280px) {
  .menu.home {
    left: 67px;
    top: 40px;
  }
  .menu.home .bars,
.menu.home .bars:before,
.menu.home .bars:after {
    width: 52px;
  }
  .menu.home .bars:before {
    bottom: 12px;
  }
  .menu.home .bars:after {
    top: 12px;
  }

  #index-header {
    height: 130px;
  }
  #index-header .logo {
    background-size: 300px;
  }
/* 
  .hero {
    padding-bottom: 45px;
  }
  .hero .carousel .carousel-slide .slide-text {
    width: 70%;
    top: 35%;
    padding-left: 45px;
  }
  .hero .carousel .carousel-slide .slide-text h1 {
    height: 160px;
    font-size: 5rem;
  }
  .hero .carousel .carousel-slide .slide-text p {
    font-size: 1.8rem;
  }
  .hero .carousel-nav {
    bottom: -2%;
  }
  .hero .carousel-nav .carousel-button {
    width: 14px;
    height: 14px;
  } */

  .deals .select-container {
    height: 70px;
  }
  .deals .select-container select {
    font-size: 2rem;
    padding: 0 1.5em;
  }
  .deals .deals-submit {
    height: 70px;
    font-size: 2rem;
  }

  .newsletter {
    grid-template-columns: 55% 48%;
  }

  .form-newsletter input {
    height: 70px;
  }
  .form-newsletter .newsletter-submit {
    height: 70px;
    font-size: 2rem;
  }
}
@media only screen and (min-width: 1440px) and (max-width: 1600px) {
  .deals {
    grid-template-columns: 24% 24% 24% 16%;
    gap: 3em;
  }
}
@media only screen and (min-width: 2000px) {
  .menu.home {
    left: 135px;
  }
/* 
  .hero .carousel .carousel-slide .slide-text {
    padding-left: 115px;
  }
  .hero .carousel .carousel-slide .slide-text h1 {
    font-size: 9rem;
  }
  .hero .carousel .carousel-slide .slide-text p {
    font-size: 2.8rem;
  }
  .hero .carousel-nav .carousel-button {
    width: 25px;
    height: 25px;
    margin-bottom: 20px;
  } */

  .deals {
    grid-template-columns: 24% 24% 24% 14%;
  }

  .newsletter {
    padding: 16em 12em 0em 12em;
  }
}



body section.accueil  .sub-title {
  margin: 9px 0 23px 0;
}

body section.accueil {
  margin-top: 2.4rem;
}
body section.accueil .container-fluid {
  padding: 0 5%;
}

body section.accueil h1, body section.accueil .h1 {
  position: relative;
  z-index: 1;
}
body section.accueil .carousel-indicators {
  bottom: -55px;
  right: unset;
}
@media screen and (max-width: 992px) {
  body section.accueil .carousel-indicators {
    right: 0;
  }
}
body section.accueil .carousel-indicators li {
  width: 40px;
  background-color: #CBCBCB;
}
body section.accueil .carousel-indicators li.active {
  background-color: #008F70;
}
@media screen and (min-width: 1920px) {
  body section.accueil .carousel-indicators li {
    width: 70px;
    height: 8px;
  }
}
@media screen and (max-width: 992px) {
  body section.accueil .carousel-inner {
    padding-top: 2rem;
  }
}
body section.accueil .carousel-inner .badge-promo {
  background-image: url("../svg/badge.svg");
  background-size: cover;
  width: 190px;
  height: 190px;
  position: absolute;
  right: 0;
  z-index: 2;
}
@media screen and (max-width: 992px) {
  body section.accueil .carousel-inner .badge-promo {
    top: -3rem;
    transform: scale(0.75);
  }
}
@media screen and (min-width: 1920px) {
  body section.accueil .carousel-inner .badge-promo {
    width: 200px;
    height: 200px;
  }
}
body section.accueil .carousel-inner .badge-content {
  color: white;
  transform: scale(0.85);
  padding-top: 20px;
  font-size: large;
}
@media screen and (min-width: 1920px) {
  body section.accueil .carousel-inner .badge-content {
    color: white;
    transform: scale(0.85);
    padding-top: 20px;
    font-size: large;
  }
}
body section.accueil .carousel-inner .badge-content .titre {
  position: relative;
  top: 30px;
  right: 0;
  left: 10px;
  display: block;
  font-weight: bold;
  text-transform: uppercase;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 140px;
}
@media screen and (min-width: 1920px) {
  body section.accueil .carousel-inner .badge-content .titre {
    font-size: 130%;
    max-width: 170px;
  }
}
body section.accueil p{
  margin-bottom:1rem;
}

body section.accueil .carousel-inner .badge-content small {
  position: relative;
  top: 15px;
  left: 21px;
}

body section.accueil .carousel-inner .badge-content .prix {
  position: relative;
  left: 20px;
  font-size: 2.6rem;
  font-weight: bold;
}
body section.accueil .carousel-inner .badge-content .prix a {
  color: white;
  font-size: 3.5rem;
  margin-top: 4px;
  display: block;
  width: max-content;
}
body section.accueil .carousel-inner .badge-content .prix a:hover {
  text-decoration: none;
}
body section.accueil .carousel-inner .badge-content .prix sup {
  font-size: 2rem;
  top: -2.5rem;
  left: 1.5rem;
}
body section.accueil .carousel-inner .badge-content .prix sub {
  font-size: 1.9rem;
  bottom: 0.4rem;
  left: -1.8rem;
  
}

body section.accueil {
font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
}



body .accueil .container-fluid a#to-deal {
  background: #008F70;
  color: white;
  border-color: #008F70;
  padding: 0.99rem 5.5rem;
  font-weight: bold;
  font-size: 15.5px; 
  width: max-content;
}
body .accueil .container-fluid a#to-deal:after {
  content: url("../svg/fleshe-blanc.svg");
}
body .accueil .container-fluid a#to-deal:hover {
  background: white;
  color: #008F70;
  border: 1px solid #008F70;
  text-decoration: none;
}
body .accueil .container-fluid a#to-deal:hover:after {
  content: url("../svg/fleshe-vert.svg") !important;
}
body .accueil .container-fluid a.btn {
  border: 1px solid #707070;
  text-align: left;
  border-radius: unset;
}
body .accueil .container-fluid a.btn:hover {
  text-decoration: underline;
}
body .accueil .container-fluid a.btn:after {
  content: url("../svg/arrow.svg");
  vertical-align: middle;
  display: inline-block;
  transform: scale(0.75);
  padding-left: 30px;
}
body .accueil .container-fluid a.btn.bg-green {
  border-color: white;
  font-weight: bold;
}
body .accueil .container-fluid a.btn.bg-green:hover {
  color: white;
  text-decoration: underline;
}
body .accueil .container-fluid a.btn.bg-green:after {
  content: url("../svg/arrow-white.svg");
}
@media screen and (min-width: 1920px) {
  body .accueil .container-fluid a.btn {
    font-size: 1.75rem;
    padding: 0.75rem;
  }
  body .accueil .container-fluid a.btn:after {
    vertical-align: text-bottom;
    transform: scale(1.5);
    padding-left: 40px;
    padding-right: 15px;
    margin-top: -3px;
  }
}
body .accueil .container-fluid a.no-style {
  color: unset;
}
body .accueil .container-fluid a#to-deal {
  background: #008F70;
  color: white;
  border-color: #008F70;
  padding: 0.8rem 5.5rem;
  font-weight: bold;
  font-size: 14px;
  display:table-cell;
}
body .accueil .container-fluid a#to-deal:after {
  content: url("../svg/fleshe-blanc.svg");
}
body .accueil .container-fluid a#to-deal:hover {
  background: white;
  color: #008F70;
  border: 1px solid #008F70;
  text-decoration: none;
}
body .accueil .container-fluid a#to-deal:hover:after {
  content: url("../svg/fleshe-vert.svg") !important;
}
body .accueil .container-fluid .title.green .h2 {
  font-weight: bold;
  text-transform: none;
}
body .accueil .container-fluid .fixed-right {
  position: fixed;
  top: 400px;
  right: 1px;
  width: 46px;
  background-color: #1f1f1f;
}
body .accueil .container-fluid .fixed-right a {
  display: block;
  border: unset;
  transform: scale(0.75);
  padding: 5px;
}

body .accueil h1  {
  font-size: 5rem;
  font-weight: bold;
  white-space: nowrap;
  text-transform: uppercase;
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
}


/* style recherche */

body  section.search  input:not([type=radio]), 
body  section.search  select, 
body  section.search  button:not(#menu-toggle) {
  border-color: #707070 !important;
  border-radius: unset !important;
  height: 48px;
}

body  section.search  select{
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

/* @media screen and (min-width: 992px){
  body section.search .block-search  form input[type=submit] {
      content: url(../svg/search-icon.svg);
      display: flex;
  }
} */
body section.search .block-search  form input[type=submit] {
    width: 48px;
    border-color: #707070 !important;
    border-radius: unset !important;
    height: 48px;
}

body section.search  form input[type=submit]:hover {
  opacity: 0.8;
  transition: 0.2s 0.1s;
}
 

body section.search  form input[type=submit] {
    transition: 0.2s 0.1s;
    width: 200px;
    color: white;
    display: inline-block;
    font-weight: 400;
    text-align: center;
    vertical-align: middle; 
    user-select: none;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1.7rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color .15s ease-in-out;
    background-color: #008F70 ;
    padding-left: 30px;
    background-image: url("../svg/search-icon.svg");
    background-size: 50% 50%;
    background-repeat: no-repeat;
    background-position: 10px 1rem;

}



body section.search  select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url(../svg/down-grey.svg);
  background-repeat: no-repeat;
  background-size: 5%;
  background-position-x: 96%;
  background-position-y: center;
}


body section.search .block-search {
  margin: 3rem 0;
}
body section.search .block-search .bg-white {
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 22px 22px #dcdcdc;
}
@media screen and (min-width: 1920px) {
  body section.search .block-search .bg-white {
    padding: 30px;
  }
}
body section.search .block-search  .title h4 {
  color: #707070;
  margin-bottom: 1.25rem;
}
 body section.search .block-search  form .flex-fill select,
 body section.search .block-search  form .flex-fill button, 
 body section.search .block-search  form .flex-fills select, 
 body section.search .block-search  form .flex-fills button {
  height: 48px;
}
@media screen and (min-width: 1920px) {
  body section.search .block-search  form .flex-fill select, 
  body section.search .block-search  form .flex-fill button, 
  body section.search .block-search  form .flex-fills select, 
  body section.search .block-search  form .flex-fills button {
    height: 78px;
  }
}
@media screen and (max-width: 992px) {
  body section.search .block-search  form .flex-fill, 
  body section.search .block-search  form .flex-fills {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
body section.search .block-search  form input[type=submit] {
  width: 48px;
  border-color: #707070 !important;
  border-radius: unset !important;
  height: 48px;
}

@media screen and (max-width: 992px){
    body section.search  form input[type=submit] {
        width: 100% !important;
        background-image: none;

    }

}
@media screen and (min-width: 992px) {
  body section.search .block-search form input[type=submit] {
     text-indent:-733px;
     
  }
  @-moz-document url-prefix() {

     
    body section.search .block-search form input[type=submit] {
      color: #008f70;
      overflow: hidden;
      background-image: url("../svg/search-icon.svg");
      background-size: 50%;
      background-repeat: no-repeat;
      background-position: center;
      font-size: 0 !important;
    }
  }
}
@media screen and (min-width: 1920px) {
  body section.search .block-search form input[type=submit] {
    height: 78px;
    width: 78px;
  

  }
}


/*# ===============*/

  body .accueil h1, body .accueil .h1 {
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
  }

  body .accueil p {
    font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
  }

@media screen and (min-width: 1920px){
    body .accueil h1, body .accueil .h1 {
    font-size: 11.3rem;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    }
    body .accueil p {
    font-size: 2.75rem;
    font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    }

    .menu.home {
      top: 33px;
    }
    .menu.home .bars, .menu.home .bars:before, .menu.home .bars:after {
      width: 108px;
      height: 8px;
    }
   
    .menu.home .bars:before {
      top:13px;
    }
    .menu.home .bars:after{
      top:27px;
    }

}

 


/*# sourceMappingURL=index.css.map */
