/* IMPORT PARTIALS */
/********************** RESET ************************/
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

a img {
  border: 0px solid;
}

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

:focus {
  outline: 0;
}

/* VARIABLES */
html {
  font-size: 62.5%;
}

body {
  font-family: "EB Garamond", serif;
  word-wrap: break-word;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 400;
  background: #FAFAFA;
  color: #2B2E34;
}

@media (min-width: 768px) {
  body {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.wrapper {
  max-width: 1366px;
  margin: 0 auto;
}

.center {
  text-align: center;
}

.push-right {
  float: right;
}

.text-right {
  text-align: right;
}

a {
  color: #B7024B;
  cursor: pointer;
}

strong {
  font-weight: bold;
}

.is-hidden {
  opacity: 0;
}

.anim-txt {
  animation: animTxt 1.5s ease-out forwards;
  -webkit-animation: animTxt 1.5s ease-out forwards;
}

.anim-footer {
  animation: animFooter 1s ease-out forwards;
  -webkit-animation: animFooter 1s ease-out forwards;
}

.obj-fit-fallback {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.obj-fit-fallback img {
  opacity: 0;
}

@-webkit-keyframes arrowAnim {
  0%, 100% {
    top: 55%;
  }
  50% {
    top: 60%;
  }
}

@keyframes arrowAnim {
  0%, 100% {
    top: 55%;
  }
  50% {
    top: 60%;
  }
}

@-webkit-keyframes animTxt {
  0% {
    transform: translateY(50px);
    -webkit-transform: translateY(50px);
    -moz-transform: translateY(50px);
    -ms-transform: translateY(50px);
    -o-transform: translateY(50px);
  }
  100% {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }
}

@keyframes animTxt {
  0% {
    transform: translateY(50px);
    -webkit-transform: translateY(50px);
    -moz-transform: translateY(50px);
    -ms-transform: translateY(50px);
    -o-transform: translateY(50px);
  }
  100% {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }
}

@-webkit-keyframes animFooter {
  0% {
    opacity: 0;
    transform: translateY(100px);
    -webkit-transform: translateY(100px);
    -moz-transform: translateY(100px);
    -ms-transform: translateY(100px);
    -o-transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }
}

@keyframes animFooter {
  0% {
    opacity: 0;
    transform: translateY(100px);
    -webkit-transform: translateY(100px);
    -moz-transform: translateY(100px);
    -ms-transform: translateY(100px);
    -o-transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }
}

.header {
  position: relative;
  height: 100vh;
}

@media only screen and (min-width: 768px) and (max-height: 530px) {
  .header {
    height: auto;
  }
}

.header-ctn {
  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-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
}

.header__layer {
  position: fixed;
  left: 0;
  background-position: top center;
  background-size: cover;
  height: 100vh;
  width: 100%;
  z-index: -1;
}

.header__layer--1 {
  background-image: url(../../img-content/tout.jpg);
}

.header__layer--2 {
  left: 100%;
  background-image: url(../../img-content/4e-plan.png);
}

.header__layer--3 {
  left: 100%;
  background-image: url(../../img-content/3e-plan.png);
}

.header__layer--4 {
  left: 100%;
  background-image: url(../../img-content/2e-plan.png);
}

.header__layer--5 {
  left: 100%;
  background-image: url(../../img-content/1e-plan.png);
}

.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: end;
  align-self: flex-end;
  padding: 20px 20px;
}

@media (min-width: 768px) {
  .header__nav {
    padding: 40px 44px;
  }
}

.header__nav .btn {
  font-size: 10px;
}

@media (min-width: 768px) {
  .header__nav .btn {
    font-size: 14px;
  }
}

.header__logo-ctn {
  position: fixed;
  top: calc(50%);
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 200px;
  width: 260px;
  z-index: 2;
}

@media only screen and (max-height: 400px) {
  .header__logo-ctn {
    padding: 50px 0;
  }
}

@media (min-width: 768px) {
  .header__logo-ctn {
    height: 260px;
  }
}

.header__logo {
  display: block;
  /*height: 100%;*/
  height: auto;
  max-width: 100%;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .header__logo {
    padding: 0 0;
  }
}

.header__scroll-img {
  position: absolute;
  top: 82px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 32px;
  width: 32px;
  cursor: pointer;
  -webkit-animation: arrowAnim 1.5s infinite;
  animation: arrowAnim 1.5s infinite;
}

.header__mask {
  position: relative;
  height: 290px;
  width: 100%;
  text-align: center;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,fafafa+98,fafafa+98,fafafa+98&0+0,0+0,1+98 */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(98%, #fafafa));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fafafa 98%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#fafafa', GradientType=0);
  /* IE6-9 */
}

.header-main {
  width: 140px;
  margin: 0 auto;
  padding-top: 60px;
  text-align: center;
}

.header-main a figure {
  height: 110px;
}

.header-main a figure img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer {
  position: relative;
  background-image: url("../../img-content/depositphotos_161759302-stock-illustration-vineyard-and-winery-vector-sketch.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  font-family: "Montserrat", "Georgia", serif;
  z-index: 1;
}

.footer:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(230, 229, 229, 0.9);
}

.footer .wrapper {
  padding: 25px 25px;
  text-align: center;
}

@media (min-width: 1366px) {
  .footer .wrapper {
    padding: 40px 430px;
  }
}

.footer__content {
  position: relative;
}

.footer p {
  color: #737B89;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 24px;
}

@media (min-width: 768px) {
  .footer p {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 40px;
  }
}

.footer .btn {
  margin-top: 20px;
}

.footer .btn--mention {
  font-size: 12px;
  font-size: 1.2rem;
}

.section-title {
  font-family: "Montserrat", "Georgia", serif;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 40px;
  color: #737B89;
  margin-bottom: 22px;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 32px;
    font-size: 3.2rem;
    margin-bottom: 52px;
  }
}

.section-title a {
  color: #737B89;
}

.btn {
  display: inline-block;
  padding: 11px 17px;
  font-family: "Montserrat", "Georgia", serif;
  font-size: 14px;
  font-size: 1.4rem;
  border-radius: 47px;
}

.btn--dark {
  background: #B7024B;
  border: 1px solid #B7024B;
  color: #fff;
}

.btn--light--ghost {
  border: 1px solid #B7024B;
  color: #B7024B;
}

/* IMPORT PAGES */
.home {
  background: #FAFAFA;
}

.home__presentation-txt {
  padding: 70px 32px;
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
  -moz-transform: translateY(100px);
  -ms-transform: translateY(100px);
  -o-transform: translateY(100px);
}

@media (min-width: 768px) {
  .home__presentation-txt {
    padding: 50px 150px;
  }
}

@media (min-width: 1024px) {
  .home__presentation-txt {
    padding: 50px 250px;
  }
}

@media (min-width: 1366px) {
  .home__presentation-txt {
    padding: 50px 367px;
  }
}

.home__content {
  padding: 285px 0 40px 0;
}

@media (min-width: 768px) {
  .home__content {
    padding: 285px 0 36px 0;
  }
}

.home__content p {
  margin-bottom: 20px;
  line-height: 28px;
}

@media (min-width: 768px) {
  .home__content p {
    margin-bottom: 30px;
    line-height: 32px;
  }
}

.home__content p:last-of-type {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .home__presentation-img {
    padding: 0 100px;
  }
}

@media (min-width: 1024px) {
  .home__presentation-img {
    padding: 0 150px;
  }
}

.home__presentation-img figure {
  display: inline-block;
  height: 277px;
  overflow: hidden;
  vertical-align: middle;
  text-align: center;
}

@media (min-width: 768px) {
  .home__presentation-img figure {
    height: 352px;
  }
}

.home__presentation-img figure img {
  height: 277px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (min-width: 768px) {
  .home__presentation-img figure img {
    height: 352px;
  }
}

.home__presentation-img figure.bouteille {
  width: calc(100% / 5 - 4px);
}

.home__presentation-img figure.bouteille img {
  -o-object-fit: contain;
  object-fit: contain;
}

@media (min-width: 768px) {
  .home__presentation-img--2 {
    display: block;
  }
}

.home__presentation-img--2 figure {
  width: 100%;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .home__presentation-img--2 figure {
    width: calc(50% - (13px / 2) - 4px);
    margin: 0 13px 0 0;
  }
}

.home__presentation-img--2 .home {
  background: #FAFAFA;
}

.home__presentation-img--2 .home__presentation-txt {
  padding: 0 32px;
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
  -moz-transform: translateY(100px);
  -ms-transform: translateY(100px);
  -o-transform: translateY(100px);
}

@media (min-width: 768px) {
  .home__presentation-img--2 .home__presentation-txt {
    padding: 0 150px;
  }
}

@media (min-width: 1024px) {
  .home__presentation-img--2 .home__presentation-txt {
    padding: 0 250px;
  }
}

@media (min-width: 1366px) {
  .home__presentation-img--2 .home__presentation-txt {
    padding: 0 367px;
  }
}

.home__presentation-img--2 .home__content {
  padding: 14px 0 40px 0;
}

@media (min-width: 768px) {
  .home__presentation-img--2 .home__content {
    padding: 200px 0 36px 0;
  }
}

.home__presentation-img--2 .home__content p {
  margin-bottom: 20px;
  line-height: 28px;
}

@media (min-width: 768px) {
  .home__presentation-img--2 .home__content p {
    margin-bottom: 30px;
    line-height: 32px;
  }
}

.home__presentation-img--2 .home__content p:last-of-type {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .home__presentation-img--2 .home__presentation-img {
    padding: 0 100px;
  }
}

@media (min-width: 1024px) {
  .home__presentation-img--2 .home__presentation-img {
    padding: 0 150px;
  }
}

.home__presentation-img--2 .home__presentation-img figure {
  display: inline-block;
  height: 277px;
  overflow: hidden;
  vertical-align: middle;
  text-align: center;
}

@media (min-width: 768px) {
  .home__presentation-img--2 .home__presentation-img figure {
    height: 352px;
  }
}

.home__presentation-img--2 .home__presentation-img figure img {
  height: 277px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (min-width: 768px) {
  .home__presentation-img--2 .home__presentation-img figure img {
    height: 352px;
  }
}

.home__presentation-img--2 .home__presentation-img figure.bouteille {
  width: calc(100% / 5 - 4px);
}

.home__presentation-img--2 .home__presentation-img figure.bouteille img {
  -o-object-fit: contain;
  object-fit: contain;
}

@media (min-width: 768px) {
  .home__presentation-img--2 .home__presentation-img--2 {
    display: block;
  }
}

.home__presentation-img--2 .home__presentation-img--2 figure {
  width: 100%;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .home__presentation-img--2 .home__presentation-img--2 figure {
    width: calc(50% - (13px / 2) - 4px);
    margin: 0 13px 0 0;
  }
}

@media (min-width: 768px) {
  .home__presentation-img--2 .home__presentation-img--2 figure:nth-child(2n) {
    margin: 0;
  }
}

@media (min-width: 768px) {
  .home__presentation-img--2 .home__presentation-img--2 img {
    width: 100%;
  }
}

.home__presentation-img--2 .home__presentation-item {
  padding-top: 20px;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .home__presentation-img--2 .home__presentation-item {
    margin-bottom: 63px;
  }
}

.home__presentation-img--2 .home__presentation-item:last-of-type {
  margin-bottom: 0;
}

.home__presentation-img--2 .home .section-title {
  text-align: center;
}

@media (min-width: 768px) {
  .home__presentation-img--2 figure:nth-child(2n) {
    margin: 0;
  }
}

@media (min-width: 768px) {
  .home__presentation-img--2 img {
    width: 100%;
  }
}

.home__presentation-item {
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .home__presentation-item {
    margin-bottom: 63px;
  }
}

.home__presentation-item:last-of-type {
  margin-bottom: 0;
}

.home .section-title {
  text-align: center;
}

.contact {
  background: #FAFAFA;
  margin-top: 20px;
}

@media (min-width: 1024px) {
  .contact {
    margin: 0 auto;
    margin-top: 40px;
    width: 1008px;
  }
}

.contact__title {
  width: 100%;
  text-align: center;
}

.contact__title h1 {
  font-family: "Montserrat", "Georgia", serif;
  color: #737B89;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 2px;
}

@media (min-width: 1024px) {
  .contact__title h1 {
    font-size: 32px;
  }
}

.contact__figure {
  margin: 20px 30px;
}

.contact__figure-map-ctn {
  width: 100%;
  height: 235px;
  max-width: 350px;
}

@media (min-width: 1024px) {
  .contact__figure-map-ctn {
    width: 520px;
    height: 350px;
  }
}

.contact__figure-map {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (min-width: 1024px) {
  .contact__figure {
    display: inline-block;
    margin: 40px 0;
  }
}

.contact__infos {
  margin: 40px 30px 20px 30px;
  vertical-align: top;
}

.contact__infos h2 {
  font-family: "Montserrat", "Georgia", serif;
  font-size: 16px;
  color: #2B2E34;
  line-height: 32px;
  font-weight: 500;
}

.contact__infos-text {
  font-family: "EB Garamond", serif;
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
}

.contact__infos-text a {
  font-family: "EB Garamond", serif;
  font-size: 18px;
  color: #2B2E34;
  font-weight: 400;
}

@media (min-width: 1024px) {
  .contact__infos-text a {
    font-size: 16px;
  }
}

@media (min-width: 1024px) {
  .contact__infos-text {
    font-size: 16px;
  }
}

.contact__infos hr {
  border: 0.5px solid black;
  margin: 20px 0 20px 0;
  width: 35px;
}

@media (min-width: 1024px) {
  .contact__infos {
    display: inline-block;
    margin-left: 110px;
  }
}

.mention {
  position: relative;
  background-image: url("../../img-content/depositphotos_161759302-stock-illustration-vineyard-and-winery-vector-sketch.png");
  z-index: 1;
  background-position: bottom;
  padding: 0 30px 45px 30px;
  margin: 45px 0 0 0;
}

.mention__title {
  position: relative;
  width: 100%;
  text-align: center;
}

.mention__title h1 {
  padding-top: 35px;
  font-family: "Montserrat", "Georgia", serif;
  color: #737B89;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.2px;
  line-height: 40px;
}

@media (min-width: 1024px) {
  .mention__title h1 {
    font-size: 16px;
  }
}

.mention__block {
  position: relative;
  margin: 20px 30px 0 30px;
  text-align: center;
}

@media (min-width: 1024px) {
  .mention__block {
    max-width: 632px;
    margin: 20px auto 0 auto !important;
  }
}

.mention__block h2 {
  font-family: "Montserrat", "Georgia", serif;
  font-size: 14px;
  color: #2B2E34;
  line-height: 18px;
  font-weight: 500;
}

.mention__block div {
  font-family: "EB Garamond", serif;
  font-size: 14px;
  color: #2B2E34;
  line-height: 18px;
}

.mention__block div a {
  font-family: "EB Garamond", serif;
  font-size: 14px;
  color: #2B2E34;
}

.mention:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(230, 229, 229, 0.9);
}
/*# sourceMappingURL=screen.css.map */