@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bree+Serif&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Fascinate+Inline&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Amatic+SC:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Wire+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Tangerine:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Londrina+Outline&display=swap");
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html,
body {
  max-width: 100% !important;
  overflow-x: hidden !important;
}

.container1 {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  width: 100%;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2%;
  padding-right: 2%;
}
p {
  font-size: 1rem;
  text-align: left;
}

.navbar1,
.navbar1 > .container1 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .navbar1,
  .navbar1 > .container1 {
    display: block;
  }
}

.navbar1 {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  background-color: white;
  border-bottom: 1px solid #eceef3;
}

.navbar1-menu a:hover {
  color: #a62424;
}
@media (min-width: 576px) {
  .navbar1 .container1 {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .navbar1 .container1 {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .navbar1 .container1 {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .navbar1 .container1 {
    max-width: 1140px;
  }
}
.navbar1 .navbar1-header {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .navbar1 .navbar1-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
  }
}
.navbar1 .navbar1-header .navbar1-toggler {
  cursor: pointer;
  border: none;
  display: none;
  outline: none;
}
@media (max-width: 768px) {
  .navbar1 .navbar1-header .navbar1-toggler {
    display: block;
  }
}
.navbar1 .navbar1-header .navbar1-toggler span {
  height: 2px;
  width: 22px;
  background-color: #929aad;
  display: block;
}
.navbar1 .navbar1-header .navbar1-toggler span:not(:last-child) {
  margin-bottom: 0.2rem;
}
.navbar1 .navbar1-header > a {
  font-weight: 500;
  color: #3c4250;
}
.navbar1 .navbar1-menu {
  display: flex;
  align-items: center;
  flex-basis: auto;
  flex-grow: 1;
}
@media (max-width: 768px) {
  .navbar1 .navbar1-menu {
    display: none;
    text-align: center;
  }
}
.navbar1 .navbar1-menu.active {
  display: flex !important;
}

.navbar1 .navbar1-menu .navbar1-nav > li.active a {
  /** Si l'on veut ajouter une couleur a l'élément donné comme home**/
  color: #a62424;
}

.navbar1 .navbar1-menu .navbar1-nav > li :hover {
  /** Si l'on veut ajouter une couleur a l'élément donné comme home**/
  color: #a62424;
}
.navbar1 .navbar1-menu .navbar1-nav {
  margin-left: auto;
  margin-right: auto;
  flex-direction: row;
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
@media (max-width: 768px) {
  .navbar1 .navbar1-menu .navbar1-nav {
    width: 100%;
    display: block;
    border-top: 1px solid #eee;
    margin-top: 1rem;
  }
}
.navbar1 .navbar1-menu .navbar1-nav > li > a {
  color: #3c4250;
  text-decoration: none;
  display: inline-block;
  height: 5rem;
  padding: 2rem;
}

@media (max-width: 768px) {
  .navbar1 .navbar1-menu .navbar1-nav > li > a {
    border-bottom: 1px solid #eceef3;
  }
}

.navbar1 .navbar1-menu .navbar1-nav .navbar1-dropdown .dropdown {
  list-style: none;
  position: absolute;
  left: 0;
  background-color: #fff;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  width: auto;
  white-space: nowrap;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  z-index: 5;
  display: none;
}
@media (max-width: 768px) {
  .navbar1 .navbar1-menu .navbar1-nav .navbar1-dropdown .dropdown {
    position: relative;
    box-shadow: none;
  }
}
.navbar1 .navbar1-menu .navbar1-nav .navbar1-dropdown .dropdown li a {
  color: #3c4250;
  padding: 0.25rem 1rem;
  display: block;
}
.navbar1 .navbar1-menu .navbar1-nav .navbar1-dropdown .dropdown.show {
  display: block !important;
}
.navbar1 .navbar1-menu .navbar1-nav .dropdown > .separator {
  height: 1px;
  width: 100%;
  margin-top: 9px;
  margin-bottom: 9px;
  background-color: #eceef3;
}
.navbar1 .navbar1-dropdown {
  position: relative;
}

.navbar1 .navbar1-header > a span {
  color: #ab7abf;
}

.navbar1 .navbar1-header h4 {
  font-weight: 500;
  font-size: 2rem;
}
@media (max-width: 768px) {
  .navbar1 .navbar1-header h4 {
    font-size: 1.5rem;
  }
}
.topImg {
  height: 100vh;
}

.basTop {
  width: 100%;
  height: 1vh;
  background: linear-gradient(0.25turn, #f2cb05d1 25%, #f2cb05 87%, #f2cb05d2);
}

.imgText img {
  width: 100vw;
  height: 100vh;
  z-index: 0;
  position: absolute;
}

.slogan {
  margin-top: 7%;
  margin-left: 5%;
  position: relative;
  z-index: 2;
  color: white;
  font-size: 18vh;
  font-family: "Poppins", sans-serif;
  font-weight: bolder;
}

.box {
  font-family: "Poppins", sans-serif;
}

.boxNoRight {
  font-family: "Poppins", sans-serif;
  width: 90vw;
  margin-left: 10vw;
  padding: 4vh;
}

.containerText {
  width: 100vw;
  height: auto;
  background-color: #d2d2d2;
  padding-top: 4vh;
  padding-bottom: 8vh;
  z-index: 10;
}

.containerTextGris {
  width: 100vw;
  height: auto;
  background-color: #efefef4e;
  padding-top: 4vh;
  padding-bottom: 8vh;
  z-index: 10;
}

.containerTextGris {
  width: 100vw;
  height: auto;
  background: linear-gradient(#edededd4 80%, #deddddbb);
  padding-top: 4vh;
  padding-bottom: 8vh;
  z-index: 10;
}

.containerCepages {
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.94),
      rgba(255, 255, 255, 0.94)
    ),
    url("../img/CarteFrance.png");

  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-top: 4px solid #a62424;
  border-bottom: 4px solid #a62424;
}

.containerTextGris p {
  text-align: justify;
}

.containerTextJaune {
  width: 100vw;
  height: auto;
  background-color: #f2cb05;
  padding-top: 4vh;
  padding-bottom: 8vh;
  z-index: 10;
  color: white;
}

.containerTextViolet {
  width: 100vw;
  height: auto;
  background: linear-gradient(#ab7abf, #9468a5);
  padding-top: 4vh;
  padding-bottom: 8vh;
  z-index: 10;
  color: white;
}

.containerTextDegradé {
  width: 100vw;
  height: auto;
  background: linear-gradient(#f3f3f3 80%, #e9e9e9);
  padding-top: 4vh;
  padding-bottom: 8vh;
  z-index: 10;
  color: white;
}

.bowCol {
  content: "";
  display: flex;
  clear: both;
  text-align: justify;
  background-color: #f6f6f6;
}

.bowCol :after {
  display: flex;
}

.colRight {
  width: 80%;
  height: auto;
  margin: auto auto;
  padding: 1vh;
}
.colRight p {
  color: black;
}
.colLeft {
  color: #a62424;
  font-size: 3vh;
  padding: 2vh;
  display: left;
  writing-mode: vertical-lr;
  display: table-cell;
  vertical-align: middle;
}

h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 6rem;
  color: #a62424;
  position: relative;
}

h3 {
  font-family: "Poppins", sans-serif;
  font-size: 4vh;
  color: #a62424;
  font-weight: 500;
}

h4 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 5vh;
  color: #a62424;
}

h5 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 4vh;
  color: #a62424;
  padding-top: 1vh;
  font-weight: 300;
}

.containerText {
  width: 100vw;
  height: auto;
  background-color: #fcfcfc;
  display: absolute;
  padding-top: 4vh;
  padding-bottom: 4vh;
}

.soulignement {
  width: 40%;
  height: 5%;
  background-color: #b6b6b6bb;
  margin-left: 20%;
  margin-top: 8%;
  position: absolute;
}

.parallax1 {
  /* The image used */
  background-image: url("../img/Vignes.jpg");

  /* Set a specific height */
  height: 40vh;

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.parallax2 {
  /* The image used */
  background-image: url("../img/BrainDraw.jpg");

  /* Set a specific height */
  height: 90vh;

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.9;
}

.violet {
  color: #ab7abf;
  font-weight: bold;
}

.presentation {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  margin: auto;
  text-align: center;
  font-family: arial;
  background-color: #ffffffa7;
}

.presentation p {
  color: #3c4250;
}

.rowPresentation {
  content: "";
  display: flex;
  clear: both;
}
.ImgPres {
  width: 20vw;
  height: 20vw;

  border-radius: 50%;
  padding: 1vw;
}
.rowPresentation :after {
  display: flex;
}

.columnPresentation {
  display: flex;
  float: left;
  margin: 2%;
  margin-left: 15%;
}

.title {
  color: grey;
  font-size: 18px;
}

.buttonEquipe {
  border: none;
  outline: 0;
  display: inline-block;
  padding: 8px;
  color: white;
  background-color: #a669be;
  text-align: center;
  cursor: pointer;
  width: 100%;
  font-size: 18px;
}

a {
  text-decoration: none;
  font-size: 22px;
  color: black;
}

.section a {
  color: #294365;
  text-decoration: none;
}

.section {
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 1.2vw;
  transition: 0.4s;
  background-color: white;
  border-left: 2px solid #a62424;
}
.section img {
  width: 10vw;
  height: 10vw;
}

.activeSection,
.section:hover {
  background-color: #f1f1f19d;
}

.containSection {
  padding: 2vh;
  padding-left: 8vh;
  display: none;
  background-color: #f1f1f19d;
  border-left: 2px solid #a62424;
  border-bottom: 2px solid #a62424;
  overflow: hidden;
}

@media only screen and (max-width: 768px) {
  .LogoTop1 {
    display: none;
  }
  .LogoTop2 {
    width: 5vh;
    height: 5vh;
    border-radius: 50%;
  }
  h1 {
    font-size: 4rem;
  }
  h3 {
    text-align: left;
  }

  .box {
    width: 100%;
    padding: 4vh;
  }
  .ultimephoto {
    display: inline;
  }
  .parallax1 {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  .LogoTop1 {
    width: 5vw;
    height: 5vw;
    border-radius: 50%;
  }
  .LogoTop2 {
    display: none;
  }

  .box {
    width: 80vw;
    margin-left: 10vw;
    padding: 4vh;
  }
  .ultimephoto {
    display: none;
  }
}
