@font-face {
  font-family: FootlightMTPro;
  src: url(fonts/FootlightMTProRegular.ttf);
}
@font-face {
  font-family: Cormorant;
  src: url(fonts/Cormorant-VariableFont_wght.ttf);
}
:root {
  --primary: #ceb76d;
  --primary-text-color: #333;
  --font-color: #333;
  --theme-color: #ceb76d;
  --body-font-size: 20px;
  --body-font-family: Cormorant;
  --body-font-weight: 400;
  --body-line-height: 1.5;
  --body-background-color: #fff;
  --modal-bg-color: #fff;
  --bg-color: #fff;
  --btn-active-bg-color: #ceb76d;
  --box-shadow-primary: none;
  --border-color: #ccc;
  --btn-active-border-color: #932821;
  --btn-border-color: transparent;
  --btn-background-color: #932821;
  --btn-hover-background-color: #ceb76d;
  --btn-text-color: #fff;
  --btn-hover-text-color: #fff;
  --btn-active-color: #fff;
  --btn-font-family: Cormorant;
  --btn-font-size: 18px;
  --btn-text-transform: none;
  --btn-border: none;
  --btn-padding: 10px 20px;
  --btn-border-radius: 4px;
  --btn-hover-opacity: 1;
  --btn-letter-spacing: 0;
  --anounce-color: #ff3333;
  --inputs-text-color: #212529;
  --anchors-color: #ceb76d;
  --anchors-hover-color: #333;
  --highlights-color: #333;
  --highlights-font-family: Cormorant;
  --highlights-font-weight: 400;
  --highlights-line-height: 1.4;
  --container-max-width: 1400px;
  --popup-text-color: #000;
  --wine-information-alt-row-bg: #eee;
  --overlay-bg-color: transparent;
  --cart-summary-top: 10px;
  --modal-header-color: #fff;
  --group-menu-font-size: 20px;
  --product-title-color: #ceb76d;
}

body {
  font-size: var(--body-font-size);
  font-family: var(--body-font-family);
  line-height: var(--body-line-height);
  font-weight: var(--body-font-weight);
  background-color: var(--body-background-color);
}

a {
  color: var(--anchors-color);
}

a:hover {
  color: var(--anchors-hover-color);
}

button {
  background-color: transparent;
  padding: 0;
  border: 0;
  cursor: pointer;
}

img {
  max-width: 100%;
}

body,
.ui-widget-content {
  color: var(--primary-text-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--highlights-color);
  font-family: var(--highlights-font-family);
  line-height: var(--highlights-line-height);
  font-weight: var(--highlights-font-weight);
}

.btn {
  font-family: var(--btn-font-family);
  font-size: var(--btn-font-size);
  line-height: 20px;
  text-transform: var(--btn-text-transform);
  background: var(--btn-background-color);
  color: var(--btn-text-color);
  border: var(--btn-border);
  letter-spacing: var(--btn-letter-spacing);
  border-radius: var(--btn-border-radius);
  padding: var(--btn-padding);
}

.btn:focus,
.btn:hover {
  background: var(--btn-hover-background-color);
  color: var(--btn-hover-text-color);
  opacity: var(--btn-hover-opacity);
  border-color: var(--btn-hover-background-color);
}

.ord-container,
#pageContent {
  margin: 0 auto;
  max-width: var(--container-max-width);
}

#authStatus a:hover {
  text-decoration: none;
}

.ui-widget-header,
.activeCart .cartHeader,
.shop-left-menu .menu-header,
#accountContent .header,
#checkout .header,
#basket .header,
.bootstrapWizard li.complete .step,
.bootstrapWizard li.active .step,
.bootstrapWizard li.active.complete .step,
#tabs-product ul a,
#tabs-product .ui-tabs-nav a {
  background: var(--theme-color);
}

#tabs-product .tabs-container a.btn {
  color: var(--btn-text-color);
}

#tabs-product .tabs-container a.btn:hover {
  color: var(--btn-hover-text-color);
}

.txt,
.txtbig,
.ddl,
.select_box select,
input[type=text],
input[type=password],
select,
textarea {
  color: var(--inputs-text-color);
}

.popup h1,
.popup h2,
.popup h3,
.popup h4,
.popup h5,
.popup h6 {
  color: var(--popup-text-color);
}

header p,
footer p {
  margin: 0;
}

body.open .site-navigation {
  display: block;
}
body.open.has-overlay .ord-overlay {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  background-color: var(--overlay-bg-color);
  width: 100%;
  height: 100%;
}

.header-main,
.logo-wrap {
  padding: 10px;
}

.logo-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  width: 150px;
}

.burger {
  padding: 5.5px;
  background-color: #ceb76d;
  border-radius: 3px;
}
.burger svg {
  width: 22px;
  fill: #fff;
  stroke-width: 1px;
}
.burger.open svg:first-child, .burger:not(.open) svg + svg {
  display: none;
}

@media only screen and (max-width: 1024px) {
  .utils-menu,
  .desktop-label,
  .nav-logo {
    display: none;
  }
  header {
    position: relative;
  }
  .site-navigation {
    display: none;
    position: absolute;
    top: 113px;
    width: 100%;
    left: 0;
    background-color: #fff;
    z-index: 1040;
  }
  .btn-toggle-sub-menu {
    padding: 10px 0 10px 10px;
    margin: -10px 0;
  }
  .btn-toggle-sub-menu svg {
    width: 14px;
    height: 14px;
    fill: rgb(51, 55, 61);
  }
  .main-menu .has-child {
    display: grid;
    grid-template-rows: auto 0fr;
    transition: grid-template-rows 0.3s ease;
  }
  .main-menu .has-child,
  .main-menu .has-child ul {
    overflow: hidden;
  }
  .main-menu .has-child.open {
    grid-template-rows: auto 1fr;
  }
  .main-menu .sub-menu a {
    border-left: 8px solid transparent;
  }
  .main-menu a {
    padding: 10px 20px;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 20px;
    color: #33373d;
    font-family: FootlightMTPro;
  }
  .main-menu .text-up {
    text-transform: uppercase;
  }
}
footer.footer {
  border-top: 2px solid #ceb76d;
  background-image: url(Images/footer-background.jpg);
  background-position: center center;
  background-size: cover;
}
footer.footer iframe {
  border: none;
  width: 100%;
  height: 177px;
}

.footer-main {
  padding: 60px 0 10px;
  background-color: rgba(255, 255, 255, 0.9);
}

.footer-col-title {
  font-size: 23px;
  color: #ceb76d;
  margin: 0;
  line-height: 1;
}

.footer-menu {
  --gap-size: 5px;
  font-size: 18px;
  line-height: 1.5;
}
.footer-menu li {
  display: flex;
  gap: 6px;
  align-items: center;
}
.footer-menu li + li {
  margin-top: 5px;
}
.footer-menu li:not(:last-child) {
  padding-bottom: 5px;
}
.footer-menu a {
  color: #31363a;
}
.footer-menu svg {
  width: 7px;
  height: 7px;
  margin-right: 1.75px;
  fill: #ceb76d;
}

.footer-cols {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.winery-address {
  display: flex;
  align-items: center;
}
.winery-address svg {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}
.winery-address .address-text {
  padding-left: 5px;
  font-size: 18px;
  line-height: 1.5;
  color: #333;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.copyright {
  font-size: 20px;
  padding: 10px;
}

.social-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  gap: 8px;
}
.social-nav p {
  margin-right: 12px;
  font-size: 22px;
  line-height: 1;
}
.social-nav a {
  background-color: #ceb76d;
  border-radius: 3px;
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.social-nav svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}

@media (min-width: 768px) {
  .logo img {
    width: 126px;
  }
  .site-navigation {
    top: 102px;
  }
  .main-menu a {
    font-size: 18px;
  }
  .footer-col {
    width: 33%;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .footer-col-1 {
    width: 28%;
  }
  .footer-col-2 {
    width: 34%;
  }
  .footer-menu svg {
    width: 8px;
    height: 8px;
    margin-right: 2px;
  }
  .footer-row {
    flex-direction: row;
  }
  .footer-bottom {
    justify-content: space-between;
  }
}
@media (min-width: 1025px) {
	.site-navigation {
		top: 0;
	}
	
  .btn-menu-wrap,
  .mobile-item,
  .header-main {
    display: none;
  }
  .site-navigation {
    padding: 10px;
  }
  .navigation-row {
    display: flex;
    align-items: center;
  }
  .main-menu {
    display: flex;
  }
  .main-menu .has-child {
    position: relative;
  }
  .main-menu .has-child:hover .sub-menu {
    display: block;
  }
  .main-menu a {
    display: flex;
    align-items: center;
    padding: 13px 18px;
    font-size: 16px;
    line-height: 20px;
    color: #333;
  }
  .main-menu a:hover {
    color: #ceb76d;
  }
  .main-menu .text-up {
    text-transform: capitalize;
  }
  .main-menu .btn-toggle-sub-menu {
    padding: 10px 0 10px 10px;
    margin: -10px 0;
  }
  .main-menu .btn-toggle-sub-menu svg {
    width: 16px;
    height: 16px;
  }
  .main-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1040;
    background-color: #fff;
    display: none;
  }
  .main-menu .sub-menu a {
    white-space: nowrap;
    padding: 13px 30px;
    border-left: 8px solid transparent;
    font-size: 18px;
	color: #333;
  }
  .main-navigation-2,
  .main-navigation-1 {
    width: 50%;
    flex: 0 1 auto;
  }
  .main-navigation-2 {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
  }
  .utils-menu svg {
    fill: #932821;
    width: 16px;
    height: 16px;
  }
  .nav-logo {
    padding: 10px;
    width: 15%;
    flex: 0 0 auto;
  }
  .footer-col {
    flex-grow: 1;
  }
  .footer-col-1 {
    width: 19.831%;
    flex-grow: 0;
  }
  .footer-menu {
    padding-left: 5px;
  }
  .footer-col-title {
    font-size: 25px;
  }
}
@media (min-width: 1367px) {
  .main-navigation-1,
  .main-navigation-2 {
    padding: 10px;
  }
  .main-menu a {
    font-size: 18px;
    padding: 13px 20px;
  }
  .main-menu .btn-toggle-sub-menu svg {
    width: 18px;
    height: 18px;
  }
  .nav-logo {
    width: 25.342%;
    text-align: center;
  }
  .nav-logo img {
    width: 200px;
  }
  .footer-col-title {
    font-size: 32px;
  }
  .footer-menu {
    font-size: 20px;
  }
  .footer-col {
    padding: 10px;
  }
}/*# sourceMappingURL=ws-style.css.map */

.header-banner {
  background-image: url(Images/header-banner.png);
  background-position: center;
  background-repeat: no-repeat;
  min-height: 420px;
  position: relative;
  background-size: cover;
}

form[action*="LApero-les-Trois"] .header-banner {
	background-image: url(Images/apero.jpg);
}