
/* #Mixins, custom shortcurts and functions */
/* #Normalise */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,800&family=Sacramento&display=swap");
* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  background-color: white;
  font-size: 15px;
  font-family: 'Open Sans', sans-serif;
}

#wrapper {
  overflow: hidden;
  position: relative;
  background-color: white;
}

#page {
  width: 100%;
  overflow: hidden;
  padding-top: 41px;
}

.row {
  width: 100%;
  max-width: 1300px;
  margin: auto;
}

.display-none {
  display: block;
  height: 0;
  width: 0;
  overflow: hidden;
}

.display-mob, .mobile-only {
  display: none;
}

@media screen and (max-width: 767px) {
  .display-mob, .mobile-only {
    display: block;
  }
  .desktop-only {
    display: none;
  }
}

/* #Colours */
.row.indent {
  padding: 0 160px;
}

.padded-row {
  padding-left: calc((100vw - 1300px) / 2);
  padding-right: calc((100vw - 1300px) / 2);
  width: 100vw;
}

.padded-row.indent {
  padding-left: calc(((100vw - 1300px) / 2) + 160px);
  padding-right: calc(((100vw - 1300px) / 2) + 160px);
}

/* #Styles */
body {
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
}

#head {
  border-bottom: 3px solid #c3002f;
  margin-bottom: 3px;
}

#head .row {
  position: relative;
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
}

#head .row #logo {
  -webkit-box-flex: 0;
  -moz-flex: 0 0 260px;
  -ms-flex: 0 0 260px;
  flex: 0 0 260px;
  display: block;
  height: 115px;
  margin-right: 100px;
  background-image: url(graphics/logo@2x.png);
  background-image: url(graphics/logo.svg);
  background-position: left center;
  background-size: contain;
  background-repeat: no-repeat;
}

#head .row #nav {
  -webkit-box-flex: 1;
  -moz-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

#head .row #nav ul {
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  list-style: none;
}

#head .row #nav ul li {
  -webkit-box-flex: 1;
  -moz-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

@media (max-width: 700px) {
  #head .row #nav ul li.current-menu-item a {
    font-weight: 800;
  }
}

#head .row #nav ul li a {
  display: block;
  text-align: center;
  color: #231f20;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  height: 115px;
  padding: 45px 0;
  font-weight: 600;
  text-align: center;
}

#head .row #nav ul li a:hover {
  font-weight: 800;
}

#head .row #nav ul li a::after {
  display: block;
  content: attr(title);
  font-weight: 800;
  height: 1px;
  color: transparent;
  overflow: hidden;
  visibility: hidden;
  margin-bottom: -1px;
}

#head .row #nav ul li a > span::after {
  display: block;
  content: attr(title);
  font-weight: 800;
  height: 1px;
  color: transparent;
  overflow: hidden;
  visibility: hidden;
  margin-bottom: -1px;
}

#head .row #nav ul li a:after {
  display: none;
}

#head .row #nav ul li a span {
  display: inline-block;
  text-align: center;
  padding-right: 2px;
}

#head .row #nav ul li a span:after {
  padding-right: 2px;
}

#head .row #nav ul li a span:last-child {
  padding-right: 0;
}

#head .row #nav ul li a span:last-child:after {
  padding-right: 0;
}

#head .row .cart {
  position: absolute;
  right: 0px;
  top: 85px;
  z-index: 3;
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  visibility: visible;
  will-change: scroll-position;
}

#head .row .cart a {
  display: block;
  width: 54px;
  height: 54px;
  background-image: url(graphics/cart.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  color: white;
  text-decoration: none;
}

#head .row .cart a > span {
  display: inline-block;
  width: 26px;
  height: 26px;
  text-align: center;
  position: absolute;
  right: -7px;
  top: -7px;
  background-color: black;
  border-radius: 50%;
  padding: 3px;
}

#head .row .cart.hidden {
  visibility: hidden;
  opacity: 0;
}

#head .row .cart.fixed {
  position: fixed;
  top: 40px;
  right: calc((100vw - 1300px) / 2);
}

body.logged-in.admin-bar #head .row .cart.fixed {
  top: 40px;
}

#foot .sub {
  background-color: #efeff0;
}

#foot .sub .row {
  padding-top: 45px;
  padding-bottom: 45px;
}

#foot .sub .row h3 {
  font-size: 1.4em;
  color: #c3002f;
  font-weight: 300;
  margin-bottom: 1rem;
  text-align: center;
}

#foot .sub .row form {
  border: 1px solid #231f20;
  padding: 10px;
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -moz-justify-content: space-between;
  justify-content: space-between;
}

#foot .sub .row form .nf-form-title,
#foot .sub .row form .nf-after-field {
  display: none;
}

#foot .sub .row form nf-fields-wrap {
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -moz-justify-content: space-between;
  justify-content: space-between;
}

#foot .sub .row form nf-fields-wrap nf-field {
  -webkit-box-flex: 0;
  -moz-flex: 0 0 24%;
  -ms-flex: 0 0 24%;
  flex: 0 0 24%;
}

#foot .sub .row form nf-fields-wrap nf-field:first-child {
  -webkit-box-flex: 0;
  -moz-flex: 0 0 75%;
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
}

#foot .sub .row form nf-fields-wrap nf-field .nf-field-label {
  display: none;
}

#foot .sub .row form nf-fields-wrap .nf-field-container {
  margin: 0;
}

#foot .sub .row form label {
  display: none;
}

#foot .sub .row form input {
  -webkit-box-flex: 0;
  -moz-flex: 0 0 75%;
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  font-size: 1.3333333333em;
  padding: 20px;
  border: 0;
  border-radius: 0px;
  background-color: transparent;
}

#foot .sub .row form input:focus {
  outline: #c3002f auto 2px;
}

#foot .sub .row form input::-webkit-input-placeholder {
  text-transform: uppercase;
  font-weight: 300;
  font-family: "Open Sans", sans-serif;
  font-size: 1em;
  color: #231f20;
}

#foot .sub .row form input::-moz-placeholder {
  text-transform: uppercase;
  font-weight: 300;
  font-family: "Open Sans", sans-serif;
  font-size: 1em;
  color: #231f20;
}

#foot .sub .row form input:-ms-input-placeholder {
  text-transform: uppercase;
  font-weight: 300;
  font-family: "Open Sans", sans-serif;
  font-size: 1em;
  color: #231f20;
}

#foot .sub .row form input::-ms-input-placeholder {
  text-transform: uppercase;
  font-weight: 300;
  font-family: "Open Sans", sans-serif;
  font-size: 1em;
  color: #231f20;
}

#foot .sub .row form input::placeholder {
  text-transform: uppercase;
  font-weight: 300;
  font-family: "Open Sans", sans-serif;
  font-size: 1em;
  color: #231f20;
}

#foot .sub .row form button,
#foot .sub .row form input[type="button"] {
  -webkit-box-flex: 0;
  -moz-flex: 0 0 24%;
  -ms-flex: 0 0 24%;
  flex: 0 0 24%;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-color: transparent;
  color: #c3002f;
  font-family: "Open Sans", sans-serif;
  font-size: 1em;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
  border: 0;
  border-left: 1px solid #c3002f;
  font-weight: 600;
  text-align: center;
}

#foot .sub .row form button:hover,
#foot .sub .row form input[type="button"]:hover {
  font-weight: 800;
}

#foot .sub .row form button::after,
#foot .sub .row form input[type="button"]::after {
  display: block;
  content: attr(title);
  font-weight: 800;
  height: 1px;
  color: transparent;
  overflow: hidden;
  visibility: hidden;
  margin-bottom: -1px;
}

#foot .sub .row form button > span::after,
#foot .sub .row form input[type="button"] > span::after {
  display: block;
  content: attr(title);
  font-weight: 800;
  height: 1px;
  color: transparent;
  overflow: hidden;
  visibility: hidden;
  margin-bottom: -1px;
}

#foot .bottom {
  background-color: #e9e9ea;
}

#foot .bottom .row {
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  padding-top: 60px;
  padding-bottom: 60px;
}

#foot .bottom .row > div {
  -webkit-box-flex: 0;
  -moz-flex: 0 0 25%;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  font-size: 0.8666666667em;
}

#foot .bottom .row > div h3 {
  font-size: 0.8666666667em;
  font-weight: 600;
  margin-bottom: 1em;
}

#foot .bottom .row > div b {
  font-weight: 600;
}

#foot .bottom .row > div a {
  color: #231f20;
  text-decoration: none;
}

#foot .bottom .row > div a:hover {
  text-decoration: underline;
}

#foot .bottom .row > div.contact b {
  padding-right: 3px;
}

#foot .bottom .row > div.contact a:last-child {
  display: block;
  padding-left: 18px;
  margin-top: 4px;
}

#foot .bottom .row > div.hours h3:not(:first-child) {
  margin-top: 1em;
}

#foot .bottom .row > div.hours a {
  display: inline-block;
  height: 27px;
  width: 27px;
  margin-right: 8px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

#foot .bottom .row > div.hours a.facebook {
  background-image: url(graphics/facebook.png);
  background-image: url(graphics/facebook.svg);
}

#foot .bottom .row > div.hours a.email {
  background-image: url(graphics/email.png);
  background-image: url(graphics/email.svg);
}

#foot .bottom .row > div.legal {
  padding-right: 20px;
}

#foot .bottom .row > div.legal span {
  display: block;
  margin-bottom: 1em;
}

#foot .bottom .row > div.terms {
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
}

#foot .bottom .row > div.terms > p {
  -webkit-box-flex: 1;
  -moz-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  display: block;
  margin: 0 0 20px;
  padding: 0;
}

/* #Homepage */
#banner {
  display: block;
  width: 100vw;
  height: 650px;
  position: relative;
}

#banner .bg {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(195, 0, 47, 0.1);
  overflow: hidden;
  z-index: 0;
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  align-items: center;
}

#banner .bg img {
  -webkit-box-flex: 1;
  -moz-flex: 1 1 100%;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  min-height: 100%;
  height: auto;
}

#banner .box {
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

#banner .box #product-slider {
  min-height: 0;
  height: 75%;
}

#banner .box #product-slider .row {
  -webkit-box-flex: 1;
  -moz-flex: 1 1 100%;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  display: block;
  height: 100%;
  position: relative;
}

#banner .box #product-slider .row .template {
  display: block;
  width: calc(100% - 320px);
  height: 70%;
  margin: 60px 160px;
  background-color: rgba(195, 0, 47, 0.7);
  padding: 50px 45px;
}

#banner .box #product-slider .row .template .inner {
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid white;
  position: relative;
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
}

#banner .box #product-slider .row .template .inner .spacer {
  -webkit-box-flex: 0;
  -moz-flex: 0 0 70%;
  -ms-flex: 0 0 70%;
  flex: 0 0 70%;
  -webkit-box-flex: 0;
  -moz-flex: 0 0 calc(40% + 200px);
  -ms-flex: 0 0 calc(40% + 200px);
  flex: 0 0 calc(40% + 200px);
  display: block;
}

#banner .box #product-slider .row .template .inner .navibox {
  -webkit-box-flex: 1;
  -moz-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  display: block;
  position: relative;
}

#banner .box #product-slider .row .template .inner .navibox .navi {
  display: block;
  width: 140px;
  height: 40px;
  position: absolute;
  left: 0;
  top: 150px;
  border-left: 1px solid white;
}

#banner .box #product-slider .row .template .inner .navibox .navi a.slide_nav {
  height: 37px;
  width: 37px;
  background-image: url(graphics/slide_nav_prev_w.svg);
  left: 40px;
  top: 4px;
}

#banner .box #product-slider .row .template .inner .navibox .navi a.slide_nav.next {
  background-image: url(graphics/slide_nav_next_w.svg);
  left: auto;
  right: 0;
}

#banner .box #product-slider #product-slide {
  width: 100%;
  height: 100%;
  top: 0;
}

#banner .box #product-slider #product-slide .product {
  height: 100%;
  padding-top: 65px;
  padding-bottom: 65px;
}

#banner .box #product-slider #product-slide .product .image {
  -webkit-box-flex: 0;
  -moz-flex: 0 0 40%;
  -ms-flex: 0 0 40%;
  flex: 0 0 40%;
  display: block;
  text-align: center;
  overflow: visible;
  margin: 0;
  max-width: 650px;
}

#banner .box #product-slider #product-slide .product .image img {
  margin: -75px auto 0;
}

#banner .box #product-slider #product-slide .product .content {
  -webkit-box-flex: 0;
  -moz-flex: 0 0 60%;
  -ms-flex: 0 0 60%;
  flex: 0 0 60%;
  display: block;
  color: white;
  padding: 90px 45px;
}

#banner .box #product-slider #product-slide .product .content h2 {
  font-size: 2em;
  font-weight: 600;
  text-transform: uppercase;
}

#banner .box #product-slider #product-slide .product .content h3 {
  font-size: 2em;
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 35px;
}

#banner .box #product-slider #product-slide .product .content a.more {
  display: block;
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1em;
  font-weight: 600;
  text-align: center;
  width: 130px;
}

#banner .box #product-slider #product-slide .product .content a.more:hover {
  font-weight: 800;
}

#banner .box #product-slider #product-slide .product .content a.more::after {
  display: block;
  content: attr(title);
  font-weight: 800;
  height: 1px;
  color: transparent;
  overflow: hidden;
  visibility: hidden;
  margin-bottom: -1px;
}

#banner .box #product-slider #product-slide .product .content a.more > span::after {
  display: block;
  content: attr(title);
  font-weight: 800;
  height: 1px;
  color: transparent;
  overflow: hidden;
  visibility: hidden;
  margin-bottom: -1px;
}

#product-slider {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  min-height: 850px;
}

#product-slider > .row {
  position: relative;
}

#product-slider .template {
  position: absolute;
  left: 0;
  top: 0;
}

#product-slider .template a.slide_nav {
  display: block;
  position: absolute;
  top: 45%;
  left: 20px;
  height: 51px;
  width: 51px;
  background-image: url(graphics/slide_nav_prev.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 2;
}

#product-slider .template a.slide_nav.next {
  left: auto;
  right: 20px;
  background-image: url(graphics/slide_nav_next.svg);
}

#product-slider .template .product .content .title {
  border-left: 1px solid #c3002f;
  border-right: 1px solid #c3002f;
}

#product-slider .template .product .content .atts {
  border-right: 1px solid #c3002f;
}

#product-slider .template .product .content .atts span.attr-title {
  visibility: visible;
}

#product-slider .template .product .content .button {
  border: 1px solid #231f20;
}

#product-slider .template .product .content .button:before {
  display: block;
  content: "";
  height: 1px;
  width: 133px;
  background-color: #231f20;
  position: absolute;
  top: 50%;
  right: 20px;
}

#product-slider .template .product .content .button:after {
  display: block;
  content: "";
  height: 90px;
  width: 1px;
  background-color: #231f20;
  position: absolute;
  left: 50%;
  top: 15px;
}

#product-slider #product-slide {
  list-style: none;
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  position: absolute;
  left: 0;
  -webkit-transition: left 0.8s;
  transition: left 0.8s;
  -webkit-transition-timing-function: cubic-bezier(0, 0.1, 0, 1);
          transition-timing-function: cubic-bezier(0, 0.1, 0, 1);
}

#product-slider .product {
  -webkit-box-flex: 0;
  -moz-flex: 0 0 100vw;
  -ms-flex: 0 0 100vw;
  flex: 0 0 100vw;
  display: block;
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  padding-top: 80px;
  padding-bottom: 80px;
  height: 100%;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

#product-slider .product .image {
  -webkit-box-flex: 0;
  -moz-flex: 0 0 310px;
  -ms-flex: 0 0 310px;
  flex: 0 0 310px;
  display: block;
  width: 310px;
  height: auto;
  min-height: 350px;
  background-position: center 35%;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 20px;
}

#product-slider .product .content {
  -webkit-box-flex: 1;
  -moz-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  display: block;
  max-width: 650px;
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#product-slider .product .content .title,
#product-slider .product .content .atts {
  -webkit-box-flex: 1;
  -moz-flex: 1 1 60%;
  -ms-flex: 1 1 60%;
  flex: 1 1 60%;
  max-width: 60%;
  display: block;
  height: 80px;
  padding: 10px 20px;
}

#product-slider .product .content .title h2,
#product-slider .product .content .title .attr-title,
#product-slider .product .content .atts h2,
#product-slider .product .content .atts .attr-title {
  display: block;
  color: #c3002f;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 1em;
  margin-bottom: 1rem;
  -webkit-transition: -webkit-transform 0.9s;
  transition: -webkit-transform 0.9s;
  transition: transform 0.9s;
  transition: transform 0.9s, -webkit-transform 0.9s;
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

#product-slider .product .content .title .attr-title,
#product-slider .product .content .atts .attr-title {
  visibility: hidden;
}

#product-slider .product .content .title p,
#product-slider .product .content .atts p {
  display: block;
  text-transform: uppercase;
  font-size: 1.4em;
  font-weight: 400;
  -webkit-transition: -webkit-transform 1s;
  transition: -webkit-transform 1s;
  transition: transform 1s;
  transition: transform 1s, -webkit-transform 1s;
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}

#product-slider .product .content .atts {
  -webkit-box-flex: 1;
  -moz-flex: 1 1 40%;
  -ms-flex: 1 1 40%;
  flex: 1 1 40%;
  max-width: 40%;
  display: block;
  border-left: 0;
}

#product-slider .product .content .atts p {
  -webkit-transition-delay: 0.22s;
          transition-delay: 0.22s;
}

#product-slider .product .content .body {
  -webkit-box-flex: 1;
  -moz-flex: 1 1 100%;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  display: block;
  padding: 40px 20px 100px;
  height: 490px;
}

#product-slider .product .content .body h2 {
  color: #c3002f;
  font-weight: 300;
  font-size: 1.6em;
  margin-bottom: 1rem;
  line-height: 1.6em;
}

#product-slider .product .content .body p {
  line-height: 1.6em;
}

#product-slider .product .content .button {
  -webkit-box-flex: 0;
  -moz-flex: 0 0 350px;
  -ms-flex: 0 0 350px;
  flex: 0 0 350px;
  display: block;
  height: 125px;
  position: relative;
}

#product-slider .product .content .button .gallery {
  width: 50%;
  text-align: center;
}

#product-slider .product .content .button .gallery img {
  width: 77px;
  height: auto;
  margin: auto;
  margin-top: -75px;
}

#product-slider .product .content .button .form {
  display: block;
  width: 50%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
}

#product-slider .product .content .button .form a.button {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  font-size: 1em;
  text-transform: uppercase;
  color: #c3002f;
  background-color: transparent;
  border: 0;
  height: auto;
  min-height: 40px;
  margin: 10px 29px;
  padding: 10px 20px;
  font-family: "Open Sans", sans-serif;
  position: relative;
  will-change: contents;
}

#product-slider .product .content .button .form a.button.buy {
  cursor: pointer;
  font-weight: 600;
  text-align: center;
}

#product-slider .product .content .button .form a.button.buy:hover {
  font-weight: 800;
}

#product-slider .product .content .button .form a.button.buy::after {
  display: block;
  content: attr(title);
  font-weight: 800;
  height: 1px;
  color: transparent;
  overflow: hidden;
  visibility: hidden;
  margin-bottom: -1px;
}

#product-slider .product .content .button .form a.button.buy > span::after {
  display: block;
  content: attr(title);
  font-weight: 800;
  height: 1px;
  color: transparent;
  overflow: hidden;
  visibility: hidden;
  margin-bottom: -1px;
}

#product-slider .product .content .button .form a.button.buy span.buy {
  position: absolute;
  top: 12px;
  width: 100%;
  text-align: center;
  opacity: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-weight: 700;
  left: 0;
}

#product-slider .product .content .button .form a.button.buy span.loading,
#product-slider .product .content .button .form a.button.buy span.add {
  position: absolute;
  top: 12px;
  width: 100%;
  text-align: center;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-weight: 700;
  left: 0;
}

#product-slider .product .content .button .form a.button.buy span.loading > span {
  display: inline-block;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

#product-slider .product .content .button .form a.button.buy span.loading > span:nth-child(1) {
  -webkit-animation-name: loading1;
          animation-name: loading1;
}

#product-slider .product .content .button .form a.button.buy span.loading > span:nth-child(2) {
  -webkit-animation-name: loading2;
          animation-name: loading2;
}

#product-slider .product .content .button .form a.button.buy span.loading > span:nth-child(3) {
  -webkit-animation-name: loading3;
          animation-name: loading3;
}

#product-slider .product .content .button .form a.button.buy span.add:before {
  display: block;
  content: "+ 1";
  color: white;
  font-weight: 300;
  text-align: center;
  line-height: 30px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: black;
  position: absolute;
  right: 50%;
  top: -8px;
  z-index: 10;
  opacity: 0;
}

#product-slider .product .content .button .form a.button.buy.disable span.price {
  opacity: 0;
}

#product-slider .product .content .button .form a.button.buy.disable span.buy {
  opacity: 0;
}

#product-slider .product .content .button .form a.button.buy.disable span.loading {
  opacity: 1;
}

#product-slider .product .content .button .form a.button.buy.added span.price,
#product-slider .product .content .button .form a.button.buy.added span.buy,
#product-slider .product .content .button .form a.button.buy.added span.loading, #product-slider .product .content .button .form a.button.buy.added.disable span.price,
#product-slider .product .content .button .form a.button.buy.added.disable span.buy,
#product-slider .product .content .button .form a.button.buy.added.disable span.loading {
  opacity: 0;
}

#product-slider .product .content .button .form a.button.buy.added span.add, #product-slider .product .content .button .form a.button.buy.added.disable span.add {
  opacity: 1;
}

#product-slider .product .content .button .form a.button.buy.added span.add::before, #product-slider .product .content .button .form a.button.buy.added.disable span.add::before {
  -webkit-animation-name: addedtocart;
          animation-name: addedtocart;
  -webkit-animation-duration: 1.4s;
          animation-duration: 1.4s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
}

#product-slider .product .content .button .form a.button.buy.added:hover span.price, #product-slider .product .content .button .form a.button.buy.added.disable:hover span.price {
  opacity: 0;
}

#product-slider .product .content .button .form a.button.buy.added:hover span.buy, #product-slider .product .content .button .form a.button.buy.added.disable:hover span.buy {
  opacity: 0;
}

#product-slider .product .content .button .form a.button.price {
  font-size: 2em;
  font-weight: 300;
  margin: 10px 20px 0;
}

#product-slider .product .content .button .form a.button.price span.price {
  font-size: 30px;
  font-weight: 300;
  opacity: 1;
}

@-webkit-keyframes addedtocart {
  0% {
    height: 0;
    width: 0;
    opacity: 1;
    right: 50%;
    top: 0;
    line-height: 30px;
  }
  6% {
    opacity: 1;
  }
  25% {
    height: 40px;
    width: 40px;
    right: calc(50% - 20px);
    top: -10px;
    line-height: 40px;
  }
  50% {
    height: 30px;
    width: 30px;
    right: calc(50% - 15px);
    line-height: 30px;
  }
  51% {
    right: calc(50% - 15px);
    top: -8px;
    opacity: 1;
  }
  100% {
    right: -100px;
    top: -400px;
    opacity: 0;
  }
}

@keyframes addedtocart {
  0% {
    height: 0;
    width: 0;
    opacity: 1;
    right: 50%;
    top: 0;
    line-height: 30px;
  }
  6% {
    opacity: 1;
  }
  25% {
    height: 40px;
    width: 40px;
    right: calc(50% - 20px);
    top: -10px;
    line-height: 40px;
  }
  50% {
    height: 30px;
    width: 30px;
    right: calc(50% - 15px);
    line-height: 30px;
  }
  51% {
    right: calc(50% - 15px);
    top: -8px;
    opacity: 1;
  }
  100% {
    right: -100px;
    top: -400px;
    opacity: 0;
  }
}

#product-slider .product.animate .content h2 {
  -webkit-transition: -webkit-transform 0.8s;
  transition: -webkit-transform 0.8s;
  transition: transform 0.8s;
  transition: transform 0.8s, -webkit-transform 0.8s;
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
}

#product-slider .product.animate .content .title p,
#product-slider .product.animate .content h3 {
  -webkit-transition: -webkit-transform 0.9s;
  transition: -webkit-transform 0.9s;
  transition: transform 0.9s;
  transition: transform 0.9s, -webkit-transform 0.9s;
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
}

#product-slider .product.animate .content .atts p,
#product-slider .product.animate .content a.more {
  -webkit-transition: -webkit-transform 1s;
  transition: -webkit-transform 1s;
  transition: transform 1s;
  transition: transform 1s, -webkit-transform 1s;
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
}

#product-slider .product.animate .content .body h2 {
  -webkit-transition: -webkit-transform 1.1s;
  transition: -webkit-transform 1.1s;
  transition: transform 1.1s;
  transition: transform 1.1s, -webkit-transform 1.1s;
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
}

#product-slider .product.animate .content .body p {
  -webkit-transition: -webkit-transform 1.2s;
  transition: -webkit-transform 1.2s;
  transition: transform 1.2s;
  transition: transform 1.2s, -webkit-transform 1.2s;
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
}

#product-slider .product.animate .content .button .gallery img {
  -webkit-transition: -webkit-transform 1.3s;
  transition: -webkit-transform 1.3s;
  transition: transform 1.3s;
  transition: transform 1.3s, -webkit-transform 1.3s;
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
}

#product-slider .product.animate .content .button form button.price {
  -webkit-transition: -webkit-transform 1.4s;
  transition: -webkit-transform 1.4s;
  transition: transform 1.4s;
  transition: transform 1.4s, -webkit-transform 1.4s;
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
}

#product-slider .product.animate .content .button form button.buy {
  -webkit-transition: -webkit-transform 1.5s;
  transition: -webkit-transform 1.5s;
  transition: transform 1.5s;
  transition: transform 1.5s, -webkit-transform 1.5s;
  -webkit-transition-delay: 0.16s;
          transition-delay: 0.16s;
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
}

#product-slider .product.animate.left .content h2 {
  -webkit-transform: translateX(-7vw);
          transform: translateX(-7vw);
}

#product-slider .product.animate.left .content .title p,
#product-slider .product.animate.left .content h3 {
  -webkit-transform: translateX(-7.2vw);
          transform: translateX(-7.2vw);
}

#product-slider .product.animate.left .content .atts p,
#product-slider .product.animate.left .content a.more {
  -webkit-transform: translateX(-7.2vw);
          transform: translateX(-7.2vw);
}

#product-slider .product.animate.left .content .body h2 {
  -webkit-transform: translateX(-7.3vw);
          transform: translateX(-7.3vw);
}

#product-slider .product.animate.left .content .body p {
  -webkit-transform: translateX(-7.5vw);
          transform: translateX(-7.5vw);
}

#product-slider .product.animate.left .content .button .gallery img {
  -webkit-transform: translateX(-7.4vw);
          transform: translateX(-7.4vw);
}

#product-slider .product.animate.left .content .button form button.price {
  -webkit-transform: translateX(-7.4vw);
          transform: translateX(-7.4vw);
}

#product-slider .product.animate.left .content .button form button.buy {
  -webkit-transform: translateX(-7.5vw);
          transform: translateX(-7.5vw);
}

#product-slider .product.animate.right .content h2 {
  -webkit-transform: translateX(7vw);
          transform: translateX(7vw);
}

#product-slider .product.animate.right .content .title p,
#product-slider .product.animate.right .content h3 {
  -webkit-transform: translateX(7.2vw);
          transform: translateX(7.2vw);
}

#product-slider .product.animate.right .content .atts p,
#product-slider .product.animate.right .content a.more {
  -webkit-transform: translateX(7.2vw);
          transform: translateX(7.2vw);
}

#product-slider .product.animate.right .content .body h2 {
  -webkit-transform: translateX(7.3vw);
          transform: translateX(7.3vw);
}

#product-slider .product.animate.right .content .body p {
  -webkit-transform: translateX(7.5vw);
          transform: translateX(7.5vw);
}

#product-slider .product.animate.right .content .button .gallery img {
  -webkit-transform: translateX(7.4vw);
          transform: translateX(7.4vw);
}

#product-slider .product.animate.right .content .button form button.price {
  -webkit-transform: translateX(7.4vw);
          transform: translateX(7.4vw);
}

#product-slider .product.animate.right .content .button form button.buy {
  -webkit-transform: translateX(7.5vw);
          transform: translateX(7.5vw);
}

#call_to_actions {
  padding: 45px 0;
}

#call_to_actions .cta {
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  align-items: center;
  padding: 45px 0;
}

#call_to_actions .cta .image {
  -webkit-box-flex: 0;
  -moz-flex: 0 1 50%;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
  background-size: cover;
  height: 305px;
  margin-right: 25px;
}

#call_to_actions .cta .content {
  -webkit-box-flex: 0;
  -moz-flex: 0 1 50%;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
  padding: 0px;
}

#call_to_actions .cta .content h3 {
  font-size: 2em;
  font-weight: 300;
  margin-bottom: 1rem;
}

#call_to_actions .cta .content .buttons {
  display: inline-block;
  border: 1px solid #231f20;
}

#call_to_actions .cta .content .buttons a {
  display: inline-block;
  font-size: 1em;
  color: #c3002f;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 20px;
  margin: 10px 0;
  vertical-align: top;
  font-weight: 600;
  text-align: center;
}

#call_to_actions .cta .content .buttons a:hover {
  font-weight: 800;
}

#call_to_actions .cta .content .buttons a::after {
  display: block;
  content: attr(title);
  font-weight: 800;
  height: 1px;
  color: transparent;
  overflow: hidden;
  visibility: hidden;
  margin-bottom: -1px;
}

#call_to_actions .cta .content .buttons a > span::after {
  display: block;
  content: attr(title);
  font-weight: 800;
  height: 1px;
  color: transparent;
  overflow: hidden;
  visibility: hidden;
  margin-bottom: -1px;
}

#call_to_actions .cta .content .buttons a:first-child {
  border-right: 1px solid #231f20;
}

#call_to_actions .cta:nth-child(2n) .image {
  -webkit-box-ordinal-group: 3;
  -moz-order: 2;
  -ms-flex-order: 2;
  order: 2;
  margin-right: 0px;
  margin-left: 25px;
}

#call_to_actions .cta:nth-child(2n) .content {
  -webkit-box-ordinal-group: 2;
  -moz-order: 1;
  -ms-flex-order: 1;
  order: 1;
}

#feature_wines .row,
#wines .row {
  padding-top: 45px;
  padding-bottom: 45px;
}

#feature_wines h3,
#wines h3 {
  color: white;
  font-weight: 300;
  font-size: 2em;
}

#feature_wines .winesintro h1,
#wines .winesintro h1 {
  font-size: 2.4em;
  font-weight: 600;
  margin-bottom: 1rem;
}

#feature_wines .winesintro h1.product_title, #feature_wines .winesintro h1.entry-title,
#wines .winesintro h1.product_title,
#wines .winesintro h1.entry-title {
  color: #c3002f;
  font-size: 2.8em;
}

#feature_wines .winesintro h2,
#wines .winesintro h2 {
  font-size: 2em;
  font-weight: 300;
  margin-bottom: 1rem;
}

#feature_wines .winesintro h3,
#wines .winesintro h3 {
  color: #c3002f;
  font-weight: 300;
  font-size: 1.6em;
  margin-bottom: 1rem;
}

#feature_wines .winesintro p,
#wines .winesintro p {
  font-size: 1.1em;
  line-height: 1.4em;
  margin-bottom: 1rem;
}

#feature_wines .winesintro a,
#wines .winesintro a {
  color: #c3002f;
  text-decoration: none;
}

#feature_wines .winesintro a:hover,
#wines .winesintro a:hover {
  text-decoration: underline;
}

#feature_wines .winesintro a img,
#wines .winesintro a img {
  border: 0;
}

#feature_wines .winesintro ul,
#feature_wines .winesintro ol,
#wines .winesintro ul,
#wines .winesintro ol {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

#feature_wines .winesintro ul li,
#feature_wines .winesintro ol li,
#wines .winesintro ul li,
#wines .winesintro ol li {
  margin-bottom: 0.3333333333em;
}

#feature_wines .wines,
#wines .wines {
  display: block;
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: distribute;
  -moz-justify-content: space-around;
  justify-content: space-around;
  padding-top: 0;
}

#feature_wines .wines .feature_wine,
#wines .wines .feature_wine {
  display: block;
  -webkit-box-flex: 0;
  -moz-flex: 0 0 390px;
  -ms-flex: 0 0 390px;
  flex: 0 0 390px;
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  background-color: #e9e9ea;
  margin: 45px 20px;
}

#feature_wines .wines .feature_wine .image,
#wines .wines .feature_wine .image {
  -webkit-box-flex: 0;
  -moz-flex: 0 0 90px;
  -ms-flex: 0 0 90px;
  flex: 0 0 90px;
  position: relative;
}

#feature_wines .wines .feature_wine .image img,
#wines .wines .feature_wine .image img {
  left: 50%;
  top: 50%;
  margin: -105px auto auto -35px;
  position: absolute;
  width: 70px;
  height: auto;
}

#feature_wines .wines .feature_wine .content,
#wines .wines .feature_wine .content {
  display: block;
  -webkit-box-flex: 0;
  -moz-flex: 0 0 300px;
  -ms-flex: 0 0 300px;
  flex: 0 0 300px;
  padding: 20px 20px 20px 10px;
  max-width: 300px;
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -moz-justify-content: center;
  justify-content: center;
}

#feature_wines .wines .feature_wine .content a.title,
#wines .wines .feature_wine .content a.title {
  -webkit-box-flex: 0;
  -moz-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  display: block;
  color: #231f20;
  text-decoration: none;
  border-bottom: 1px solid #231f20;
}

#feature_wines .wines .feature_wine .content a.title h2,
#wines .wines .feature_wine .content a.title h2 {
  color: #231f20;
  font-size: 1em;
  font-weight: 800;
  text-transform: uppercase;
}

#feature_wines .wines .feature_wine .content a.title h3,
#wines .wines .feature_wine .content a.title h3 {
  color: #231f20;
  font-size: 1.4em;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

#feature_wines .wines .feature_wine .content .buttons,
#wines .wines .feature_wine .content .buttons {
  -webkit-box-flex: 0;
  -moz-flex: 0 0 44px;
  -ms-flex: 0 0 44px;
  flex: 0 0 44px;
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  /*.price{
						@include flex(0 0 50%);
						display: block;
						color: $red;
						font-size: em(30);
						font-weight: 400;
						padding: 4px 0;
						margin: 8px 0 0;
						text-align: center;
					}*/
}

#feature_wines .wines .feature_wine .content .buttons a,
#wines .wines .feature_wine .content .buttons a {
  -webkit-box-flex: 0;
  -moz-flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  display: block;
  color: #c3002f;
  font-size: 1em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  padding: 8px 0;
  margin: 10px 0 0;
  position: relative;
  font-weight: 600;
  text-align: center;
}

#feature_wines .wines .feature_wine .content .buttons a:hover,
#wines .wines .feature_wine .content .buttons a:hover {
  font-weight: 800;
}

#feature_wines .wines .feature_wine .content .buttons a::after,
#wines .wines .feature_wine .content .buttons a::after {
  display: block;
  content: attr(title);
  font-weight: 800;
  height: 1px;
  color: transparent;
  overflow: hidden;
  visibility: hidden;
  margin-bottom: -1px;
}

#feature_wines .wines .feature_wine .content .buttons a > span::after,
#wines .wines .feature_wine .content .buttons a > span::after {
  display: block;
  content: attr(title);
  font-weight: 800;
  height: 1px;
  color: transparent;
  overflow: hidden;
  visibility: hidden;
  margin-bottom: -1px;
}

#feature_wines .wines .feature_wine .content .buttons a.buy,
#wines .wines .feature_wine .content .buttons a.buy {
  border-left: 1px solid #231f20;
}

#feature_wines .wines .feature_wine .content .buttons a.price,
#wines .wines .feature_wine .content .buttons a.price {
  border-left: 0;
  border-right: 1px solid #231f20;
  padding: 0px 0;
  margin: 8px 0 0;
}

#feature_wines .wines .feature_wine .content .buttons a.price span.price,
#wines .wines .feature_wine .content .buttons a.price span.price {
  font-size: 30px;
  font-weight: 300;
  opacity: 1;
}

#feature_wines .wines .feature_wine .content .buttons a.price span.buy,
#feature_wines .wines .feature_wine .content .buttons a.price span.loading,
#feature_wines .wines .feature_wine .content .buttons a.price span.add,
#wines .wines .feature_wine .content .buttons a.price span.buy,
#wines .wines .feature_wine .content .buttons a.price span.loading,
#wines .wines .feature_wine .content .buttons a.price span.add {
  position: absolute;
  top: 12px;
  width: 100%;
  text-align: center;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-weight: 700;
}

#feature_wines .wines .feature_wine .content .buttons a.price span.loading > span,
#wines .wines .feature_wine .content .buttons a.price span.loading > span {
  display: inline-block;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

#feature_wines .wines .feature_wine .content .buttons a.price span.loading > span:nth-child(1),
#wines .wines .feature_wine .content .buttons a.price span.loading > span:nth-child(1) {
  -webkit-animation-name: loading1;
          animation-name: loading1;
}

#feature_wines .wines .feature_wine .content .buttons a.price span.loading > span:nth-child(2),
#wines .wines .feature_wine .content .buttons a.price span.loading > span:nth-child(2) {
  -webkit-animation-name: loading2;
          animation-name: loading2;
}

#feature_wines .wines .feature_wine .content .buttons a.price span.loading > span:nth-child(3),
#wines .wines .feature_wine .content .buttons a.price span.loading > span:nth-child(3) {
  -webkit-animation-name: loading3;
          animation-name: loading3;
}

#feature_wines .wines .feature_wine .content .buttons a.price span.add:before,
#wines .wines .feature_wine .content .buttons a.price span.add:before {
  display: block;
  content: "+ 1";
  color: white;
  font-weight: 300;
  text-align: center;
  line-height: 30px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: black;
  position: absolute;
  right: 50%;
  top: -8px;
  z-index: 10;
  opacity: 0;
}

#feature_wines .wines .feature_wine .content .buttons a.price:hover span.price, #feature_wines .wines .feature_wine .content .buttons a.price.hover span.price,
#wines .wines .feature_wine .content .buttons a.price:hover span.price,
#wines .wines .feature_wine .content .buttons a.price.hover span.price {
  opacity: 0;
}

#feature_wines .wines .feature_wine .content .buttons a.price:hover span.buy, #feature_wines .wines .feature_wine .content .buttons a.price.hover span.buy,
#wines .wines .feature_wine .content .buttons a.price:hover span.buy,
#wines .wines .feature_wine .content .buttons a.price.hover span.buy {
  opacity: 1;
}

#feature_wines .wines .feature_wine .content .buttons a.price.disable span.price,
#wines .wines .feature_wine .content .buttons a.price.disable span.price {
  opacity: 0;
}

#feature_wines .wines .feature_wine .content .buttons a.price.disable span.buy,
#wines .wines .feature_wine .content .buttons a.price.disable span.buy {
  opacity: 0;
}

#feature_wines .wines .feature_wine .content .buttons a.price.disable span.loading,
#wines .wines .feature_wine .content .buttons a.price.disable span.loading {
  opacity: 1;
}

#feature_wines .wines .feature_wine .content .buttons a.price.added span.price,
#feature_wines .wines .feature_wine .content .buttons a.price.added span.buy,
#feature_wines .wines .feature_wine .content .buttons a.price.added span.loading, #feature_wines .wines .feature_wine .content .buttons a.price.added.disable span.price,
#feature_wines .wines .feature_wine .content .buttons a.price.added.disable span.buy,
#feature_wines .wines .feature_wine .content .buttons a.price.added.disable span.loading,
#wines .wines .feature_wine .content .buttons a.price.added span.price,
#wines .wines .feature_wine .content .buttons a.price.added span.buy,
#wines .wines .feature_wine .content .buttons a.price.added span.loading,
#wines .wines .feature_wine .content .buttons a.price.added.disable span.price,
#wines .wines .feature_wine .content .buttons a.price.added.disable span.buy,
#wines .wines .feature_wine .content .buttons a.price.added.disable span.loading {
  opacity: 0;
}

#feature_wines .wines .feature_wine .content .buttons a.price.added span.add, #feature_wines .wines .feature_wine .content .buttons a.price.added.disable span.add,
#wines .wines .feature_wine .content .buttons a.price.added span.add,
#wines .wines .feature_wine .content .buttons a.price.added.disable span.add {
  opacity: 1;
}

#feature_wines .wines .feature_wine .content .buttons a.price.added span.add::before, #feature_wines .wines .feature_wine .content .buttons a.price.added.disable span.add::before,
#wines .wines .feature_wine .content .buttons a.price.added span.add::before,
#wines .wines .feature_wine .content .buttons a.price.added.disable span.add::before {
  -webkit-animation-name: addedtocart;
          animation-name: addedtocart;
  -webkit-animation-duration: 1.4s;
          animation-duration: 1.4s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
}

#feature_wines .wines .feature_wine .content .buttons a.price.added:hover span.price, #feature_wines .wines .feature_wine .content .buttons a.price.added.disable:hover span.price,
#wines .wines .feature_wine .content .buttons a.price.added:hover span.price,
#wines .wines .feature_wine .content .buttons a.price.added.disable:hover span.price {
  opacity: 0;
}

#feature_wines .wines .feature_wine .content .buttons a.price.added:hover span.buy, #feature_wines .wines .feature_wine .content .buttons a.price.added.disable:hover span.buy,
#wines .wines .feature_wine .content .buttons a.price.added:hover span.buy,
#wines .wines .feature_wine .content .buttons a.price.added.disable:hover span.buy {
  opacity: 0;
}

.musuemwines {
  background-color: rgba(0, 0, 0, 0.85);
}

.musuemwines .winesintro h1 {
  text-align: center;
  color: #d28b3d;
  margin-top: 3rem;
}

.musuemwines .wines .feature_wine .content .buttons a {
  color: #d28b3d !important;
}

#main .winesintro h1 {
  margin-top: 3rem;
}

#product-slider.museum-wine .product .image {
  display: none !important;
}

#product-slider.museum-wine .product .content {
  max-width: 980px;
}

#product-slider.museum-wine .product .content .body {
  height: 350px;
}

@-webkit-keyframes loading1 {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  20% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
  40% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes loading1 {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  20% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
  40% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@-webkit-keyframes loading2 {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  20% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  40% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
  60% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes loading2 {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  20% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  40% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
  60% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@-webkit-keyframes loading3 {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  40% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  60% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
  80% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes loading3 {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  40% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  60% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
  80% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

#feature_wines {
  background-color: #93b7be;
}

#feature_wines .wines .feature_wine {
  background-color: white;
}

#product-slider #the-diplomat-cpn-item .content .title {
  padding: 10px;
}

#product-slider #the-diplomat-cpn-item .content .title p {
  margin-top: -8px;
  font-size: 1.3em;
}

.banner {
  height: 30vw;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  align-items: center;
}

.banner > .pagebanner {
  -webkit-box-flex: 0;
  -moz-flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  display: block;
  height: 100%;
  background-size: cover;
  background-position: center center;
}

.banner.news {
  height: 30vw;
  max-height: 500px;
  position: relative;
  text-align: center;
  margin-bottom: 130px;
  overflow: visible;
}

.banner.news .bg {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  align-items: center;
}

.banner.news .bg img {
  -webkit-box-flex: 0;
  -moz-flex: 0 0 110%;
  -ms-flex: 0 0 110%;
  flex: 0 0 110%;
  display: block;
  width: 110%;
  height: auto;
  -webkit-filter: blur(33px);
  -moz-filter: blur(33px);
  -o-filter: blur(33px);
  -ms-filter: blur(33px);
  filter: progid:DXImageTransform.Microsoft.Blur(PixelRadius='33');
  filter: blur(33px);
}

.banner.news .img {
  -webkit-box-flex: 0;
  -moz-flex: 0 0 640px;
  -ms-flex: 0 0 640px;
  flex: 0 0 640px;
  display: inline-block;
  width: 640px;
  height: 440px;
  overflow: hidden;
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  align-items: center;
  position: relative;
  top: 7vw;
  left: 0;
}

.banner.news .img img {
  -webkit-box-flex: 0;
  -moz-flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  display: inline-block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  position: relative;
}

#main #loop {
  padding: 40px 0;
}

#main #loop h1 {
  font-size: 2.4em;
  font-weight: 600;
  margin-bottom: 1rem;
}

#main #loop h1.product_title, #main #loop h1.entry-title {
  color: #c3002f;
  font-size: 2.8em;
}

#main #loop h2 {
  font-size: 2em;
  font-weight: 300;
  margin-bottom: 1rem;
}

#main #loop h3 {
  color: #c3002f;
  font-weight: 300;
  font-size: 1.6em;
  margin-bottom: 1rem;
}

#main #loop p {
  font-size: 1.2em;
  line-height: 1.6em;
  margin-bottom: 1rem;
}

#main #loop a {
  color: #c3002f;
  text-decoration: none;
}

#main #loop a:hover {
  text-decoration: underline;
}

#main #loop a img {
  border: 0;
}

#main #loop ul,
#main #loop ol {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

#main #loop ul li,
#main #loop ol li {
  margin-bottom: 0.3333333333em;
  font-size: 1.2em;
  line-height: 1.6em;
}

#main #loop .page img {
  max-width: 100%;
  height: auto;
  margin: 20px auto;
}

#main #loop blockquote {
  font-size: 1.6em;
  font-weight: 600;
  padding: 20px 40px;
}

#main #loop .meta {
  display: block;
  margin-bottom: 1rem;
}

#main #loop article {
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  align-items: center;
  margin-bottom: 30px;
}

#main #loop article .image {
  -webkit-box-flex: 0;
  -moz-flex: 0 0 40%;
  -ms-flex: 0 0 40%;
  flex: 0 0 40%;
  display: block;
  margin-right: 25px;
}

#main #loop article .image img {
  width: 100%;
  height: auto;
}

#main #loop article .content {
  -webkit-box-flex: 1;
  -moz-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

#main #loop form label,
#main #loop .nf-form-cont label {
  color: #231f20;
  font-weight: 300;
}

#main #loop form input[type="text"],
#main #loop form input[type="tel"],
#main #loop form input[type="email"],
#main #loop form textarea,
#main #loop form input[type="password"],
#main #loop form input[type="number"],
#main #loop .nf-form-cont input[type="text"],
#main #loop .nf-form-cont input[type="tel"],
#main #loop .nf-form-cont input[type="email"],
#main #loop .nf-form-cont textarea,
#main #loop .nf-form-cont input[type="password"],
#main #loop .nf-form-cont input[type="number"] {
  border: 1px solid #e9e9ea;
  padding: 10px;
  font-size: 15px;
  border-radius: 0px;
  font-family: "Open Sans", sans-serif;
}

#main #loop form .select2-container--default .select2-selection--single,
#main #loop .nf-form-cont .select2-container--default .select2-selection--single {
  border: 1px solid #e9e9ea;
  border-radius: 0px;
}

#main #loop form .nf-form-fields-required,
#main #loop .nf-form-cont .nf-form-fields-required {
  margin-bottom: 1rem;
}

#main #loop form .required,
#main #loop form .ninja-forms-req-symbol,
#main #loop .nf-form-cont .required,
#main #loop .nf-form-cont .ninja-forms-req-symbol {
  color: #c3002f;
  text-decoration: none;
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #c3002f;
  text-indent: 100px;
  overflow: hidden;
  position: relative;
  top: -3px;
}

#main #loop form .nf-error-msg,
#main #loop .nf-form-cont .nf-error-msg {
  color: #c3002f;
}

#main #loop form fieldset,
#main #loop .nf-form-cont fieldset {
  border: 1px solid #c3002f;
  padding: 10px;
  margin-bottom: 1rem;
}

#main #loop form #payment,
#main #loop .nf-form-cont #payment {
  background-color: #93b7be;
}

#main #loop form #payment ul,
#main #loop .nf-form-cont #payment ul {
  margin: 0;
}

#main #loop form #payment div.payment_box,
#main #loop .nf-form-cont #payment div.payment_box {
  background-color: #e9e9ea;
}

#main #loop form #payment div.payment_box::before,
#main #loop .nf-form-cont #payment div.payment_box::before {
  border: 1em solid #e9e9ea;
  border-right-color: transparent;
  border-left-color: transparent;
  border-top-color: transparent;
}

#main #loop form input[type="button"],
#main #loop .nf-form-cont input[type="button"] {
  appearance: normal;
  -webkit-appearance: none;
  -ms-appearance: none;
  -moz-appearance: none;
  display: block;
  text-align: center;
  border: 0;
  margin-bottom: 1em;
  font-size: 1.25em;
  font-weight: 800;
  padding: 1em;
  background-color: #c3002f;
  color: white;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-family: "Open Sans", sans-serif;
}

#main #loop form input[type="button"]:hover,
#main #loop .nf-form-cont input[type="button"]:hover {
  background-color: #900023 !important;
}

#main #loop .woocommerce-message {
  border-top-color: #93b7be;
}

#main #loop .woocommerce-message a:not(.button) {
  color: #c3002f;
}

#main #loop .woocommerce-message:before {
  color: #93b7be;
}

#main #loop .woocommerce-error {
  border-color: #c3002f;
  margin-left: 0;
  color: #231f20;
}

#main #loop .woocommerce a.remove {
  color: #c3002f !important;
}

#main #loop .woocommerce a.remove:hover {
  background-color: #c3002f !important;
  color: white !important;
}

#main #loop .woocommerce table.shop_table {
  border-radius: 0px !important;
  border-color: #e9e9ea !important;
}

#main #loop .woocommerce table.shop_table * {
  border-color: #e9e9ea !important;
  font-weight: 300 !important;
}

#main #loop .woocommerce table.shop_table .product-name a {
  color: #c3002f;
  text-decoration: none;
}

#main #loop .woocommerce #respond input#submit,
#main #loop .woocommerce a.button,
#main #loop .woocommerce button.button,
#main #loop .woocommerce input.button {
  -webkit-appearance: none;
  border-radius: 0;
}

#main #loop .woocommerce #respond input#submit.alt,
#main #loop .woocommerce a.button.alt,
#main #loop .woocommerce button.button.alt,
#main #loop .woocommerce input.button.alt {
  background-color: #c3002f !important;
  color: white;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

#main #loop .woocommerce #respond input#submit.alt:hover,
#main #loop .woocommerce a.button.alt:hover,
#main #loop .woocommerce button.button.alt:hover,
#main #loop .woocommerce input.button.alt:hover {
  background-color: #900023 !important;
}

#main #loop .woocommerce .cart-collaterals .cart_totals h2,
#main #loop .woocommerce .woocommerce-page .cart-collaterals .cart_totals h2 {
  font-weight: 800 !important;
}

#main #loop .woocommerce .cart-collaterals .cart_totals a.checkout-button,
#main #loop .woocommerce .woocommerce-page .cart-collaterals .cart_totals a.checkout-button {
  font-weight: 800 !important;
}

@media screen and (max-width: 1300px) {
  .row,
  .padded-row {
    padding-left: 20px;
    padding-right: 20px;
  }
  .row.indent,
  .padded-row.indent {
    padding-left: 80px;
    padding-right: 80px;
  }
  #head .row #logo {
    -webkit-box-flex: 0;
    -moz-flex: 0 0 220px;
    -ms-flex: 0 0 220px;
    flex: 0 0 220px;
    margin-right: 30px;
  }
  #head .row #nav ul li:not(#menu-item-25) a span.word-our, #head .row #nav ul li:not(#menu-item-25) a span.word-038, #head .row #nav ul li:not(#menu-item-25) a span.word-stories, #head .row #nav ul li:not(#menu-item-25) a span.word-us {
    display: none;
  }
  #banner .box #product-slider .row .template {
    width: calc(100% - 160px);
    margin: 60px 80px;
  }
}

@media screen and (max-width: 1000px) {
  .row,
  .padded-row {
    padding-left: 15px;
    padding-right: 15px;
  }
  .row.indent,
  .padded-row.indent {
    padding-left: 50px;
    padding-right: 50px;
  }
  #head .row {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #head .row #logo {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    background-size: 260px auto;
    background-position: center bottom;
    height: 50px;
  }
  #banner .box #product-slider .row .template {
    width: calc(100% - 100px);
    margin: 60px 50px;
  }
  #banner .box #product-slider .row .template .inner .spacer {
    -ms-flex-preferred-size: calc(36% + 200px);
    flex-basis: calc(36% + 200px);
  }
  #banner .box #product-slider #product-slide .product .image {
    -ms-flex-preferred-size: 36%;
    flex-basis: 36%;
  }
  #banner .box #product-slider #product-slide .product .content {
    -ms-flex-preferred-size: 64%;
    flex-basis: 64%;
  }
  .banner.news {
    margin-bottom: 10vw;
    height: 55vw;
  }
  .banner.news .img {
    max-width: 85vw;
    top: 7vw;
    height: auto;
  }
  #call_to_actions .cta .content h3 {
    font-size: 1.7em;
  }
  #call_to_actions > div > div:nth-child(2) > div.content > div > a:nth-child(2) {
    max-width: 155px;
    text-align: center;
    padding: 4px 20px;
  }
  #product-slider .template a.slide_nav {
    height: 41px;
    width: 41px;
    left: 5px;
  }
  #product-slider .template a.slide_nav.next {
    right: 5px;
  }
  #product-slider .product .image {
    -ms-flex-preferred-size: 190px;
    flex-basis: 190px;
    width: 190px;
    background-size: 90%;
    background-position: center center;
  }
  #product-slider .product .content .body {
    height: 530px;
  }
}

@media screen and (max-width: 767px) {
  #menu {
    display: none;
  }
  #product-slider {
    min-height: 1000px;
  }
  #product-slider .product {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #product-slider .product .image {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    background-size: contain;
    min-height: 190px;
    margin: 0 0 20px 0;
  }
  #product-slider .product .content .body {
    height: auto;
  }
  #product-slider .product .content div.button {
    border: 1px solid #231f20;
  }
  #product-slider .product .content div.button:before {
    display: block;
    content: "";
    height: 1px;
    width: 133px;
    background-color: #231f20;
    position: absolute;
    top: 50%;
    right: 20px;
  }
  #product-slider .product .content div.button::after {
    display: block;
    content: "";
    height: 90px;
    width: 1px;
    background-color: #231f20;
    position: absolute;
    left: 50%;
    top: 15px;
  }
  #product-slider .template .product .content .button {
    display: none;
  }
  #banner .box #product-slider #product-slide .product {
    -ms-flex-wrap: none;
    flex-wrap: nowrap;
  }
  #foot .sub .row form {
    border: 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #foot .sub .row form h3 {
    -webkit-box-flex: 0;
    -moz-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
  #foot .sub .row form input {
    -webkit-box-flex: 0;
    -moz-flex: 0 1 73%;
    -ms-flex: 0 1 73%;
    flex: 0 1 73%;
    margin-right: 10px;
    border: 1px solid black;
  }
  #foot .sub .row form button {
    border: 1px solid #c3002f;
  }
  #foot .bottom .row {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #foot .bottom .row > div {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 700px) {
  #head .row {
    -ms-flex-wrap: none;
    flex-wrap: nowrap;
  }
  #head .row #logo {
    -ms-flex-preferred-size: 260px;
    flex-basis: 260px;
    background-size: contain;
    background-position: left center;
    height: 80px;
    margin: 0;
    max-width: 260px;
  }
  #head .row #nav {
    position: relative;
    -webkit-box-flex: 1;
    -moz-flex: 1 0 25%;
    -ms-flex: 1 0 25%;
    flex: 1 0 25%;
    width: 15%;
  }
  #head .row #nav .menubox {
    position: absolute;
    right: 0;
    top: 30px;
    display: block;
    width: 24px;
    height: 24px;
  }
  #head .row #nav .menubox span {
    display: block;
    width: 24px;
    height: 1px;
    background-color: #231f20;
    position: absolute;
    left: 0;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  #head .row #nav .menubox span.l1 {
    top: 0;
  }
  #head .row #nav .menubox span.l2 {
    top: 10px;
  }
  #head .row #nav .menubox span.l3 {
    top: 19px;
  }
  #head .row #nav #menu {
    display: block;
    -moz-appearance: none;
         appearance: none;
    -webkit-appearance: none;
    width: 40px;
    height: 40px;
    position: absolute;
    right: 0;
    top: 30px;
    outline: 0px;
    opacity: 0;
  }
  #head .row #nav #menu:checked ~ .menubox span.l1 {
    -webkit-transform: rotate(315deg);
            transform: rotate(315deg);
    top: 10px;
  }
  #head .row #nav #menu:checked ~ .menubox span.l2 {
    width: 0;
    left: 12px;
  }
  #head .row #nav #menu:checked ~ .menubox span.l3 {
    -webkit-transform: rotate(-315deg);
            transform: rotate(-315deg);
    top: 10px;
  }
  #head .row #nav #menu:checked ~ .menu-main-menu-container {
    height: 510px;
  }
  #head .row #nav ul {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    position: absolute;
    width: 100vw;
    left: 0;
    top: 0px;
  }
  #head .row #nav ul li {
    border-top: 1px solid #e9e9ea;
  }
  #head .row #nav ul li a {
    height: auto;
    padding: 15px 0;
  }
  #head .row #nav ul li a span.word-our, #head .row #nav ul li a span.word-038, #head .row #nav ul li a span.word-stories, #head .row #nav ul li a span.word-us {
    display: inline-block !important;
    padding-right: 4px;
  }
  #head .row #nav .menu-main-menu-container {
    position: relative;
    -webkit-transition: height 0.4s;
    transition: height 0.4s;
    height: 0;
    overflow: hidden;
    left: -275px;
    top: 100px;
    width: 100vw;
  }
  #head .row .cart {
    position: fixed;
    top: auto;
    right: 20px;
    bottom: 20px;
  }
  #head .row .cart.fixed {
    top: auto;
    bottom: 20px;
    right: 20px;
  }
  #banner {
    height: 530px;
  }
  #banner .box #product-slider .row .template {
    margin: 60px 0;
    width: 100%;
    padding: 50px 10px;
  }
  #banner .box #product-slider .row .template .inner {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -moz-justify-content: center;
    justify-content: center;
  }
  #banner .box #product-slider .row .template .inner .spacer {
    -ms-flex-preferred-size: calc(25% + 125px);
    flex-basis: calc(25% + 125px);
  }
  #banner .box #product-slider .row .template .inner .navibox {
    max-width: 175px;
  }
  #banner .box #product-slider .row .template .inner .navibox .navi {
    width: 120px;
    top: 110px;
  }
  #banner .box #product-slider .row .template .inner .navibox .navi a.slide_nav {
    height: 30px;
    width: 30px;
  }
  #banner .box #product-slider #product-slide .product {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -moz-justify-content: center;
    justify-content: center;
  }
  #banner .box #product-slider #product-slide .product .image {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
  }
  #banner .box #product-slider #product-slide .product .image img {
    width: 85px;
    height: auto;
    margin: 0;
  }
  #banner .box #product-slider #product-slide .product .content {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 300px;
    font-size: 0.7em;
    padding: 75px 10px;
  }
  #banner .box #product-slider #product-slide .product .content a.more {
    width: 100px;
  }
  #product-slider {
    min-height: 1150px;
  }
  #product-slider .product .content .body {
    padding: 20px 0 130px;
  }
  #call_to_actions .row .cta {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #call_to_actions .row .cta .image {
    -webkit-box-flex: 0;
    -moz-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    -webkit-box-ordinal-group: 2;
    -moz-order: 1;
    -ms-flex-order: 1;
    order: 1;
    width: 100%;
    height: 45vw;
    margin: 0 0 20px 0 !important;
  }
  #call_to_actions .row .cta .content {
    -webkit-box-flex: 0;
    -moz-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    -webkit-box-ordinal-group: 3;
    -moz-order: 2;
    -ms-flex-order: 2;
    order: 2;
  }
  #call_to_actions .row .cta .content .buttons {
    font-size: 0.8em;
  }
  #feature_wines h3,
  #wines h3 {
    font-size: 1.7em;
  }
}

@media screen and (max-width: 600px) {
  #product-slider {
    min-height: 1200px;
  }
  #product-slider .template {
    padding-left: 20px;
    padding-right: 20px;
  }
  #product-slider .template a.slide_nav {
    top: 36%;
    left: 20px;
  }
  #product-slider .template a.slide_nav.next {
    right: 20px;
  }
  #product-slider .template .product {
    padding-left: 0px;
    padding-right: 0px;
  }
  #product-slider .template .product .content .title {
    border-left: 0;
    border-right: 0;
    border-bottom: 1px solid #c3002f;
    height: 105px;
  }
  #product-slider .template .product .content .atts {
    border-left: 0;
    border-right: 0;
  }
  #product-slider .template .product .content .atts span.attr-title {
    position: relative;
    top: 5px;
  }
  #product-slider .product {
    padding-left: 20px;
    padding-right: 20px;
  }
  #product-slider .product .image {
    height: 190px;
    min-height: 190px;
    margin-bottom: 60px;
  }
  #product-slider .product .content {
    height: calc(100% - 210px);
  }
  #product-slider .product .content .title,
  #product-slider .product .content .atts {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
    margin-bottom: 10px;
    padding: 10px 0;
  }
  #product-slider .product .content .title {
    height: 105px;
  }
  #product-slider .product .content .title p {
    margin-top: -10px;
  }
  #product-slider.museum-wine .template a.slide_nav {
    top: 3%;
  }
  #main #loop .row.indent {
    padding-left: 30px;
    padding-right: 30px;
  }
  #main #loop article {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 50px;
  }
  #main #loop article .image {
    -webkit-box-flex: 0;
    -moz-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    height: 55vw;
    text-align: center;
    margin: 0 0 20px 0;
  }
  #main #loop article .image img {
    height: 100%;
    width: auto;
    margin: auto;
  }
  #foot .sub .row form {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -moz-justify-content: center;
    justify-content: center;
    border: 0;
  }
  #foot .sub .row form h3 {
    font-size: 1.4em;
    color: #c3002f;
    font-weight: 300;
    margin-bottom: 1rem;
    text-align: center;
  }
  #foot .sub .row form .nf-form-content nf-fields-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border: 0;
  }
  #foot .sub .row form .nf-form-content nf-fields-wrap nf-field {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
  #foot .sub .row form input {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    font-size: 1em;
    margin-bottom: 10px;
    margin-right: 0;
  }
  #foot .sub .row form button {
    -ms-flex-preferred-size: 200px;
    flex-basis: 200px;
    padding: 20px;
  }
  #foot .bottom .row > div {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
  #foot .bottom .row > div.terms {
    margin-bottom: 0;
  }
  #main #loop .woocommerce-message .wc-forward {
    float: none;
    display: block;
    margin-bottom: 10px;
  }
  #main #loop form.checkout {
    margin: 0 -20px;
  }
  .banner.news {
    margin-bottom: 15vw;
    height: 60vw;
  }
  .banner.news .img {
    top: 10vw;
  }
}

@media screen and (max-width: 425px) {
  #head .row #logo {
    -ms-flex-preferred-size: 62vw;
    flex-basis: 62vw;
  }
  #head .row #nav .menu-main-menu-container {
    left: calc(-62vw - 15px);
  }
  #banner .box #product-slider .row .template .inner .navibox .navi {
    width: 85px;
  }
  #banner .box #product-slider .row .template .inner .navibox .navi a.slide_nav {
    left: 15px;
  }
  #banner .box #product-slider #product-slide .product .content a.more {
    font-size: 12px;
  }
  #product-slider {
    min-height: 1300px;
  }
  #product-slider .product .content .body h2 {
    font-size: 1.4em;
  }
  #product-slider .product .content div.button {
    -ms-flex-preferred-size: 280px;
    flex-basis: 280px;
  }
  #product-slider .product .content div.button .gallery {
    white-space: 30%;
  }
  #product-slider .product .content div.button div.form {
    width: 55%;
  }
  #product-slider .product .content div.button div.form a.button.price {
    margin: 10px 10px 0;
  }
  #product-slider .product .content div.button div.form a.button.buy {
    margin: 10px 19px;
  }
  #product-slider .product .content div.button::after {
    left: 45%;
  }
  #product-slider .product .content div.button:before {
    width: 120px;
    right: 20px;
  }
  #feature_wines .wines .feature_wine,
  #wines .wines .feature_wine {
    -webkit-box-flex: 0;
    -moz-flex: 0 0 305px;
    -ms-flex: 0 0 305px;
    flex: 0 0 305px;
  }
  #feature_wines .wines .feature_wine .content,
  #wines .wines .feature_wine .content {
    -ms-flex-preferred-size: 220px;
    flex-basis: 220px;
  }
  #feature_wines .wines .feature_wine .content a.title h2,
  #wines .wines .feature_wine .content a.title h2 {
    font-size: 0.9em;
  }
  #feature_wines .wines .feature_wine .content a.title h3,
  #wines .wines .feature_wine .content a.title h3 {
    font-size: 1.2em;
  }
  #feature_wines .wines .feature_wine .content .buttons a,
  #wines .wines .feature_wine .content .buttons a {
    font-size: 0.8em;
  }
  #feature_wines .wines .feature_wine .content .buttons a.price span.price,
  #wines .wines .feature_wine .content .buttons a.price span.price {
    font-size: 25px;
  }
}

@media screen and (max-width: 370px) {
  #banner .box #product-slider #product-slide .product .content {
    font-size: 0.63em;
  }
  #banner .box #product-slider #product-slide .product .content h3 {
    height: 34px;
  }
  #product-slider {
    min-height: 1300px;
  }
  #product-slider .product .content .button {
    -ms-flex-preferred-size: 230px;
    flex-basis: 230px;
  }
  #product-slider .product .content .button:before {
    width: 85px;
    right: 20px;
  }
  #product-slider .product .content .button form button.price {
    margin: 4px 0px 0;
  }
  #product-slider .product .content .button form button.buy {
    margin: 10px 9px;
  }
  #product-slider #the-diplomat-cpn-item .content .title {
    padding: 10px 4px;
  }
  #product-slider #the-diplomat-cpn-item .content .title p {
    font-size: 1.1em;
  }
  #call_to_actions .cta .content .buttons a {
    padding: 4vw;
  }
}

@media screen and (max-width: 340px) {
  .row.indent,
  .padded-row.indent {
    padding-left: 30px;
    padding-right: 30px;
  }
  #banner .bg img {
    -webkit-box-flex: 0;
    -moz-flex: 0 0 1600px;
    -ms-flex: 0 0 1600px;
    flex: 0 0 1600px;
    width: 1600px;
  }
  #product-slider {
    min-height: 1380px;
  }
}

/* Slider */
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: black;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

.slick-lightbox .slick-loading .slick-list {
  background-color: transparent;
}

.slick-lightbox .slick-prev {
  left: 15px;
}

.slick-lightbox .slick-next {
  right: 15px;
}

.slick-lightbox-hide {
  opacity: 0;
}

.slick-lightbox-hide.slick-lightbox-ie {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
}

.slick-lightbox-hide-init {
  position: absolute;
  top: -9999px;
  opacity: 0;
}

.slick-lightbox-hide-init.slick-lightbox-ie {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
}

.slick-lightbox-inner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slick-lightbox-slick-item {
  text-align: center;
  overflow: hidden;
}

.slick-lightbox-slick-item:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}

.slick-caption-bottom .slick-lightbox-slick-item .slick-lightbox-slick-item .slick-lightbox-slick-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
  width: 100%;
  margin-bottom: 20px;
}

.slick-caption-dynamic .slick-lightbox-slick-item .slick-lightbox-slick-item .slick-lightbox-slick-caption {
  display: block;
  text-align: center;
}

.slick-lightbox-slick-item-inner {
  display: inline-block;
  vertical-align: middle;
  max-width: 90%;
  max-height: 90%;
}

.slick-lightbox-slick-img {
  margin: 0 auto;
  display: block;
  max-width: 90%;
  max-height: 90%;
}

.slick-lightbox-slick-caption {
  margin: 10px 0 0;
  color: white;
}

.slick-lightbox-close {
  position: absolute;
  top: 15px;
  right: 15px;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0;
  font-size: 0;
  cursor: pointer;
  background: transparent;
  color: transparent;
  padding: 0;
  border: none;
}

.slick-lightbox-close:focus {
  outline: none;
}

.slick-lightbox-close:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.85;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "×";
}

.home-banner .item:not(.is-animated) .text-box h1,
.home-banner .item:not(.is-animated) .text-box h2,
.home-banner .item:not(.is-animated) .text-box p,
.home-banner .item:not(.is-animated) .text-box .button-box, .home-intro .container.wowo .text-box, .home-ex-cta .container.wowo h2,
.home-ex-cta .container.wowo .button-box, .home-cta .container.wowo h2,
.home-cta .container.wowo .button-box, .home-banner .item:not(.is-animated) .image-box span, .home-cta .container.wowo .image-box span, .home-intro .container.wowo .image-box span, .home-ex-cta .container.wowo .image-box img, .home-cta .container.wowo .image-box::after {
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.home-banner .item:not(.is-animated) .text-box h1,
.home-banner .item:not(.is-animated) .text-box h2,
.home-banner .item:not(.is-animated) .text-box p,
.home-banner .item:not(.is-animated) .text-box .button-box, .home-intro .container.wowo .text-box, .home-ex-cta .container.wowo h2,
.home-ex-cta .container.wowo .button-box, .home-cta .container.wowo h2,
.home-cta .container.wowo .button-box {
  -webkit-transform: translate3d(0, 30px, 0);
          transform: translate3d(0, 30px, 0);
}

.home-banner .item:not(.is-animated) .image-box span, .home-cta .container.wowo .image-box span {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.home-banner .item.is-animated .text-box h1,
.home-banner .item.is-animated .text-box h2,
.home-banner .item.is-animated .text-box p,
.home-banner .item.is-animated .text-box .button-box, .home-intro .container.wowo.animated .text-box, .home-ex-cta .container.wowo.animated h2,
.home-ex-cta .container.wowo.animated .button-box, .home-cta .container.wowo.animated h2,
.home-cta .container.wowo.animated .button-box, .home-banner .item.is-animated .image-box span, .home-cta .container.wowo.animated .image-box span, .home-intro .container.wowo.animated .image-box span, .home-ex-cta .container.wowo.animated .image-box img, .home-cta .container.wowo.animated .image-box::after {
  opacity: 1;
  -webkit-transition: opacity 1s ease-in-out, -webkit-transform 1s cubic-bezier(0, 1, 0.75, 1);
  transition: opacity 1s ease-in-out, -webkit-transform 1s cubic-bezier(0, 1, 0.75, 1);
  transition: opacity 1s ease-in-out, transform 1s cubic-bezier(0, 1, 0.75, 1);
  transition: opacity 1s ease-in-out, transform 1s cubic-bezier(0, 1, 0.75, 1), -webkit-transform 1s cubic-bezier(0, 1, 0.75, 1);
}

.home-banner .item.is-animated .text-box h1,
.home-banner .item.is-animated .text-box h2,
.home-banner .item.is-animated .text-box p,
.home-banner .item.is-animated .text-box .button-box, .home-intro .container.wowo.animated .text-box, .home-ex-cta .container.wowo.animated h2,
.home-ex-cta .container.wowo.animated .button-box, .home-cta .container.wowo.animated h2,
.home-cta .container.wowo.animated .button-box {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.home-banner .item.is-animated .image-box span, .home-cta .container.wowo.animated .image-box span {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

body.home .container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 1130px;
}

@media screen and (max-width: 1299.8px) {
  body.home .container {
    padding-left: 80px;
    padding-right: 80px;
    max-width: 100%;
  }
}

@media screen and (max-width: 1199.8px) {
  body.home .container {
    padding-left: 50px;
    padding-right: 50px;
  }
}

@media screen and (max-width: 767.8px) {
  body.home .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media screen and (max-width: 374.8px) {
  body.home .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

body.home span[style*="background-image"] {
  display: block;
  width: 100%;
  background: center no-repeat;
  background-size: cover;
}

body.home h1,
body.home h2,
body.home h3,
body.home h4,
body.home h5,
body.home h6 {
  margin-top: 0;
}

.home-banner {
  position: relative;
  margin-bottom: 7.5px;
}

.home-banner .image-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.home-banner .image-bg span {
  height: 100%;
}

.home-banner .image-bg::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.6);
}

.home-banner .container {
  position: relative;
  z-index: 2;
  padding-top: 75px;
  padding-bottom: 78px;
}

@media screen and (max-width: 991.8px) {
  .home-banner .container {
    padding-top: 60px;
    padding-bottom: 80px;
  }
}

@media screen and (max-width: 767.8px) {
  .home-banner .container {
    padding-top: 40px;
  }
}

@media screen and (max-width: 575.8px) {
  .home-banner .container {
    padding-bottom: 60px;
  }
}

.home-banner .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.home-banner .slick-track .slick-slide {
  height: auto;
}

.home-banner .slick-dots {
  position: absolute;
  bottom: -46px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

@media screen and (max-width: 575.8px) {
  .home-banner .slick-dots {
    bottom: -34px;
  }
}

.home-banner .slick-dots li {
  cursor: pointer;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #fff;
}

@media screen and (max-width: 575.8px) {
  .home-banner .slick-dots li {
    width: 12px;
    height: 12px;
  }
}

.home-banner .slick-dots li:not(:last-child) {
  margin-right: 32px;
}

@media screen and (max-width: 575.8px) {
  .home-banner .slick-dots li:not(:last-child) {
    margin-right: 20px;
  }
}

.home-banner .slick-dots li.slick-active, .home-banner .slick-dots li:hover {
  background-color: #c3002f;
}

.home-banner .slick-dots li button {
  display: none;
}

.home-banner .item {
  position: relative;
}

@media screen and (max-width: 767.8px) {
  .home-banner .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding-bottom: 28px;
  }
}

.home-banner .item.is-animated .text-box h1 {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.home-banner .item.is-animated .text-box h2 {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.home-banner .item.is-animated .text-box p {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.home-banner .item.is-animated .text-box .button-box {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}

.home-banner .text-box {
  max-width: 549px;
  min-height: calc(100% - 140px);
  padding: 28px 28px 20px 35px;
  background-color: #fff;
  z-index: 3;
}

@media screen and (max-width: 991.8px) {
  .home-banner .text-box {
    padding-bottom: 40px;
  }
}

@media screen and (min-width: 768px) {
  .home-banner .text-box {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

@media screen and (max-width: 1199.8px) {
  .home-banner .text-box {
    max-width: 50%;
    min-height: calc(100% - 140px);
  }
}

@media screen and (max-width: 767.8px) {
  .home-banner .text-box {
    max-width: calc(100% - 60px);
    min-height: 0;
    padding: 20px 20px;
    padding-bottom: 40px;
    position: relative;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-top: -40px;
    margin-left: auto;
    margin-right: auto;
  }
}

.home-banner .text-box h1 {
  font-size: 36px;
  line-height: 44px;
  font-weight: 600;
  margin-bottom: 14px;
  color: #c3002f;
}

@media screen and (max-width: 1199.8px) {
  .home-banner .text-box h1 {
    font-size: 32px;
    line-height: 1.2222222222;
    margin-bottom: 12px;
  }
}

@media screen and (max-width: 767.8px) {
  .home-banner .text-box h1 {
    font-size: 28px;
  }
}

.home-banner .text-box h2 {
  font-size: 27px;
  line-height: 24px;
  color: black;
  margin-bottom: 20px;
  margin-top: 0;
}

@media screen and (max-width: 1199.8px) {
  .home-banner .text-box h2 {
    font-size: 24px;
    line-height: 1;
    margin-bottom: 12px;
  }
}

@media screen and (max-width: 767.8px) {
  .home-banner .text-box h2 {
    font-size: 20px;
  }
}

.home-banner .text-box p {
  font-size: 18px;
  line-height: 24px;
}

@media screen and (max-width: 767.8px) {
  .home-banner .text-box p {
    font-size: 16px;
    line-height: 20px;
  }
}

@media screen and (max-width: 575.8px) {
  .home-banner .text-box p {
    font-size: 14px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
  }
}

.home-banner .text-box .button-box {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
}

.home-banner .text-box .button {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
  border: 1px solid #c3002f;
  background-color: #fff;
  text-decoration: none;
  color: #c3002f;
  font-size: 15px;
  line-height: 20px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  padding: 10px 32px;
  min-width: 177px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-weight: 800;
}

@media screen and (min-width: 1200px) {
  .home-banner .text-box .button {
    min-height: 66px;
  }
}

@media screen and (max-width: 991.8px) {
  .home-banner .text-box .button {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    min-height: 50px;
  }
}

@media screen and (max-width: 767.8px) {
  .home-banner .text-box .button {
    font-size: 12px;
    padding: 10px 20px;
  }
}

.home-banner .text-box .button:hover {
  background-color: #c3002f;
  color: #fff;
}

.home-banner .image-box {
  width: 100%;
  max-width: 640px;
  margin-left: auto;
  overflow: hidden;
}

@media screen and (max-width: 1199.8px) {
  .home-banner .image-box {
    max-width: 60%;
  }
}

@media screen and (max-width: 767.8px) {
  .home-banner .image-box {
    max-width: 100%;
  }
}

.home-banner .image-box span {
  padding-top: 69.84375%;
  min-height: 100%;
}

@media screen and (max-width: 1199.8px) {
  .home-banner .image-box span {
    min-height: 447px;
  }
}

@media screen and (max-width: 991.8px) {
  .home-banner .image-box span {
    min-height: 520px;
  }
}

@media screen and (max-width: 767.8px) {
  .home-banner .image-box span {
    min-height: 100%;
  }
}

@media screen and (max-width: 767.8px) {
  .home-banner .image-box span {
    min-height: 240px;
  }
}

.home-intro {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #efeff0;
}

@media screen and (max-width: 1199.8px) {
  .home-intro {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

@media screen and (max-width: 767.8px) {
  .home-intro {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.home-intro .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-left: 114px;
}

@media screen and (max-width: 991.8px) {
  .home-intro .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.home-intro .container.wowo.animated .text-box {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.home-intro .text-box {
  width: 100%;
  max-width: 434px;
  padding-top: 10px;
}

@media screen and (max-width: 1199.8px) {
  .home-intro .text-box {
    padding-top: 0;
    max-width: calc(50% - 40px);
  }
}

@media screen and (max-width: 991.8px) {
  .home-intro .text-box {
    max-width: 100%;
    padding-top: 40px;
  }
}

.home-intro b,
.home-intro strong {
  font-weight: 600;
}

.home-intro p {
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 16px;
}

@media screen and (max-width: 767.8px) {
  .home-intro p {
    font-size: 16px;
    line-height: 20px;
  }
}

@media screen and (max-width: 374.8px) {
  .home-intro p {
    font-size: 14px;
  }
}

.home-intro p:last-child {
  margin-bottom: 0;
}

.home-intro a {
  color: #c3002f;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.home-intro a:hover {
  color: inherit;
}

.home-intro .image-box {
  width: 100%;
  overflow: hidden;
  max-width: 552px;
}

@media screen and (max-width: 1199.8px) {
  .home-intro .image-box {
    max-width: 50%;
  }
}

@media screen and (max-width: 991.8px) {
  .home-intro .image-box {
    max-width: 100%;
  }
}

.home-intro .image-box span {
  padding-top: 69.9275362319%;
}

@media screen and (max-width: 1199.8px) {
  .home-intro .image-box span {
    min-height: 100%;
  }
}

.home-ex-cta {
  margin-top: 125px;
  margin-bottom: 94px;
}

@media screen and (max-width: 1199.8px) {
  .home-ex-cta {
    margin-top: 100px;
    margin-bottom: 80px;
  }
}

@media screen and (max-width: 767.8px) {
  .home-ex-cta {
    margin-top: 80px;
    margin-bottom: 60px;
  }
}

.home-ex-cta.is-reversed {
  margin-bottom: 131px;
  margin-top: 94px;
}

@media screen and (max-width: 1199.8px) {
  .home-ex-cta.is-reversed {
    margin-bottom: 100px;
    margin-top: 80px;
  }
}

@media screen and (max-width: 767.8px) {
  .home-ex-cta.is-reversed {
    margin-bottom: 80px;
    margin-top: 60px;
  }
}

@media screen and (min-width: 992px) {
  .home-ex-cta.is-reversed .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

@media screen and (min-width: 992px) {
  .home-ex-cta.is-reversed .text-box {
    margin-left: 0;
    margin-right: auto;
  }
}

@media screen and (min-width: 1200px) {
  .home-ex-cta.is-reversed .text-box {
    padding-top: 15px;
    margin-right: 40px;
  }
}

@media screen and (min-width: 1300px) {
  .home-ex-cta.is-reversed .text-box {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

@media screen and (min-width: 1600px) {
  .home-ex-cta.is-reversed .buttons > a:last-child {
    min-width: 237px;
  }
}

@media screen and (min-width: 1200px) {
  .home-ex-cta.is-reversed h2 {
    margin-bottom: 44px;
  }
}

.home-ex-cta .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  padding-left: 114px;
  padding-right: 114px;
}

@media screen and (max-width: 1299.8px) {
  .home-ex-cta .container {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (max-width: 1199.8px) {
  .home-ex-cta .container {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (max-width: 991.8px) {
  .home-ex-cta .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.home-ex-cta .container.wowo.animated h2 {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.home-ex-cta .container.wowo.animated .button-box {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.home-ex-cta .text-box {
  width: 100%;
  max-width: 442px;
  margin-left: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 7px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and (max-width: 1299.8px) {
  .home-ex-cta .text-box {
    margin-left: 40px;
  }
}

@media screen and (max-width: 1199.8px) {
  .home-ex-cta .text-box {
    padding-bottom: 0;
    margin-left: 0;
    max-width: calc(50% - 40px);
  }
}

@media screen and (max-width: 991.8px) {
  .home-ex-cta .text-box {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
}

.home-ex-cta h2 {
  font-size: 30px;
  line-height: 42px;
  font-weight: 300;
  margin-bottom: 26px;
}

@media screen and (max-width: 1199.8px) {
  .home-ex-cta h2 {
    font-size: 26px;
    line-height: 1.4;
  }
}

.home-ex-cta .image-box {
  width: 100%;
  max-width: 438px;
}

@media screen and (max-width: 1199.8px) {
  .home-ex-cta .image-box {
    max-width: 50%;
  }
}

@media screen and (max-width: 991.8px) {
  .home-ex-cta .image-box {
    max-width: 100%;
  }
}

.home-ex-cta .image-box img {
  overflow: hidden;
  display: block;
  width: 100%;
  height: auto;
}

.home-ex-cta .buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  border: 1px solid #231f20;
}

.home-ex-cta .buttons a {
  display: block;
  position: relative;
  text-decoration: none;
  font-size: 1em;
  color: #c3002f;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 20px;
  margin: 10px 0;
  font-weight: 600;
  text-align: center;
  min-width: 173px;
}

@media screen and (max-width: 767.8px) {
  .home-ex-cta .buttons a {
    font-size: 12px;
    padding: 10px 20px;
    min-width: 160px;
  }
}

.home-ex-cta .buttons a:hover {
  font-weight: 800;
}

.home-ex-cta .buttons a + a::before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #231f20;
  pointer-events: none;
}

.home-cta {
  margin-top: 90px;
  margin-bottom: 90px;
}

.home-cta .container {
  position: relative;
}

.home-cta .container.wowo.animated h2 {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.home-cta .container.wowo.animated .button-box {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.home-cta .image-box {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.home-cta .image-box span {
  height: 100%;
}

.home-cta .image-box::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.3);
}

.home-cta .text-box {
  position: relative;
  z-index: 2;
  min-height: 425px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 50px;
}

.home-cta h2 {
  color: #fff;
  font-size: 36px;
  line-height: 44px;
  font-weight: 600;
  margin-bottom: 32px;
}

@media screen and (max-width: 1199.8px) {
  .home-cta h2 {
    font-size: 32px;
    line-height: 1.2222222222;
  }
}

.home-cta .button {
  border: 1px solid #fff;
  background-color: transparent;
  text-decoration: none;
  color: #fff;
  min-height: 66px;
  font-size: 15px;
  line-height: 20px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  padding: 10px 22px;
  min-width: 177px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-weight: 800;
}

@media screen and (max-width: 767.8px) {
  .home-cta .button {
    font-size: 12px;
    padding: 10px 20px;
    min-width: 160px;
    min-height: 50px;
  }
}

.home-cta .button:hover {
  background-color: #fff;
  color: #c3002f;
}
/*# sourceMappingURL=style.css.map */