/**
Theme Name: VasilikonWP
Theme URI: https://sorvus.com/
Author: Sorvus Media
Version: 1.0.1
**/

/**
Fonts
**/
/* abril-fatface-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Abril Fatface';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/abril-fatface-v24-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* loved-by-the-king-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Loved by the King';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/loved-by-the-king-v24-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* istok-web-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Istok Web';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/istok-web-v25-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* istok-web-italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Istok Web';
  font-style: italic;
  font-weight: 400;
  src: url('fonts/istok-web-v25-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* istok-web-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Istok Web';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/istok-web-v25-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* istok-web-700italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Istok Web';
  font-style: italic;
  font-weight: 700;
  src: url('fonts/istok-web-v25-latin-700italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/**
Css Reset
**/
a, a:after, a:before{
	text-decoration:none;
	color:inherit;
	-webkit-transition: all 0.2s ease-in-out 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
	-o-transition: all 0.2s ease-in-out 0s;
	-ms-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
}

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, 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;
}
table {border-collapse: collapse;border-spacing: 0;}
* { box-sizing: border-box;	-moz-box-sizing: border-box; -webkit-box-sizing: border-box;}
a {outline : none; color:inherit; text-decoration:none;}
a img {outline : none;}
img {border : 0; display:block;}
strong, b{	font-weight:600;}
::selection {
	background: #03376B; /* WebKit/Blink Browsers */
	color:#fff;
}
::-moz-selection {
	color:#fff;
	background: #03376B; /* Gecko Browsers */
}


.mob_only{
	display:none;
}


/**
Root Variables
**/
:root{

	--clr_green:#3A3F2D;
	--clr_titles:rgba(62, 59, 59, 1);
	--clr_titles_sec:rgba(252, 249, 242, 1);
	--clr_text:rgba(0,0,0,1);
	--bg_main:rgba(182, 176, 131, 0.4);
	--bg_light:#FFFEF9;
	--bg_form: rgba(246, 246, 239, 1);
}

.bg_main{
	background:var(--bg_main);
}
.bg_light{
	background:var(--bg_light);
}


/**
Variables
**/
body, html{
	font-family: 'Istok Web';
	font-style: normal;
	font-weight: 400;
	font-size:16px;
	background:#fff;
}

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

.wrapper{
    width:95%;
	max-width:1280px;
    display: block;
    margin:0 auto;
}

section{
	position:relative;
	float:left;
	width:100%;
}

section,
div{
	scroll-margin-top: 100px;
	background-repeat: no-repeat;
	background-position: center; 
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

.upper_clear{
    height:110px;
    background:#fff;
}
/**
Columns
**/
[class*="col-"] {
	float:left;
}

.col-D {width:3.5%;height:10px;}
.col-0 {width:31%;}
.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-20 {width:20%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}

/**
Grid
**/
[class*="grid-"] {
	display: grid;
	grid-template-rows: 1fr;
    grid-column-gap: 50px;
    grid-row-gap: 50px;
}	

.grid-2{
    grid-template-columns: repeat(2, 1fr);
}
.grid-3{
    grid-template-columns: repeat(3, 3fr);
}
.grid-4{
    grid-template-columns: repeat(4, 1fr);
}
.grid-5{
    grid-template-columns: repeat(5, 1fr);
}

.grid-more-space{
    grid-column-gap: 105px;
}

/**
Floats & Aligns
**/
.txt-center{
	text-align:center;
}

.txt-left{
	text-align:left;
}

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

.float-left{
	float:left;
}

.float-right{
	float:right;
}

.empty{
    min-height: 1px;
}

body
{
    padding-top:110px;
}
/**
Header
**/
header{
    position: fixed;
    top:0;
    left:0;
    right:0;
    height:110px;
    background:var(--clr_green);
    z-index: 100;
    -webkit-transition: all 0.2s ease-in-out 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
	-o-transition: all 0.2s ease-in-out 0s;
	-ms-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: stretch;
	align-content: stretch;
}

header .wrapper{
    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: stretch;
	align-content: stretch;
}

header.header_follow{
    height:80px;
}

.headerBG{
    position: absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    z-index: 1;
    opacity: 0.1;
}

header .wrapper{
    position: relative;
    z-index: 2;
}
.logo{
    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	align-content: stretch;
}

.logo a{
    height:55%;
}

.logo img{
    height:100%;
    width:auto;
    display: inline-block;
}

.nav{
    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	align-content: stretch;
}

.nav ul{
    list-style: none;
    color:#fff;
}

.nav ul li{
    display: inline-block;
    margin-right: 15px;
}

.nav ul li a{
    font-size: 1.05em;
    letter-spacing: 0.07em;
    font-weight: 400;
}

.nav ul li a:hover{
    opacity: .6;
}

.social{
    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-end;
	align-items: center;
	align-content: stretch;
}

.social a svg{
    height:20px;
    width:auto;
    fill:#fff;
}

.social a{
    display: inline-block;
    margin-left:15px;
}

/**
Hero Video
**/
.hero_video {
    position: relative;
    width: 100%;
    height: calc(100vh - 110px);
    display: grid;
    place-items: center;
    overflow: hidden;
    background: #000;
  }

.hero_video__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.hero_video__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	loading: "eager";
}

.hero_video__content {
	position: relative;
	z-index: 2;
	color: #fff;
	text-align: center;
	padding: 4rem 1.25rem;
}

.hero_video__content h1 {
	margin: 0 0 0.5rem;
	line-height: 1.1;
	font-size: clamp(4rem, 6vw, 5.5rem);
	font-family: 'Loved by the King';
	font-style: normal;
	font-weight: 400;
}


.block{
    padding:10vh 0;
}
/**
Titles
**/
.inline_title{
    font-size: clamp(3rem, 3vw, 3rem);
    line-height: 1em;
    padding-bottom: 25px;
	padding-top:45px;
}
/**
Image Wrap
**/
.imgwrap{
    width:100%;
    display: inline-block;
    overflow: hidden;
    border-radius: 60px;
}

.imgwrap img{
    width:100%;
    height:auto;
}

/**
Image Content
**/
.content_image .content{
    padding-top:25px;
}

.line-reveal-container .lr-line {
  opacity: 0; /* initial hidden, AOS will fade them */
}

/**
Content
**/
.content p{
    margin-bottom: 25px;
}

.alignLeft{
    text-align: left;
}

.alignRight{
    text-align: right;
}

.alignCenter{
    text-align: center;
}

.contentIcon{
    padding-top:0px;
    padding-bottom: 0px;
}

.contentIcon img{
    display: inline-block;
    height:50px;
    widows: auto;
}

.imgRight .content_imageIMG{
    float:right;
}

.imgLeft .content_imageIMG{
    float:left;
}

.imgLeft .content_imageCC{
    float:right;
}

.alignSingleCenter{
    float:none;
    text-align: center;
    margin:0 auto;
}

.content h2{
    font-weight: 700;
    font-size: 1.2em;
    padding-bottom: 25px;
}

.content p a{
    text-decoration: underline;
    font-weight: 700;
}

/**
CTAs
**/
.cta_01 a{
    display: inline-block;
    border:2px solid;
    border-radius: 16px;
    padding:16px 28px;
}

.cta_01 a:hover{
    background:var(--clr_green);
    color:var(--clr_titles_sec);
    border:2px solid var(--clr_green);
}

.centeredTitle{
    text-align: center;
    font-size: clamp(2rem, 4vw, 3.5rem);
	font-family: 'Loved by the King';
	font-style: normal;
	font-weight: 400;
    color: var(--clr_titles);
    padding-bottom: 45px;
}

/**
WinesGallery
**/
.singleWineGallery{
    text-align: center;
}

.singleWineGalleryIMG{
    margin-bottom: 20px;
}

.singleWineGalleryIMG img{
    width:100%;
    height:auto;
}

.singleWineGalleryTitle{
    font-style: italic;
    font-weight: 400;
    font-size: 1.1em;
}

.singleWineGalleryDesc{
    padding:0px 15px;
}

/**
Full Image
**/
.fullImage{
    height:100vh;
    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	align-content: stretch;
}

.fullImageContent{
    font-size: clamp(4rem, 6vw, 7.5rem);
	font-family: 'Loved by the King';
	font-style: normal;
	font-weight: 400;
    color: var(--clr_titles_sec);
}

/**
Wines Archive
**/
.singleWine{
    text-align: center;
    padding:20px 0px;
    border:2px solid rgba(0,0,0,0);
    border-radius: 10px;
}
.singleWineImg{
    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	align-content: stretch;
    position: relative;
}
/**
.singleWineImg:before{
    opacity: 0;
    content:"";
    width:100%;
    height:0;
    bottom:0;
    position: absolute;
    left:0;
    right:0;
    z-index: -1;
    background: #3A3F2D;
    border-radius: 50px;
    background: linear-gradient(0deg, rgba(58, 63, 45, 1) 0%, rgba(58, 63, 45, 0) 100%);
    -webkit-transition: all 0.2s ease-in-out 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
	-o-transition: all 0.2s ease-in-out 0s;
	-ms-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
}

.singleWine:hover .singleWineImg:before{
    opacity: .41;
    height:100%;
}
**/

.singleWineTitle .title{
    display: inline-block;
    position: relative;
}

.singleWineTitle .title:before{
    content:"";
    position: absolute;
    left:50%;
    bottom:0;
    width:0%;
    height:2px;
    background:var(--clr_green);
    -webkit-transition: all 0.2s ease-in-out 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
	-o-transition: all 0.2s ease-in-out 0s;
	-ms-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
}

.singleWine:hover .singleWineTitle .title:before{
    width:100%;
    left:0%
}

.singleWine:hover .singleWineTitle .title{
    color:var(--clr_green);
}
.singleWineImg{
    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	align-content: stretch;
}

.singleWineImg img{
    height:400px;
    width:auto;
}

.singleWineTitle{
    font-family: 'Abril Fatface';
    font-style: normal;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 1.2em;
    padding:20px 0px 5px;
	letter-spacing:0.05em;
}

.singleWineSub{
    font-style: italic;
    font-weight: 400;
    padding-bottom: 15px;
}

.singleWineExcerpt{
    padding:0px 25px 10px;
}

/**
Wine Single
**/
main{
    display: inline-block;
    float:left;
    width:100%;
    position: relative;
}

main section{
    position: relative;
    z-index: 2;
}
.bgElement{
    position: absolute;
    left:0;
    top:0;
    bottom:0;
    width:100%;
    overflow: hidden;
    z-index: 1;
}

.bgElement img{
    width:70%;
    height:auto;
    opacity: .3;
}
.wineTitleHolder{
    height:calc(80vh - 110px);
    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	align-content: stretch;
    text-align: center;
}

.wineTitle h1{
    font-family: 'Abril Fatface';
    font-style: normal;
    font-weight: 400;
    text-transform: uppercase;
    font-size: clamp(4rem, 10vw, 10rem);
    line-height: .9em;
}

.wineTitle h1 span{
    font-size: clamp(3rem, 4vw, 4.5rem);
    display: inline-block;
    width:100%;
    font-family: 'Istok Web';
    font-weight: 400;
    text-transform: none;
    padding:0px 0px;
    margin:0px 0px;
    position: relative;
    float:left;
}

.theBootleHolder{
	--negMargin:-80vh;
	position: absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: flex-start;
	align-content: stretch;
    margin-top:var(--negMargin);
}

.theBootle{
	width:30%;
	max-width:400px;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	align-content: stretch;
    height:100%;
}

.theBootle img{
	--imgWidth:400px;
	width:var(--imgWidth);
	height:auto;
}
.wineDetailsHolder{
    position: relative;
}

.wineDetailsHolder{
    padding:30vh 0;
}

.wineContent h2{
    font-weight: 700;
    font-size: 1.4em;
}

.wineContent h3{
    position: relative;
    font-weight: 700;
    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	align-content: stretch;
    margin-bottom: 10px;
    margin-top:30px;
}
.wineContent h3:first-child{
    margin-top:0px;
}


.wineContent h3:before{
    content:"";
    margin-right:10px;
    width:5px;
    height:5px;
    background:#000;
    border-radius: 100%;
    display: inline-block;
}

.wine_temp{
    margin-top: 40px;
    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	align-content: stretch;
}

.wine_temp svg{
    margin-right: 15px;
}

.wineDetailsHolder .wrapper{
    position: relative;
}
/**
Storyline
**/
.timelineHolder{
    position: relative;
    margin:10vh 0;
}

.svgAnimatedLine{
    position: absolute;
    top:0;
    bottom:0;
    left:0;
    right:0;
    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	align-content: stretch;
}

.svgAnimatedLine svg{
    height:100%;
    width:auto;
}

.pointSpace{
    display: inline-block;
    height:2px;
}

.timelinePoint{
    text-align: center;
}


.timelinePointTitle{
    font-weight: 700;
    padding-bottom: 15px;
    font-size: 1.2em;
}

.galleryGrid{
    display: grid;
    grid-template-columns: repeat(16, 1fr);
    grid-template-rows: repeat(5, 1fr);
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    padding:80px 0px 0px;
}

.galleryGrid img:nth-child(1){
    grid-area: 1 / 2 / 3 / 9; 
}

.galleryGrid img:nth-child(2){
    grid-area: 3 / 1 / 5 / 9;
}

.galleryGrid img:nth-child(3){
    grid-area: 2 / 9 / 4 / 16;
}

.galleryGrid img:nth-child(4){
    grid-area: 4 / 9 / 6 / 17;
}

.galleryGrid img{
    width:100%;
    height:auto;
    border-radius: 40px;
}

/**
Contact Form
**/
.contact_form{
    padding:50px 0px;
    display: inline-block;
    position: relative;
}

.contact_form form{
    display: inline-block;
    position: relative;
    float:left;
    width:100%;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output{
    border:0px solid;
}

.contact_form label{
    width:100%;
    float:left;
    font-weight: 400;
    font-size: 1em;
    padding-bottom: 5px;
}

.contact_form input[type=text],
.contact_form input[type=name],
.contact_form input[type=email],
.contact_form input[type=phone]{
    width:100%;
    height:40px;
    border: none;
    margin-bottom: 15px;
    background:var(--bg_form);
    float:left;
    outline:none;
    font-family: 'Istok Web';
    padding:0px 10px;
}

.contact_form input[type=text]:focus,
.contact_form input[type=name]:focus,
.contact_form input[type=email]:focus,
.contact_form input[type=phone]:focus{
    outline:none;
}

.contact_form textarea{
    width:100%;
    max-width:100%;
    height:125px;
    font-family: 'Istok Web';
	border:none;
    background:var(--bg_form);
    padding:10px;
    margin-bottom: 15px;
    outline:none;
}


.contact_form input[type=submit]{
    font-family: 'Istok Web';
    border:none;
    display: inline-block;
    position: relative;
    font-size: 1em;
    font-weight: 700;
    position: relative;
    z-index: 10;
    background:var(--clr_green);
    border-radius: 15px;
	color:#fff;
    padding:17px 25px 15px;
    -webkit-transition: all 0.2s ease-in-out 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
	-o-transition: all 0.2s ease-in-out 0s;
	-ms-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
}

.contact_form input[type=submit]:hover{
	background:var(--clr_titles);
    cursor: pointer;
}

.timelinePoint{
    padding-bottom:80px;
}

.timelinePoint svg{
    height:40px;
    width:auto;
}

.timelineHolderTitle{
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 4rem);
    padding-top:60px;
}
/**
Footer
**/
footer{
    position: relative;
    float: left;
    width:100%;
    display: inline-block;
    background:var(--clr_green);
    color:#fff;
    padding:40px 0px;
}

footer img{
    display: inline-block;
    height:68px;
    width:auto;
}
footer a{
    display: inline-block;
    padding:10px;
}

footer a:hover{
    opacity: 0.6;
}

@media (max-width: 1260px) and (min-width: 0px) {
[class*="col-"] {
	width:100%;
}

[class*="grid-"] {
	grid-template-columns: repeat(1, 1fr);
}

}

/**
Hamburger — hidden on desktop
**/
.hamburger {
	display: none;
}

/**
Tablet: 769px – 1260px
Restore useful multi-column layouts that the aggressive col/grid collapse breaks
**/
@media (max-width: 1260px) and (min-width: 769px) {

	.archiveWines.grid-3 {
		grid-template-columns: repeat(2, 1fr);
		grid-column-gap: 30px;
		grid-row-gap: 35px;
	}

	.winesGallery.grid-4 {
		grid-template-columns: repeat(2, 1fr);
		grid-column-gap: 30px;
		grid-row-gap: 35px;
	}

	/* Keep image gallery in its 2×2 asymmetric layout */
	.galleryGrid {
		grid-template-columns: repeat(8, 1fr);
	}

	.galleryGrid img:nth-child(1) { grid-area: 1 / 1 / 3 / 5; }
	.galleryGrid img:nth-child(2) { grid-area: 3 / 1 / 5 / 5; }
	.galleryGrid img:nth-child(3) { grid-area: 1 / 5 / 3 / 9; }
	.galleryGrid img:nth-child(4) { grid-area: 3 / 5 / 5 / 9; }

	/* Keep content-image side by side */
	.content_imageCC,
	.content_imageIMG {
		width: 46% !important;
	}

	.wineDetailsHolder {
		padding: 20vh 0;
	}

	.theBootle {
		width: 40%;
	}

}

/**
Mobile: max-width 768px
**/
@media (max-width: 768px) {

	body {
		padding-top: 80px;
	}

	/* --- Header --- */
	header {
		height: 80px;
	}

	header.header_follow {
		height: 70px;
	}

	.upper_clear {
		height: 80px;
	}

	header .wrapper {
		justify-content: space-between;
		align-items: center;
		flex-wrap: nowrap;
	}

	.logo {
		width: auto !important;
		flex: 0 1 auto;
		justify-content: flex-start;
	}

	.logo a {
		height: 40px;
	}

	.social {
		display: none;
	}

	/* --- Mobile nav overlay --- */
	.nav {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		width: 100% !important;
		background: var(--clr_green);
		flex-direction: column;
		justify-content: center;
		align-items: center;
		z-index: 150;
		opacity: 0;
		pointer-events: none;
		-webkit-transition: opacity 0.3s ease;
		transition: opacity 0.3s ease;
	}

	.nav.nav-open {
		opacity: 1;
		pointer-events: auto;
	}

	.nav ul {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 35px;
	}

	.nav ul li {
		display: block;
		margin: 0;
	}

	.nav ul li a {
		font-size: 2em;
		letter-spacing: 0.1em;
	}

	body.nav-open {
		overflow: hidden;
	}

	/* --- Hamburger button --- */
	.hamburger {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		width: 28px;
		height: 20px;
		background: none;
		border: none;
		cursor: pointer;
		padding: 0;
		position: relative;
		z-index: 200;
		flex-shrink: 0;
	}

	.hamburger span {
		display: block;
		width: 100%;
		height: 2px;
		background: #fff;
		border-radius: 2px;
		-webkit-transition: all 0.3s ease;
		transition: all 0.3s ease;
		transform-origin: center;
	}

	.hamburger.is-active span:nth-child(1) {
		transform: translateY(9px) rotate(45deg);
	}

	.hamburger.is-active span:nth-child(2) {
		opacity: 0;
		transform: scaleX(0);
	}

	.hamburger.is-active span:nth-child(3) {
		transform: translateY(-9px) rotate(-45deg);
	}

	/* --- Hero --- */
	.hero_video {
		height: calc(70vh - 80px);
	}

	/* --- General sections --- */
	.block {
		padding: 60px 0;
	}

	/* --- Full Image --- */
	.fullImage {
		height: 60vh;
	}

	/* --- Content Image block --- */
	.content_imageCC,
	.content_imageIMG {
		width: 100% !important;
		float: none !important;
	}

	.imgRight .content_imageIMG,
	.imgLeft .content_imageIMG {
		margin-top: 25px;
		float: none !important;
	}

	.imgLeft .content_imageCC {
		float: none !important;
	}

	/* --- Content Contact block float fix --- */
	.content_image .float-left,
	.content_image .float-right {
		float: none;
	}

	/* --- Wines grids --- */
	.winesGallery.grid-4 {
		grid-template-columns: repeat(2, 1fr);
		grid-column-gap: 20px;
		grid-row-gap: 25px;
	}

	.archiveWines.grid-3 {
		grid-template-columns: repeat(2, 1fr);
		grid-column-gap: 20px;
		grid-row-gap: 25px;
	}

	.singleWineImg img {
		height: 260px;
	}

	/* --- Image Gallery block --- */
	.galleryGrid {
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: auto;
		grid-column-gap: 15px;
		grid-row-gap: 15px;
		padding: 30px 0 0;
	}

	.galleryGrid img:nth-child(1),
	.galleryGrid img:nth-child(2),
	.galleryGrid img:nth-child(3),
	.galleryGrid img:nth-child(4) {
		grid-area: auto;
		border-radius: 20px;
	}

	/* --- Timeline block --- */
	.svgAnimatedLine {
		visibility: hidden;
		pointer-events: none;
	}

	.timelineHolder {
		margin: 30px 0;
	}

	.timelinePointHolder {
		display: flex;
		justify-content: center;
	}

	.pointSpace {
		display: none;
	}

	.col-3.timelinePoint {
		width: 85% !important;
		margin-top: 20px !important;
		margin-bottom: 20px !important;
	}

	/* --- Wine single page --- */
	.wineTitleHolder {
		height: auto;
		min-height: 35vh;
		padding: 60px 0 30px;
	}

	/* Neutralise the GSAP-driven bottle animation */
	.theBootleHolder {
		--negMargin: 0vh;
		position: relative;
		top: auto;
		left: auto;
		right: auto;
		bottom: auto;
		height: auto;
		margin-top: 0 !important;
		padding: 20px 0 30px;
		justify-content: center;
		align-items: center;
	}

	.theBootle {
		width: 55%;
		max-width: 220px;
		height: auto;
	}

	.theBootle img {
		width: 100% !important;
	}

	.wineDetailsHolder {
		padding: 40px 0 60px;
	}

	.wineDetails .col-4 {
		float: none;
	}

	.wineDetails .col-4 + .col-4 {
		margin-top: 35px;
	}

	.bgElement {
		display: none;
	}

	/* --- Contact form --- */
	.contact_form {
		padding: 20px 0 0;
	}

}

/**
Small mobile: max-width 480px
**/
@media (max-width: 480px) {

	.wrapper {
		width: 93%;
	}

	.winesGallery.grid-4,
	.archiveWines.grid-3 {
		grid-template-columns: 1fr;
	}

	.galleryGrid {
		grid-template-columns: 1fr;
	}

	.singleWineImg img {
		height: 300px;
	}

	.theBootle {
		width: 65%;
	}

	.nav ul li a {
		font-size: 1.6em;
	}

	.centeredTitle {
		padding-bottom: 30px;
	}

}