@keyframes bounceIt {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(3px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes bounceItReverse {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-3px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes scalyPagination {
  0% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(0.8);
  }
}
/*BOOTSTRAP GRID*/
@-ms-viewport {
  width: device-width;
}
html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

*, ::after, ::before {
  box-sizing: inherit;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col, .no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0%;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.col-1 {
  -ms-flex: 0 0 8.333333%;
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.col-2 {
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-3 {
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-5 {
  -ms-flex: 0 0 41.666667%;
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.col-6 {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  -ms-flex: 0 0 58.333333%;
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.col-8 {
  -ms-flex: 0 0 66.666667%;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.col-9 {
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  -ms-flex: 0 0 83.333333%;
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.col-11 {
  -ms-flex: 0 0 91.666667%;
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

.col-12 {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  -ms-flex-order: -1;
  order: -1;
}

.order-last {
  -ms-flex-order: 13;
  order: 13;
}

.order-0 {
  -ms-flex-order: 0;
  order: 0;
}

.order-1 {
  -ms-flex-order: 1;
  order: 1;
}

.order-2 {
  -ms-flex-order: 2;
  order: 2;
}

.order-3 {
  -ms-flex-order: 3;
  order: 3;
}

.order-4 {
  -ms-flex-order: 4;
  order: 4;
}

.order-5 {
  -ms-flex-order: 5;
  order: 5;
}

.order-6 {
  -ms-flex-order: 6;
  order: 6;
}

.order-7 {
  -ms-flex-order: 7;
  order: 7;
}

.order-8 {
  -ms-flex-order: 8;
  order: 8;
}

.order-9 {
  -ms-flex-order: 9;
  order: 9;
}

.order-10 {
  -ms-flex-order: 10;
  order: 10;
}

.order-11 {
  -ms-flex-order: 11;
  order: 11;
}

.order-12 {
  -ms-flex-order: 12;
  order: 12;
}

.offset-1 {
  margin-left: 8.333333%;
}

.offset-2 {
  margin-left: 16.666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.333333%;
}

.offset-5 {
  margin-left: 41.666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.333333%;
}

.offset-8 {
  margin-left: 66.666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.333333%;
}

.offset-11 {
  margin-left: 91.666667%;
}

@media (min-width: 576px) {
  .col-sm {
    -ms-flex-preferred-size: 0;
    flex-basis: 0%;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-sm-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-sm-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-sm-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-sm-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-sm-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-sm-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-sm-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-sm-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-sm-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-sm-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-sm-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-sm-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-sm-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-sm-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-sm-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-sm-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-sm-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-sm-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-sm-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-sm-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-sm-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-sm-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-sm-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-sm-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.333333%;
  }
  .offset-sm-2 {
    margin-left: 16.666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.333333%;
  }
  .offset-sm-5 {
    margin-left: 41.666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.333333%;
  }
  .offset-sm-8 {
    margin-left: 66.666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.333333%;
  }
  .offset-sm-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    -ms-flex-preferred-size: 0;
    flex-basis: 0%;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-md-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-md-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-md-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-md-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-md-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-md-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-md-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-md-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-md-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-md-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-md-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-md-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-md-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-md-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-md-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-md-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-md-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-md-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-md-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-md-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-md-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-md-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-md-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.333333%;
  }
  .offset-md-2 {
    margin-left: 16.666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.333333%;
  }
  .offset-md-5 {
    margin-left: 41.666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.333333%;
  }
  .offset-md-8 {
    margin-left: 66.666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.333333%;
  }
  .offset-md-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    -ms-flex-preferred-size: 0;
    flex-basis: 0%;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-lg-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-lg-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-lg-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-lg-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-lg-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-lg-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-lg-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-lg-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-lg-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-lg-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-lg-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-lg-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-lg-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-lg-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-lg-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-lg-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-lg-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-lg-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-lg-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-lg-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-lg-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-lg-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-lg-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-lg-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.333333%;
  }
  .offset-lg-2 {
    margin-left: 16.666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.333333%;
  }
  .offset-lg-5 {
    margin-left: 41.666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.333333%;
  }
  .offset-lg-8 {
    margin-left: 66.666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.333333%;
  }
  .offset-lg-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 1201px) {
  .col-xl {
    -ms-flex-preferred-size: 0;
    flex-basis: 0%;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-xl-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-xl-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-xl-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xl-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-xl-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-xl-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-xl-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-xl-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-xl-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-xl-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-xl-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-xl-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-xl-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-xl-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-xl-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-xl-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-xl-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-xl-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-xl-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-xl-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-xl-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-xl-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-xl-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-xl-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.333333%;
  }
  .offset-xl-2 {
    margin-left: 16.666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.333333%;
  }
  .offset-xl-5 {
    margin-left: 41.666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.333333%;
  }
  .offset-xl-8 {
    margin-left: 66.666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.333333%;
  }
  .offset-xl-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 1600px) {
  .col-xxl {
    -ms-flex-preferred-size: 0;
    flex-basis: 0%;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-xxl-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-xxl-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-xxl-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xxl-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xxl-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-xxl-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-xxl-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xxl-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-xxl-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-xxl-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xxl-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-xxl-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-xxl-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xxl-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-xxl-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-xxl-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-xxl-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-xxl-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-xxl-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-xxl-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-xxl-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-xxl-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-xxl-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-xxl-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-xxl-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-xxl-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-xxl-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-xxl-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.666667%;
  }
}
.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-md-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media print {
  .d-print-none {
    display: none !important;
  }
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-print-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
.flex-row {
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.flex-column {
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.flex-row-reverse {
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important;
}

.flex-fill {
  -ms-flex: 1 1 auto !important;
  flex: 1 1 auto !important;
}

.flex-grow-0 {
  -ms-flex-positive: 0 !important;
  flex-grow: 0 !important;
}

.flex-grow-1 {
  -ms-flex-positive: 1 !important;
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  -ms-flex-negative: 0 !important;
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  -ms-flex-negative: 1 !important;
  flex-shrink: 1 !important;
}

.justify-content-start {
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.justify-content-end {
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

.justify-content-center {
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.justify-content-between {
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.justify-content-around {
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important;
}

.align-items-start {
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}

.align-items-end {
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

.align-items-center {
  -ms-flex-align: center !important;
  align-items: center !important;
}

.align-items-baseline {
  -ms-flex-align: baseline !important;
  align-items: baseline !important;
}

.align-items-stretch {
  -ms-flex-align: stretch !important;
  align-items: stretch !important;
}

.align-content-start {
  -ms-flex-line-pack: start !important;
  align-content: flex-start !important;
}

.align-content-end {
  -ms-flex-line-pack: end !important;
  align-content: flex-end !important;
}

.align-content-center {
  -ms-flex-line-pack: center !important;
  align-content: center !important;
}

.align-content-between {
  -ms-flex-line-pack: justify !important;
  align-content: space-between !important;
}

.align-content-around {
  -ms-flex-line-pack: distribute !important;
  align-content: space-around !important;
}

.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
  align-content: stretch !important;
}

.align-self-auto {
  -ms-flex-item-align: auto !important;
  align-self: auto !important;
}

.align-self-start {
  -ms-flex-item-align: start !important;
  align-self: flex-start !important;
}

.align-self-end {
  -ms-flex-item-align: end !important;
  align-self: flex-end !important;
}

.align-self-center {
  -ms-flex-item-align: center !important;
  align-self: center !important;
}

.align-self-baseline {
  -ms-flex-item-align: baseline !important;
  align-self: baseline !important;
}

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
  align-self: stretch !important;
}

@media (min-width: 576px) {
  .flex-sm-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-sm-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-sm-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-sm-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-sm-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-sm-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-sm-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-sm-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-sm-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 768px) {
  .flex-md-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-md-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-md-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-md-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-md-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-md-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-md-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-md-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-md-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-md-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-md-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-md-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-md-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-md-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-md-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-md-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 992px) {
  .flex-lg-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-lg-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-lg-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-lg-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-lg-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-lg-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-lg-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-lg-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-lg-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 1200px) {
  .flex-xl-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-xl-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-xl-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-xl-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-xl-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-xl-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-xl-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-xl-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-xl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
::-moz-selection {
  color: #ffffff;
  background: #bc9350;
}

::selection {
  color: #ffffff;
  background: #bc9350;
}

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: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

sup {
  vertical-align: super;
  font-size: 0.6rem;
}

html {
  line-height: 1;
  font-family: "poppins", Helvetica, sans-serif;
  font-weight: 200;
  font-size: 1rem;
  color: #424418;
  max-width: 100%;
  width: 100%;
  overflow-x: hidden;
  position: relative;
  left: 0;
  scrollbar-gutter: stable;
}

body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
}

ol, ul {
  list-style: none;
}

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

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

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

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

p, li {
  line-height: 1.2;
}

p strong, p b {
  font-weight: bold;
}

p a {
  text-decoration: underline;
}

li a {
  text-decoration: underline;
}
li strong, li b {
  font-weight: bold;
}

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

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  user-select: none;
}

picture {
  width: 100%;
  height: 100%;
  display: block;
  user-select: none;
}

section {
  padding: 3rem 5vw 0 5vw;
}

button {
  cursor: pointer;
  outline: none;
}

.center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.spaceBtm {
  margin-bottom: 3rem;
}

.spaceTop {
  margin-top: 3rem;
}

.darkBg {
  background-color: #424418;
  color: #ffffff;
  padding-bottom: 3rem;
}

.btn {
  padding: 1rem 1.5rem 1rem 1.5rem;
  display: inline-block;
  font-size: 0.9rem;
  cursor: pointer;
  position: relative;
  border-radius: 5px;
  font-weight: 300;
  min-width: 300px;
  text-align: center;
  background-color: transparent;
  outline: 0;
  border: none;
  transition: background-color 0.3s;
}
.btn span {
  display: block;
  transition: color 0.3s;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.14rem;
  position: relative;
  color: #424418;
}
.btn.lite {
  padding: 0.6rem 1.25rem 0.6rem 1.25rem;
  min-width: 200px;
}
.btn.lite:not(.addToCart) {
  padding: 0.8rem 1.25rem 0.6rem 1.25rem;
}
.btn.white {
  color: #ffffff;
  border-color: #ffffff;
}
.btn.white span {
  color: #ffffff;
}
.btn.white .border-static {
  stroke: #ffffff;
}
.btn.white .border-animated {
  stroke: #333510;
}
.btn.white:hover {
  background-color: rgb(62, 64, 25);
}
.btn.addToCart span {
  transform: translate(10px, 0);
}
.btn.addToCart:before {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url("../img/add-cart-icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 0.75rem;
  top: calc(50% - 8px);
  transform: scale(1);
  opacity: 1;
  transition: opacity 0.3s, transform 0.3s;
}
.btn.addToCart:after {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url("../img/add-cart-icon-white.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 0.75rem;
  top: calc(50% - 8px);
  transform: scale(0.5);
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
}
.btn.addToCart:hover:before {
  opacity: 0;
  transform: scale(0.5);
}
.btn.addToCart:hover:after {
  opacity: 1;
  transform: scale(1);
}
.btn svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
  z-index: 1;
}
.btn svg rect {
  fill: none;
  vector-effect: non-scaling-stroke;
}
.btn .border-static {
  stroke: #424418;
  stroke-width: 1;
  transition: stroke 0.3s;
}
.btn .border-animated {
  stroke: #424418;
  stroke-width: 2;
  stroke-linecap: round;
  opacity: 0;
  transition: opacity 0.2s;
}
.btn:hover {
  background-color: rgb(115, 116, 88);
}
.btn:hover .border-static {
  stroke: rgb(115, 116, 88);
}
.btn:hover .border-animated {
  opacity: 1;
}
.btn:hover span {
  color: #ffffff;
}

.secondaryBtn {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  font-size: 1rem;
  cursor: pointer;
  position: relative;
}
.secondaryBtn svg {
  width: 1rem;
  height: 1rem;
  margin-right: 0.5rem;
}
.secondaryBtn svg path {
  stroke: #424418;
  fill: transparent;
}
.secondaryBtn:hover svg {
  animation-name: bounceIt;
  animation-duration: 0.6s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-fill-mode: both;
}

.linksRow {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.linksRow .ctaBlock {
  width: 50%;
  align-items: flex-start;
}
.linksRow .btn:not(:last-child) {
  margin-right: 1rem;
}

.ctaBox p {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.margL-12 {
  margin-left: -12rem;
}

.margL-6 {
  margin-left: -6rem;
}

.margL-7 {
  margin-left: -7rem;
}

.margL-8 {
  margin-left: -8rem;
}

.title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: nowrap;
  font-family: "linotype-didot", serif;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  line-height: 1.2;
  font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: 0.3rem;
}
.title.center {
  text-align: center;
  align-items: center;
}
.title.center p {
  align-items: center;
}
.title em {
  font-size: 70%;
}
.title strong {
  font-weight: 400;
}
.title.cutColor {
  position: relative;
}
.title.cutColor p {
  position: relative;
  z-index: 1;
}
.title.cutColor .titleCloneMask {
  position: absolute;
  inset: 0 auto 0 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
}
.title.cutColor .titleClone {
  position: absolute;
  inset: 0 auto auto 0;
  width: max-content;
  color: #fff;
  pointer-events: none;
  white-space: nowrap;
}
.title.cutColor .titleClone p {
  margin: 0;
  color: inherit;
}

.titleLite {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: nowrap;
  font-family: "linotype-didot", serif;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  line-height: 1.2;
  font-weight: 400;
  font-size: clamp(1.6rem, 4vw, 2rem);
}
.titleLite.center {
  text-align: center;
  align-items: center;
}
.titleLite em {
  font-size: 80%;
}
.titleLite strong {
  font-weight: 400;
}

.block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: nowrap;
}
.block.center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}

.coverImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  -o-object-fit: cover;
  -o-object-position: center;
  vertical-align: middle;
}

.largeVisual {
  position: relative;
  z-index: 2;
  height: 70vh;
}
.largeVisual picture {
  overflow: hidden;
}
.largeVisual picture img {
  transform: scale(1.1);
}
.largeVisual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  -o-object-fit: cover;
  -o-object-position: center;
  vertical-align: middle;
}

.imgShape {
  position: relative;
}
.imgShape .visualWrapper {
  position: relative;
  width: 500px;
  max-width: 100%;
}
.imgShape .shape {
  position: absolute;
  width: 500px;
  height: 90%;
  left: -2rem;
  top: 5%;
  z-index: 1;
}
.imgShape .shape img {
  object-fit: contain;
  object-position: left center;
}
.imgShape picture {
  position: relative;
  z-index: 2;
}
.imgShape picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  -o-object-fit: cover;
  -o-object-position: center;
  vertical-align: middle;
}

.imgShapeH {
  position: relative;
}
.imgShapeH .visualWrapper {
  position: relative;
}
.imgShapeH .shape {
  position: absolute;
  width: 700px;
  height: 200px;
  right: 5%;
  bottom: -2rem;
  z-index: -1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.imgShapeH .shape img {
  object-fit: cover;
  object-position: center;
}

.text {
  margin: 1.5rem 0;
  max-width: 100%;
}
.text p {
  width: 750px;
  max-width: 100%;
  margin: 0.75rem 0;
  text-align: justify;
  font-size: 0.9rem;
}
.text ul {
  margin: 1rem 0;
  list-style: disc;
  padding-left: 2rem;
  width: 750px;
  max-width: 100%;
}
.text ul li {
  margin: 0.7rem 0;
  line-height: 1.2;
  font-size: 0.9rem;
}
.text ol {
  margin: 1rem 0;
  list-style: decimal;
  padding-left: 2rem;
  width: 750px;
  max-width: 100%;
}
.text ol li {
  margin: 0.7rem 0;
  line-height: 1.2;
  font-size: 0.9rem;
}
.text em {
  font-style: italic;
  text-decoration: underline;
}
.text.center p {
  text-align: center;
  margin: 0.75rem auto;
}
.text.center ul {
  text-align: center;
  list-style-position: inside;
}
.text.center ul li {
  margin: 1.1rem auto;
}
.text.justify p {
  text-align: justify;
}

.prettyList {
  font-family: "linotype-didot", serif;
  padding-left: 5%;
  list-style: none;
  font-size: 2rem;
}
.prettyList li {
  margin: 0.5rem 0 !important;
  list-style: none;
}

.prettyOl {
  list-style: none;
  font-size: 1.2rem;
  counter-reset: pretty-counter;
  padding-left: 2rem;
}
.prettyOl li {
  margin: 0.5rem 0;
  list-style: none;
  font-weight: bold;
}
.prettyOl li::before {
  content: counter(pretty-counter);
  counter-increment: pretty-counter;
  display: inline-block;
  width: 2.5rem;
  height: 2.5rem;
  line-height: 2.5rem;
  border-radius: 50%;
  background-color: #bc9350;
  color: #ffffff;
  text-align: center;
  margin-right: 1rem;
}

/* Quote style */
.quote {
  width: 500px;
  max-width: 100%;
}
.quote .quoteContent {
  position: relative;
  font-size: 1.6rem;
  text-wrap: balance;
  font-weight: 500;
}
.quote .quoteContent:before {
  content: "";
  position: absolute;
  top: -74px;
  left: 0;
  height: 64px;
  width: 79px;
  background-image: url("../img/quote.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.quote .signature {
  color: #bc9350;
  margin-top: 0.5rem;
}

/* Basic content */
.basicContent {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.basicContent.reverse .row {
  flex-direction: row-reverse;
}
.basicContent .basicContent_img {
  position: relative;
}
.basicContent .quoteContainer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  width: 100%;
  margin-top: 0.75rem;
}

/* Bandeau CTA */
.bandeauCta {
  margin-top: 10rem;
  position: relative;
}

.bandeauCta_content {
  position: absolute;
  z-index: 1;
  top: 10%;
  left: 0;
  color: #ffffff;
  text-align: center;
  width: 100%;
  padding: 0 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  text-align: center;
  gap: 1rem;
}

.bandeauCta_visual {
  position: relative;
  overflow: hidden;
  height: 400px;
  max-height: 80vh;
  margin-top: -10rem;
  border-radius: 2rem;
  overflow: hidden;
}
.bandeauCta_visual picture {
  width: 100%;
  height: 100%;
}
.bandeauCta_visual picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  -o-object-fit: cover;
  -o-object-position: center;
  vertical-align: middle;
}
.bandeauCta_visual:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgb(1, 40, 48) 0%, rgba(1, 40, 48, 0.8) 100%);
}

/* Image transition */
.imgTransition {
  padding: 0;
  margin-top: -15rem;
  position: relative;
  height: 760px;
  overflow: hidden;
}
.imgTransition picture {
  width: 100%;
  height: 100%;
}
.imgTransition picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  -o-object-fit: cover;
  -o-object-position: center;
  vertical-align: middle;
}
.imgTransition.needDark:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}

.textTransition {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  color: #ffffff;
  width: 100%;
  height: 100%;
  padding: 17rem calc(5% + 2rem) 3rem calc(5% + 2rem);
}

.youtubeFrame {
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.youtubeFrame iframe {
  border-radius: 1rem;
  max-width: 100%;
}
.youtubeFrame.cmplz-blocked-content-container {
  background-size: cover;
  position: relative;
}
.youtubeFrame .cmplz-blocked-content-notice {
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 1rem;
  padding: 1rem;
  color: #000;
  position: absolute;
  bottom: 1rem;
  left: 1rem;
}
.youtubeFrame .cmplz-blocked-content-notice .cmplz-links {
  margin: 0.5rem 0;
}
.youtubeFrame .cmplz-blocked-content-notice .cmplz-links a {
  text-decoration: underline;
}
.youtubeFrame .cmplz-blocked-content-notice button {
  background-color: #000;
  color: #fff;
  border-radius: 1rem;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid #000;
  transition: all 0.3s;
}
.youtubeFrame .cmplz-blocked-content-notice button:hover {
  background-color: #000;
  color: #fff;
}

.basicAppear {
  opacity: 0;
}
.basicAppear.-y {
  transform: translate(0, 50px) scale(1);
}
.basicAppear.-y.scaly {
  transform: translate(0, 50px) scale(0.8);
}
.basicAppear.-noOpaq {
  opacity: 1;
}
.basicAppear.-xLeft {
  transform: translate(-200px, 0) scale(1);
}
.basicAppear.-xRight {
  transform: translate(200px, 0) scale(1);
}

.stickyAppear.toAlpha {
  opacity: 0;
}
.stickyAppear.toScaleImg {
  transform: scale(1.2);
}
.stickyAppear.toScale {
  transform: scale(0.7);
}
.stickyAppear.fromBtm {
  transform: translate(0, 50px);
}
.stickyAppear.fromBtm.increase {
  transform: translate(0, 100px);
}
.stickyAppear.fromTop {
  transform: translate(0, -50px);
}
.stickyAppear.fromTop.increase {
  transform: translate(0, -100px);
}
.stickyAppear.fromLeft {
  transform: translate(-50px, 0);
}
.stickyAppear.fromLeft.increase {
  transform: translate(-100px, 0);
}
.stickyAppear.fromRight {
  transform: translate(50px, 0);
}
.stickyAppear.fromRight.increase {
  transform: translate(100px, 0);
}

.shapeAppear .shapeMask {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: 2;
  transform: scale(1, 1);
}
.shapeAppear.main .shapeMask {
  background-color: #424418;
}
.shapeAppear.mainDark .shapeMask {
  background-color: #333510;
}
.shapeAppear.fromTop .shapeMask {
  transform-origin: 0 100%;
}
.shapeAppear.fromLeft .shapeMask {
  transform-origin: 0 0;
}
.shapeAppear.fromRight .shapeMask {
  transform-origin: 100% 0;
}

.loading::before,
.loading::after {
  content: "";
  position: fixed;
  z-index: 4000;
}

.loading::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #424418;
}

.loading::after {
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  margin: -30px 0 0 -30px;
  border-radius: 50%;
  opacity: 0.4;
  background: #bc9350;
  animation: loaderAnim 0.7s linear infinite alternate forwards;
}

@keyframes loaderAnim {
  to {
    opacity: 1;
    transform: scale3d(0.5, 0.5, 1);
  }
}
.cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: #bc9350;
  opacity: 0;
  z-index: 10000;
  user-select: none;
  pointer-events: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.25rem;
}
.cursor-follower svg {
  width: 12px;
  height: 12px;
  stroke: #ffffff;
  stroke-width: 2;
}
.cursor-follower.isActive svg:first-child {
  animation-name: bounceIt;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-fill-mode: both;
}
.cursor-follower.isActive svg:last-child {
  animation-name: bounceItReverse;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-fill-mode: both;
}
.cursor-follower.white {
  background-color: #ffffff;
}
.cursor-follower.white svg {
  stroke: #bc9350;
}

/*HEADER*/
header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 1rem;
  padding: 1rem 5%;
  width: 100%;
  background-color: rgba(66, 68, 24, 0);
  z-index: 12;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
}

.logo {
  width: 160px;
  z-index: 11;
  pointer-events: initial;
}

.header_right {
  color: #ffffff;
  font-weight: bold;
  font-size: 1.1rem;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(180deg, rgba(51, 53, 16, 0.25), rgba(51, 53, 16, 0.7)), radial-gradient(circle at left, rgba(188, 147, 80, 0.2), transparent 58%), #424418;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 9;
  overscroll-behavior: contain;
}
.header_right .header_right_inner {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 1rem;
  width: 100%;
  min-height: 100vh;
}
.header_right .menuVisuals {
  width: 50%;
  height: 100vh;
  padding: 7rem 5vw 7rem 5vw;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  flex-shrink: 0;
}
.header_right .menuVisuals .menuVisualMedia {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.header_right .menuVisuals .menuVisualLayer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  will-change: opacity, transform;
}
.header_right .menuVisuals .menuVisualLayer.is-active {
  z-index: 2;
}
.header_right .menuVisuals img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  -o-object-fit: cover;
  -o-object-position: center;
  vertical-align: middle;
}
.header_right .menuVisuals p {
  font-family: "linotype-didot", serif;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  line-height: 1.2;
  font-weight: 400;
  font-size: clamp(1.2rem, 3vw, 2rem);
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 1.5rem;
  z-index: 2;
  width: 100%;
  height: 100%;
  text-wrap: balance;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  flex-wrap: nowrap;
}
.header_right .menuVisuals p:before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(15deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 40%);
}
.header_right nav {
  width: 50%;
  min-height: 100vh;
  flex-shrink: 0;
}
.header_right .menu {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 1rem;
  padding: 10rem 5vw 5rem 5vw;
}
.header_right .menu > li {
  border-bottom: 2px solid #333510;
  width: 100%;
  cursor: pointer;
}
.header_right .menu > li:last-child {
  border-bottom: none;
}
.header_right .menu > li > a, .header_right .menu > li > span {
  margin-bottom: 0.5rem;
  display: inline-block;
  width: 100%;
}
.header_right .menu > li.is-submenu-open > a, .header_right .menu > li.is-submenu-open > span {
  color: #ffffff;
}
.header_right .menu > li:hover > a, .header_right .menu > li:hover > span {
  color: #ffffff;
}
.header_right .menu a {
  font-family: "linotype-didot", serif;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  line-height: 1.2;
  font-weight: 400;
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s cubic-bezier(0, 0.07, 0.57, 0.99);
}
.header_right .menu .proArea {
  position: absolute;
  right: 5vw;
  bottom: 2rem;
  width: auto;
  border-bottom: none;
}
.header_right .menu .proArea a {
  font-family: "poppins", Helvetica, sans-serif;
  font-size: 0.8rem;
  font-weight: 300;
  text-transform: initial;
  padding: 0.35rem 1.5rem 0.5rem 1.5rem;
  border: 1px solid #bc9350;
  border-radius: 5px;
  margin-bottom: 0;
}
.header_right .sub-menu {
  overflow: hidden;
  height: 0;
  opacity: 0;
  visibility: hidden;
  margin-top: 0;
  pointer-events: none;
  padding-left: 2rem;
}
.header_right .sub-menu li {
  margin: 1rem 0;
}
.header_right .sub-menu li:first-child {
  margin-top: 0;
}
.header_right .sub-menu li:last-child {
  margin-bottom: 1.5rem;
}
.header_right .sub-menu a, .header_right .sub-menu .parentTitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-family: "poppins", Helvetica, sans-serif;
  letter-spacing: 0;
  text-transform: initial;
  font-weight: 200;
}
.header_right .sub-menu a:hover, .header_right .sub-menu .parentTitle:hover {
  color: white;
}

.headerCart {
  width: 37px;
  height: 37px;
  position: absolute;
  right: calc(5vw + 3rem);
  top: 2rem;
  z-index: 11;
  border-radius: 50%;
  background-color: #ffffff;
  border: 2px solid #424418;
  pointer-events: initial;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  transition: transform 0.3s cubic-bezier(0, 0.07, 0.57, 0.99);
}
.headerCart svg {
  width: 20px;
  height: 20px;
  object-fit: contain;
  margin-left: -1px;
  fill: #424418;
}
.headerCart:hover {
  transform: scale(1.1);
}
.headerCart.has-update {
  animation: cartUpdateAnim 2.5s ease;
}

@keyframes cartUpdateAnim {
  0% {
    transform: scale(1);
  }
  10% {
    transform: scale(1.2);
  }
  20% {
    transform: scale(1);
  }
  30% {
    transform: scale(1.2);
  }
  40% {
    transform: scale(1);
  }
}
.headerCart_count {
  min-width: 20px;
  height: 20px;
  padding: 0 0.25rem;
  border-radius: 999px;
  background-color: #424418;
  color: #ffffff;
  position: absolute;
  right: -4px;
  top: -4px;
  border: 1px solid #f7eee3;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  font-size: 0.6rem;
  font-weight: 500;
  line-height: 1;
}

html.menuOpen,
body.menuOpen {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
html.menuOpen::-webkit-scrollbar,
body.menuOpen::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

body.menuOpen .header_right {
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(188, 147, 80, 0.9) rgba(255, 255, 255, 0.08);
}
body.menuOpen .header_right::-webkit-scrollbar {
  width: 10px;
}
body.menuOpen .header_right::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}
body.menuOpen .header_right::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(188, 147, 80, 0.55), rgba(188, 147, 80, 0.3));
  border-radius: 999px;
  border: 2px solid rgba(51, 53, 16, 0.55);
}
body.menuOpen .header_right::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(188, 147, 80, 0.75), rgba(188, 147, 80, 0.45));
}
body.menuOpen .headerCart {
  border-color: #ffffff;
  background-color: #424418;
}
body.menuOpen .headerCart svg {
  fill: #ffffff;
}
body.menuOpen .headerCart_count {
  background-color: #ffffff;
  color: #333510;
  border: 1px solid #ffffff;
}
body.menuOpen .btnMenu {
  border-color: #ffffff;
  background-color: #424418;
}
body.menuOpen .btnMenu span {
  background-color: #ffffff;
}

#menuTrigger {
  visibility: hidden;
  position: absolute;
  right: -100000px;
  opacity: 0;
}

.btnMenu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  width: 37px;
  height: 37px;
  cursor: pointer;
  background-color: #ffffff;
  border: 2px solid #424418;
  border-radius: 50%;
  position: absolute;
  right: 5vw;
  top: 2rem;
  pointer-events: initial;
}
.btnMenu span {
  display: block;
  width: calc(100% - 1rem);
  height: 2px;
  background-color: #424418;
  margin: 2px 0;
  transition: all 0.3s cubic-bezier(0, 0.07, 0.57, 0.99);
}
.btnMenu.open span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.btnMenu.open span:nth-child(2) {
  opacity: 0;
}
.btnMenu.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4.5px, -4.5px);
}

#langSwitch {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  position: absolute;
  right: 2rem;
  top: 1rem;
  pointer-events: initial;
  color: #ffffff;
  z-index: 10;
}
#langSwitch a, #langSwitch span {
  text-transform: uppercase;
  font-size: 0.9rem;
  transition: color 0.3s cubic-bezier(0, 0.07, 0.57, 0.99), opacity 0.3s cubic-bezier(0, 0.07, 0.57, 0.99);
}
#langSwitch a {
  opacity: 0.6;
}
#langSwitch a:hover {
  opacity: 1;
}
#langSwitch i {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  margin: 4px 0;
  transition: all 0.3s cubic-bezier(0, 0.07, 0.57, 0.99);
}

body.lightMode.page-accueil .headerCart {
  border-color: #424418;
  background-color: #ffffff;
}
body.lightMode.page-accueil .headerCart svg {
  fill: #424418;
}
body.lightMode.page-accueil .headerCart_count {
  background-color: #424418;
  color: #ffffff;
  border: 1px solid #424418;
}
body.lightMode.page-accueil .btnMenu {
  border-color: #424418;
  background-color: #ffffff;
}
body.lightMode.page-accueil .btnMenu span {
  background-color: #424418;
}

body.page-accueil .headerCart {
  border-color: #ffffff;
  background-color: #424418;
}
body.page-accueil .headerCart svg {
  fill: #ffffff;
}
body.page-accueil .headerCart_count {
  background-color: #ffffff;
  color: #333510;
  border: 1px solid #ffffff;
}
body.page-accueil .btnMenu {
  border-color: #ffffff;
  background-color: #424418;
}
body.page-accueil .btnMenu span {
  background-color: #ffffff;
}

@keyframes bounceIt {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(3px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes bounceItReverse {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-3px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes scalyPagination {
  0% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(0.8);
  }
}
/*Swiper common*/
.swiper:not(.swiper-initialized) .tranding-slider-control {
  display: none;
}
.swiper.swiper-initialized {
  padding-bottom: 4rem;
}
.swiper.swiper-initialized.few-slides {
  padding-bottom: 0;
}
.swiper.swiper-initialized.few-slides .swiper-wrapper {
  justify-content: center;
}
.swiper.swiper-initialized.few-slides .tranding-slider-control {
  display: none;
}
.swiper .swiper-slide {
  height: auto;
}

.tranding-slider-control {
  position: absolute;
  bottom: 0;
  height: 3rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tranding-slider-control.white .swiper-button-next svg, .tranding-slider-control.white .swiper-button-prev svg {
  stroke: #ffffff;
}
.tranding-slider-control.white .swiper-pagination-bullet {
  border-color: #ffffff;
}
.tranding-slider-control.white .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #ffffff;
}

.swiper-button-next, .swiper-button-prev {
  position: initial;
  width: 1.5rem;
  height: 1.2rem;
  margin-top: 0;
  margin: 0 0.5rem;
}
.swiper-button-next svg, .swiper-button-prev svg {
  width: 1.5rem;
  height: 1.2rem;
  stroke: #424418;
}
.swiper-button-next:after, .swiper-button-prev:after {
  content: none;
}

.swiper-pagination {
  position: initial;
  display: flex;
  align-items: center;
}
.swiper-pagination:not(.swiper-pagination-bullets-dynamic) {
  width: auto !important;
}
.swiper-pagination.swiper-pagination-bullets-dynamic {
  display: block;
  transform: translateX(0) !important;
}

.swiper-pagination-bullet {
  width: 1rem;
  height: 1rem;
  opacity: 1;
  background-color: transparent;
  border: 1px solid #424418;
  transform: scale(0.8);
  transition: background-color 0.2s cubic-bezier(0, 0.07, 0.57, 0.99), transform 0.4s cubic-bezier(0, 0.07, 0.57, 0.99);
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #424418;
  transform: scale(1);
}

.swiperNewsPreview {
  width: 1100px;
  max-width: 100%;
  margin-bottom: 2rem;
  overflow: visible;
}
.swiperNewsPreview .swiperNewsPreview_title {
  width: 320px;
  position: absolute;
  left: -320px;
  top: 20%;
  padding: 1rem;
}
.swiperNewsPreview .swiperNewsPreview_title .title {
  align-items: flex-end;
  text-align: right;
  font-size: 1.2rem;
}
.swiperNewsPreview .swiperNewsPreview_title .title p {
  align-items: flex-end;
}
.swiperNewsPreview .swiperNewsPreview_title .title strong {
  font-size: 1.7rem;
}
.swiperNewsPreview .tranding-slider-control {
  justify-content: flex-end;
}

.homeMsgSwiper.swiper-initialized {
  padding-bottom: 0;
}
.homeMsgSwiper .swiper-button-next, .homeMsgSwiper .swiper-button-prev {
  position: absolute;
  top: calc(50% - 0.6rem);
  width: 1.2rem;
}
.homeMsgSwiper .swiper-button-next {
  right: 0;
}
.homeMsgSwiper .swiper-button-prev {
  left: 0;
}

.heroShop {
  background: #424418;
  padding: 10rem 5vw 1rem 5vw;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
}
.heroShop:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/shape-terroir-horizontal.svg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  opacity: 0.1;
  pointer-events: none;
}

.heroShop_intro {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  position: relative;
  z-index: 1;
  color: #ffffff;
}
.heroShop_intro .title {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  align-items: center;
  text-align: center;
}
.heroShop_intro .titleLite {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  align-items: center;
  text-align: center;
}

.homeMsg {
  padding: 1rem;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}
.homeMsg p {
  font-size: 0.9rem;
  text-align: center;
  max-width: 800px;
  color: #ffffff;
}
.homeMsg p a {
  text-decoration: underline;
}

.homeMsgSwiper {
  width: 800px;
  max-width: 100%;
  padding: 0 2rem;
  margin: 0 auto;
}

.homeMsg_slide {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(51, 53, 16, 0.85);
  text-align: center;
}

.shopList {
  padding: 3rem 0;
}
.shopList .container-fluid {
  width: 1500px;
  max-width: 100%;
  margin: 0 auto;
}
.shopList .row {
  justify-content: space-between;
}

.vinCard {
  width: 435px;
  padding: 2rem;
}
.vinCard .vinCard_wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
  min-height: 100%;
  padding: 1rem;
}
.vinCard .vinCard_visual {
  width: 80px;
  height: 300px;
  position: relative;
}
.vinCard .vinCard_visual picture {
  width: auto;
  height: 100%;
  position: relative;
  z-index: 2;
}
.vinCard .vinCard_visual picture img {
  width: auto;
  height: 100%;
  object-fit: contain;
  object-position: top left;
}
.vinCard .vinCard_visual .shape {
  height: calc(100% + 2rem);
  width: 80px;
  position: absolute;
  left: -2rem;
  top: -1rem;
}
.vinCard .vinCard_visual .shape img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}
.vinCard .vinCard_content {
  width: calc(100% - 80px - 1rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
}
.vinCard .vinCard_content h2 {
  font-family: "linotype-didot", serif;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  line-height: 1.2;
  font-weight: 400;
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  line-height: 1.05;
}
.vinCard .vinCard_content .variationPicker {
  margin: 0.5rem 0;
}
.vinCard .vinCard_content .vinCard_purchase {
  margin-top: 0.5rem;
  margin-bottom: 0.35rem;
}
.vinCard .vinCard_actions {
  margin-top: 0.75rem;
}

.shopList .vinCard_header {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 0.5rem;
}
.shopList .vinCard_header span {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.6rem;
  color: rgba(51, 53, 16, 0.7);
}

.wineColor {
  font-weight: 400;
  display: inline-block;
  text-transform: uppercase;
  width: 100%;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(66, 68, 24, 0.15);
}

.wineClassification {
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: bold;
}

.wineAppellation {
  font-size: 0.82rem;
}

.wineConditionnement {
  color: rgba(51, 53, 16, 0.75);
  font-size: 0.78rem;
  margin: 0.5rem 0;
}

.variationPicker {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.variationPicker p {
  width: 100%;
  font-size: 0.82rem;
  color: rgba(51, 53, 16, 0.75);
}
.variationPicker.variationPicker-single {
  pointer-events: none;
}

.variationPicker_button {
  appearance: none;
  border: 1px solid rgba(66, 68, 24, 0.18);
  background-color: rgba(255, 255, 255, 0.7);
  color: #333510;
  padding: 0.5rem;
  border-radius: 5px;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
}
.variationPicker_button span {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.variationPicker_button:hover {
  border-color: rgba(66, 68, 24, 0.9);
  transform: translateY(-2px);
}
.variationPicker_button.is-active {
  background-color: #424418;
  border-color: #424418;
  color: #ffffff;
  pointer-events: none;
}
.variationPicker_button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.vinCard_purchase {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 0.5rem;
}

.vinCard_price {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 400;
  color: #333510;
}
.vinCard_price .woocommerce-Price-amount {
  font-size: inherit;
}
.vinCard_price i {
  font-size: 70%;
}

.vinCard_priceBottle {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: rgba(51, 53, 16, 0.7);
}

.quantitySelector {
  display: inline-flex;
  align-items: stretch;
  min-height: 40px;
  width: 70px;
  border: 1px solid rgba(66, 68, 24, 0.15);
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 5px;
}

.quantitySelector_button {
  width: 20px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #333510;
  font-size: 1.2rem;
  line-height: 1;
  transition: background-color 0.25s ease, color 0.25s ease;
}
.quantitySelector_button:hover {
  background-color: rgba(66, 68, 24, 0.08);
}

.quantitySelector_input {
  width: 30px;
  min-height: 40px;
  border: 0;
  background: transparent;
  text-align: center;
  padding: 0 0.4rem;
  margin: 0;
  appearance: textfield;
  -moz-appearance: textfield;
  color: #333510;
}
.quantitySelector_input::-webkit-outer-spin-button, .quantitySelector_input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.vinCard_form {
  width: 100%;
}
.vinCard_form.is-adding {
  pointer-events: none;
  opacity: 0.65;
}
.vinCard_form.is-added .addToCart {
  background-color: #424418;
  color: #ffffff;
}
.vinCard_form.is-added .addToCart span {
  color: #ffffff;
}
.vinCard_form.is-added .addToCart:before {
  opacity: 0;
  transform: scale(0.5);
}
.vinCard_form.is-added .addToCart:after {
  opacity: 1;
  transform: scale(1);
  background-image: url("../img/added-cart-icon-white.svg");
}
.vinCard_form.is-error .addToCart {
  border-color: rgba(139, 30, 30, 0.45);
  color: #8b1e1e;
}

.vinCard_buyActions {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.vinCard_buyActions .quantitySelector {
  flex: 0 0 auto;
}
.vinCard_buyActions .btn {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.vinCard_buyActions .btn.addToCart {
  width: calc(100% - 70px - 0.8rem);
  min-width: 1px;
}

.vinCard_actions {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.vinCard_actions .quantitySelector {
  flex: 0 0 auto;
}
.vinCard_actions .btn {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.vinCard_actions .btn.addToCart {
  width: calc(100% - 70px - 0.8rem);
  min-width: 1px;
}
.vinCard_actions .btn.discoverWine {
  min-height: 30px;
}

.stockNotice {
  width: 100%;
  min-height: 40px;
  padding: 0 1.2rem;
  border: 1px solid rgba(66, 68, 24, 0.18);
  background-color: rgba(66, 68, 24, 0.06);
  color: #333510;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 5px;
}
.stockNotice span {
  margin-bottom: -3px;
}
.stockNotice[hidden] {
  display: none !important;
}

.stockNotice-card {
  min-height: 40px;
}

.page-accueil .reassurance {
  padding-top: 0;
}

.swiperReassuranceContainer {
  width: 1200px;
  max-width: 100%;
}

.reassuranceCard {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.5rem;
  padding: 0 1rem;
}
.reassuranceCard img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.reassuranceCard p {
  font-size: 0.82rem;
  color: rgba(51, 53, 16, 0.75);
  text-align: center;
  text-wrap: balance;
}

.homeHistory {
  margin-top: 3rem;
}

.productPurchaseAndInfos {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 0.5rem;
}

.product_purchase {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 0.5rem;
}

.product_price {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 400;
  color: #333510;
}
.product_price .woocommerce-Price-amount {
  font-size: inherit;
}
.product_price i {
  font-size: 70%;
}

.product_priceBottle {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: rgba(51, 53, 16, 0.7);
}

.product_package {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: rgba(51, 53, 16, 0.7);
}

.product_freeShippingMsg {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: rgba(51, 53, 16, 0.7);
}
.product_freeShippingMsg strong {
  font-weight: 500;
}

.stockNotice-product {
  max-width: 360px;
}

.product {
  padding: 0;
}

.product_grid {
  display: grid;
  grid-template-columns: minmax(390px, 480px) minmax(0, 1fr);
  gap: 2rem 8rem;
  align-items: start;
}

.product_visual {
  padding: 12rem 0 5rem 5vw;
  background-color: #424418;
  height: 100%;
  min-height: 100vh;
}

.product_visual_inner {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-start;
  flex-wrap: nowrap;
  margin-right: -4rem;
}
.product_visual_inner picture {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  width: min(320px, 70vw);
  height: min(640px, 100vh - 17rem);
  min-height: 420px;
}
.product_visual_inner picture img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  object-position: right;
}
.product_visual_inner .shape {
  position: absolute;
  right: 4rem;
  top: -1rem;
  width: 110px;
  height: calc(100% + 2rem);
}
.product_visual_inner .shape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  -o-object-fit: cover;
  -o-object-position: center;
  vertical-align: middle;
}

.product_content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  padding: 12rem 5vw 2rem 0;
  gap: 1.5rem;
}
.product_content .variationPicker {
  position: relative;
}
.product_content .variationPicker:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1.2rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: rgba(66, 68, 24, 0.8);
  border-right-color: rgba(66, 68, 24, 0.8);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.product_content .variationPicker:after {
  content: "Chargement en cours...";
  position: absolute;
  left: 20px;
  bottom: -1.2rem;
  width: 100%;
  color: rgba(66, 68, 24, 0.8);
  opacity: 0;
  font-size: 0.8rem;
  transition: opacity 0.3s ease;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.product_content.is-loading .variationPicker:before {
  opacity: 1;
  animation: spin 1.5s linear infinite;
}
.product_content.is-loading .variationPicker:after {
  opacity: 1;
}

.product_breadcrumb {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(51, 53, 16, 0.65);
}
.product_breadcrumb a {
  color: #424418;
}
.product_breadcrumb br {
  display: none;
}

.product_title {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
}
.product_title .title br {
  display: none;
}
.product_title .wineClassification {
  display: inline-block;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.product_intro,
.product_variationDescription,
.product_body {
  max-width: 70ch;
}

.product_singleVariation .product_sectionLabel {
  margin-bottom: 0;
  font-size: 1rem;
  border: 1px solid rgba(66, 68, 24, 0.15);
  background-color: rgba(66, 68, 24, 0.85);
  color: #ffffff;
  padding: 0.5rem 1rem 0.3rem 1rem;
  border-radius: 5px;
}

.product_sectionLabel {
  margin-bottom: 0.5rem;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(51, 53, 16, 0.7);
}

.product_form {
  width: auto;
  position: relative;
  overflow: hidden;
}
.product_form.is-adding {
  pointer-events: none;
  opacity: 0.65;
}
.product_form.is-added .btn {
  background-color: #424418;
  color: #ffffff;
}
.product_form.is-error .btn {
  border-color: rgba(139, 30, 30, 0.45);
  color: #8b1e1e;
}
.product_form .reset_variations,
.product_form .reset_variations_alert,
.product_form .product_nativeVariation {
  display: none !important;
}
.product_form .single_add_to_cart_button, .product_form.variations_form {
  position: relative;
  transition: all 0.3s ease;
  transform-origin: 0 0;
}
.product_form .single_add_to_cart_button > .blockUI.blockOverlay,
.product_form .single_add_to_cart_button > .blockUI.blockMsg, .product_form.variations_form > .blockUI.blockOverlay,
.product_form.variations_form > .blockUI.blockMsg {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.product_formRow {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.product_specs {
  position: relative;
  overflow: hidden;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 0 5vw 0 8rem;
  width: calc(100% - 480px);
  margin-left: auto;
}

.product_spec {
  padding: 1rem 0;
  border-top: 1px solid rgba(66, 68, 24, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 0.35rem;
}
.product_spec p {
  font-size: 0.8rem;
  color: rgba(51, 53, 16, 0.75);
  max-width: calc(100% - 1rem);
}
.product_spec strong {
  font-size: 0.8rem;
  font-weight: 500;
}
.product_spec[data-spec-key=classification_aoc], .product_spec[data-spec-key=appellation_origine] {
  border-top: none;
}

.product_spec-full {
  grid-column: 1/-1;
}

.product_body {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(66, 68, 24, 0.12);
}

@keyframes productSkeletonShimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.sideCart {
  position: fixed;
  inset: 0;
  z-index: 1000;
  opacity: 1;
  pointer-events: initial;
}
.sideCart[hidden] {
  display: none !important;
}

.sideCart_overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.4);
}

.sideCart_panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(440px, 100%);
  height: 100%;
  background: #ffffff;
  color: #333510;
  box-shadow: 0 24px 80px rgba(51, 53, 16, 0.18);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: nowrap;
}

.sideCart_header {
  position: relative;
  padding: 2rem 4.5rem 1.2rem 1.5rem;
  border-bottom: 1px solid rgba(66, 68, 24, 0.16);
}

.sideCart_kicker {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.sideCart_title {
  display: block;
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  line-height: 1.1;
  font-weight: 400;
}

.sideCart_close {
  position: absolute;
  top: 1.4rem;
  right: 1.5rem;
  width: 34px;
  height: 34px;
  background: #424418;
  cursor: pointer;
  border-radius: 5px;
  border: none;
}
.sideCart_close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1px;
  background-color: #ffffff;
  transform-origin: center;
}
.sideCart_close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}
.sideCart_close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.sideCart_content {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(66, 68, 24, 0.9) rgba(255, 255, 255, 0.08);
}
.sideCart_content::-webkit-scrollbar {
  width: 10px;
}
.sideCart_content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}
.sideCart_content::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(66, 68, 24, 0.55), rgba(66, 68, 24, 0.3));
  border-radius: 999px;
  border: 2px solid rgba(51, 53, 16, 0.55);
}
.sideCart_content::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(66, 68, 24, 0.75), rgba(66, 68, 24, 0.45));
}
.sideCart_content a {
  text-decoration: none;
  user-select: none;
}
.sideCart_content .woocommerce-mini-cart {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 1rem;
}
.sideCart_content .woocommerce-mini-cart-item {
  position: relative;
  min-height: 78px;
  padding: 0 0 1rem 46px;
  border-bottom: 1px solid rgba(66, 68, 24, 0.12);
  color: #333510;
  transition: opacity 0.25s cubic-bezier(0, 0.07, 0.57, 0.99);
}
.sideCart_content .woocommerce-mini-cart-item .variation {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.25rem;
  row-gap: 0.35rem;
  font-size: 0.78rem;
  color: rgba(51, 53, 16, 0.72);
  margin-top: 0.3rem;
}
.sideCart_content .woocommerce-mini-cart-item .variation dt,
.sideCart_content .woocommerce-mini-cart-item .variation dd,
.sideCart_content .woocommerce-mini-cart-item .variation p {
  margin: 0;
}
.sideCart_content .woocommerce-mini-cart-item .variation dd {
  min-width: 0;
}
.sideCart_content .woocommerce-mini-cart-item .variation .variation-Conditionnement:is(dt) {
  display: none;
}
.sideCart_content .woocommerce-mini-cart-item .variation .variation-Conditionnement:is(dd) {
  grid-column: 1/-1;
}
.sideCart_content .woocommerce-mini-cart-item .variation .variation-Format, .sideCart_content .woocommerce-mini-cart-item .variation .variation- {
  display: none;
}
.sideCart_content .woocommerce-mini-cart-item a {
  color: inherit;
}
.sideCart_content .woocommerce-mini-cart-item > a:not(.remove) {
  display: block;
  font-size: 0.95rem;
  line-height: 1.25;
  font-weight: 400;
  padding-right: 1.8rem;
}
.sideCart_content .woocommerce-mini-cart-item .carbonnieux-mini-cart-thumbnail {
  position: absolute;
  left: 0;
  top: 0;
  width: 34px;
  height: 70px;
  display: block;
}
.sideCart_content .woocommerce-mini-cart-item img {
  width: 34px;
  height: 70px;
  object-fit: contain;
  border-radius: 5px;
}
.sideCart_content .woocommerce-mini-cart-item .carbonnieux-mini-cart-quantity-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background-color: #424418;
  color: #ffffff;
  font-size: 0.68rem;
  line-height: 18px;
  font-weight: 500;
  text-align: center;
  box-shadow: 0 2px 6px rgba(51, 53, 16, 0.18);
}
.sideCart_content .woocommerce-mini-cart-item .carbonnieux-cart-package {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.78rem;
  color: rgba(51, 53, 16, 0.72);
}
.sideCart_content .woocommerce-mini-cart-item .quantity {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.78rem;
  color: rgba(51, 53, 16, 0.72);
}
.sideCart_content .woocommerce-mini-cart-item .carbonnieux-mini-cart-line-total {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.84rem;
  color: #333510;
  font-weight: 500;
}
.sideCart_content .woocommerce-mini-cart-item .remove {
  position: absolute;
  top: 0;
  right: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: rgba(66, 68, 24, 0.12);
  color: #424418;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: nowrap;
  line-height: 1;
}
.sideCart_content .woocommerce-mini-cart-item.is-removing {
  opacity: 0.45;
  pointer-events: none;
}
.sideCart_content .woocommerce-mini-cart-item.is-removing::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 1rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(66, 68, 24, 0.2);
  border-top-color: #424418;
  animation: sideCartRemoveSpin 0.7s linear infinite;
}
.sideCart_content .blockUI {
  display: none !important;
}
.sideCart_content .woocommerce-mini-cart__empty-message {
  margin: 0;
  padding: 2rem 0;
  color: rgba(51, 53, 16, 0.72);
}
.sideCart_content .woocommerce-mini-cart__total {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 1rem;
  margin: 1.5rem 0 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(66, 68, 24, 0.18);
  font-size: 0.95rem;
}
.sideCart_content .woocommerce-mini-cart__total strong {
  font-weight: 400;
}
.sideCart_content .woocommerce-mini-cart__buttons {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 0.7rem;
  margin: 0;
}
.sideCart_content .woocommerce-mini-cart__buttons a {
  min-height: 42px;
  padding: 0.75rem 1rem;
  border: 1px solid #424418;
  border-radius: 5px;
  color: #424418;
  text-align: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  transition: background-color 0.3s cubic-bezier(0, 0.07, 0.57, 0.99), color 0.3s cubic-bezier(0, 0.07, 0.57, 0.99);
}
.sideCart_content .woocommerce-mini-cart__buttons a:hover {
  background-color: #424418;
  color: #ffffff;
}
.sideCart_content .woocommerce-mini-cart__buttons a.checkout {
  background-color: #424418;
  color: #ffffff;
}
.sideCart_content .woocommerce-mini-cart__buttons a.checkout:hover {
  background-color: #333510;
  border-color: #333510;
}

body.sideCart-open {
  overflow: hidden;
}

@keyframes sideCartRemoveSpin {
  to {
    transform: rotate(360deg);
  }
}
@media screen and (max-width: 767px) {
  .sideCart_panel {
    width: min(390px, 100%);
  }
  .sideCart_header,
  .sideCart_content {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }
  .sideCart_header {
    padding-right: 4.2rem;
  }
  .sideCart_close {
    right: 1.2rem;
  }
}
.cartPage {
  padding: 10rem 5vw 1rem 5vw;
}
.cartPage .container-fluid {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
}

.cartPage_header {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 1rem;
}
.cartPage_header .title {
  color: #333510;
}

.cartPage_breadcrumb {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(51, 53, 16, 0.65);
}
.cartPage_breadcrumb a {
  color: #424418;
}
.cartPage_breadcrumb strong {
  font-weight: 400;
}

.cartPage_content {
  color: #333510;
}
.cartPage_content .wc-block-cart {
  margin: 0;
}
.cartPage_content .wc-block-components-sidebar-layout {
  gap: 1rem;
}
.cartPage_content .wc-block-cart__main,
.cartPage_content .wc-block-cart__sidebar {
  border: 1px solid rgba(66, 68, 24, 0.12);
  border-radius: 5px;
}
.cartPage_content .wc-block-cart__main {
  padding: 1.5rem;
}
.cartPage_content .wc-block-cart__main .wc-block-cart-items {
  border-bottom: none;
}
.cartPage_content .wc-block-cart__main .wc-block-cart-items__row:last-child {
  border: none;
}
.cartPage_content .wc-block-components-sidebar {
  width: calc(35% - 1rem);
}
.cartPage_content .wc-block-cart__sidebar {
  padding: 1.25rem;
}
.cartPage_content .wc-block-cart-items,
.cartPage_content .wc-block-cart-items__row {
  border-color: rgba(66, 68, 24, 0.12);
}
.cartPage_content .wc-block-components-product-details {
  display: flex;
  flex-direction: column;
}
.cartPage_content .wc-block-components-product-details > span > span[aria-hidden=true] {
  display: none;
}
.cartPage_content .wc-block-cart-item__product,
.cartPage_content .wc-block-components-totals-wrapper {
  color: #333510;
}
.cartPage_content .wc-block-cart-item__product .wc-block-components-product-name {
  color: #333510;
  font-weight: 500;
}
.cartPage_content .wc-block-components-product-metadata,
.cartPage_content .wc-block-cart-item__prices,
.cartPage_content .wc-block-components-totals-item__description {
  color: rgba(51, 53, 16, 0.65);
  font-size: 0.82rem;
}
.cartPage_content .wc-block-components-quantity-selector {
  border-color: rgba(66, 68, 24, 0.18);
  border-radius: 0;
  background-color: rgba(255, 255, 255, 0.85);
}
.cartPage_content .wc-block-components-quantity-selector__button,
.cartPage_content .wc-block-components-quantity-selector__input {
  color: #333510;
}
.cartPage_content .wc-block-cart__submit-button,
.cartPage_content .wc-block-components-button {
  min-height: 52px;
  border-radius: 0;
  background-color: #424418;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  transition: background-color 0.25s ease, color 0.25s ease;
  border: none;
  border-radius: 5px;
}
.cartPage_content .wc-block-cart__submit-button:hover,
.cartPage_content .wc-block-components-button:hover {
  background-color: #333510;
  color: #ffffff;
}
.cartPage_content .wc-block-cart__empty-cart__title {
  color: #333510;
}
.cartPage_content .wc-block-grid__products {
  margin-top: 2rem;
}

.cartPage_empty {
  width: 100%;
}

.shopList-cartEmpty {
  padding: 1rem 0 0 0;
}
.shopList-cartEmpty .container-fluid {
  width: 100%;
  padding: 0;
}
.shopList-cartEmpty .row {
  justify-content: space-between;
}
.shopList-cartEmpty .vinCard {
  padding-right: 0;
  padding-left: 0;
}

.editor-styles-wrapper table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__image img, table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__image img {
  height: 100px;
  width: auto;
  object-fit: contain;
}

.cartPage_content .wc-block-components-chip .wc-block-components-chip__text {
  margin-bottom: -3px;
}

@media (max-width: 781px) {
  .wc-block-cart .wc-block-cart__submit-container--sticky {
    z-index: 8 !important;
  }
}
.checkoutPage {
  padding: 10rem 5vw 1rem 5vw;
}
.checkoutPage .container-fluid {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
}

.checkoutPage_header {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 1rem;
}
.checkoutPage_header .title {
  color: #333510;
}

.checkoutPage_breadcrumb {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(51, 53, 16, 0.65);
}
.checkoutPage_breadcrumb a {
  color: #424418;
}
.checkoutPage_breadcrumb strong {
  font-weight: 400;
}

.checkoutPage_infos {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
}
.checkoutPage_infos div {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 0.25rem;
  border-right: 1px solid rgba(66, 68, 24, 0.12);
  padding: 0.2rem 1rem;
}
.checkoutPage_infos div svg {
  width: 1.2rem;
  height: 1.2rem;
  stroke: #424418;
}
.checkoutPage_infos div:last-child {
  border: none;
}
.checkoutPage_infos p {
  color: rgba(51, 53, 16, 0.65);
  font-size: 0.82rem;
}
.checkoutPage_infos p i {
  font-style: italic;
}

.checkoutPage_content {
  color: #333510;
}
.checkoutPage_content .wc-block-checkout {
  margin: 0;
}
.checkoutPage_content .wc-block-checkout__main {
  border: 1px solid color-mix(in srgb, currentColor 20%, transparent);
  border-radius: 5px;
}
.checkoutPage_content .wc-block-checkout__sidebar {
  padding-top: 0 !important;
}
.checkoutPage_content .wc-block-checkout__main {
  padding: 1.5rem;
}
.checkoutPage_content .wc-block-checkout__main .wc-block-checkout__guest-checkout-notice {
  display: none !important;
}
.checkoutPage_content .wc-block-checkout__sidebar {
  padding: 1.25rem;
}
.checkoutPage_content .wc-block-components-title,
.checkoutPage_content .wc-block-components-checkout-step__title,
.checkoutPage_content .wc-block-components-order-summary__button-text,
.checkoutPage_content .wc-block-components-totals-item__label,
.checkoutPage_content .wc-block-components-totals-footer-item .wc-block-components-totals-item__label {
  color: #333510;
}
.checkoutPage_content .wc-block-components-checkout-step__description,
.checkoutPage_content .wc-block-components-product-metadata,
.checkoutPage_content .wc-block-components-totals-item__description,
.checkoutPage_content .wc-block-components-validation-error,
.checkoutPage_content .wc-block-components-address-card__address-section {
  color: rgba(51, 53, 16, 0.65);
  font-size: 0.82rem;
}
.checkoutPage_content .wc-block-components-product-metadata {
  gap: 0;
  display: flex;
  flex-direction: column-reverse;
}
.checkoutPage_content .wc-block-components-product-details {
  display: flex;
  flex-direction: column;
}
.checkoutPage_content .wc-block-components-product-details > span > span[aria-hidden=true] {
  display: none;
}
.checkoutPage_content .wc-block-components-text-input input,
.checkoutPage_content .wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input,
.checkoutPage_content .wc-block-components-form .wc-block-components-text-input input[type=email],
.checkoutPage_content .wc-block-components-form .wc-block-components-text-input input[type=tel],
.checkoutPage_content .wc-block-components-form .wc-block-components-text-input input[type=text] {
  min-height: 52px;
  border-radius: 0;
  border-color: rgba(66, 68, 24, 0.18);
  background-color: rgba(255, 255, 255, 0.85);
  color: #333510;
}
.checkoutPage_content .wc-block-components-text-input label,
.checkoutPage_content .wc-block-components-combobox .wc-block-components-combobox-control label.components-base-control__label {
  color: rgba(51, 53, 16, 0.7);
}
.checkoutPage_content .wc-block-components-checkbox .wc-block-components-checkbox__input {
  border-radius: 0;
  border-color: rgba(66, 68, 24, 0.28);
}
.checkoutPage_content .wc-block-components-radio-control,
.checkoutPage_content .wc-block-components-shipping-rates-control,
.checkoutPage_content .wc-block-components-payment-methods {
  border-color: rgba(66, 68, 24, 0.12);
}
.checkoutPage_content .wc-block-components-radio-control__option,
.checkoutPage_content .wc-block-components-checkout-step,
.checkoutPage_content .wc-block-components-totals-wrapper,
.checkoutPage_content .wc-block-components-order-summary-item {
  border-color: rgba(66, 68, 24, 0.12);
}
.checkoutPage_content .wc-block-components-order-summary-item__description,
.checkoutPage_content .wc-block-components-order-summary-item__total-price,
.checkoutPage_content .wc-block-components-totals-item__value {
  color: #333510;
}
.checkoutPage_content .wc-block-components-button {
  min-height: 52px;
  border-radius: 0;
  background-color: #424418;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  border-radius: 5px;
  border: none;
  transition: background-color 0.25s ease, color 0.25s ease;
}
.checkoutPage_content .wc-block-components-button:hover {
  background-color: #333510;
  color: #ffffff;
}

.wc-block-components-order-summary .wc-block-components-order-summary-item .wc-block-components-order-summary-item__image > img {
  height: 80px;
  width: auto;
  object-fit: contain;
}
.wc-block-components-order-summary .wc-block-components-order-summary-item .wc-block-components-order-summary-item__quantity {
  right: 15px;
  top: 5px;
}
.wc-block-components-order-summary .wc-block-components-order-summary-item .wc-block-components-order-summary-item__quantity span {
  margin-bottom: -3px;
}
.wc-block-components-order-summary .wc-block-components-order-summary-item .wc-block-components-order-summary-item__description {
  padding: 4px 12px 12px 5px;
}

.checkoutPage_content .wc-block-components-chip .wc-block-components-chip__text {
  margin-bottom: -3px;
}

.checkoutValidatePage {
  padding: 0 5vw;
}
.checkoutValidatePage .container-fluid {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
}
.checkoutValidatePage section {
  padding: 0;
}

.checkoutValidatePage_content .woocommerce-order {
  color: #333510;
}
.checkoutValidatePage_content .woocommerce-thankyou-order-received {
  margin: 0 0 1.25rem;
  padding: 1rem 1.25rem;
  border-radius: 5px;
  background-color: rgba(106, 109, 37, 0.1);
  color: #333510;
  font-size: 1rem;
  line-height: 1.5;
}
.checkoutValidatePage_content .woocommerce-order-details,
.checkoutValidatePage_content .woocommerce-customer-details {
  margin-top: 2rem;
}
.checkoutValidatePage_content .woocommerce-order-details__title,
.checkoutValidatePage_content .woocommerce-column__title {
  font-family: "linotype-didot", serif;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  line-height: 1.2;
  font-weight: 400;
  margin-bottom: 1rem;
  color: #333510;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
}
.checkoutValidatePage_content .woocommerce-table--order-details {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid rgba(66, 68, 24, 0.12);
  border-radius: 5px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.82);
}
.checkoutValidatePage_content .woocommerce-table--order-details th,
.checkoutValidatePage_content .woocommerce-table--order-details td {
  padding: 1rem;
  border-color: rgba(66, 68, 24, 0.12);
  vertical-align: top;
}
.checkoutValidatePage_content .woocommerce-table--order-details th:last-child,
.checkoutValidatePage_content .woocommerce-table--order-details td:last-child {
  font-weight: 400;
}
.checkoutValidatePage_content .woocommerce-table--order-details th:last-child strong,
.checkoutValidatePage_content .woocommerce-table--order-details td:last-child strong {
  font-weight: 400;
  font-size: 0.9rem;
}
.checkoutValidatePage_content .woocommerce-table--order-details thead {
  background-color: rgba(66, 68, 24, 0.06);
}
.checkoutValidatePage_content .woocommerce-table--order-details thead th {
  color: rgba(51, 53, 16, 0.68);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.checkoutValidatePage_content .woocommerce-table--order-details tbody tr + tr {
  border-top: 1px solid rgba(66, 68, 24, 0.12);
}
.checkoutValidatePage_content .woocommerce-table--order-details tfoot {
  border-top: 1px solid rgba(66, 68, 24, 0.12);
  background-color: rgba(66, 68, 24, 0.035);
}
.checkoutValidatePage_content .woocommerce-table--order-details tfoot th {
  color: rgba(51, 53, 16, 0.68);
  font-weight: 400;
  text-align: left;
  width: 160px;
}
.checkoutValidatePage_content .woocommerce-table--order-details tfoot td {
  color: #333510;
  text-align: right;
}
.checkoutValidatePage_content .woocommerce-table--order-details tfoot tr:last-child th,
.checkoutValidatePage_content .woocommerce-table--order-details tfoot tr:last-child td {
  color: #333510;
  font-weight: 500;
}
.checkoutValidatePage_content .woocommerce-table--order-details .product-name a {
  color: #333510;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s cubic-bezier(0, 0.07, 0.57, 0.99);
}
.checkoutValidatePage_content .woocommerce-table--order-details .product-name a:hover {
  color: #bc9350;
}
.checkoutValidatePage_content .woocommerce-table--order-details .product-quantity {
  color: rgba(51, 53, 16, 0.58);
  font-weight: 400;
}
.checkoutValidatePage_content .woocommerce-table--order-details .product-total {
  width: 160px;
  color: #333510;
  text-align: right;
  white-space: nowrap;
}
.checkoutValidatePage_content .carbonnieux-order-item-package,
.checkoutValidatePage_content .carbonnieux-order-item-bottles {
  margin-top: 0.25rem;
  color: rgba(51, 53, 16, 0.58);
  font-size: 0.82rem;
  line-height: 1.45;
}
.checkoutValidatePage_content .woocommerce-button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin: 0.15rem 0.25rem 0.15rem 0;
  padding: 0.7rem 1rem;
  border-radius: 5px;
  background-color: #424418;
  color: #ffffff;
  font-size: 0.78rem;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: background-color 0.3s cubic-bezier(0, 0.07, 0.57, 0.99);
}
.checkoutValidatePage_content .woocommerce-button.button:hover {
  background-color: #333510;
  color: #ffffff;
}
.checkoutValidatePage_content .woocommerce-button.button.cancel {
  background-color: transparent;
  color: #333510;
  box-shadow: inset 0 0 0 1px rgba(66, 68, 24, 0.2);
}
.checkoutValidatePage_content .woocommerce-button.button.cancel:hover {
  background-color: rgba(66, 68, 24, 0.08);
  color: #333510;
}
.checkoutValidatePage_content .woocommerce-customer-details .woocommerce-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.checkoutValidatePage_content .woocommerce-customer-details .woocommerce-columns:before, .checkoutValidatePage_content .woocommerce-customer-details .woocommerce-columns:after {
  content: none !important;
}
.checkoutValidatePage_content .woocommerce-customer-details .woocommerce-column {
  float: none;
  width: auto;
  max-width: none;
  padding: 1rem;
  border: 1px solid rgba(66, 68, 24, 0.12);
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.82);
}
.checkoutValidatePage_content .woocommerce-customer-details address {
  color: rgba(51, 53, 16, 0.72);
  font-style: normal;
  line-height: 1.65;
}
.checkoutValidatePage_content .woocommerce-customer-details .woocommerce-customer-details--phone,
.checkoutValidatePage_content .woocommerce-customer-details .woocommerce-customer-details--email {
  margin: 0.35rem 0 0;
  color: #333510;
}
.checkoutValidatePage_content .woocommerce-customer-details .woocommerce-customer-details--phone:before,
.checkoutValidatePage_content .woocommerce-customer-details .woocommerce-customer-details--email:before {
  margin-top: -5px;
}

@media (max-width: 991px) {
  .checkoutValidatePage_content .woocommerce-order-overview {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
  .checkoutValidatePage_content .woocommerce-order-overview::before, .checkoutValidatePage_content .woocommerce-order-overview:after {
    content: none !important;
  }
  .checkoutValidatePage_content .woocommerce ul.order_details li {
    border: none;
  }
}
@media (max-width: 767px) {
  .checkoutValidatePage {
    margin-top: 1rem;
  }
  .checkoutValidatePage .container-fluid {
    padding: 0;
  }
  .checkoutValidatePage_content .woocommerce-thankyou-order-received {
    padding: 1rem 0;
    background-color: transparent;
    font-size: 1rem;
    font-weight: 500;
  }
  .checkoutValidatePage_content .woocommerce-order-overview,
  .checkoutValidatePage_content .woocommerce-customer-details .woocommerce-columns {
    grid-template-columns: 1fr;
  }
  .checkoutValidatePage_content .woocommerce-table--order-details th,
  .checkoutValidatePage_content .woocommerce-table--order-details td {
    padding: 0.85rem;
  }
  .checkoutValidatePage_content .woocommerce-table--order-details .product-total {
    width: auto;
  }
  .checkoutValidatePage_content .woocommerce-table--order-details td {
    width: 100%;
  }
}
.sogecommerce-payment {
  min-height: 100vh;
  padding: 10rem 5vw 4rem;
  color: #333510;
  --kr-global-color-primary: #424418;
  --kr-global-color-error: #fa9c45;
  --kr-global-color-text: #333510;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: nowrap;
}

.sogecommerce-payment__inner {
  width: 620px;
  max-width: 100%;
  padding: 2rem;
  border: 1px solid rgba(66, 68, 24, 0.8);
  border-radius: 5px;
}

.sogecommerce-payment__title {
  font-family: "linotype-didot", serif;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  line-height: 1.2;
  font-weight: 400;
  margin-bottom: 0.65rem;
  color: #333510;
  font-size: clamp(1.1rem, 2vw, 2rem);
}

.sogecommerce-payment__summary,
.sogecommerce-payment__secure {
  color: rgba(51, 53, 16, 0.68);
  font-size: 0.9rem;
  line-height: 1.6;
}

.sogecommerce-payment__summary {
  margin-bottom: 1.5rem;
  padding: 1rem;
  border: 1px solid rgba(66, 68, 24, 0.12);
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.52);
}

.sogecommerce-payment__summary-header,
.sogecommerce-payment__summary-total,
.sogecommerce-payment__summary-item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 1rem;
}

.sogecommerce-payment__summary-header {
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(66, 68, 24, 0.12);
}
.sogecommerce-payment__summary-header span {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 0.15rem;
  color: rgba(51, 53, 16, 0.58);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.sogecommerce-payment__summary-header span small {
  color: rgba(51, 53, 16, 0.48);
  font-size: 0.72rem;
  letter-spacing: 0;
  text-transform: none;
}
.sogecommerce-payment__summary-header strong {
  color: #333510;
  font-weight: 500;
}

.sogecommerce-payment__summary-items {
  margin: 0.85rem 0;
  padding: 0;
  list-style: none;
}

.sogecommerce-payment__summary-item {
  padding: 0.35rem 0;
}

.sogecommerce-payment__summary-product {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 0.1rem;
  color: #333510;
}
.sogecommerce-payment__summary-product small {
  color: rgba(51, 53, 16, 0.55);
  font-size: 0.78rem;
}

.sogecommerce-payment__summary-price {
  flex-shrink: 0;
  color: #333510;
  text-align: right;
}

.sogecommerce-payment__summary-total {
  padding-top: 0.75rem;
  border-top: 1px solid rgba(66, 68, 24, 0.12);
  color: #333510;
}
.sogecommerce-payment__summary-total span {
  color: rgba(51, 53, 16, 0.68);
}
.sogecommerce-payment__summary-total strong {
  font-size: 1rem;
  font-weight: 500;
  text-align: right;
}

.sogecommerce-payment__form {
  margin: 1.5rem 0;
}
.sogecommerce-payment__form .kr-smart-form {
  width: 100%;
}
.sogecommerce-payment__form .kr-card-form {
  width: 100%;
  max-width: 100%;
  gap: 0.9rem;
  color: #333510;
  font-family: "poppins", Helvetica, sans-serif;
}
.sogecommerce-payment__form .kr-payment-button {
  width: 100%;
  min-height: 52px;
  margin-top: 0.35rem;
  border: none !important;
  border-radius: 5px !important;
  background-color: #424418 !important;
  color: #ffffff !important;
  font-family: "poppins", Helvetica, sans-serif !important;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background-color 0.3s cubic-bezier(0, 0.07, 0.57, 0.99);
}
.sogecommerce-payment__form .kr-payment-button:hover {
  background-color: #333510 !important;
}
.sogecommerce-payment__form .kr-payment-button span {
  margin-bottom: -2px;
}

.sogecommerce-payment__error {
  margin: 1rem 0;
  padding: 0.85rem 1rem;
  border-left: 3px solid #fa9c45;
  background-color: rgba(250, 156, 69, 0.12);
  color: #333510;
  font-size: 0.9rem;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .sogecommerce-payment {
    padding: 8rem 1rem 2rem;
  }
  .sogecommerce-payment__inner {
    padding: 1.25rem;
  }
  .sogecommerce-payment__summary {
    padding: 0.85rem;
  }
  .sogecommerce-payment__form .kr-card-form {
    gap: 0.75rem;
  }
}
body .wc-block-components-notice-banner {
  border-width: 1px;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.92);
  border-color: rgba(66, 68, 24, 0.18);
  color: #333510;
  box-shadow: none;
  font-size: 0.9rem;
  line-height: 1.45;
}
body .wc-block-components-notice-banner > svg {
  background-color: #424418;
  color: #ffffff;
  fill: #ffffff;
  border-radius: 50%;
}
body .wc-block-components-notice-banner .wc-block-components-notice-banner__content {
  color: inherit;
}
body .wc-block-components-notice-banner .wc-block-components-notice-banner__content a {
  color: #424418;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}
body .wc-block-components-notice-banner .wc-block-components-notice-banner__content .wc-block-components-button {
  min-height: auto;
  border-radius: 5px;
  background-color: #424418;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  transition: background-color 0.25s ease, color 0.25s ease;
}
body .wc-block-components-notice-banner .wc-block-components-notice-banner__content .wc-block-components-button:hover {
  background-color: #333510;
  color: #ffffff;
}
body .wc-block-components-notice-banner.is-error {
  background-color: rgba(250, 156, 69, 0.1);
  border-color: rgba(250, 156, 69, 0.55);
}
body .wc-block-components-notice-banner.is-error > svg {
  background-color: #fa9c45;
  transform: rotate(180deg);
}
body .wc-block-components-notice-banner.is-warning {
  background-color: rgba(188, 147, 80, 0.12);
  border-color: rgba(188, 147, 80, 0.65);
}
body .wc-block-components-notice-banner.is-warning > svg {
  background-color: #bc9350;
  transform: rotate(180deg);
}
body .wc-block-components-notice-banner.is-success {
  background-color: rgba(106, 109, 37, 0.12);
  border-color: rgba(106, 109, 37, 0.55);
}
body .wc-block-components-notice-banner.is-success > svg {
  background-color: #6a6d25;
}
body .wc-block-components-notice-banner.is-info {
  background-color: #ffffff;
  border-color: rgba(51, 53, 16, 0.35) !important;
}
body .wc-block-components-notice-banner.is-info > svg {
  background-color: #333510;
}
body .wc-block-components-notice-banner:focus {
  outline-width: 0;
}
body .wc-block-components-notice-banner:focus-visible {
  outline: 2px solid rgba(188, 147, 80, 0.75);
  outline-offset: 2px;
}
body .woocommerce.wc-block-store-notices.alignwide {
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}
body .cartPage_content .wc-block-components-notice-banner,
body .checkoutPage_content .wc-block-components-notice-banner {
  margin-bottom: 1rem;
}

.homeHero {
  height: 100vh;
  position: relative;
  padding: 0;
  overflow: hidden;
}

.homeHero_content {
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 3rem 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  background-color: rgba(51, 53, 16, 0.9);
}
.homeHero_content p {
  position: relative;
  z-index: 1;
  color: #ffffff;
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  text-align: center;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1.4;
  display: none;
}
.homeHero_content p .splitLine + .splitLine {
  font-size: clamp(0.8rem, 1.5vw, 1rem);
}
.homeHero_content .homeHero_content_logo {
  width: 300px;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.homeHero_content .homeHero_content_logo img {
  width: 100%;
}
.homeHero_content .homeHero_content_parcel {
  position: absolute;
  width: 700px;
  height: auto;
  left: calc(50% - 350px);
  top: auto;
}
.homeHero_content .homeHero_content_parcel img {
  width: 100%;
  object-fit: contain;
}

.homeHero_video {
  width: 100%;
  height: 100%;
}
.homeHero_video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  -o-object-fit: cover;
  -o-object-position: center;
  vertical-align: middle;
}

.homeHeroScrollIndic {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  margin-top: 2rem;
  position: absolute;
  left: calc(50% - 12px);
  bottom: 1rem;
}
.homeHeroScrollIndic div {
  width: 1px;
  height: 2rem;
  transform: scaleY(0);
  transform-origin: 0 0;
  background-color: rgba(255, 255, 255, 0.7);
}
.homeHeroScrollIndic svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke: rgba(255, 255, 255, 0.7);
  opacity: 0;
}

.homeHistory_content {
  padding: 5rem 1rem 1rem 2.5%;
  position: relative;
  z-index: 2;
}

.homeTerroir_content {
  padding-top: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
}

.homeTerroir_visual {
  margin-top: -40vh;
}
.homeTerroir_visual .shape {
  z-index: -1;
}

.homeChais_visual {
  margin-top: -40vh;
}
.homeChais_visual .shape {
  z-index: 1;
}
.homeChais_visual .visualWrapper {
  width: 500px;
  max-width: 100%;
  margin-left: auto;
}

.homeChais_content {
  padding-top: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
  color: #ffffff;
  position: relative;
  z-index: 2;
}

.homeWine {
  padding-top: 45rem;
  padding-bottom: 30rem;
  margin-top: -40rem;
  position: relative;
}
.homeWine .panelDark {
  position: absolute;
  width: 50%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #333510;
}

.homeWine_bottle {
  margin-top: -15rem;
  position: relative;
  z-index: 2;
}
.homeWine_bottle .homeWine_bottle_wrapper {
  width: 500px;
  margin-left: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: nowrap;
}
.homeWine_bottle picture {
  width: 230px;
  max-width: 100%;
}

.homeWine_content {
  position: relative;
  z-index: 3;
  margin-left: -5%;
}

.homeVisites .largeVisual {
  margin-top: -25rem;
}

.homeVisites_content {
  margin-top: -4.5rem;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}
.homeVisites_content .title strong:first-child {
  color: #ffffff;
}
.homeVisites_content .text {
  padding-left: 5%;
}
.homeVisites_content .btn {
  margin-left: 5%;
}

.heroCommon {
  height: 100vh;
  position: relative;
  padding: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  background-color: #424418;
}

.heroCommon_visual {
  width: 50%;
  height: 100%;
  position: relative;
}
.heroCommon_visual picture {
  width: 100%;
  height: 100%;
}
.heroCommon_visual picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  -o-object-fit: cover;
  -o-object-position: center;
  vertical-align: middle;
}

.heroCommon_content {
  color: #ffffff;
  width: 50%;
  padding: 2rem;
}
.heroCommon_content .title {
  font-size: clamp(2rem, 5vw, 3rem);
}
.heroCommon_content .titleLite {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
}

.allHistory {
  height: 100vh;
  overflow: hidden;
  position: relative;
  background-color: #ffffff;
  padding: 0 5vw;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}

.allHistory_wrapper {
  position: relative;
  z-index: 2;
  height: 100%;
  width: max-content;
  min-width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  padding: 6rem 0 1.5rem 0;
}

.allHistory_backgrounds {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 5vw;
  z-index: 1;
  pointer-events: none;
}

.allHistory_backgroundPanel {
  position: absolute;
  top: 0;
  bottom: 0;
  background-color: #424418;
}

.allHistory_item {
  flex: 0 0 min(88vw, 1100px);
  display: grid;
  grid-template-columns: minmax(280px, 520px) minmax(320px, 1fr);
  align-items: start;
  gap: 2rem;
  padding: 0 3rem;
}
.allHistory_item.itemLight {
  color: #ffffff;
}
.allHistory_item.vGrid {
  flex: 0 0 auto;
  width: min(45vw, 540px);
  grid-template-columns: 1fr;
  gap: clamp(1rem, 2vw, 2rem);
}
.allHistory_item.vGrid .allHistory_item_visual {
  width: auto;
  min-height: 320px;
  margin-left: -10vw;
}
.allHistory_item.vGrid .allHistory_item_visual picture, .allHistory_item.vGrid .allHistory_item_visual img {
  width: auto;
}
.allHistory_item.vGrid + .vGrid .allHistory_item_visual {
  margin-left: 0;
}
.allHistory_item.flipIt .allHistory_item_content {
  order: 2;
}
.allHistory_item.flipIt .allHistory_item_visual {
  order: 1;
}
.allHistory_item.startDate .allHistory_item_visual {
  align-self: center;
}

.allHistory_item_date {
  font-family: "linotype-didot", serif;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  line-height: 1.2;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  margin-bottom: 1rem;
}

.allHistory_item_content {
  align-self: start;
  height: auto;
}
.allHistory_item_content .titleLite {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
}
.allHistory_item_content .text {
  margin: 0;
}
.allHistory_item_content .text p {
  text-align: justify;
  font-size: 0.9rem;
  width: auto;
}

.allHistory_item_visual {
  width: 100%;
  min-height: 420px;
  align-self: start;
  height: auto;
}
.allHistory_item_visual picture,
.allHistory_item_visual img {
  width: 100%;
  height: 100%;
  display: block;
}

.allHistory_progress {
  position: absolute;
  width: calc(90% - 4rem);
  left: calc(5vw + 2rem);
  top: 2rem;
  z-index: 5;
  pointer-events: none;
}

.allHistory_progress_track {
  position: relative;
  width: 100%;
  height: 2px;
  background-color: rgba(188, 147, 80, 0.15);
  overflow: hidden;
}

.allHistory_progress_bar {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #bc9350;
  transform: scaleX(0);
  transform-origin: left center;
}

.allHistory_progress_dates {
  position: relative;
  width: 100%;
  height: 1rem;
  margin-bottom: 0.35rem;
}

.allHistory_progress_date {
  position: absolute;
  left: var(--date-position, 0%);
  bottom: 0;
  transform: translateX(-50%);
  font-size: clamp(0.75rem, 1vw, 0.95rem);
  white-space: nowrap;
  color: rgba(188, 147, 80, 0.45);
  transition: color 0.3s ease;
}
.allHistory_progress_date.isActive {
  color: #bc9350;
}

@media screen and (max-width: 900px) {
  .proAccessHero {
    height: auto;
  }
  .proAccessHero_visual,
  .proAccessHero_content {
    width: 100%;
  }
  .proAccessHero_visual {
    min-height: 40vh;
    padding: 8rem 2rem 3rem 2rem;
  }
  .proAccessHero_content {
    padding: 3rem 1rem;
  }
  .proLibrary {
    padding-top: 4rem;
  }
  .proLibrary_group_head {
    margin-bottom: 1.5rem;
  }
  .proLibrary_grid {
    grid-template-columns: 1fr;
  }
  .allHistory {
    min-height: auto;
  }
  .allHistory_wrapper {
    padding-inline: 1rem;
  }
  .allHistory_item {
    flex-basis: min(92vw, 720px);
    grid-template-columns: 1fr;
    align-items: flex-start;
  }
  .allHistory_item.vGrid {
    width: min(92vw, 720px);
  }
  .allHistory_item_visual {
    min-height: 320px;
  }
  .allHistory_progress {
    left: 1rem;
    right: 1rem;
  }
  .allHistory_backgrounds {
    left: 1rem;
  }
  .allHistory_progress_dates {
    height: 2.5rem;
    overflow-x: auto;
    overflow-y: hidden;
  }
}
.heroNumbers {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 1rem;
}
.heroNumbers .heroNumber {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.5rem;
}
.heroNumbers .number {
  font-size: clamp(2rem, 5vw, 3rem);
  font-family: "linotype-didot", serif;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  line-height: 1.2;
  font-weight: 400;
}
.heroNumbers .label {
  font-family: "linotype-didot", serif;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  line-height: 1.2;
  font-weight: 400;
  font-size: clamp(0.8rem, 1.5vw, 1rem);
}

.terroirParcels_draw_wrapper {
  position: relative;
  clip-path: circle(0% at 50% 50%);
}

.terroirParcels_content {
  margin-left: -8.333333%;
  margin-top: 10rem;
  position: relative;
  z-index: 2;
}

.terroirGeologie {
  padding-bottom: 25rem;
}

.terroirGeologie_content {
  padding: 0 2rem;
  margin-top: -1rem;
  position: relative;
  z-index: 2;
}

.terroirGeologie_visual {
  margin-top: -40vh;
  position: relative;
  z-index: 2;
}

.terroirVignoble .largeVisual {
  margin-top: -20rem;
}

.terroirVignoble_visual {
  margin-top: -40vh;
}
.terroirVignoble_visual .shape {
  z-index: -1;
}
.terroirVignoble_visual .visualWrapper {
  width: 500px;
  max-width: 100%;
  margin-left: auto;
}

.terroirVignoble_content {
  padding-top: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.terroirSpec_title {
  height: 400px;
  margin-bottom: 3rem;
  justify-content: center;
}
.terroirSpec_title .title {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  position: relative;
  z-index: 2;
}
.terroirSpec_title .title em {
  font-size: 50%;
}

.terroirSpec_circle {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: calc(50% - 200px);
}

.terroirSpec_circle_wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  transform: scale(1.5);
}
.terroirSpec_circle_wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.terroirSpec_content.block {
  justify-content: flex-start;
}
.terroirSpec_content.blockEnd {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: nowrap;
  text-align: right;
}
.terroirSpec_content.blockEnd .text {
  align-items: flex-end;
}
.terroirSpec_content.blockEnd .text p {
  text-align: right;
}
.terroirSpec_content p {
  text-wrap: balance;
  width: auto;
  min-height: 52px;
}
.terroirSpec_content p:nth-child(3) {
  min-height: 1px;
}
.terroirSpec_content .text {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: flex-start;
  flex-wrap: nowrap;
  height: auto;
  flex: 1;
  width: 600px;
  max-width: 100%;
}
.terroirSpec_content .text div {
  width: 100%;
  margin-top: auto;
  border-top: 1px solid rgba(51, 53, 16, 0.7);
}

.secretVendanges .largeVisual {
  margin-top: -20vh;
}

.secretVendanges_visual {
  position: relative;
  z-index: 3;
}
.secretVendanges_visual .visualWrapper {
  margin-left: auto;
}

.secretVendanges_content {
  position: relative;
  z-index: 4;
}

.winemakingWhite {
  padding-top: 0;
  padding-bottom: 25rem;
}

.winemakingWhite_visual {
  margin-top: -20vh;
}
.winemakingWhite_visual .visualWrapper {
  margin-left: auto;
  margin-right: auto;
}
.winemakingWhite_visual .shape {
  right: -2rem;
  left: auto;
  top: 15%;
  text-align: right;
}

.winemakingWhite_content {
  padding: 0 2rem;
}

.winemakingRed .largeVisual {
  margin-top: -20rem;
}

.winemakingRed_visual {
  margin-top: -30vh;
}
.winemakingRed_visual .shape {
  z-index: -1;
}
.winemakingRed_visual .visualWrapper {
  margin-left: auto;
}

.winemakingRed_content {
  position: relative;
  z-index: 3;
  margin-top: -30vh;
  padding-top: calc(30vh + 2rem);
}

.engagementDetails .row {
  align-items: flex-start;
}

.engagementDetails_visual {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}
.engagementDetails_visual picture {
  width: auto;
}

.engagementDetails_content {
  padding-top: 5rem;
}
.engagementDetails_content .titleLite {
  padding-left: 5%;
}
.engagementDetails_content .text {
  padding-left: 5%;
}
.engagementDetails_content .btn {
  margin-left: 5%;
}

.vinsListe .container-fluid {
  width: 1400px;
  max-width: 100%;
  margin: 0 auto;
}
.vinsListe .row {
  gap: 2rem 0;
}

.heroWine {
  padding: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  min-height: 100vh;
  background-color: #424418;
}
.heroWine .title {
  font-size: clamp(2rem, 5vw, 3rem);
}

.heroWine_content {
  width: 60%;
  height: auto;
  background-color: #333510;
  color: #ffffff;
  padding: 10rem calc(5vw + 80px) 3rem 5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: nowrap;
}
.heroWine_content .titleLite {
  font-size: 1.3rem;
}

.wineBreadcrumb {
  margin-bottom: 1rem;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}
.wineBreadcrumb a {
  color: white;
  transition: color 0.3s ease;
}
.wineBreadcrumb a:hover {
  color: #bc9350;
}
.wineBreadcrumb .separator {
  color: rgba(255, 255, 255, 0.7);
}

.wineTextHidden .text {
  margin: 0;
}
.wineTextHidden .quote {
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
  width: 750px;
  max-width: 100%;
  font-size: 0.9rem;
  margin: 0.75rem 0;
  line-height: 1.2;
}
.wineTextHidden em {
  text-decoration: none;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 0.5rem;
  text-align: right;
  margin-left: auto;
}
.wineTextHidden em:before, .wineTextHidden em:after {
  content: "";
  width: 10px;
  height: 1px;
  background-color: rgba(188, 147, 80, 0.7);
  margin: 0 5px;
}

.toggleWineText {
  background-color: transparent;
  outline: 0;
  padding: 0;
  border: none;
  font-style: italic;
  text-decoration: underline;
  color: #ffffff;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.5rem;
}
.toggleWineText:before {
  content: "";
  width: 15px;
  height: 1px;
  background-color: #ffffff;
}

.wineColorSwitch {
  margin: 0;
  padding: 0.35rem;
  width: fit-content;
  max-width: 100%;
  border-radius: 5px;
  border: 1px solid rgba(188, 147, 80, 0.3);
  background: linear-gradient(180deg, rgba(66, 68, 24, 0.08), rgba(66, 68, 24, 0.02)), rgba(66, 68, 24, 0.28);
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.35rem;
}
.wineColorSwitch button {
  appearance: none;
  border: none;
  outline: 0;
  cursor: pointer;
  min-width: clamp(150px, 15vw, 220px);
  padding: 0.9rem 1.45rem;
  border-radius: 5px;
  background-color: transparent;
  color: rgba(255, 255, 255, 0.72);
  position: relative;
  overflow: hidden;
  transition: color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}
.wineColorSwitch button span {
  position: relative;
  z-index: 2;
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.14rem;
  text-transform: uppercase;
  transition: transform 0.35s ease;
}
.wineColorSwitch button::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgb(75, 77, 39);
  opacity: 0;
  transform: scale(0.94);
  border: 1px solid rgba(188, 147, 80, 0);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.wineColorSwitch button:hover {
  color: #ffffff;
}
.wineColorSwitch button:hover span {
  transform: translateX(-4px);
}
.wineColorSwitch button.active {
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.35), 0 10px 24px rgba(0, 0, 0, 0.22);
}
.wineColorSwitch button.active::before {
  opacity: 1;
  transform: scale(1);
  border-color: rgba(188, 147, 80, 0.3);
}
@media (max-width: 767px) {
  .wineColorSwitch {
    width: 100%;
  }
  .wineColorSwitch button {
    flex: 1 1 0;
    min-width: 0;
    padding: 0.8rem 1rem;
  }
  .wineColorSwitch button span {
    font-size: 0.72rem;
    letter-spacing: 0.1rem;
  }
}

.heroWine_visual_spec {
  width: calc(40% + 5vw + 80px);
  height: 100%;
  padding: 10rem 5vw 3rem 5vw;
  display: grid;
  grid-template-columns: minmax(120px, 160px) minmax(320px, 1fr);
  gap: 2rem;
  align-items: center;
  margin-left: calc(-5vw - 80px);
}
.heroWine_visual_spec.hasSwitch {
  position: relative;
  display: flex;
  gap: 0;
  padding: 0;
}

.heroWine_visual_spec_wrapper {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: minmax(120px, 160px) minmax(320px, 1fr);
  gap: 2rem;
  padding: 10rem 5vw 3rem 5vw;
}

.heroWine_bottle {
  position: relative;
}
.heroWine_bottle .shape {
  position: absolute;
  left: -50%;
  top: -1.5rem;
  width: 100%;
  height: calc(100% + 3rem);
}
.heroWine_bottle .shape img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}
.heroWine_bottle picture {
  position: relative;
  z-index: 2;
}

.heroWine_spec {
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 0.5rem;
}

.heroWine_spec_row {
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
  padding: 0.5rem 0;
  width: 100%;
}
.heroWine_spec_row div:first-child {
  font-weight: 500;
  margin-bottom: 0.3rem;
}
.heroWine_spec_row:last-child {
  border-bottom: none;
}

.datePagination {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
}
.datePagination button {
  background-color: transparent;
  border: none;
  font-size: clamp(0.8rem, 1.5vw, 1rem);
  color: rgba(66, 68, 24, 0.7);
  outline: none;
  cursor: pointer;
  padding: 0.3rem 0.5rem;
}
.datePagination button.active {
  color: #424418;
}
.datePagination i {
  margin-top: -2px;
}
.datePagination i:last-child {
  display: none;
}
.datePagination .tranding-slider-control {
  position: initial;
  width: auto;
  height: auto;
}
.datePagination .tranding-slider-control .swiper-pagination .swiper-pagination-bullet {
  color: #424418;
  border-radius: 0;
  border: none;
  background-color: transparent;
  font-size: clamp(0.8rem, 1.5vw, 1rem);
  opacity: 0.7;
  width: auto;
  height: auto;
  font-family: "poppins", Helvetica, sans-serif;
  font-weight: 300;
}
.datePagination .tranding-slider-control .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}

.swiperMillesimesContainer {
  width: 100%;
}

.swiperMillesimes_slide {
  padding: 1rem 2rem;
}
.swiperMillesimes_slide .text {
  margin-top: 3rem;
}
.swiperMillesimes_slide .text strong {
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 0.5rem;
}
.swiperMillesimes_slide .text p {
  width: 100%;
  text-align: justify;
}
.swiperMillesimes_slide:last-child .swiperMillesimes_date::after {
  content: none;
}
.swiperMillesimes_slide.swiper-slide-active .swiperMillesimes_date p {
  transform: scale(1);
}
.swiperMillesimes_slide.swiper-slide-active .swiperMillesimes_date::before {
  transform: scale(1);
}

.swiperMillesimes_date {
  font-family: "linotype-didot", serif;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  line-height: 1.2;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  position: relative;
  margin-left: -2rem;
}
.swiperMillesimes_date p {
  padding-bottom: 0.5rem;
  transform: scale(0.6);
  transform-origin: 0 50%;
  transition: transform 0.3s ease;
}
.swiperMillesimes_date:after {
  content: "";
  position: absolute;
  left: 2rem;
  bottom: 0;
  width: calc(100% + 2rem);
  height: 2px;
  background-color: #424418;
}
.swiperMillesimes_date:before {
  content: "";
  position: absolute;
  left: 2rem;
  bottom: calc(-0.75rem + 1px);
  width: 1.5rem;
  height: 1.5rem;
  background-color: #424418;
  border-radius: 50%;
  transform: scale(0.6);
  transform-origin: 0 50%;
  transition: transform 0.3s ease;
}

.swiperMillesime_spec {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 0.5rem;
}
.swiperMillesime_spec div {
  width: 100%;
  border-bottom: 1px solid rgba(66, 68, 24, 0.15);
  padding: 0.5rem 0;
}
.swiperMillesime_spec div strong {
  display: block;
  margin-bottom: 0.3rem;
  font-weight: 400;
  text-transform: uppercase;
}

.visiteListe .row {
  gap: 3rem 5vw;
}

.visiteCard {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 1rem;
  width: 400px;
}
.visiteCard .btn {
  margin-top: auto;
}

.visiteCard_visual {
  width: 100%;
  height: 420px;
  position: relative;
  margin-bottom: 1rem;
}
.visiteCard_visual .shape {
  position: absolute;
  width: 130px;
  height: calc(100% + 2rem);
  top: -1rem;
  left: -3vw;
  z-index: -1;
}
.visiteCard_visual .shape img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}
.visiteCard_visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  -o-object-fit: cover;
  -o-object-position: center;
  vertical-align: middle;
}

.visiteCard_content {
  width: 100%;
  font-size: 0.9rem;
  gap: 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  flex: 1;
}
.visiteCard_content .titleLite {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
}
.visiteCard_content .text {
  color: #424418;
  border-top: 1px solid #424418;
  border-bottom: 1px solid #424418;
  margin: 0;
}

.visiteCard_row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  width: 100%;
}
.visiteCard_row strong {
  font-weight: 500;
  display: inline-block;
  white-space: preserve nowrap;
}
.visiteCard_row p {
  text-align: right;
}

.visiteCard_more > p {
  margin: 0.25rem 0;
}

.receptionListe .row.reverse {
  flex-direction: row-reverse;
}
.receptionListe .row:not(:last-child) {
  margin-bottom: 3rem;
}

.receptionListe_content {
  padding: 2rem 5vw;
}
.receptionListe_content .titleLite {
  margin-left: -2rem;
}

.receptionListe_spec {
  border-top: 1px solid #bc9350;
  border-bottom: 1px solid #bc9350;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
}

.receptionListe_spec_row {
  margin: 0.5rem 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}
.receptionListe_spec_row p:first-child {
  font-weight: 500;
  display: inline-block;
  white-space: preserve nowrap;
}
.receptionListe_spec_row p:last-child {
  text-align: right;
}

.receptionListe_equipement {
  color: #bc9350;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.heroContact {
  padding: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  height: 100vh;
  background-color: #424418;
}
.heroContact .title {
  font-size: clamp(2rem, 5vw, 3rem);
}

.heroContact_visual {
  width: 40%;
  height: 100%;
  position: relative;
}
.heroContact_visual picture {
  width: 100%;
  height: 100%;
}
.heroContact_visual picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  -o-object-fit: cover;
  -o-object-position: center;
  vertical-align: middle;
}

.contactInfos {
  position: absolute;
  width: 500px;
  height: 340px;
  top: calc(50% - 170px);
  right: -5vw;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}
.contactInfos .titleLite {
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  margin-bottom: 1rem;
}
.contactInfos .shape {
  position: absolute;
  width: 120px;
  height: calc(100% + 4rem);
  top: -2rem;
  right: -2rem;
  z-index: -1;
}
.contactInfos .shape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  -o-object-fit: cover;
  -o-object-position: center;
  vertical-align: middle;
}

.contactInfos_wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 1rem;
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  color: #ffffff;
  background-color: #333510;
  padding: 2rem;
}

.contactSocials, .adresse, .mailTel {
  padding-left: 2rem;
}

.adresse strong {
  font-family: "linotype-didot", serif;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  line-height: 1.2;
  font-weight: 400;
  font-size: clamp(0.9rem, 1.8vw, 1.1rem);
}

.mailTel {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 1rem;
}
.mailTel a {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.5rem;
}
.mailTel a:before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background-size: contain;
  background-repeat: no-repeat;
}
.mailTel a:first-child:before {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmZmZmYiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBjbGFzcz0ibHVjaWRlIGx1Y2lkZS1tYWlscy1pY29uIGx1Y2lkZS1tYWlscyI+PHBhdGggZD0iTTE3IDE5YTIgMiAwIDAgMS0yIDJINGEyIDIgMCAwIDEtMi0ydi04YTIgMiAwIDAgMSAxLTEuNzMyIi8+PHBhdGggZD0ibTIyIDUuNS02LjQxOSA0LjE3OWEyIDIgMCAwIDEtMi4xNjIgMEw3IDUuNSIvPjxyZWN0IHg9IjciIHk9IjMiIHdpZHRoPSIxNSIgaGVpZ2h0PSIxMiIgcng9IjIiLz48L3N2Zz4=");
}
.mailTel a:last-child:before {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmZmZmYiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBjbGFzcz0ibHVjaWRlIGx1Y2lkZS1waG9uZS1pY29uIGx1Y2lkZS1waG9uZSI+PHBhdGggZD0iTTEzLjgzMiAxNi41NjhhMSAxIDAgMCAwIDEuMjEzLS4zMDNsLjM1NS0uNDY1QTIgMiAwIDAgMSAxNyAxNWgzYTIgMiAwIDAgMSAyIDJ2M2EyIDIgMCAwIDEtMiAyQTE4IDE4IDAgMCAxIDIgNGEyIDIgMCAwIDEgMi0yaDNhMiAyIDAgMCAxIDIgMnYzYTIgMiAwIDAgMS0uOCAxLjZsLS40NjguMzUxYTEgMSAwIDAgMC0uMjkyIDEuMjMzIDE0IDE0IDAgMCAwIDYuMzkyIDYuMzg0Ii8+PC9zdmc+");
}

.contactSocials {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  gap: 1rem;
  margin-top: 0.5rem;
}
.contactSocials a {
  width: 2rem;
  height: 2rem;
  border-radius: 5px;
  overflow: hidden;
}
.contactSocials a svg {
  fill: #ffffff;
}

.heroContact_content {
  color: #ffffff;
  width: 60%;
  padding: 2rem 5vw 2rem 10vw;
}
.heroContact_content .titleLite {
  margin: 0 0.75rem;
  font-family: "poppins", Helvetica, sans-serif;
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  letter-spacing: 0.16rem;
  font-weight: 300;
}
.heroContact_content .wpcf7 {
  margin: 0 auto;
}

footer {
  width: 90%;
  margin: 4rem auto 0 auto;
  background-color: #424418;
  color: #ffffff;
  padding: 3rem;
  position: relative;
}
footer .row {
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}
footer .shape {
  position: absolute;
  width: 700px;
  height: 100%;
  top: -2rem;
  right: 5%;
  z-index: -1;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: nowrap;
}
footer .shape img {
  object-fit: cover;
  object-position: center top;
  width: 100%;
  height: 100%;
}

.logoFooter {
  width: 160px;
}
.logoFooter img {
  width: 100%;
}

.alcoolMsg {
  font-family: "linotype-didot", serif;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  line-height: 1.2;
  font-weight: 400;
  text-align: center;
}

.mentionsContainer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 0.5rem;
  color: #ffffff;
  text-align: center;
}
.mentionsContainer > p, .mentionsContainer > span, .mentionsContainer > a {
  margin: 0.25rem 0.5rem;
  font-size: 0.9rem;
}
.mentionsContainer > span {
  cursor: pointer;
}

.footerLinks {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: nowrap;
  gap: 1rem;
}
.footerLinks a {
  font-weight: 400;
}

.socialLinks {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 1rem;
}
.socialLinks a {
  width: 2rem;
  height: 2rem;
  border-radius: 5px;
  overflow: hidden;
}
.socialLinks a svg {
  fill: #ffffff;
}

body.page-mentions #cmplz-document {
  max-width: 100%;
  width: 1200px;
}

#cmplz-manage-consent .cmplz-manage-consent {
  display: none;
}

.mentions {
  padding-top: 10rem;
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
}
.mentions .titleLite {
  margin-bottom: 2rem;
}
.mentions > div {
  width: 1200px;
  max-width: 100%;
  margin: 3rem auto 0 auto;
}
.mentions p {
  margin: 0.75rem 0;
}
.mentions a {
  text-decoration: underline;
  word-wrap: break-word;
}
.mentions h2 {
  font-size: 1.5rem;
  font-weight: 500;
  margin: 1rem 0;
}
.mentions h3 {
  font-size: 1.3rem;
  font-weight: 500;
  margin: 1rem 0;
}
.mentions h4 {
  font-size: 1.1rem;
  font-weight: 500;
  margin: 1rem 0;
}
.mentions ul, .mentions ol {
  margin: 1rem 0;
  list-style: disc;
  padding-left: 2rem;
}
.mentions ul li, .mentions ol li {
  margin: 0.75rem 0;
}
.mentions ul li a, .mentions ol li a {
  text-decoration: underline;
  word-wrap: break-word;
}

.error404Page {
  min-height: 70vh;
  padding: 10rem 5vw 5rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  background-color: #f6f6f6;
  color: #424418;
  text-align: center;
}

.error404Page_inner {
  width: min(680px, 100%);
}

.error404Page_code {
  margin-bottom: 1rem;
  color: #bc9350;
  font-family: "poppins", Helvetica, sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.14rem;
  text-transform: uppercase;
}

.error404Page h1 {
  margin-bottom: 1.5rem;
  font-family: "linotype-didot", serif;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 400;
  line-height: 0.95;
}

.error404Page_text {
  max-width: 520px;
  margin: 0 auto 2rem;
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.7;
}

.error404Page_link {
  display: inline-block;
  padding: 0.9rem 1.5rem;
  border: 1px solid #424418;
  border-radius: 5px;
  font-size: 0.75rem;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}
.error404Page_link:hover {
  background-color: #424418;
  border-color: #424418;
  color: #ffffff;
}

@media (max-width: 1599px) {
  .shopList .row {
    justify-content: space-around;
  }
  .product_grid {
    grid-template-columns: minmax(300px, 400px) minmax(0, 1fr);
    gap: 2rem 6rem;
  }
  .product_specs {
    padding: 0 5vw 0 6rem;
    width: calc(100% - 400px);
  }
  .logoFooter {
    order: 1;
  }
  .footerLinks {
    order: 2;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
  .socialLinks a {
    width: 1.6rem;
    height: 1.6rem;
  }
  .footerText {
    order: 3;
    width: 100%;
    margin-top: 2rem;
  }
  .alcoolMsg {
    font-size: 0.9rem;
  }
  .mentionsContainer > p, .mentionsContainer > span, .mentionsContainer > a {
    font-size: 0.8rem;
  }
}
@media (max-width: 1400px) {
  .header_right .menu {
    padding: 10rem 1rem 2rem 5vw;
  }
  .header_right .menu a {
    font-size: clamp(1.1rem, 2.5vw, 2rem);
  }
  .header_right .sub-menu a, .header_right .sub-menu .parentTitle {
    font-size: clamp(0.9rem, 1.5vw, 1.2rem);
  }
  .header_right .menuVisuals {
    padding: 7rem 5vw 7rem 1rem;
  }
  .header_right .menuVisuals p {
    font-size: clamp(0.9rem, 1.3vw, 1.2rem);
    padding: 1rem;
    text-wrap: balance;
  }
  .header_right .menuVisuals p br {
    display: none;
  }
  .shopList .row {
    justify-content: center;
  }
  .vinCard {
    width: 495px;
  }
  .product_grid {
    grid-template-columns: minmax(300px, 300px) minmax(0, 1fr);
  }
  .product_specs {
    width: calc(100% - 300px);
  }
}
@media (max-width: 1200px) {
  .shopList .vinCard {
    width: 50%;
  }
  .product_grid {
    grid-template-columns: minmax(260px, 260px) minmax(0, 1fr);
  }
  .product_specs {
    width: calc(100% - 260px);
  }
  .wc-block-components-order-summary .wc-block-components-order-summary-item {
    flex-wrap: wrap;
    padding-bottom: 7px;
    padding-top: 7px;
    border-bottom: 1px solid rgba(66, 68, 24, 0.12);
  }
  .wc-block-components-order-summary .wc-block-components-order-summary-item .wc-block-components-order-summary-item__image {
    width: 30px;
    min-width: 30px;
  }
  .wc-block-components-order-summary .wc-block-components-order-summary-item .wc-block-components-order-summary-item__image > img {
    height: 70px;
  }
  .wc-block-components-order-summary .wc-block-components-order-summary-item .wc-block-components-order-summary-item__quantity {
    right: 3px;
  }
  .wc-block-components-order-summary .wc-block-components-order-summary-item .wc-block-components-order-summary-item__description {
    padding: 4px 12px 12px 12px;
    width: calc(100% - 30px);
  }
}
@media (max-width: 991px) {
  .logo {
    width: 120px;
  }
  .btnMenu, .headerCart {
    top: 1rem;
  }
  .heroShop_intro .title {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
  }
  .heroShop_intro .titleLite {
    font-size: clamp(1rem, 1.8vw, 1.3rem);
  }
  .vinCard {
    padding: 1rem;
  }
  .vinCard .vinCard_visual {
    width: 60px;
    height: 240px;
  }
  .vinCard .vinCard_visual .shape {
    width: 50px;
    left: -18px;
  }
  .vinCard .vinCard_content {
    width: calc(100% - 60px - 1rem);
  }
  .vinCard .vinCard_content h2 {
    font-size: 1.1rem;
  }
  .vinCard .vinCard_content .wineColor {
    font-size: 0.8rem;
  }
  .vinCard .vinCard_content .wineClassification {
    font-size: 0.8rem;
  }
  .vinCard .vinCard_content .vinCard_priceBottle {
    letter-spacing: 0;
    font-size: 0.8rem;
  }
  .variationPicker_button {
    padding: 0.3rem 0.5rem;
  }
  .variationPicker_button span {
    font-size: 0.75rem;
    letter-spacing: 0;
  }
  .product_visual {
    padding: 10rem 0 5rem 5vw;
  }
  .product_content {
    padding: 10rem 5vw 2rem 0;
  }
  .product_spec {
    grid-column: 1/-1;
  }
  .cartPage_header {
    margin-bottom: 2rem;
  }
  .cartPage_content .wc-block-cart__main {
    padding: inherit;
    border: none;
  }
  .cartPage_content .wc-block-cart__sidebar {
    padding: 0;
    border: none;
  }
  .mentions {
    padding-top: 8rem;
  }
}
@media (max-width: 820px) {
  .header_right .menu a {
    font-size: 1.6rem;
  }
  .header_right .sub-menu li:first-child {
    margin-top: 0.5rem;
  }
  .header_right .sub-menu li {
    margin: 0.5rem 0;
  }
  .header_right .sub-menu a {
    font-size: 1.1rem;
  }
  .checkoutPage_infos {
    display: grid;
    grid-template-columns: 1fr;
  }
  .checkoutPage_infos div {
    border-right: none;
    padding: 0.5rem 0;
  }
  .checkoutPage_content .wc-block-checkout__main {
    border: none;
  }
  .checkoutPage_content .wc-block-checkout__sidebar {
    display: none;
  }
}
@media (max-width: 767px) {
  .heroShop {
    padding: 9rem calc(5vw + 0.5rem) 2rem calc(5vw + 0.5rem);
  }
  .heroShop_intro {
    align-items: flex-start;
  }
  .heroShop_intro .title {
    align-items: flex-start;
    text-align: left;
  }
  .heroShop_intro .titleLite {
    align-items: flex-start;
    text-align: left;
  }
  .homeMsg {
    padding: 0;
  }
  .homeMsg p {
    font-size: 0.85rem;
    text-align: left;
  }
  .shopList .vinCard {
    width: 500px;
  }
  .shopList .vinCard .vinCard_wrapper {
    padding: 1.5rem;
  }
  .product_grid {
    grid-template-columns: minmax(140px, 140px) minmax(0, 1fr);
    gap: 2rem;
  }
  .product_visual {
    background-color: transparent;
    height: auto;
    min-height: 1px;
    padding: 10rem 0 2rem 5vw;
  }
  .product_visual_inner {
    margin-right: 0;
  }
  .product_visual_inner .shape {
    right: 4rem;
    width: 80px;
  }
  .product_visual_inner picture {
    width: min(100px, 70vw);
    height: min(400px, 100vh - 17rem);
    min-height: 320px;
  }
  .product_specs {
    padding: 0 5vw;
    width: 100%;
  }
  .cartPage {
    padding: 8rem 5vw 0 5vw;
  }
  .cartPage .container-fluid {
    padding: 0;
  }
  .checkoutPage {
    padding: 8rem 5vw 0rem 5vw;
  }
  .checkoutPage .container-fluid {
    padding: 0;
  }
  footer {
    margin: 3rem auto 0 auto;
    padding: 2rem;
  }
  footer .shape {
    max-width: 90%;
  }
  .logoFooter {
    width: 100%;
  }
  .logoFooter a {
    width: 160px;
    display: block;
    margin: 0 auto;
  }
  .footerLinks {
    margin-top: 1rem;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 580px) {
  .header_right .header_right_inner {
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
  }
  .header_right nav {
    width: 100%;
    height: auto;
    order: 2;
    min-height: 1px;
  }
  .header_right .menu {
    padding: 8rem 5vw 3rem 5vw;
    min-height: 1px;
  }
  .header_right .menu .proArea {
    position: initial;
  }
  .header_right .menu > li.children > a, .header_right .menu > li.children > span {
    position: relative;
  }
  .header_right .menu > li.children > a:after, .header_right .menu > li.children > span:after {
    content: "";
    width: 1rem;
    height: 1rem;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmZmZmYiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBjbGFzcz0ibHVjaWRlIGx1Y2lkZS1jaGV2cm9uLWRvd24taWNvbiBsdWNpZGUtY2hldnJvbi1kb3duIj48cGF0aCBkPSJtNiA5IDYgNiA2LTYiLz48L3N2Zz4=");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    opacity: 0.7;
  }
  .header_right .menu > li.children.is-submenu-open > a:after, .header_right .menu > li.children.is-submenu-open > span:after {
    transform: translateY(-50%) rotate(180deg);
    opacity: 1;
  }
  .header_right .menuVisuals {
    display: none;
  }
  .title {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
  }
  .product_grid {
    grid-template-columns: minmax(80px, 80px) minmax(0, 1fr);
    gap: 1rem;
  }
  .product_visual {
    background-color: transparent;
    padding: 8rem 0 1rem 5vw;
  }
  .product_visual_inner picture {
    width: min(55px, 70vw);
    height: min(220px, 100vh - 17rem);
    min-height: 220px;
  }
  .product_content {
    padding: 8rem 5vw 1rem 0;
    gap: 1rem;
  }
  .product_visual_inner .shape {
    display: none;
  }
  .product_visual_inner picture {
    width: min(55px, 70vw);
    height: min(220px, 100vh - 17rem);
    min-height: 220px;
  }
  .product_grid {
    position: relative;
    padding-bottom: 160px;
  }
  .productPurchaseAndInfos {
    position: absolute;
    bottom: 1rem;
    left: 5vw;
    width: 90vw;
  }
  .product_form {
    width: 100%;
    margin-top: 1rem;
  }
  .product_formRow {
    gap: 10px;
  }
  .product_form .single_add_to_cart_button {
    width: calc(100% - 80px);
  }
  .checkoutPage_content .edit-post-visual-editor .wc-block-checkout__shipping-method-option, .checkoutPage_content .wc-block-checkout__shipping-method-option {
    flex-basis: auto;
    width: 100%;
  }
  .mentions {
    padding-top: 6rem;
  }
}
@media (max-width: 420px) {
  .logo {
    width: 100px;
  }
  .header_right .menu a {
    font-size: 1.3rem;
  }
  .header_right .menu .proArea {
    width: 100%;
  }
  .header_right .menu .proArea a {
    text-align: center;
  }
  .header_right .sub-menu {
    padding-left: 0;
  }
  .header_right .sub-menu a {
    font-size: 1rem;
  }
  .header_right .menuVisuals {
    height: 300px;
  }
  .btn {
    min-width: 200px;
    width: 100%;
  }
  .heroShop {
    padding: 8rem calc(5vw + 0.5rem) 2rem calc(5vw + 0.5rem);
  }
  .shopList .vinCard .vinCard_wrapper {
    padding: 0.5rem;
  }
  .shopList .vinCard .vinCard_visual .shape {
    width: 40px;
    left: -8px;
  }
}
@media (max-width: 380px) {
  .btn span {
    letter-spacing: 0.06rem;
  }
  .checkoutPage_content .wc-block-components-totals-coupon__form .wc-block-components-totals-coupon__input, .cartPage_content .wc-block-components-totals-coupon__form .wc-block-components-totals-coupon__input {
    flex: 0 0 auto;
    width: 100%;
  }
}/*# sourceMappingURL=screen.css.map */