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

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

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

/* ==================================================
    =SASS CSS
===================================================== */
/* ==================================================
    =Styles
===================================================== */
body {
  font: 100% Helvetica, sans-serif;
  color: #333;
  -webkit-text-size-adjust: none;
}

.dk-select,
.dk-select *,
.dk-select *:before,
.dk-select *:after,
.dk-select-multi,
.dk-select-multi *,
.dk-select-multi *:before,
.dk-select-multi *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.dk-select,
.dk-select-multi {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  line-height: 1.5em;
  width: 200px;
  cursor: pointer;
}

.dk-selected {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  background-color: white;
  border: 1px solid #CCCCCC;
  border-radius: 0.4em;
  padding: 0 1.5em 0 0.5em;
  text-overflow: ellipsis;
}

.dk-selected:before, .dk-selected:after {
  content: '';
  display: block;
  position: absolute;
  right: 0;
}

.dk-selected:before {
  top: 50%;
  border: solid transparent;
  border-width: 0.25em 0.25em 0;
  border-top-color: #CCCCCC;
  margin: -0.125em 0.5em 0 0;
}

.dk-selected:after {
  top: 0;
  height: 100%;
  border-left: 1px solid #CCCCCC;
  margin: 0 1.5em 0 0;
}

.dk-selected-disabled {
  color: #BBBBBB;
}

.dk-select .dk-select-options {
  position: absolute;
  display: none;
  left: 0;
  right: 0;
}

.dk-select-open-up .dk-select-options {
  border-radius: 0.4em 0.4em 0 0;
  margin-bottom: -1px;
  bottom: 100%;
}

.dk-select-open-down .dk-select-options {
  border-radius: 0 0 0.4em 0.4em;
  margin-top: -1px;
  top: 100%;
}

.dk-select-multi .dk-select-options {
  max-height: 10em;
}

.dk-select-options {
  background-color: white;
  border: 1px solid #CCCCCC;
  border-radius: 0.4em;
  list-style: none;
  margin: 0;
  max-height: 10.5em;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0.25em 0;
  width: auto;
  z-index: 100;
}

.dk-option-selected {
  background-color: #3297fd;
  color: #fff;
}

.dk-select-options-highlight .dk-option-selected {
  background-color: transparent;
  color: inherit;
}

.dk-option {
  padding: 0 0.5em;
}

.dk-select-options .dk-option-highlight {
  background-color: #3297fd;
  color: #fff;
}

.dk-select-options .dk-option-disabled {
  color: #BBBBBB;
  background-color: transparent;
}

.dk-select-options .dk-option-hidden {
  display: none;
}

.dk-optgroup {
  border: solid #CCCCCC;
  border-width: 1px 0;
  padding: 0.25em 0;
  margin-top: 0.25em;
}

.dk-optgroup + .dk-option {
  margin-top: 0.25em;
}

.dk-optgroup + .dk-optgroup {
  border-top-width: 0;
  margin-top: 0;
}

.dk-optgroup:nth-child(2) {
  padding-top: 0;
  border-top: none;
  margin-top: 0;
}

.dk-optgroup:last-child {
  border-bottom-width: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.dk-optgroup-disabled {
  opacity: 0.6;
  color: #BBBBBB;
  cursor: not-allowed;
}

.dk-optgroup-label {
  padding: 0 0.5em 0.25em;
  font-weight: bold;
  width: 100%;
}

.dk-optgroup-options {
  list-style: none;
  padding-left: 0;
}

.dk-optgroup-options li {
  padding-left: 1.2em;
}

.dk-select-open-up .dk-selected {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-color: #3297fd;
}

.dk-select-open-down .dk-selected {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-color: #3297fd;
}

.dk-select-open-up .dk-selected:before,
.dk-select-open-down .dk-selected:before {
  border-width: 0 0.25em 0.25em;
  border-bottom-color: #3297fd;
}

.dk-select-open-up .dk-selected:after,
.dk-select-open-down .dk-selected:after {
  border-left-color: #3297fd;
}

.dk-select-open-up .dk-select-options,
.dk-select-open-down .dk-select-options,
.dk-select-multi:focus .dk-select-options {
  display: block;
  border-color: #3297fd;
}

.dk-select-multi:hover,
.dk-select-multi:focus {
  outline: none;
}

.dk-selected:hover,
.dk-selected:focus {
  outline: none;
  border-color: #3297fd;
}

.dk-selected:hover:before,
.dk-selected:focus:before {
  border-top-color: #3297fd;
}

.dk-selected:hover:after,
.dk-selected:focus:after {
  border-left-color: #3297fd;
}

.dk-select-disabled {
  opacity: 0.6;
  color: #BBBBBB;
  cursor: not-allowed;
}

.dk-select-disabled .dk-selected:hover, .dk-select-disabled .dk-selected:focus {
  border-color: inherit;
}

.dk-select-disabled .dk-selected:hover:before, .dk-select-disabled .dk-selected:focus:before {
  border-top-color: inherit;
}

.dk-select-disabled .dk-selected:hover:after, .dk-select-disabled .dk-selected:focus:after {
  border-left-color: inherit;
}

select[data-dkcacheid] {
  display: none;
}

/* ==================================================
    =Mixins
===================================================== */
/* ==================================================
    =General classes for usage
===================================================== */
.left {
  text-align: left !important;
}

.center {
  text-align: center !important;
}

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

.alignleft {
  float: left;
}

.aligncenter {
  margin: 0 auto;
}

.alignright {
  float: right;
}

.show {
  display: block !important;
}

.hide {
  display: none !important;
}

.cf:before, .cf:after,
.container:before, .container:after, .widget:before, .widget:after, form ol > li:before, form ol > li:after {
  content: "";
  display: block;
  height: 0;
  visibility: hidden;
}

.cf:after, .clear,
.container:after, .widget:after, form ol > li:after {
  clear: both;
}

.cf, .container, .widget, form ol > li {
  zoom: 1;
}

/* Defined in html element when using rem unit */
html {
  font: normal 62.5% Helvetica, sans-serif;
  color: #444;
  background-color: #fff;
}

/* apply a natural box layout model to all elements */
/* http://paulirish.com/2012/box-sizing-border-box-ftw/ */
/* Buggy in IE7, avoid if developing for IE7 */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* User generated  */
.user-content ul {
  list-style: disc;
  margin-left: 24px;
}

.user-content ul ul {
  margin-left: 20px;
  margin-bottom: 0;
}

.user-content ul li {
  margin-bottom: 0;
}

.user-content ol {
  margin-left: 24px;
  list-style: decimal;
}

.user-content ol ol {
  list-style: lower-latin;
  margin-bottom: 0;
}

.user-content ul ul, .view ol ol {
  margin-bottom: 0;
}

.user-content li li {
  font-size: 1em;
}

/* Table */
table {
  width: 100%;
  border: none;
  border-collapse: collapse;
  border-spacing: 0;
}

table td, table th {
  vertical-align: middle;
}

/* Normal form */
.normal-form input[type="text"],
.normal-form input[type="password"],
.normal-form input[type="datetime"],
.normal-form input[type="datetime-local"],
.normal-form input[type="date"],
.normal-form input[type="month"],
.normal-form input[type="time"],
.normal-form input[type="week"],
.normal-form input[type="number"],
.normal-form input[type="email"],
.normal-form input[type="url"],
.normal-form input[type="search"],
.normal-form input[type="tel"],
.normal-form input[type="color"],
.normal-form textarea,
.normal-form select {
  -webkit-appearance: none;
}

.normal-form textarea {
  overflow: auto;
}

.normal-form input[type="text"]:focus,
.normal-form input[type="password"]:focus,
.normal-form input[type="datetime"]:focus,
.normal-form input[type="datetime-local"]:focus,
.normal-form input[type="date"]:focus,
.normal-form input[type="month"]:focus,
.normal-form input[type="time"]:focus,
.normal-form input[type="week"]:focus,
.normal-form input[type="number"]:focus,
.normal-form input[type="email"]:focus,
.normal-form input[type="url"]:focus,
.normal-form input[type="search"]:focus,
.normal-form input[type="tel"]:focus,
.normal-form input[type="color"]:focus,
.normal-form textarea:focus,
.normal-form select:focus {
  outline: none;
}

/* Button styling */
button {
  display: inline-block;
  padding: 10px 20px;
  margin: 0 10px 0 0;
  font: bold 14px/20px Helvetica, sans-serif;
  color: #fff;
  border: none;
  text-align: center;
  overflow: visible;
  cursor: pointer;
}

/* ==================================================
    =Typography
===================================================== */
h1, h2, h3, h4, h5, h6, p, table, .user-content ul, .user-content ol, .user-content dl {
  margin-bottom: 20px;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 10px;
}

h1 {
  font: 400 32px/1.3 Helvetica, sans-serif;
}

h2 {
  font: 400 24px/1.2 Helvetica, sans-serif;
}

h3 {
  font: 400 22px/1.2 Helvetica, sans-serif;
}

h4 {
  font: 400 20px/1.2 Helvetica, sans-serif;
}

h5 {
  font: 400 16px/1.2 Helvetica, sans-serif;
}

h6 {
  font: 400 14px/1.2 Helvetica, sans-serif;
}

a {
  text-decoration: none;
}

/* Styling */
strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

sup {
  vertical-align: text-top;
  font-size: 75%;
}

sub {
  vertical-align: bottom;
  font-size: 75%;
}

blockquote {
  font-style: italic;
}

/* User generated  */
.user-content ul {
  list-style: disc;
  margin-left: 24px;
}

.user-content ul ul {
  margin-left: 20px;
  margin-bottom: 0;
}

.user-content ul li {
  margin-bottom: 0;
}

.user-content ol {
  margin-left: 24px;
  list-style: decimal;
}

.user-content ol ol {
  list-style: lower-latin;
  margin-bottom: 0;
}

.user-content ul ul, .view ol ol {
  margin-bottom: 0;
}

.user-content li li {
  font-size: 1em;
}

/* Table */
table {
  width: 100%;
  border: none;
  border-collapse: collapse;
  border-spacing: 0;
}

table td, table th {
  vertical-align: middle;
}

/* Normal form */
.normal-form input[type="text"],
.normal-form input[type="password"],
.normal-form input[type="datetime"],
.normal-form input[type="datetime-local"],
.normal-form input[type="date"],
.normal-form input[type="month"],
.normal-form input[type="time"],
.normal-form input[type="week"],
.normal-form input[type="number"],
.normal-form input[type="email"],
.normal-form input[type="url"],
.normal-form input[type="search"],
.normal-form input[type="tel"],
.normal-form input[type="color"],
.normal-form textarea,
.normal-form select {
  -webkit-appearance: none;
}

.normal-form input[type="text"]:focus,
.normal-form input[type="password"]:focus,
.normal-form input[type="datetime"]:focus,
.normal-form input[type="datetime-local"]:focus,
.normal-form input[type="date"]:focus,
.normal-form input[type="month"]:focus,
.normal-form input[type="time"]:focus,
.normal-form input[type="week"]:focus,
.normal-form input[type="number"]:focus,
.normal-form input[type="email"]:focus,
.normal-form input[type="url"]:focus,
.normal-form input[type="search"]:focus,
.normal-form input[type="tel"]:focus,
.normal-form input[type="color"]:focus,
.normal-form textarea:focus,
.normal-form select:focus {
  outline: none;
}

/* ===============================================================================
    =Site css
    for importing base.scss on top of media query doc copy this : @import 'base';
=============================================================================== */
@font-face {
  font-family: 'bignoodle';
  src: url("../fonts/BigNoodleTitling.woff") format("woff");
}

@font-face {
  font-family: 'amsterdam';
  src: url("../fonts/Amsterdam.eot");
  src: url("../fonts/Amsterdam.eot?#iefix") format("embedded-opentype"), url("../fonts/Amsterdam.woff") format("woff"), url("../fonts/Amsterdam.ttf") format("truetype");
}

@font-face {
  font-family: 'amsterdam-italic';
  src: url("../fonts/AmsterdamVariation_3.eot");
  src: url("../fonts/AmsterdamVariation_3.eot?#iefix") format("embedded-opentype"), url("../fonts/AmsterdamVariation_3.woff") format("woff"), url("../fonts/AmsterdamVariation_3.ttf") format("truetype");
}

@font-face {
  font-family: 'argent-light';
  src: url("../fonts/ArgentCF-Light.eot");
  src: url("../fonts/ArgentCF-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/ArgentCF-Light.woff") format("woff"), url("../fonts/ArgentCF-Light.ttf") format("truetype");
}

@font-face {
  font-family: 'argent-bold';
  src: url("../fonts/ArgentCF-Bold.eot");
  src: url("../fonts/ArgentCF-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/ArgentCF-Bold.woff") format("woff"), url("../fonts/ArgentCF-Bold.ttf") format("truetype");
}

html {
  background-color: #080b13;
}

body {
  font-family: "bignoodle";
  color: #fff;
  opacity: 0;
}

a {
  display: inline-block;
  position: relative;
  color: inherit;
}

.app {
  display: block;
}

#barba-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
}

.barba-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.loader {
  -webkit-transition: opacity .8s ease, visibility .8s ease;
  transition: opacity .8s ease, visibility .8s ease;
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 1000;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.loader .bg {
  -webkit-transition: -webkit-transform .8s ease-out;
  transition: -webkit-transform .8s ease-out;
  transition: transform .8s ease-out;
  transition: transform .8s ease-out, -webkit-transform .8s ease-out;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/bg/loader.jpg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.loader .inner {
  position: relative;
  width: 100%;
  max-width: 530px;
  text-align: center;
  margin: auto;
}

.loader .inner p {
  font-size: 20px;
  color: #c5b9ac;
  margin-bottom: 30px;
}

.loader .loader-logo {
  display: block;
  width: 440px;
  height: 292px;
  margin: auto;
  background: url("../img/logo.svg") 50% no-repeat;
  background-size: contain;
  margin-bottom: 24px;
}

.loader .touch-btn {
  -webkit-transition: opacity .4s ease;
  transition: opacity .4s ease;
  display: block;
  width: 295px;
  height: 136px;
  background: url("../img/touch-btn.png") 50% no-repeat;
  background-size: contain;
  margin: auto;
  font-size: 26px;
  color: #C5B9AC;
  padding-top: 135px;
}

.loader .touch-btn:hover {
  opacity: 0.7;
}

.loader.close {
  opacity: 0;
  visibility: hidden;
}

.loader.close .bg {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.menu-button.mobile-menu-button {
  display: none;
  visibility: hidden;
  width: 49px;
  height: 49px;
  z-index: 600;
  position: absolute;
  left: 20px;
  top: 30px;
  background-image: url(../img/icon/menu-btn.png);
  background-position: 50%;
  background-size: contain;
  background-repeat: no-repeat;
}

.menu-button.mobile-menu-button:after {
  content: '';
  position: absolute;
  left: 0px;
  top: 15%;
  width: 5px;
  height: 70%;
  background-color: #fff;
  -webkit-transform: skewX(-20deg);
  transform: skewX(-20deg);
  -webkit-filter: blur(10px);
  filter: blur(10px);
  opacity: 0;
}

.mobile-category-button {
  display: none;
  visibility: hidden;
  width: 49px;
  height: 49px;
  z-index: 600;
  position: absolute;
  left: 90px;
  top: 30px;
  background-image: url(../img/icon/retail-back.png);
  background-position: 50%;
  background-size: contain;
  background-repeat: no-repeat;
}

.mobile-category-button:after {
  content: '';
  position: absolute;
  left: 0px;
  top: 15%;
  width: 5px;
  height: 70%;
  background-color: #fff;
  -webkit-transform: skewX(-20deg);
  transform: skewX(-20deg);
  -webkit-filter: blur(10px);
  filter: blur(10px);
  opacity: 0;
}

.page-header {
  position: fixed;
  z-index: 500;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
}

.page-header .logo {
  display: block;
  position: absolute;
  left: 55px;
  top: 30px;
  width: 174px;
  height: 115px;
  background: url(../img/logo.svg) 50% no-repeat;
  background-size: contain;
  pointer-events: auto;
}

.page-header ul {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  pointer-events: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  padding-left: 15px;
}

.page-header ul li {
  margin-bottom: 10px;
}

.page-header ul a {
  -webkit-transition: opacity .4s ease, color .4s ease, border-color .4s ease;
  transition: opacity .4s ease, color .4s ease, border-color .4s ease;
  display: block;
  font-family: "bignoodle";
  letter-spacing: .65px;
  color: #c5b9ac;
  font-size: 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid transparent;
}

.page-header ul a.active {
  border-color: #ffd085;
  color: #ffd085;
  opacity: 1;
}

.page-header ul a:hover {
  color: #ffd085;
  opacity: 1;
}

.page-header .contact {
  position: absolute;
  left: 70px;
  bottom: 70px;
}

.page-header .contact-face {
  display: inline-block;
  margin-right: 15px;
  background-image: url(../img/icon/btn-face.png);
  width: 24px;
  height: 24px;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: auto;
}

.page-header .contact-insta {
  display: inline-block;
  margin-right: 15px;
  background-image: url(../img/icon/btn-insta.png);
  width: 24px;
  height: 24px;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: auto;
}

.page-header .contact-mail {
  display: inline-block;
  margin-right: 15px;
  background-image: url(../img/icon/contact.png);
  width: 139px;
  height: 24px;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: auto;
}

.page-header a.close-mobile-menu {
  display: block;
}

.page-header a.close-mobile-menu {
  display: none;
  visibility: hidden;
  width: 49px;
  height: 49px;
  z-index: 60;
  position: absolute;
  left: 20px;
  top: 30px;
  background-image: url(../img/icon/menu-btn.png);
  background-position: 50%;
  background-size: contain;
  background-repeat: no-repeat;
}

#app {
  position: relative;
}

.section {
  position: relative;
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
  -webkit-perspective-origin: 50%;
  perspective-origin: 50%;
}

.section .bg {
  z-index: 10;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: 50%;
  background-size: cover;
}

.section .bg canvas {
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #080b13;
}

.section .bg-title {
  position: absolute;
  left: -10%;
  top: -webkit-calc(50% - 183px);
  top: calc(50% - 183px);
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  z-index: 20;
  font-family: "bignoodle";
  text-transform: uppercase;
  font-size: 340px;
  color: #b41e8a;
  letter-spacing: .25px;
  margin: 0;
  opacity: 0.06;
}

.section .category-outer {
  position: relative;
  z-index: 20;
  width: -webkit-calc(100% - 500px);
  width: calc(100% - 500px);
  margin: auto;
  margin-right: 0;
}

.section .floating-img-wrap {
  display: none;
  position: fixed;
  z-index: 50;
  left: 0;
  top: 0;
  width: 466px;
  height: 440px;
  -webkit-perspective: 1000px;
  perspective: 1000px;
  -webkit-perspective-origin: 50%;
  perspective-origin: 50%;
}

.section .floating-img-wrap .img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.section .floating-img-wrap .img-bg {
  background-image: url(../img/bg/grapes.png);
}

.section .showcase-wrap {
  z-index: 50;
}

.section .navigation {
  position: absolute;
  z-index: 50;
  top: 0;
  right: 0;
  height: 100%;
  width: 170px;
  overflow-x: hidden;
}

.section .back-button {
  display: block;
  z-index: 60;
  position: absolute;
  padding: 16px 5px 16px 60px;
  top: 60px;
  right: 240px;
  font-family: "bignoodle";
  letter-spacing: .25px;
  font-size: 16px;
  color: #ffd085;
  background-image: url(../img/icon/retail-back.png);
  background-position: 0% 50%;
  background-size: contain;
  background-repeat: no-repeat;
}

.section .back-button:after {
  content: '';
  position: absolute;
  left: 0px;
  top: 15%;
  width: 5px;
  height: 70%;
  background-color: #fff;
  -webkit-transform: skewX(-20deg);
  transform: skewX(-20deg);
  -webkit-filter: blur(10px);
  filter: blur(10px);
  opacity: 0;
}

.section .back-button:hover {
  -webkit-animation: backAnim2 .8s;
  animation: backAnim2 .8s;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

.section .back-button:hover:after {
  -webkit-animation: backAnim .8s;
  animation: backAnim .8s;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

@-webkit-keyframes backAnim {
  0% {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    left: 100%;
    -webkit-transform: skewX(-20deg) scale3d(1, 0.5, 1);
    transform: skewX(-20deg) scale3d(1, 0.5, 1);
  }
}

@keyframes backAnim {
  0% {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    left: 100%;
    -webkit-transform: skewX(-20deg) scale3d(1, 0.5, 1);
    transform: skewX(-20deg) scale3d(1, 0.5, 1);
  }
}

@-webkit-keyframes backAnim2 {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

@keyframes backAnim2 {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

.cuvee-section .showcase-wrap .title {
  color: #e9aa02;
}

.cuvee-section .showcase-wrap .title-2 {
  color: #e9aa02;
}

.cuvee-section .bg-title {
  color: #e9aa02;
}

.shiraz-section .showcase-wrap .title {
  color: #db6516;
}

.shiraz-section .showcase-wrap .title-2 {
  color: #db6516;
}

.shiraz-section .bg-title {
  color: #db6516;
}

.cabarnet-section .showcase-wrap .title {
  color: #F82F38;
}

.cabarnet-section .showcase-wrap .title-2 {
  color: #F82F38;
}

.cabarnet-section .bg-title {
  color: #F82F38;
}

.traminac-section .showcase-wrap .title {
  color: #87b33f;
}

.traminac-section .showcase-wrap .title-2 {
  color: #87b33f;
}

.traminac-section .bg-title {
  color: #87b33f;
}

.muskat-section .showcase-wrap .title {
  color: #6fccd7;
}

.muskat-section .showcase-wrap .title-2 {
  color: #6fccd7;
}

.muskat-section .bg-title {
  color: #6fccd7;
}

.chardonnay-section .showcase-wrap .title {
  color: #51B062;
}

.chardonnay-section .showcase-wrap .title-2 {
  color: #51B062;
}

.chardonnay-section .bg-title {
  color: #51B062;
}

.rose-shiraz-section .showcase-wrap .title {
  color: #AD562B;
}

.rose-shiraz-section .showcase-wrap .title-2 {
  color: #AD562B;
}

.rose-shiraz-section .bg-title {
  color: #AD562B;
}

.sweety-shiraz-section .showcase-wrap .title {
  color: #DD85B7;
}

.sweety-shiraz-section .showcase-wrap .title-2 {
  color: #DD85B7;
}

.sweety-shiraz-section .bg-title {
  color: #DD85B7;
}

.grande-cuvee-section .showcase-wrap .title {
  color: #866629;
}

.grande-cuvee-section .showcase-wrap .title-2 {
  color: #866629;
}

.grande-cuvee-section .bg-title {
  color: #866629;
}

.syrah-section .showcase-wrap .title {
  color: #AB5B31;
}

.syrah-section .showcase-wrap .title-2 {
  color: #AB5B31;
}

.syrah-section .bg-title {
  color: #AB5B31;
}

.horeca-cabarnet-section .showcase-wrap .title {
  color: #82262D;
}

.horeca-cabarnet-section .showcase-wrap .title-2 {
  color: #82262D;
}

.horeca-cabarnet-section .bg-title {
  color: #82262D;
}

.horeca-cabarnet-section .showcase-wrap .title {
  color: #82262D;
}

.horeca-grasevina-section .showcase-wrap .title-2 {
  color: #e9aa02;
}

.horeca-grasevina-section .bg-title {
  color: #e9aa02;
}

.horeca-grasevina-section .showcase-wrap .title {
  color: #e9aa02;
}

.horeca-merlot-section .showcase-wrap .title-2 {
  color: #702473;
}

.horeca-merlot-section .bg-title {
  color: #702473;
}

.horeca-premium-section .showcase-wrap .title {
  color: #bd9c3f;
}

.horeca-premium-section .showcase-wrap .title-2 {
  color: #bd9c3f;
}

.horeca-premium-section .bg-title {
  color: #bd9c3f;
}

/* Flag section */
.country-header {
  display: flex;  
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.flag {
  width: 30px; 
  height: auto;
  display: block; 
}

.country-name {
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  color: #ffefdf;
  line-height: 1;
  margin: 0;
}

.results > div {
  margin-bottom: 30px;
}
/* end of flag section */


.category-wrap {
  position: relative;
  text-align: center;
  -webkit-perspective: 1000px;
  perspective: 1000px;
  -webkit-perspective-origin: 50%;
  perspective-origin: 50%;
}

.category-wrap li {
  width: -webkit-calc(100% / 3);
  width: calc(100% / 3);
  float: left;
  opacity: 0;
}

.category-wrap a {
  -webkit-transition: opacity .4s ease;
  transition: opacity .4s ease;
  display: block;
  opacity: 0.6;
}

.category-wrap a:hover {
  opacity: 1;
}

.category-wrap a:hover .button {
  color: #080b13;
  background-color: #ffd085;
}

.category-wrap a:hover .img-wrap {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.category-wrap a:hover .img-wrap .img-bg {
  opacity: 1;
}

.category-wrap .title {
  position: relative;
  font-family: "bignoodle";
  font-size: 66px;
  letter-spacing: .25px;
  color: #ffd085;
  margin: 0;
}

.category-wrap .title span {
  display: block;
  overflow: hidden;
  margin: -8px 0;
}

.category-wrap .title small {
  display: block;
  overflow: hidden;
  margin: -8px 0;
  font-size: 42px;
}

.category-wrap .title i {
  display: inline-block;
}

.category-wrap .title b.badge {
  display: block;
  width: 90px;
  height: 90px;
  position: absolute;
  top: -35px;
  right: -webkit-calc(50% - 110px);
  right: calc(50% - 110px);
  background-image: url("../img/icon/retail_badge.png");
  background-size: contain;
  background-position: 50%;
  background-repeat: no-repeat;
}

.category-wrap .title b.badge.horeca {
  background-image: url("../img/icon/horeca_badge.png");
}

.category-wrap .title b.badge.premium {
  background-image: url("../img/icon/premium_badge.png");
}

.category-wrap .img-wrap {
  -webkit-transition: -webkit-transform .6s ease;
  transition: -webkit-transform .6s ease;
  transition: transform .6s ease;
  transition: transform .6s ease, -webkit-transform .6s ease;
  -webkit-transform: scale(0.7);
  transform: scale(0.7);
  position: relative;
  width: 100%;
  height: 446px;
  -webkit-perspective: 1000px;
  perspective: 1000px;
  -webkit-perspective-origin: 50%;
  perspective-origin: 50%;
  margin: -45px 0 -55px;
}

.category-wrap .img-wrap .img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.category-wrap .img-wrap .img-bg {
  -webkit-transition: opacity .6s ease;
  transition: opacity .6s ease;
  background-image: url(../img/img_bg_redgrapes.png);
  opacity: 0;
}

.category-wrap .quality-text {
  position: relative;
  font-family: "amsterdam";
  font-size: 42px;
  color: #ffd085;
  margin-bottom: 3px;
  letter-spacing: .25px;
}

.category-wrap .desc {
  font-family: "bignoodle";
  line-height: 19px;
  font-size: 18px;
  letter-spacing: .25px;
  margin-bottom: 40px;
  color: #ffd085;
}

.category-wrap .desc span {
  display: block;
  overflow: hidden;
}

.category-wrap .desc i {
  display: inline-block;
}

.category-wrap .button {
  -webkit-transition: background-color .4s ease, border-color .4s ease, color .4s ease;
  transition: background-color .4s ease, border-color .4s ease, color .4s ease;
  font-family: "bignoodle";
  display: inline-block;
  border: 1px solid #ffd085;
  background-color: transparent;
  color: #ffd085;
  letter-spacing: .25px;
  font-size: 16px;
  padding: 11px 10px;
  min-width: 135px;
}

.our-story-section, .winery-section, .region-section {
  position: relative;
}

.our-story-section .bg-title, .winery-section .bg-title, .region-section .bg-title {
  left: auto;
  right: -20%;
}

.our-story-section .title, .winery-section .title, .region-section .title {
  font-family: "bignoodle";
  font-size: 66px;
  letter-spacing: 2px;
  line-height: 59px;
  color: #ffd085;
}

.our-story-section .text, .winery-section .text, .region-section .text {
  font-family: "argent-light";
  font-size: 16px;
  line-height: 26px;
  color: #ffefdf;
  padding-bottom: 20px;
  border-bottom: 1px solid #ffd085;
  margin-bottom: 40px;
}

.our-story-section .ifs, .winery-section .ifs, .region-section .ifs {
  font-family: "argent-light";
  font-size: 16px;
  line-height: 26px;
  color: #ffefdf;
  padding-left: 120px;
  background: url("../img/icon/IFS.png") 0 50% no-repeat;
  background-size: 86px;
  margin: 0;
}

.our-story-section .cnt, .winery-section .cnt, .region-section .cnt {
  position: relative;
  z-index: 20;
  width: 100%;
}

.our-story-section .inner, .winery-section .inner, .region-section .inner {
  position: relative;
  max-width: 590px;
  margin: auto;
  margin-right: 20%;
}

.other-section, .awards-section {
  position: relative;
}

.other-section .cnt, .awards-section .cnt {
  position: relative;
  z-index: 20;
  width: -webkit-calc(100% - 36px);
  width: calc(100% - 36px);
  max-width: 960px;
  margin: auto;
}

.other-section .inner, .awards-section .inner {
  width: 100%;
}

.other-section .left-side, .awards-section .left-side {
  float: left;
  max-width: 350px;
  padding-top: 10vh;
}

.other-section .right-side, .awards-section .right-side {
  float: right;
  max-width: 490px;
  max-height: -webkit-calc(100vh - 200px);
  max-height: calc(100vh - 200px);
  overflow: auto;
}

.other-section .wrap, .awards-section .wrap {
  padding: 8vh 0 7vh;
}

.other-section .title, .awards-section .title {
  font-family: "bignoodle";
  font-size: 66px;
  letter-spacing: 2px;
  line-height: 59px;
  color: #ffd085;
  border-bottom: 1px solid #ffd085;
}

.other-section .text, .awards-section .text {
  font-family: "argent-light";
  font-size: 16px;
  letter-spacing: 0px;
  line-height: 26px;
  color: #ffefdf;
  opacity: 0.6;
}

.other-section .text span, .awards-section .text span {
  color: #ffd085;
}

.other-section .fact, .awards-section .fact {
  font-family: "argent-light";
  font-size: 16px;
  letter-spacing: 0px;
  line-height: 26px;
  color: #ffefdf;
  padding-right: 20px;
}

.other-section .fact p, .awards-section .fact p {
  opacity: 0.6;
}

.other-section .fact .tag, .awards-section .fact .tag {
  font-family: "bignoodle";
  font-size: 26px;
  letter-spacing: 2px;
  line-height: 24px;
  color: #ffd085;
  opacity: 1;
  text-transform: uppercase;
}

.other-section .fact:not(:last-child), .awards-section .fact:not(:last-child) {
  margin-bottom: 60px;
}

.other-section .award, .awards-section .award {
  position: relative;
  padding: 45px 0 5px;
  padding-left: 70px;
}

.other-section .award .img, .awards-section .award .img {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  width: 70px;
  height: 100%;
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 41px;
}

.other-section .award .img .tag, .awards-section .award .img .tag {
  display: block;
  position: absolute;
  top: -3px;
  right: -13px;
  width: 66px;
  height: 66px;
  -webkit-transform: rotate(-15deg);
  transform: rotate(-15deg);
}

.other-section .award .img .tag.gold, .awards-section .award .img .tag.gold {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../img/icon/gold-badge.png");
}

.other-section .award .img .tag.woman, .awards-section .award .img .tag.woman {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../img/icon/goldmedal.png");
}

.other-section .award .img .tag.silver, .awards-section .award .img .tag.silver {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../img/icon/silver-badge.png");
}

.other-section .award span, .awards-section .award span {
  display: block;
  position: relative;
  z-index: 10;
  margin-bottom: 3px;
}

.other-section .award span:nth-child(2), .awards-section .award span:nth-child(2) {
  font-family: "bignoodle";
  font-size: 26px;
  letter-spacing: 2px;
  line-height: 24px;
  color: #ffd085;
}

.other-section .award span:nth-child(3), .awards-section .award span:nth-child(3) {
  font-family: "argent-bold";
  font-size: 16px;
  letter-spacing: 0px;
  line-height: 26px;
  color: #ffefdf;
}

.other-section .award span:nth-child(4), .awards-section .award span:nth-child(4) {
  font-family: "argent-light";
  font-size: 16px;
  letter-spacing: 0px;
  line-height: 26px;
  color: #ffefdf;
}

.other-section .award span:nth-child(5), .awards-section .award span:nth-child(5) {
  font-family: "bignoodle";
  font-size: 16px;
  letter-spacing: 0px;
  line-height: 26px;
  color: #c5b9ac;
}

.other-section .award:not(:last-child), .awards-section .award:not(:last-child) {
  margin-bottom: 60px;
}

.locations-section {
  position: relative;
}

.locations-section .cnt {
  position: relative;
  z-index: 20;
  width: -webkit-calc(100% - 36px);
  width: calc(100% - 36px);
  max-width: 960px;
  margin: auto;
}

.locations-section .inner {
  width: 100%;
}

.locations-section .left-side {
  float: left;
  max-width: 350px;
  padding-top: 10vh;
}

.locations-section .right-side {
  float: right;
  max-width: 490px;
  max-height: -webkit-calc(100vh - 200px);
  max-height: calc(100vh - 200px);
  overflow: auto;
}

.locations-section .title {
  font-size: 66px;
  font-family: "bignoodle";
  letter-spacing: 2px;
  color: #ffd085;
  margin-bottom: 0px;
}

.locations-section .text {
  font-family: "argent-light";
  font-size: 16px;
  color: #ffefdf;
  opacity: 0.6;
  margin-bottom: 30px;
}

.locations-section .title-2 {
  font-size: 42px;
  font-family: "bignoodle";
  letter-spacing: 2px;
  color: #ffd085;
  margin-bottom: 10px;
  border-bottom: 1px solid #ffd085;
  margin-bottom: 60px;
}

.locations-section .results {
  padding: 15vh 0;
}

.locations-section .result {
  font-family: "argent-light";
  font-size: 16px;
  line-height: 24px;
  color: #c5b9ac;
}

.locations-section .result .tag {
  font-family: "bignoodle";
  font-size: 26px;
  letter-spacing: 2px;
  color: #ffd085;
}

.locations-section .result:not(:last-child) {
  margin-bottom: 40px;
}

.locations-section, .other-section, .awards-section, .our-story-section, .region-section, .winery-section {
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}

.locations-section ::-webkit-scrollbar, .other-section ::-webkit-scrollbar, .awards-section ::-webkit-scrollbar, .our-story-section ::-webkit-scrollbar, .region-section ::-webkit-scrollbar, .winery-section ::-webkit-scrollbar {
  width: 8px;
}

.locations-section ::-webkit-scrollbar-track, .other-section ::-webkit-scrollbar-track, .awards-section ::-webkit-scrollbar-track, .our-story-section ::-webkit-scrollbar-track, .region-section ::-webkit-scrollbar-track, .winery-section ::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
}

.locations-section ::-webkit-scrollbar-thumb, .other-section ::-webkit-scrollbar-thumb, .awards-section ::-webkit-scrollbar-thumb, .our-story-section ::-webkit-scrollbar-thumb, .region-section ::-webkit-scrollbar-thumb, .winery-section ::-webkit-scrollbar-thumb {
  background: #ffd085;
  border-radius: 4px;
}

.locations-section ::-webkit-scrollbar-thumb:hover, .other-section ::-webkit-scrollbar-thumb:hover, .awards-section ::-webkit-scrollbar-thumb:hover, .our-story-section ::-webkit-scrollbar-thumb:hover, .region-section ::-webkit-scrollbar-thumb:hover, .winery-section ::-webkit-scrollbar-thumb:hover {
  background: #ffe4b8;
}

.dk-select {
  display: block;
  font-family: "argent-light";
  font-size: 16px;
  color: #ffefdf;
  width: auto;
  max-width: 240px;
}

.dk-selected {
  background-color: rgba(8, 11, 19, 0.6);
  border: 1px solid #ffd085 !important;
  padding: 14px 1.5em 14px 16px;
  border-radius: 0;
}

.dk-selected:hover, .dk-selected:focus {
  outline: none;
  border-color: #ffd085;
}

.dk-selected::before, .dk-selected::after {
  right: 10px;
  border-top-color: #c5b9ac !important;
}

.dk-select-open-up .dk-selected::before, .dk-select-open-down .dk-selected::before {
  border-bottom-color: #c5b9ac;
}

.dk-selected::after {
  border: 0;
}

.dk-select-options {
  background-color: rgba(8, 11, 19, 0.6);
  border: none !important;
}

.dk-select-options .dk-option-highlight, .dk-option-selected {
  background-color: #8c7342;
}

body.MacOS .category-wrap .title small {
  margin: 5px 0;
}

.navigation {
  display: block;
  background-color: #080b13;
  overflow: auto;
}

.navigation a {
  position: relative;
  -webkit-transition: color .4s ease, opacity .4s ease, -webkit-transform ease 500ms;
  transition: color .4s ease, opacity .4s ease, -webkit-transform ease 500ms;
  transition: color .4s ease, opacity .4s ease, transform ease 500ms;
  transition: color .4s ease, opacity .4s ease, transform ease 500ms, -webkit-transform ease 500ms;
  display: block;
  width: 100%;
  height: 27.8vh;
  font-family: "bignoodle";
  font-size: 18px;
  letter-spacing: .25px;
  text-align: center;
  color: #c5b9ac;
}

@media only screen and (min-height: 1400px) {
  .navigation a {
    height: 22vh;
  }
}

@media only screen and (min-height: 2160px) {
  .navigation a {
    height: 14vh;
  }
}

.navigation a span {
  display: block;
  position: absolute;
  width: 100%;
  left: 0;
  top: 15%;
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
  -webkit-transition: -webkit-transform ease 300ms;
  transition: -webkit-transform ease 300ms;
  transition: transform ease 300ms;
  transition: transform ease 300ms, -webkit-transform ease 300ms;
}

.navigation a small {
  display: block;
  position: absolute;
  top: 5%;
  right: 10%;
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
  -webkit-transition: -webkit-transform ease 300ms;
  transition: -webkit-transform ease 300ms;
  transition: transform ease 300ms;
  transition: transform ease 300ms, -webkit-transform ease 300ms;
}

.navigation a:before, .navigation a:after {
  content: '';
  -webkit-transition: opacity .4s ease;
  transition: opacity .4s ease;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 60%;
  background-size: 85px;
  background-repeat: no-repeat;
}

.navigation a:before {
  background-image: url(../img/icon/touch-logo-grey.png);
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform ease 500ms;
  transition: -webkit-transform ease 500ms;
  transition: transform ease 500ms;
  transition: transform ease 500ms, -webkit-transform ease 500ms;
}

.navigation a:after {
  background-image: url(../img/icon/touch-logo-cabarnet.png);
  opacity: 0;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform ease 500ms;
  transition: -webkit-transform ease 500ms;
  transition: transform ease 500ms;
  transition: transform ease 500ms, -webkit-transform ease 500ms;
}

.navigation a:hover, .navigation a.active {
  opacity: 1;
  color: #ffd085;
}

.navigation a:hover span, .navigation a.active span {
  -webkit-transform: translateY(-50%) translateZ(0);
  transform: translateY(-50%) translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: -webkit-transform ease 300ms;
  transition: -webkit-transform ease 300ms;
  transition: transform ease 300ms;
  transition: transform ease 300ms, -webkit-transform ease 300ms;
}

.navigation a:hover small, .navigation a.active small {
  -webkit-transform: translateY(-50%) translateZ(0);
  transform: translateY(-50%) translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: -webkit-transform ease 300ms;
  transition: -webkit-transform ease 300ms;
  transition: transform ease 300ms;
  transition: transform ease 300ms, -webkit-transform ease 300ms;
  -webkit-transition-delay: 300ms;
  transition-delay: 300ms;
}

.navigation a:hover:before, .navigation a.active:before {
  opacity: 0;
  -webkit-transform: scale(1.15) translateZ(0);
  transform: scale(1.15) translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: -webkit-transform ease 500ms;
  transition: -webkit-transform ease 500ms;
  transition: transform ease 500ms;
  transition: transform ease 500ms, -webkit-transform ease 500ms;
  -webkit-transition-delay: 500ms;
  transition-delay: 500ms;
}

.navigation a:hover:after, .navigation a.active:after {
  opacity: 1;
  -webkit-transform: scale(1.3) translateZ(0);
  transform: scale(1.3) translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: -webkit-transform ease 500ms;
  transition: -webkit-transform ease 500ms;
  transition: transform ease 500ms;
  transition: transform ease 500ms, -webkit-transform ease 500ms;
  -webkit-transition-delay: 500ms;
  transition-delay: 500ms;
}

.navigation li:nth-child(1) a:after {
  background-image: url(../img/icon/touch-logo-cabarnet.png);
}

.navigation li:nth-child(2) a:after {
  background-image: url(../img/icon/touch-logo-cuvee.png);
}

.navigation li:nth-child(3) a:after {
  background-image: url(../img/icon/touch-logo.png);
}

.navigation li:nth-child(4) a:after {
  background-image: url(../img/icon/touch-logo-shiraz.png);
}

.navigation li:nth-child(5) a:after {
  background-image: url(../img/icon/touch-logo-vranac.png);
}

.navigation li:nth-child(6) a:after {
  background-image: url(../img/icon/touch-logo-zinfandel-crljenak.png);
}

.navigation li:nth-child(7) a:after {
  background-image: url(../img/icon/touch-logo-sweety-shiraz.png);
}

.navigation li:nth-child(7) a:before {
  background-image: url(../img/icon/touch-logo-grey2.png);
}

.navigation li:nth-child(8) a:after {
  background-image: url(../img/icon/touch-logo-chardonnay.png);
}

.navigation li:nth-child(9) a:after {
  background-image: url(../img/icon/touch-logo-cuvee-white.png);
}

.navigation li:nth-child(10) a:after {
  background-image: url(../img/icon/touch-logo-grasevina.png);
}

.navigation li:nth-child(11) a:after {
  background-image: url(../img/icon/touch-logo-muskat.png);
}

.navigation li:nth-child(12) a:after {
  background-image: url(../img/icon/touch-logo-riesling-italico.png);
}

.navigation li:nth-child(13) a:after {
  background-image: url(../img/icon/touch-logo-traminac.png);
}

.navigation li:nth-child(14) a:after {
  background-image: url(../img/icon/touch-logo-sweety-traminac.png);
}

.navigation li:nth-child(14) a:before {
  background-image: url(../img/icon/touch-logo-grey2.png);
}

.navigation li:nth-child(15) a:after {
  background-image: url(../img/icon/touch-logo-rose-shiraz.png);
}

.horeca-section .navigation a span {
  display: none;
}

.horeca-section .navigation a:before, .horeca-section .navigation a:after {
  background-position: 50% 60%;
  background-size: 108px;
  background-repeat: no-repeat;
}

.horeca-section .navigation a:before {
  opacity: 1;
}

.horeca-section .navigation a:after {
  opacity: 0;
}

.horeca-section .navigation a:hover, .horeca-section .navigation a.active {
  opacity: 1;
  color: #ffd085;
}

.horeca-section .navigation a:hover:before, .horeca-section .navigation a.active:before {
  opacity: 0;
}

.horeca-section .navigation a:hover:after, .horeca-section .navigation a.active:after {
  opacity: 1;
}

.horeca-section .navigation li:nth-child(1) a:before {
  background-image: url(../img/icon/nav-horeca-grande-cuvee-2.png);
  background-size: 109px;
}

.horeca-section .navigation li:nth-child(1) a:after {
  background-image: url(../img/icon/nav-horeca-grande-cuvee.png);
  background-size: 109px;
}

.horeca-section .navigation li:nth-child(2) a:before {
  background-image: url(../img/icon/nav-horeca-syrah-2.png);
}

.horeca-section .navigation li:nth-child(2) a:after {
  background-image: url(../img/icon/nav-horeca-syrah.png);
}

.horeca-section .navigation li:nth-child(3) a:before {
  background-image: url(../img/icon/nav-horeca-cabarnet-2.png);
}

.horeca-section .navigation li:nth-child(3) a:after {
  background-image: url(../img/icon/nav-horeca-cabarnet.png);
}

.horeca-section .navigation li:nth-child(4) a:before {
  background-image: url(../img/icon/nav-horeca-merlot-2.png);
}

.horeca-section .navigation li:nth-child(4) a:after {
  background-image: url(../img/icon/nav-horeca-merlot.png);
}

.horeca-section .navigation li:nth-child(5) a:before {
  background-image: url(../img/icon/nav-horeca-grasevina-2.png);
}

.horeca-section .navigation li:nth-child(5) a:after {
  background-image: url(../img/icon/nav-horeca-grasevina.png);
}

.horeca-premium-section .navigation a span {
  display: none;
}

.horeca-premium-section .navigation a:before, .horeca-premium-section .navigation a:after {
  background-position: 50% 60%;
  background-size: 100px;
  background-repeat: no-repeat;
}

.horeca-premium-section .navigation a:before {
  opacity: 1;
}

.horeca-premium-section .navigation a:after {
  opacity: 0;
}

.horeca-premium-section .navigation a:hover, .horeca-premium-section .navigation a.active {
  opacity: 1;
  color: #ffd085;
}

.horeca-premium-section .navigation a:hover:before, .horeca-premium-section .navigation a.active:before {
  opacity: 0;
}

.horeca-premium-section .navigation a:hover:after, .horeca-premium-section .navigation a.active:after {
  opacity: 1;
}

.horeca-premium-section .navigation li:nth-child(1) a:before {
  background-image: url(../img/icon/nav-premium-grande-cuvee-2.png);
}

.horeca-premium-section .navigation li:nth-child(1) a:after {
  background-image: url(../img/icon/nav-premium-grande-cuvee.png);
}

.horeca-premium-section .navigation li:nth-child(2) a:before {
  background-image: url(../img/icon/nav-premium-syrah-2.png);
}

.horeca-premium-section .navigation li:nth-child(2) a:after {
  background-image: url(../img/icon/nav-premium-syrah.png);
}

.horeca-premium-section .navigation li:nth-child(3) a:before {
  background-image: url(../img/icon/nav-premium-cabarnet-2.png);
  background-size: 107px;
}

.horeca-premium-section .navigation li:nth-child(3) a:after {
  background-image: url(../img/icon/nav-premium-cabarnet.png);
  background-size: 107px;
}

.horeca-premium-section .navigation li:nth-child(4) a:before {
  background-image: url(../img/icon/nav-premium-merlot-2.png);
}

.horeca-premium-section .navigation li:nth-child(4) a:after {
  background-image: url(../img/icon/nav-premium-merlot.png);
}

.horeca-premium-section .navigation li:nth-child(5) a:before {
  background-image: url(../img/icon/nav-premium-cuvee-superior-2.png);
}

.horeca-premium-section .navigation li:nth-child(5) a:after {
  background-image: url(../img/icon/nav-premium-cuvee-superior.png);
}

.horeca-premium-section .navigation li:nth-child(6) a:before {
  background-image: url(../img/icon/nav-premium-rose-syrah-2.png);
}

.horeca-premium-section .navigation li:nth-child(6) a:after {
  background-image: url(../img/icon/nav-premium-rose-syrah.png);
}

.horeca-premium-section .navigation li:nth-child(7) a:before {
  background-image: url(../img/icon/nav-premium-chardonnay-2.png);
}

.horeca-premium-section .navigation li:nth-child(7) a:after {
  background-image: url(../img/icon/nav-premium-chardonnay.png);
}

.horeca-premium-section .navigation li:nth-child(8) a:before {
  background-image: url(../img/icon/nav-premium-chardonnay-barrique-2.png);
}

.horeca-premium-section .navigation li:nth-child(8) a:after {
  background-image: url(../img/icon/nav-premium-chardonnay-barrique.png);
}

.horeca-premium-section .navigation li:nth-child(9) a:before {
  background-image: url(../img/icon/nav-premium-sauvignon-blanc-2.png);
}

.horeca-premium-section .navigation li:nth-child(9) a:after {
  background-image: url(../img/icon/nav-premium-sauvignon-blanc.png);
}

.showcase-wrap {
  position: relative;
  width: -webkit-calc(100% - 36px);
  width: calc(100% - 36px);
  max-width: 990px;
  margin: auto;
}

.showcase-wrap .left-cnt {
  position: relative;
  z-index: 10;
  float: left;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.showcase-wrap .right-cnt {
  position: relative;
  z-index: 30;
  float: right;
  max-width: 350px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.showcase-wrap .img-wrap {
  position: absolute;
  z-index: 20;
  left: -webkit-calc(50% - 263.5px);
  left: calc(50% - 263.5px);
  top: -webkit-calc(50% - 396px);
  top: calc(50% - 396px);
  width: 527px;
  height: 792px;
}

.showcase-wrap .img-wrap .img, .showcase-wrap .img-wrap .bottle-wrap {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: 50%;
  background-size: contain;
  background-repeat: no-repeat;
}

.showcase-wrap .img-wrap .img {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.showcase-wrap .img-wrap img {
  position: absolute;
  display: block;
  height: 100%;
  left: 50%;
  -webkit-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
  top: 0;
}

.showcase-wrap .img-wrap .canvas-wrap {
  height: 120%;
  top: -10%;
}

.showcase-wrap .img-wrap .img-bg {
  background-image: url(../img/bg/grapes-big.png);
}

.showcase-wrap ul.specs {
  display: inline-block;
  padding: 8px 2px;
  font-family: "argent-bold";
  color: #fff;
  font-size: 16px;
  letter-spacing: .25px;
  white-space: nowrap;
  border-top: 2px solid #ffd085;
  border-bottom: 2px solid #ffd085;
  opacity: 0.6;
  margin-bottom: 10px;
}

.showcase-wrap ul.specs li {
  position: relative;
  text-align: center;
  display: inline-block;
  padding: 0 20px;
}

.showcase-wrap ul.specs li:before {
  content: '';
  position: absolute;
  top: 0%;
  left: -1px;
  width: 2px;
  height: 100%;
  background-color: #ffd085;
}

.showcase-wrap ul.specs li:nth-child(1) {
  text-align: left;
  padding-left: 0;
}

.showcase-wrap ul.specs li:nth-child(1):before {
  display: none;
}

.showcase-wrap ul.specs li:nth-child(3) {
  text-align: right;
  padding-right: 0;
}

.showcase-wrap ul.specs p {
  margin: 0;
}

.showcase-wrap .label {
  font-family: "bignoodle";
  font-size: 16px;
  letter-spacing: .25px;
  color: #c5b9ac;
  margin: 0;
}

.showcase-wrap .title {
  position: relative;
  font-family: "bignoodle";
  font-size: 174px;
  line-height: 130px;
  letter-spacing: .25px;
  color: #b41e8a;
  margin: 10px 0 22px;
  margin-left: -6px;
}

.showcase-wrap .title span {
  display: block;
  overflow: hidden;
  margin: -6px 0;
}

.showcase-wrap .title i {
  display: inline-block;
  padding-top: 20px;
}

.showcase-wrap .title b {
  display: block;
  position: absolute;
  top: -80px;
  left: -80px;
  width: 160px;
  height: 160px;
  background-image: url("../img/retail_badge_big.png");
  background-size: contain;
  background-position: 50%;
  background-repeat: no-repeat;
}

.showcase-wrap .title b.horeca {
  background-image: url("../img/horeca_badge_big.png");
}

.showcase-wrap .title b.premium {
  background-image: url("../img/premium_badge_big.png");
}

.showcase-wrap .desc {
  font-family: "bignoodle";
  font-size: 42px;
  line-height: 38px;
  letter-spacing: .25px;
  color: #ffd085;
  margin-bottom: 10px;
}

.showcase-wrap .desc span {
  display: block;
}

.showcase-wrap .desc span:last-child {
  color: #ffd085;
}

.showcase-wrap .qual {
  font-family: "amsterdam";
  font-size: 42px;
  letter-spacing: .25px;
  margin: 0;
  color: #ffd085;
}

.showcase-wrap .title-2 {
  font-family: "bignoodle";
  font-size: 60px;
  line-height: 54px;
  letter-spacing: .25px;
  color: #b41e8a;
  margin-bottom: 20px;
}

.showcase-wrap .text {
  font-family: "argent-light";
  font-size: 16px;
  line-height: 26px;
  letter-spacing: .25px;
  color: #ffefdf;
  opacity: 0.6;
  margin-bottom: 20px;
}

.showcase-wrap .button {
  position: relative;
  text-align: center;
  font-family: "bignoodle";
  display: inline-block;
  background-color: transparent;
  color: #ffd085;
  letter-spacing: .25px;
  font-size: 16px;
  padding: 16px 5px 16px 60px;
  background-image: url(../img/icon/icon-truck.png);
  background-position: 0 50%;
  background-size: contain;
  background-repeat: no-repeat;
}

.showcase-wrap .button:after {
  content: '';
  position: absolute;
  left: 0px;
  top: 15%;
  width: 5px;
  height: 70%;
  background-color: #fff;
  -webkit-transform: skewX(-20deg);
  transform: skewX(-20deg);
  -webkit-filter: blur(10px);
  filter: blur(10px);
  opacity: 0;
}

.showcase-wrap .button:hover {
  -webkit-animation: backAnim2 .8s;
  animation: backAnim2 .8s;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

.showcase-wrap .button:hover:after {
  -webkit-animation: backAnim .8s;
  animation: backAnim .8s;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

.showcase-wrap .button-wrap {
  position: relative;
}

.showcase-wrap .wine-cart {
  position: absolute;
  width: 480px;
  padding: 0 30px 30px 30px;
  z-index: 10;
  left: -180px;
  bottom: -30px;
  background-color: #080b13;
  background-image: url(../img/bg/cart-bg.png);
  background-position: 110% -100px;
  background-repeat: no-repeat;
}

.showcase-wrap .wine-cart .cart-title {
  position: relative;
  left: 10px;
  font-family: "amsterdam";
  font-size: 78px;
  letter-spacing: .25px;
  color: #ffd085;
  -webkit-transform: skewY(-10deg) skewX(-16deg);
  transform: skewY(-10deg) skewX(-16deg);
}

.showcase-wrap .wine-cart .specs-wrap {
  position: relative;
  padding: 22px 140px 22px 0px;
  margin: 60px 0;
}

.showcase-wrap .wine-cart .specs-wrap .img {
  position: absolute;
  right: 0;
  top: 22px;
  width: 130px;
  height: -webkit-calc(100% - 44px);
  height: calc(100% - 44px);
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: contain;
}

.showcase-wrap .wine-cart .specs-wrap div {
  font-family: "bignoodle";
  font-size: 14px;
  line-height: 24px;
  margin: 0;
  letter-spacing: .25px;
  color: #ffd085;
}

.showcase-wrap .wine-cart .specs-wrap div p {
  text-align: right;
  float: right;
  font-family: "argent-light";
  color: #ffefdf;
  margin: 0;
}

.showcase-wrap .wine-cart .specs-wrap div span {
  display: block;
}

.showcase-wrap .wine-cart .specs-wrap:not(:last-child) {
  border-bottom: 1px solid #ffd085;
}

.showcase-wrap .wine-cart .double-spec .specs-wrap {
  margin: 0;
}

body.MacOS .showcase-wrap .title span {
  margin: -6px 0;
}

body.MacOS .showcase-wrap .title i {
  padding-top: 20px;
}

.slick-slide {
  outline: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

* {
  outline: none;
}

.category-wrap .slick-dots {
  position: absolute;
  bottom: -50px;
  left: -webkit-calc(50% - 31px);
  left: calc(50% - 31px);
  display: block;
  text-align: center;
}

.category-wrap .slick-dots li {
  display: inline-block;
  margin: 0 4px;
  float: none;
  width: auto;
}

.category-wrap .slick-dots button {
  -webkit-transition: background-color .4s ease;
  transition: background-color .4s ease;
  display: block;
  padding: 0;
  margin: 0;
  width: 13px;
  height: 13px;
  overflow: hidden;
  background: no-repeat;
  color: transparent;
  border: 2px solid #f0c47e;
  border-radius: 50%;
}

.category-wrap .slick-dots .slick-active button {
  background-color: #f0c47e;
}

.navigation li:nth-child(1) a {
  -webkit-animation: bounce 5000ms ease infinite;
  animation: bounce 5000ms ease infinite;
  -webkit-animation-delay: 150ms;
  animation-delay: 150ms;
}

.navigation li:nth-child(2) a {
  -webkit-animation: bounce 5000ms ease infinite;
  animation: bounce 5000ms ease infinite;
  -webkit-animation-delay: 300ms;
  animation-delay: 300ms;
}

.navigation li:nth-child(3) a {
  -webkit-animation: bounce 5000ms ease infinite;
  animation: bounce 5000ms ease infinite;
  -webkit-animation-delay: 450ms;
  animation-delay: 450ms;
}

.navigation li:nth-child(4) a {
  -webkit-animation: bounce 5000ms ease infinite;
  animation: bounce 5000ms ease infinite;
  -webkit-animation-delay: 600ms;
  animation-delay: 600ms;
}

.navigation li:nth-child(5) a {
  -webkit-animation: bounce 5000ms ease infinite;
  animation: bounce 5000ms ease infinite;
  -webkit-animation-delay: 750ms;
  animation-delay: 750ms;
}

.navigation li:nth-child(6) a {
  -webkit-animation: bounce 5000ms ease infinite;
  animation: bounce 5000ms ease infinite;
  -webkit-animation-delay: 900ms;
  animation-delay: 900ms;
}

.navigation li:nth-child(7) a {
  -webkit-animation: bounce 5000ms ease infinite;
  animation: bounce 5000ms ease infinite;
  -webkit-animation-delay: 1050ms;
  animation-delay: 1050ms;
}

.navigation li:nth-child(8) a {
  -webkit-animation: bounce 5000ms ease infinite;
  animation: bounce 5000ms ease infinite;
  -webkit-animation-delay: 1200ms;
  animation-delay: 1200ms;
}

.navigation li:nth-child(9) a {
  -webkit-animation: bounce 5000ms ease infinite;
  animation: bounce 5000ms ease infinite;
  -webkit-animation-delay: 1350ms;
  animation-delay: 1350ms;
}

.navigation li:nth-child(10) a {
  -webkit-animation: bounce 5000ms ease infinite;
  animation: bounce 5000ms ease infinite;
  -webkit-animation-delay: 1500ms;
  animation-delay: 1500ms;
}

.navigation li:nth-child(11) a {
  -webkit-animation: bounce 5000ms ease infinite;
  animation: bounce 5000ms ease infinite;
  -webkit-animation-delay: 1650ms;
  animation-delay: 1650ms;
}

.navigation li:nth-child(12) a {
  -webkit-animation: bounce 5000ms ease infinite;
  animation: bounce 5000ms ease infinite;
  -webkit-animation-delay: 1800ms;
  animation-delay: 1800ms;
}

.navigation li:nth-child(13) a {
  -webkit-animation: bounce 5000ms ease infinite;
  animation: bounce 5000ms ease infinite;
  -webkit-animation-delay: 1950ms;
  animation-delay: 1950ms;
}

.navigation li:nth-child(14) a {
  -webkit-animation: bounce 5000ms ease infinite;
  animation: bounce 5000ms ease infinite;
  -webkit-animation-delay: 2100ms;
  animation-delay: 2100ms;
}

.navigation li:nth-child(15) a {
  -webkit-animation: bounce 5000ms ease infinite;
  animation: bounce 5000ms ease infinite;
  -webkit-animation-delay: 2250ms;
  animation-delay: 2250ms;
}

.navigation li:nth-child(16) a {
  -webkit-animation: bounce 5000ms ease infinite;
  animation: bounce 5000ms ease infinite;
  -webkit-animation-delay: 2400ms;
  animation-delay: 2400ms;
}

.navigation li:nth-child(17) a {
  -webkit-animation: bounce 5000ms ease infinite;
  animation: bounce 5000ms ease infinite;
  -webkit-animation-delay: 2550ms;
  animation-delay: 2550ms;
}

.navigation li:nth-child(18) a {
  -webkit-animation: bounce 5000ms ease infinite;
  animation: bounce 5000ms ease infinite;
  -webkit-animation-delay: 2700ms;
  animation-delay: 2700ms;
}

.navigation li:nth-child(19) a {
  -webkit-animation: bounce 5000ms ease infinite;
  animation: bounce 5000ms ease infinite;
  -webkit-animation-delay: 2850ms;
  animation-delay: 2850ms;
}

.navigation li:nth-child(20) a {
  -webkit-animation: bounce 5000ms ease infinite;
  animation: bounce 5000ms ease infinite;
  -webkit-animation-delay: 3000ms;
  animation-delay: 3000ms;
}

.navigation:hover li:nth-child(1) a {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

.navigation:hover li:nth-child(2) a {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

.navigation:hover li:nth-child(3) a {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

.navigation:hover li:nth-child(4) a {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

.navigation:hover li:nth-child(5) a {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

.navigation:hover li:nth-child(6) a {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

.navigation:hover li:nth-child(7) a {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

.navigation:hover li:nth-child(8) a {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

.navigation:hover li:nth-child(9) a {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

.navigation:hover li:nth-child(10) a {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

.navigation:hover li:nth-child(11) a {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

.navigation:hover li:nth-child(12) a {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

.navigation:hover li:nth-child(13) a {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

.navigation:hover li:nth-child(14) a {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

.navigation:hover li:nth-child(15) a {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

.navigation:hover li:nth-child(16) a {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

.navigation:hover li:nth-child(17) a {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

.navigation:hover li:nth-child(18) a {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

.navigation:hover li:nth-child(19) a {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

.navigation:hover li:nth-child(20) a {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

@-webkit-keyframes bounce {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  3% {
    -webkit-transform: scale(1.04);
    transform: scale(1.04);
  }
  6% {
    -webkit-transform: scale(0.98);
    transform: scale(0.98);
  }
  9% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  12% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes bounce {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  3% {
    -webkit-transform: scale(1.04);
    transform: scale(1.04);
  }
  6% {
    -webkit-transform: scale(0.98);
    transform: scale(0.98);
  }
  9% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  12% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@media only screen and (max-width: 1600px) {
  .section .category-outer {
    width: -webkit-calc(100% - 240px);
    width: calc(100% - 240px);
    margin-right: 60px;
  }
  .showcase-wrap .title b {
    top: -40px;
    left: -60px;
    width: 120px;
    height: 120px;
  }
  .loader .loader-logo {
    width: 350px;
    height: 232px;
  }
}

@media only screen and (max-width: 1280px) {
  .page-header .logo {
    left: 125px;
  }
  .section .back-button {
    right: 140px;
  }
  .section .category-outer {
    width: -webkit-calc(100% - 140px);
    width: calc(100% - 140px);
  }
  .section .bg-title {
    display: none;
  }
  .section .navigation {
    width: 120px;
  }
  .navigation a:before, .navigation a:after {
    background-size: 60px;
  }
  .horeca-section .navigation a:before, .horeca-section .navigation a:after {
    background-size: 54px;
  }
  .horeca-section .navigation li:nth-child(1) a:after {
    background-size: 54.5px;
  }
  .horeca-premium-section .navigation a:before, .horeca-premium-section .navigation a:after {
    background-size: 50px;
  }
  .horeca-premium-section .navigation li:nth-child(3) a:after {
    background-size: 53.5px;
  }
  .category-wrap .img-wrap {
    height: 330px;
  }
  .category-wrap .title {
    font-size: 46px;
  }
  .category-wrap .title small {
    font-size: 32px;
  }
  .showcase-wrap {
    max-width: none;
    width: -webkit-calc(100% - 250px);
    width: calc(100% - 250px);
  }
  .showcase-wrap .title {
    display: inline-block;
    font-size: 104px;
    line-height: 70px;
  }
  .showcase-wrap .title b {
    width: 80px;
    height: 80px;
    left: auto;
    right: -40px;
    top: -10px;
  }
  .showcase-wrap .title-2 {
    font-size: 46px;
    line-height: 42px;
  }
  .showcase-wrap .text {
    font-size: 14px;
    line-height: 22px;
  }
  .showcase-wrap .desc {
    font-size: 32px;
    line-height: 28px;
  }
  .showcase-wrap .img-wrap {
    left: -webkit-calc(50% - 287.625px);
    left: calc(50% - 287.625px);
    top: -webkit-calc(50% - 297px);
    top: calc(50% - 297px);
    width: 395.25px;
    height: 594px;
  }
  .showcase-wrap .wine-cart .cart-title {
    font-size: 38px;
  }
  .showcase-wrap .wine-cart .specs-wrap div {
    font-size: 14px;
    line-height: 24px;
  }
  .our-story-section .cnt, .winery-section .cnt, .region-section .cnt {
    width: -webkit-calc(100% - 36px);
    width: calc(100% - 36px);
    margin: auto;
  }
  .our-story-section .inner, .winery-section .inner, .region-section .inner {
    margin: auto;
  }
  .our-story-section .bg, .winery-section .bg, .region-section .bg {
    background-position: 90% 50%;
  }
  .our-story-section .title, .winery-section .title, .region-section .title {
    font-size: 46px;
    line-height: 49px;
  }
  .locations-section .cnt, .other-section .cnt, .awards-section .cnt {
    max-width: -webkit-calc(100% - 160px);
    max-width: calc(100% - 160px);
    padding-left: 40px;
  }
  .locations-section .left-side, .other-section .left-side, .awards-section .left-side {
    max-width: none;
    width: 40%;
  }
  .locations-section .right-side, .other-section .right-side, .awards-section .right-side {
    max-width: none;
    width: 55%;
  }
  .locations-section .results, .other-section .results, .awards-section .results {
    padding: 0;
  }
  .navigation li:nth-child(1) a {
    -webkit-animation: none;
    animation: none;
  }
  .navigation li:nth-child(2) a {
    -webkit-animation: none;
    animation: none;
  }
  .navigation li:nth-child(3) a {
    -webkit-animation: none;
    animation: none;
  }
  .navigation li:nth-child(4) a {
    -webkit-animation: none;
    animation: none;
  }
  .navigation li:nth-child(5) a {
    -webkit-animation: none;
    animation: none;
  }
  .navigation li:nth-child(6) a {
    -webkit-animation: none;
    animation: none;
  }
  .navigation li:nth-child(7) a {
    -webkit-animation: none;
    animation: none;
  }
  .navigation li:nth-child(8) a {
    -webkit-animation: none;
    animation: none;
  }
  .navigation li:nth-child(9) a {
    -webkit-animation: none;
    animation: none;
  }
  .navigation li:nth-child(10) a {
    -webkit-animation: none;
    animation: none;
  }
  .navigation li:nth-child(11) a {
    -webkit-animation: none;
    animation: none;
  }
  .navigation li:nth-child(12) a {
    -webkit-animation: none;
    animation: none;
  }
  .navigation li:nth-child(13) a {
    -webkit-animation: none;
    animation: none;
  }
  .navigation li:nth-child(14) a {
    -webkit-animation: none;
    animation: none;
  }
  .navigation li:nth-child(15) a {
    -webkit-animation: none;
    animation: none;
  }
  .navigation li:nth-child(16) a {
    -webkit-animation: none;
    animation: none;
  }
  .navigation li:nth-child(17) a {
    -webkit-animation: none;
    animation: none;
  }
  .navigation li:nth-child(18) a {
    -webkit-animation: none;
    animation: none;
  }
  .navigation li:nth-child(19) a {
    -webkit-animation: none;
    animation: none;
  }
  .navigation li:nth-child(20) a {
    -webkit-animation: none;
    animation: none;
  }
  .loader .inner p {
    margin-bottom: 20px;
  }
  .loader .loader-logo {
    width: 240px;
    height: 158px;
  }
  .loader .touch-btn {
    height: 60px;
    padding-top: 60px;
    font-size: 20px;
  }
}

@media only screen and (max-width: 1080px) {
  .page-header .contact-mail {
    background-size: 139px;
    background-position: 0 50%;
    width: 25px;
  }
}

@media only screen and (max-width: 880px) {
  #barba-wrapper {
    overflow: auto;
    min-height: 100vh;
    height: auto;
  }
  .section {
    min-height: 100vh;
    height: auto;
  }
  .section .back-button {
    padding: 0;
    width: 49px;
    height: 49px;
  }
  .section .back-button span {
    display: none;
  }
  .page-header .logo {
    width: 130.5px;
    height: 86.25px;
  }
  .category-wrap .img-wrap {
    height: 220px;
  }
  .category-wrap .title {
    font-size: 36px;
  }
  .category-wrap .title small {
    font-size: 26px;
  }
  .category-wrap .quality-text {
    font-size: 32px;
  }
  .showcase-wrap {
    padding: 180px 0;
  }
  .showcase-wrap ul.specs {
    font-size: 14px;
  }
  .showcase-wrap .left-cnt {
    width: 100%;
  }
  .showcase-wrap .right-cnt {
    border-radius: 15px;
    padding: 25px;
    background-color: rgba(0, 0, 0, 0.85);
  }
  .showcase-wrap .img-wrap {
    left: 0;
  }
}

@media only screen and (max-width: 724px) {
  .page-header .contact {
    left: 28px;
    bottom: 30px;
  }
  .lang-selector {
    margin-bottom: 40px;
  }
  .section {
    display: block;
    height: auto;
  }
  .section .navigation {
    width: 80px;
    max-height: 100vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .section .back-button {
    right: 100px;
  }
  .category-outer {
    padding: 150px 0;
  }
  .category-wrap li {
    width: 100%;
    margin-bottom: 80px;
  }
  .showcase-wrap .title {
    font-size: 74px;
    line-height: 50px;
  }
  .showcase-wrap .title-2 {
    font-size: 36px;
    line-height: 34px;
  }
  .showcase-wrap .text {
    font-size: 12px;
    line-height: 18px;
  }
  .showcase-wrap .desc {
    font-size: 22px;
    line-height: 22px;
  }
  .showcase-wrap ul.specs {
    font-size: 12px;
  }
  .navigation a {
    height: 150px;
  }
  .navigation a span {
    top: 7%;
  }
  .navigation a small {
    display: none;
  }
  .navigation a:before, .navigation a:after {
    background-size: 40px;
  }
  .our-story-section, .winery-section, .region-section {
    padding: 300px 0 100px;
  }
  .our-story-section .bg, .winery-section .bg, .region-section .bg {
    background-position: top -5% left 10%;
    background-repeat: no-repeat;
    background-size: 300%;
  }
  .our-story-section .title, .winery-section .title, .region-section .title {
    font-size: 28px;
    line-height: 1;
  }
  .locations-section .cnt, .other-section .cnt, .awards-section .cnt {
    padding: 60px 0 100px;
    padding-left: 30px;
  }
  .locations-section .left-side, .other-section .left-side, .awards-section .left-side {
    width: 100%;
    float: none;
    margin-bottom: 80px;
  }
  .locations-section .right-side, .other-section .right-side, .awards-section .right-side {
    width: 100%;
    float: none;
    overflow: visible;
    height: auto;
    max-height: none;
  }
  .locations-section .results, .other-section .results, .awards-section .results {
    padding: 0;
  }
  .locations-section .wrap, .other-section .wrap, .awards-section .wrap {
    padding: 0;
  }
  .locations-section .title, .other-section .title, .awards-section .title {
    font-size: 28px;
    line-height: 1;
  }
  .locations-section .award .img .tag, .other-section .award .img .tag, .awards-section .award .img .tag {
    top: 41px;
    right: 4px;
    width: 46px;
    height: 46px;
  }
  .locations-section .title {
    font-size: 28px;
  }
  .locations-section .result .tag {
    font-size: 22px;
  }
  .locations-section .result:not(:last-child) {
    margin-bottom: 0;
  }
  .category-outer {
    padding-top: 50%;
    padding-bottom: 10%;
  }
  .horeca-premium-section .navigation li:nth-child(3) a:before {
    background-size: 50px;
  }
  .our-story-section,
  .region-section,
  .winery-section,
  .awards-section,
  .locations-section,
  .other-section {
    padding-top: 20px;
  }
  .our-story-section .cnt,
  .region-section .cnt,
  .winery-section .cnt,
  .awards-section .cnt,
  .locations-section .cnt,
  .other-section .cnt {
    padding-top: 0;
  }
  .our-story-section .cnt .left-side,
  .region-section .cnt .left-side,
  .winery-section .cnt .left-side,
  .awards-section .cnt .left-side,
  .locations-section .cnt .left-side,
  .other-section .cnt .left-side {
    padding-top: 0;
  }
}

@media only screen and (max-width: 600px) {
  .slick-list {
    overflow: visible;
  }
  .menu-button.mobile-menu-button, .mobile-category-button {
    display: block;
    visibility: visible;
  }
  .section .back-button {
    display: none;
    visibility: hidden;
  }
  .section .category-outer {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100vh;
  }
  .category-wrap {
    width: 100%;
    padding-bottom: 30px;
  }
  .category-wrap .title {
    font-size: 46px;
    line-height: 42px;
    min-height: 118px;
  }
  .category-wrap .title small {
    font-size: 22px;
  }
  .category-wrap .img-wrap {
    -webkit-transform: scale(1);
    transform: scale(1);
    height: 260px;
    margin: -45px 0 -35px;
  }
  .category-wrap li {
    margin: 0;
  }
  .category-wrap a {
    -webkit-transition: opacity .8s ease, -webkit-transform .8s ease;
    transition: opacity .8s ease, -webkit-transform .8s ease;
    transition: opacity .8s ease, transform .8s ease;
    transition: opacity .8s ease, transform .8s ease, -webkit-transform .8s ease;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0.4;
  }
  .category-wrap .slick-active a, .category-wrap .slick-current a {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  .page-header {
    -webkit-transition: -webkit-transform 0.6s ease;
    transition: -webkit-transform 0.6s ease;
    transition: transform 0.6s ease;
    transition: transform 0.6s ease, -webkit-transform 0.6s ease;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.85);
  }
  .page-header ul {
    position: relative;
    top: auto;
    max-width: 240px;
    margin: auto;
    -webkit-transform: none;
    transform: none;
    text-align: center;
  }
  .page-header ul li {
    float: none;
    margin-bottom: 30px;
  }
  .page-header ul a {
    font-size: 22px;
    padding: 0;
    border: 0;
  }
  .page-header .logo {
    left: auto;
    right: 55px;
  }
  .page-header.open {
    -webkit-transform: translate3d(0%, 0, 0);
    transform: translate3d(0%, 0, 0);
  }
  .showcase-wrap {
    width: -webkit-calc(100% - 100px);
    width: calc(100% - 100px);
    margin: auto;
    padding: 100px 0 !important;
    margin-left: 20px;
    padding-right: 20px;
  }
  .showcase-wrap .left-cnt {
    float: none;
    width: 100%;
  }
  .showcase-wrap .img-wrap {
    position: relative;
    top: 0;
    left: 0;
    width: 263px;
    height: 396px;
    margin: 0 20px 0 auto;
  }
  .showcase-wrap .right-cnt {
    float: none;
    max-width: none;
    margin-top: 0;
  }
  .showcase-wrap .button {
    pointer-events: none;
  }
  .showcase-wrap .wine-cart {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    margin-top: 30px;
    padding: 0 10px 30px 10px;
    display: block !important;
    -webkit-transform: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
  .showcase-wrap .wine-cart .img {
    display: none;
  }
  .showcase-wrap .wine-cart .specs-wrap {
    padding: 22px 0 22px 0px;
  }
  .showcase-wrap .wine-cart .specs-wrap div {
    opacity: 1 !important;
    -webkit-transform: none !important;
    transform: none !important;
    font-size: 12px;
    line-height: 24px;
  }
  .showcase-wrap .wine-cart .center {
    display: none;
  }
  .lang-selector {
    margin-bottom: 50px !important;
  }
  .loader .inner {
    top: 0px;
    max-width: -webkit-calc(100% - 36px);
    max-width: calc(100% - 36px);
    margin: auto;
  }
  .loader .inner p {
    margin-bottom: 80px;
  }
  .loader .loader-logo {
    display: block;
    width: 220px;
    height: 146px;
  }
  .loader .touch-btn {
    -webkit-transition: opacity .4s ease;
    transition: opacity .4s ease;
    display: block;
    width: 147.5px;
    height: 68px;
    background-size: 60px;
    padding-top: 90px;
    font-size: 20px;
  }
  .locations-section .cnt, .other-section .cnt, .awards-section .cnt {
    max-width: none;
    width: -webkit-calc(100% - 60px);
    width: calc(100% - 60px);
    margin: auto;
    padding-left: 0;
  }
  .horeca-section .navigation li:first-child a:before {
    background-size: 70px;
  }
  .our-story-section,
  .region-section,
  .winery-section,
  .awards-section,
  .other-section,
  .locations-section {
    padding-left: 0 !important;
    padding-top: 130px;
  }
}

@media only screen and (max-height: 800px) {
  .section .back-button {
    width: 49px;
    height: 49px;
    padding: 0;
  }
  .section .back-button span {
    display: none;
  }
  .section .showcase-wrap {
    padding-top: 130px;
  }
}

@media only screen and (max-height: 768px) {
  .loader {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .loader .inner {
    margin: 20px auto 0;
  }
}

/*=============================================
=            Custom lenguage selector            =
=============================================*/
.lang-selector {
  position: relative;
  z-index: 10;
  max-width: 240px;
  margin: 0 auto;
  margin-bottom: 115px;
  cursor: pointer;
}

.lang-selector.lang-options-open .lang-options {
  opacity: 1;
  visibility: visible;
}

.lang-selector.lang-options-open .lang-selected .icon-right {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transition: -webkit-transform ease 300ms;
  transition: -webkit-transform ease 300ms;
  transition: transform ease 300ms;
  transition: transform ease 300ms, -webkit-transform ease 300ms;
}

.lang-selected {
  background: rgba(36, 30, 42, 0.6);
  position: relative;
  min-height: 48px;
  width: 100%;
  margin: 0 auto;
  border: 1px solid #ffd085;
  padding: 15px 30px 15px 58px;
}

.lang-selected p {
  font-size: 16px;
  color: #ffefdf;
  text-align: left;
  margin-bottom: 0 !important;
}

.lang-selected .icon-left {
  position: absolute;
  left: 13px;
  top: 11px;
  width: 24px;
  height: 24px;
  background: url(../img/icon/globus.png) no-repeat;
  background-size: 100%;
  background-position: 50% 50%;
}

.lang-selected .icon-right {
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -2px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 6px 0 6px;
  border-color: #c5b9ab transparent transparent transparent;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: -webkit-transform ease 300ms;
  transition: -webkit-transform ease 300ms;
  transition: transform ease 300ms;
  transition: transform ease 300ms, -webkit-transform ease 300ms;
}

.lang-options {
  position: absolute;
  width: 100%;
  background: #080b13;
  padding: 7px 0px;
  margin-top: 2px;
  -webkit-transform-origin: top;
  transform-origin: top;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.5s, visibility 0.5s;
  transition: opacity 0.5s, visibility 0.5s;
}

.lang-options li {
  text-align: left;
}

.lang-options li a {
  padding: 7px 20px;
}

.lang-options li a:hover p {
  color: #ffd085;
  -webkit-transition: color ease 300ms;
  transition: color ease 300ms;
}

.lang-options li a p {
  color: #ffefdf;
  font-size: 16px;
  text-align: left;
  margin-bottom: 0 !important;
  -webkit-transition: color ease 300ms;
  transition: color ease 300ms;
}

.lang-options li.selected a p {
  color: #ffd085;
  -webkit-transition: color ease 300ms;
  transition: color ease 300ms;
}

@media only screen and (max-width: 1600px) {
  .lang-selector {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 1280px) {
  .lang-selector {
    margin-bottom: 20px;
  }
}

/*=====  End of Custom lenguage selector  ======*/
.page-header ul li.active a {
  color: #ffd085;
  opacity: 1;
}

/* ==================================================
    =Media Queries
===================================================== */
@media only screen and (min-width: 1200px) and (max-height: 930px) {
  .loader .loader-logo {
    width: 200px;
    height: 130px;
  }
  .loader .inner p {
    font-size: 18px;
    letter-spacing: 0.5px;
  }
  .loader .touch-btn {
    padding-top: 75px;
    font-size: 18px;
  }
  .lang-selected {
    min-height: 40px;
    padding: 10px 30px 10px 58px;
  }
  .lang-selected .icon-left {
    top: 10px;
    width: 20px;
    height: 20px;
  }
  .lang-selected .icon-left {
    margin-top: -4px;
    border-width: 6px 5px 0 5px;
  }
  .lang-options li a {
    padding: 4px 16px;
  }
  .category-wrap .img-wrap {
    height: 280px;
  }
  .category-wrap .title {
    font-size: 36px;
  }
  .category-wrap .title b.badge {
    width: 70px;
    height: 70px;
    top: -24px;
    right: -webkit-calc(50% - 90px);
    right: calc(50% - 90px);
  }
  .category-wrap .quality-text {
    font-size: 34px;
  }
  .category-wrap .desc {
    line-height: 16px;
    font-size: 16px;
  }
  .section .category-outer {
    width: -webkit-calc(100% - 350px);
    width: calc(100% - 350px);
  }
  .page-header .contact {
    left: 35px;
    bottom: 20px;
  }
  .page-header ul li {
    margin-bottom: 5px;
  }
  .page-header ul a {
    padding-bottom: 5px;
  }
  .page-header .logo {
    left: 35px;
    top: 20px;
    width: 123px;
    height: 82px;
  }
  .page-header .contact-face, .page-header .contact-insta {
    width: 20px;
    height: 20px;
  }
  .page-header .contact-mail {
    width: 116px;
    height: 20px;
  }
  .our-story-section .title,
  .winery-section .title,
  .region-section .title {
    font-size: 34px;
    line-height: 1;
    letter-spacing: 1px;
  }
  .our-story-section .text,
  .winery-section .text,
  .region-section .text {
    font-size: 16px;
    line-height: 1.4;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .our-story-section .ifs,
  .winery-section .ifs,
  .region-section .ifs {
    font-size: 16px;
    line-height: 20px;
    padding-left: 100px;
    background-size: 70px;
  }
  .our-story-section .inner,
  .winery-section .inner,
  .region-section .inner {
    max-width: 460px;
    margin: auto;
    margin-right: 10%;
    max-height: -webkit-calc(100vh - 120px);
    max-height: calc(100vh - 120px);
    overflow: auto;
    padding-right: 30px;
  }
  .other-section .title,
  .awards-section .title {
    font-size: 24px;
    letter-spacing: 1px;
    line-height: 1;
  }
  .other-section .text,
  .awards-section .text {
    font-size: 16px;
    line-height: 1.4;
  }
  .locations-section .cnt,
  .other-section .cnt,
  .awards-section .cnt {
    max-width: -webkit-calc(100% - 338px);
    max-width: calc(100% - 338px);
    padding-left: 40px;
    margin-left: -webkit-calc(100% - 970px);
    margin-left: calc(100% - 970px);
    padding-right: 0;
    margin-right: 10%;
  }
  .locations-section .left-side,
  .other-section .left-side,
  .awards-section .left-side {
    width: 43%;
  }
  .other-section .right-side,
  .awards-section .right-side {
    max-height: -webkit-calc(100vh - 70px);
    max-height: calc(100vh - 70px);
    width: 50%;
  }
  .other-section .award span:nth-child(2),
  .awards-section .award span:nth-child(2) {
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 16px;
  }
  .other-section .award span:nth-child(3),
  .awards-section .award span:nth-child(3) {
    font-size: 14px;
    letter-spacing: 0px;
    line-height: 18px;
  }
  .other-section .award span:nth-child(4),
  .awards-section .award span:nth-child(4) {
    font-size: 14px;
    letter-spacing: 0px;
    line-height: 16px;
  }
  .other-section .award span:nth-child(5),
  .awards-section .award span:nth-child(5) {
    font-size: 16px;
    letter-spacing: 0px;
    line-height: 20px;
  }
  .other-section .award .img,
  .awards-section .award .img {
    width: 55px;
    background-size: 35px;
  }
  .other-section .award .img .tag.gold,
  .awards-section .award .img .tag.gold {
    width: 50px;
    height: 50px;
  }
  .other-section .award:not(:last-child),
  .awards-section .award:not(:last-child) {
    margin-bottom: 25px;
  }
  .other-section .fact .tag,
  .awards-section .fact .tag {
    font-size: 22px;
    letter-spacing: 1px;
    line-height: 1;
  }
  .other-section .fact,
  .awards-section .fact {
    font-size: 16px;
    line-height: 1.4;
  }
  .other-section .fact:not(:last-child),
  .awards-section .fact:not(:last-child) {
    margin-bottom: 30px;
  }
  .locations-section .title {
    font-size: 24px;
    letter-spacing: 1px;
    line-height: 1;
  }
  .locations-section .text {
    font-size: 16px;
  }
  .locations-section .result {
    font-size: 14px;
    line-height: 1;
  }
  .locations-section .result .tag {
    font-size: 22px;
    letter-spacing: 1px;
    margin-bottom: 12px;
  }
  .locations-section .result:not(:last-child) {
    margin-bottom: 10px;
  }
  .locations-section .left-side,
  .other-section .left-side, .awards-section .left-side {
    padding-top: 0;
  }
  .section .showcase-wrap {
    padding-top: 50px;
  }
  .showcase-wrap {
    width: -webkit-calc(100% - 507px);
    width: calc(100% - 507px);
    margin-left: 333px;
  }
  .section .back-button {
    width: 38px;
    height: 38px;
    top: 20px;
  }
  .showcase-wrap .title {
    font-size: 60px;
    line-height: 43px;
  }
  .showcase-wrap .title i {
    padding-top: 12px;
  }
  .showcase-wrap .desc {
    font-size: 24px;
    line-height: 22px;
  }
  .showcase-wrap .qual {
    font-size: 34px;
  }
  .showcase-wrap .img-wrap {
    top: -webkit-calc(50% - 203px);
    top: calc(50% - 203px);
    width: 395.25px;
    height: 400px;
  }
  .showcase-wrap .title-2 {
    font-size: 24px;
    line-height: 1;
    margin-bottom: 10px;
  }
  .showcase-wrap ul.specs {
    padding: 6px 2px;
    font-size: 12px;
    margin-bottom: 10px;
  }
  .showcase-wrap .text {
    font-size: 16px;
    line-height: 1.4;
  }
  .showcase-wrap .button {
    font-size: 14px;
    padding: 10px 5px 10px 45px;
  }
  .navigation a:before,
  .navigation a:after {
    background-size: 60px;
    top: 10px;
  }
  .navigation a {
    font-size: 12px;
  }
  .navigation a small {
    top: 7%;
  }
  .navigation a span {
    top: 12%;
  }
  .horeca-section .navigation li:nth-child(1) a:before {
    background-size: 55px;
  }
  .horeca-premium-section .navigation li:nth-child(3) a:before {
    background-size: 55px;
  }
}

@media only screen and (min-width: 1360px) and (max-height: 768px) {
  .our-story-section .inner,
  .winery-section .inner,
  .region-section .inner {
    max-width: 590px;
    margin: auto;
    margin-right: 10%;
    max-height: -webkit-calc(100vh - 120px);
    max-height: calc(100vh - 120px);
    overflow: auto;
    padding-right: 30px;
  }
  .locations-section .left-side,
  .other-section .left-side,
  .awards-section .left-side {
    padding-top: 10vh;
  }
  .locations-section .results {
    padding: 0;
  }
  .loader .touch-btn {
    height: 60px;
  }
  .loader .inner {
    margin: 120px auto 0;
  }
}

/* ==================================================
    =High def devices
===================================================== */
.sample {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-transition: all .5s;
  transition: all .5s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background: -webkit-gradient(linear, left top, left bottom, from(white), to(black));
  background: -o-linear-gradient(top, white, black);
  background: linear-gradient(to bottom, white, black);
}

.inner-flex-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  height: -webkit-calc(100vh - 120px);
  height: calc(100vh - 120px);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media only screen and (max-height: 930px) and (min-width: 1200px) {
  .category-wrap .img-wrap {
    height: 50vh;
    min-height: 250px;
  }
  .category-wrap .title b.badge {
    right: -webkit-calc(50% - 100px);
    right: calc(50% - 100px);
  }
  .category-wrap .desc {
    line-height: 20px;
    font-size: 20px;
  }
}

@media only screen and (max-width: 1280px) {
  .section .category-outer {
    width: -webkit-calc(100% - 310px);
    width: calc(100% - 310px);
  }
  .category-wrap .img-wrap {
    height: 270px;
  }
  .section .category-outer {
    width: -webkit-calc(100% - 270px);
    width: calc(100% - 270px);
  }
}

@media only screen and (max-width: 600px) {
  .section .category-outer {
    width: 100%;
  }
  .category-wrap .title b.badge {
    width: 70px;
  }
}

@media only screen and (max-height: 930px) and (min-width: 1200px) {
  .horeca-section .navigation li a:before,
  .horeca-section .navigation li a:after,
  .horeca-premium-section .navigation li a:before,
  .horeca-premium-section .navigation li a:after {
    background-size: 11vh !important;
  }
  .horeca-section .navigation li:nth-child(1) a:before,
  .horeca-section .navigation li:nth-child(1) a:after,
  .horeca-premium-section .navigation li:nth-child(1) a:before,
  .horeca-premium-section .navigation li:nth-child(1) a:after {
    background-size: 11vh !important;
  }
  .section.retail-section .back-button {
    width: auto;
    height: 48px;
    right: 200px;
  }
  .showcase-wrap .img-wrap {
    top: 0;
    width: 60vh;
    height: 69vh;
    left: -webkit-calc(50% - 258px);
    left: calc(50% - 258px);
  }
  .showcase-wrap .title {
    font-size: 7vw;
    line-height: 0.8;
  }
  .showcase-wrap .title b {
    top: -70px;
    left: -90px;
  }
  .section .showcase-wrap {
    padding-top: 0;
  }
  .showcase-wrap .text {
    padding-right: 30px;
  }
  .showcase-wrap .title-2 {
    font-size: 32px;
  }
  .showcase-wrap .text {
    font-size: 15px;
    line-height: 1.4;
  }
  .showcase-wrap .text {
    max-height: 40vh;
    overflow: auto;
  }
  .retail-section .right-cnt {
    /* width */
    /* Track */
    /* Handle */
    /* Handle on hover */
  }
  .retail-section .right-cnt ::-webkit-scrollbar {
    width: 8px;
  }
  .retail-section .right-cnt ::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
  }
  .retail-section .right-cnt ::-webkit-scrollbar-thumb {
    background: #FFD085;
    border-radius: 4px;
  }
  .retail-section .right-cnt ::-webkit-scrollbar-thumb:hover {
    background: #FFE4B8;
  }
}

@media only screen and (min-width: 1600px) {
  .showcase-wrap .title b {
    top: -100px;
    left: -120px;
  }
}

@media only screen and (min-width: 601px) and (max-width: 1200px) {
  .showcase-wrap {
    width: -webkit-calc(100% - 120px);
    width: calc(100% - 120px);
    height: 100vh;
    overflow: auto;
    margin: 0 120px 0 0;
    padding: 30px 50px 30px 310px;
  }
  .showcase-wrap .left-cnt {
    width: 100%;
  }
  .showcase-wrap .img-wrap {
    position: relative;
    top: 0;
    left: 0;
    float: left;
  }
  .section .back-button {
    padding: 26px 5px 16px 40px;
    top: 20px;
  }
  .section .back-button span {
    display: none;
  }
  .showcase-wrap .title {
    font-size: 74px;
    line-height: 0.7;
  }
  .showcase-wrap .left-cnt {
    margin-bottom: 50px;
  }
  .showcase-wrap .img-wrap {
    width: 375.25px;
    height: 354px;
    margin-bottom: 40px;
  }
  .showcase-wrap .right-cnt {
    max-width: 100%;
    padding-right: 50px;
  }
  .page-header .logo {
    left: 35px;
  }
}

@media only screen and (max-width: 1400px) {
  .our-story-section,
  .region-section,
  .winery-section,
  .awards-section,
  .other-section,
  .locations-section {
    padding-left: 260px;
  }
  .awards-section .cnt,
  .other-section .cnt,
  .locations-section .cnt {
    max-width: 100%;
  }
  .awards-section .cnt .title,
  .other-section .cnt .title,
  .locations-section .cnt .title {
    font-size: 35px;
    line-height: 1;
  }
}

@media only screen and (min-width: 601px) and (max-width: 800px) {
  .page-header .logo {
    left: 25px;
  }
  .showcase-wrap {
    width: -webkit-calc(100% - 120px);
    width: calc(100% - 120px);
    height: 100vh;
    overflow: auto;
    margin: 0 120px 0 0;
    padding: 30px 20px 30px 230px;
  }
}

@media only screen and (min-width: 724px) and (max-width: 1200px) {
  .horeca-section .navigation li a:before,
  .horeca-section .navigation li a:after,
  .horeca-premium-section .navigation li a:before,
  .horeca-premium-section .navigation li a:after {
    background-size: 8vh !important;
  }
  .horeca-section .navigation li:nth-child(1) a:before,
  .horeca-section .navigation li:nth-child(1) a:after,
  .horeca-premium-section .navigation li:nth-child(1) a:before,
  .horeca-premium-section .navigation li:nth-child(1) a:after {
    background-size: 8vh !important;
  }
}

@media only screen and (max-height: 930px) and (min-width: 1200px) {
  .russian .category-wrap .quality-text {
    font-size: 30px;
  }
  .russian .page-header ul a {
    font-size: 18px;
  }
  .russian .showcase-wrap .desc {
    max-width: 220px;
  }
  .russian .showcase-wrap .wine-cart .cart-title {
    font-size: 47px;
    line-height: 1.1;
    padding-top: 28px;
    margin-bottom: 30px;
  }
  .chinese .category-wrap .quality-text {
    font-size: 30px;
  }
  .chinese .page-header ul a {
    font-size: 18px;
  }
  .chinese .showcase-wrap .desc {
    max-width: 220px;
  }
  .chinese .showcase-wrap .wine-cart .cart-title {
    font-size: 47px;
    line-height: 1.1;
    padding-top: 28px;
    margin-bottom: 30px;
  }
  .chinese .showcase-wrap .img-wrap {
    top: -55px;
  }
}

@media only screen and (max-width: 1000px) and (max-height: 500px) {
  .page-header .logo {
    height: 56.25px;
    top: 0;
  }
  .page-header ul li {
    margin-bottom: 5px;
  }
  .page-header ul a {
    padding-bottom: 0;
  }
  .page-header .contact {
    bottom: 10px;
  }
  .loader .inner p,
  .loader .touch-btn {
    font-size: 16px;
  }
  .loader .loader-logo {
    height: 60px;
  }
  .lang-options {
    height: 150px;
    overflow-y: auto;
  }
  .lang-options li a {
    padding: 3px 20px;
  }
  .category-outer {
    padding-top: 10%;
  }
  .section .showcase-wrap {
    overflow-x: hidden;
  }
  .horeca-section .navigation li a:before,
  .horeca-section .navigation li a:after,
  .horeca-premium-section .navigation li a:before,
  .horeca-premium-section .navigation li a:after {
    background-size: 50px !important;
  }
  .horeca-section .navigation li:nth-child(1) a:before,
  .horeca-section .navigation li:nth-child(1) a:after,
  .horeca-premium-section .navigation li:nth-child(1) a:before,
  .horeca-premium-section .navigation li:nth-child(1) a:after {
    background-size: 50px !important;
  }
  .navigation a small {
    display: none;
  }
  .navigation a:before, .navigation a:after {
    background-size: 30px;
  }
  .locations-section .right-side,
  .other-section .right-side,
  .awards-section .right-side {
    width: 100%;
    float: none;
    overflow: visible;
    height: auto;
    max-height: none;
  }
  .locations-section .left-side,
  .other-section .left-side,
  .awards-section .left-side {
    width: 100%;
    float: none;
    margin-bottom: 80px;
  }
  .our-story-section .cnt,
  .winery-section .cnt,
  .region-section .cnt,
  .locations-section .cnt {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .chinese .page-header ul a {
    font-size: 15px;
  }
  .russian .page-header ul a {
    font-size: 12px;
  }
  .russian .category-wrap .quality-text {
    font-size: 20px;
  }
  .russian .category-wrap .desc {
    font-size: 15px;
  }
  .russian .showcase-wrap .title-2 {
    font-size: 18px;
    line-height: 1.3;
  }
}
