/* Fonts */
/* nunito-regular - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/nunito/nunito-v32-latin_latin-ext-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/nunito/nunito-v32-latin_latin-ext-regular.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}
/* nunito-700 - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/nunito/nunito-v32-latin_latin-ext-700.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/nunito/nunito-v32-latin_latin-ext-700.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}
/* nunito-800 - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/nunito/nunito-v32-latin_latin-ext-800.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/nunito/nunito-v32-latin_latin-ext-800.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}
/* nunito-800italic - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Nunito';
  font-style: italic;
  font-weight: 800;
  src: url('../fonts/nunito/nunito-v32-latin_latin-ext-800italic.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/nunito/nunito-v32-latin_latin-ext-800italic.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}
/* nunito-900 - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 900;
  src: url('../fonts/nunito/nunito-v32-latin_latin-ext-900.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/nunito/nunito-v32-latin_latin-ext-900.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}

/* Common */
:root {
	--font-main: 'Nunito', sans-serif;
	--font-heading: 'Nunito', sans-serif;

	--c-white: #FFF;
	--c-black: #000;
	--c-green-dark: #467B37;
	--c-green: #79A74C;
	--c-brown: #5F491D;
	--c-gray: #939393;
	--c-yellow: #FFB743;
	--c-red: #D24949;
	--c-bg: #FFFAF2;

	--fw-400: 400;
	--fw-700: 700;
	--fw-800: 800;
	--fw-900: 900;

	--transition: all 200ms;

	--bs-body-font-family: var(--font-main);
	--bs-body-font-weight: var(--fw-400);
	--bs-body-line-height: 1.5;
	--bs-body-font-size: 16px;

	--radius: 10px;
	--radius-max: 999px;
}

body {
	color: var(--c-black);
	min-height: 100vh;
}

body.admin-bar {
	min-height: calc(100vh - 32px);
}

main {
	background-color: var(--c-bg);
	background-image: url('../img/bg-repeat.jpg');
	background-repeat: repeat-y;
	background-size: contain;
	background-position: top center;	
}

a {
	transition: var(--transition);
	text-decoration: none;	
}

a,
a:visited,
a:active {
	color: var(--c-green-dark);
}

a:hover,
a:focus {
	color: var(--c-green);
}

b, strong {
	font-weight: var(--fw-800);
}

main {
	flex: 1;
	overflow-x: hidden;
}

::selection {
	background-color: var(--c-green);
	color: var(--c-white);
}

/* Images */
img {
	max-width: 100%;
	height: auto;
}

.img-cover {
	object-fit: cover;
}

.img-contain {
	object-fit: contain;
}

.img-rounded {
	border-radius: var(--radius);
	overflow: hidden;
}

.img-container-fit-height {
	height: 100%;
}

.img-container-fit-height > * {
	height: 100%;
}

.img-container-fit-height > img {
	object-fit: cover;
}

svg {
	display: inline-block;
	height: 1em;
	width: auto;
}

/* Typography */
p, li {
	font-weight: var(--fw-400);
}

ul {
	list-style-type: disc;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
	font-family: var(--font-heading);
	font-weight: var(--fw-900);
	line-height: 1.3;
	text-decoration: none;
	word-break: break-word;
}

h2, h3, h4, h5, h6, .h2, .h3, .h4, .h5, .h6 {
	color: var(--c-green-dark);
}

h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover, h2 a:focus, h3 a:focus, h4 a:focus, h5 a:focus, h6 a:focus {
	color: var(--c-black);
}

h1, .h1 {
	font-size: 61px;
	margin-bottom: 0.7em;
	text-transform: uppercase;
}

h2, .h2 {
	font-size: 50px;
	text-transform: uppercase;
}

h3, .h3 {
	font-size: 25px;
	text-transform: uppercase;
}

h4, .h4 {
	font-size: 20px;
	font-weight: var(--fw-800);
}

/* Buttons */
.btn {
	font-size: 16px;
	font-weight: var(--fw-700);
	padding: 10px 35px;
	line-height: 1.5;
	border-radius: var(--radius-max);
	width: fit-content;
}

.btn,
.btn-primary,
.btn.green {
	--bs-btn-color: var(--c-white);
	--bs-btn-bg: var(--c-green);
	--bs-btn-border-color: var(--c-green);
	--bs-btn-hover-color: var(--c-green);
	--bs-btn-hover-bg: var(--c-white);
	--bs-btn-hover-border-color: var(--c-green);
	--bs-btn-active-color: var(--c-green);
	--bs-btn-active-bg: var(--c-white);
	--bs-btn-active-border-color: var(--c-green);
}

.btn-secondary,
.btn.brown {
	--bs-btn-color: var(--c-white);
	--bs-btn-bg: var(--c-brown);
	--bs-btn-border-color: var(--c-brown);
	--bs-btn-hover-color: var(--c-brown);
	--bs-btn-hover-bg: var(--c-white);
	--bs-btn-hover-border-color: var(--c-brown);
	--bs-btn-active-color: var(--c-brown);
	--bs-btn-active-bg: var(--c-white);
	--bs-btn-active-border-color: var(--c-brown);
}

.btn.yellow {
	--bs-btn-bg: var(--c-yellow);
	--bs-btn-border-color: var(--c-yellow);
	--bs-btn-hover-color: var(--c-yellow);
	--bs-btn-hover-border-color: var(--c-yellow);
	--bs-btn-active-color: var(--c-yellow);
	--bs-btn-active-border-color: var(--c-yellow);
}

.btn.red {
	--bs-btn-bg: var(--c-red);
	--bs-btn-border-color: var(--c-red);
	--bs-btn-hover-color: var(--c-red);
	--bs-btn-hover-border-color: var(--c-red);
	--bs-btn-active-color: var(--c-red);
	--bs-btn-active-border-color: var(--c-red);
}

.btn.gray {
	--bs-btn-bg: var(--c-gray);
	--bs-btn-border-color: var(--c-gray);
	--bs-btn-hover-color: var(--c-gray);
	--bs-btn-hover-border-color: var(--c-gray);
	--bs-btn-active-color: var(--c-gray);
	--bs-btn-active-border-color: var(--c-gray);
}

.btn.icon svg {
	margin-right: 0.5em;
	transition: var(--transition);
}

.btn.icon.green:hover svg path {
	fill: var(--c-green);
}

.btn.icon.brown:hover svg path {
	fill: var(--c-brown);
}

.btn.icon.gray:hover svg path {
	fill: var(--c-gray);
}

.btn:visited {
	color: var(--bs-btn-color);
}

.btn:focus,
.btn:focus-visible,
.btn:active,
.btn:hover {
	color: var(--bs-btn-hover-color);
	background-color: var(--bs-btn-hover-bg);
	border-color: var(--bs-btn-hover-border);
}

.readmore {
	text-decoration: underline;
	text-transform: uppercase;
	font-weight: var(--fw-900);
}

/* Header */
header {
	background-color: var(--c-white);
}

header.sticky-top {
	opacity: 1;
	transition: var(--transition);
}

header.has-shadow {
	/*box-shadow: 0px 8px 16px rgba(0,0,0,0.25);*/
	filter: drop-shadow(0 8px 16px rgba(0,0,0,0.25));	
}

header.sticky-top.hidden {
	opacity: 0;
	z-index: -1000;
}

.admin-bar header.sticky-top {
	top: 32px;
}

.navbar {
	height: 98px;
}

.navbar-nav {
	column-gap: 34px;
}

.nav-link {
	text-align: center;
}

.nav-link,
.dropdown-item {
	font-weight: var(--fw-800);
	font-size: var(--bs-body-font-size);
	color: var(--c-green-dark);
	transition: var(--transition);
	text-transform: uppercase;
}

.nav-link:hover,
.dropdown-item:hover {
	color: var(--c-green);
}

.current-menu-item .nav-link,
.nav-link.active {
	color: var(--c-green);
	font-weight: var(--fw-800);
}

.navbar-brand {
	width: 190px;
}

.navbar-brand img {
	position: absolute;
	top: -30px;
	left: 0;
	width: 100%;
}

.navbar .socials a svg {
	height: 22px;
}

.navbar .socials a:hover {
	opacity: 0.7;
}

.dropdown-menu {
	border: 0;
	padding: 5px 0;
	border-radius: var(--radius);
}

.dropdown-menu li {
	padding: 0 15px;
}

.dropdown-menu li a {
	text-transform: none;	
	color: var(--c-brown);
	border-bottom: 1px solid var(--c-brown);
	padding: 10px 20px;
}

.dropdown-menu li:last-child a {
	border-bottom: 0;
}

.dropdown-menu li:hover a,
.dropdown-menu li.current-menu-item a {
	background-color: transparent;
	color: var(--c-green);
}



/* Sections common */
section {
	padding: 80px 0;
}




/* HP Hero */
section.hero {
	margin-bottom: 50px;
	overflow: hidden;
	padding: 0;
}

section.hero::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	right: 0;
	width: 100%;
	height: 32px;
	background-image: url('../img/bg-uppercut.png');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	z-index: 1;
}

section.hero .hero-carousel .carousel-item img {
	max-width: unset;
}

section.hero .hero-content {
	width: calc(50% - 16px);
	min-height: 80vh;
	padding: 110px 20px 110px 110px;
	padding-top: 110px;
	padding-bottom: 110px;
	color: var(--c-white);
	z-index: 1;
}

section.hero .hero-content::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 50%;
	bottom: 0;
	background-color: var(--c-green-dark);
	background-image: url('../img/hero.jpg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	z-index: -1;
}

section.hero .hero-image {
	position: absolute;
	top: 0;
	left: 50%;
	right: 0;
	bottom: 0;	
}

section.hero .hero-controls {
	inset: 0;
	max-width: calc(1600px);
	margin: 0 auto;
}

section.hero .hero-controls .carousel-control-next, 
section.hero .hero-controls .carousel-control-prev {
	z-index: 2;
	background-color: var(--c-green);
	width: 62px;
	height: 62px;
	top: 50%;
	bottom: unset;
	transform: translateY(-50%);
	opacity: 0.7;
	border-radius: var(--radius-max);
	display: flex;
	align-items: center;
	justify-content: center;
}

section.hero .hero-controls .carousel-control-next:hover, 
section.hero .hero-controls .carousel-control-prev:hover {
	opacity: 1;
}

section.hero .hero-controls .carousel-control-next {
	margin-right: 10px;

}

section.hero .hero-controls .carousel-control-prev {
	margin-left: 10px;
}

section.hero .hero-controls .carousel-control-prev-icon,
section.hero .hero-controls .carousel-control-next-icon {
	width: 21px;
	height: 30px;
}

section.hero .hero-controls .carousel-control-prev-icon {
	background-image: url('data:image/svg+xml,<svg width="21" height="30" viewBox="0 0 21 30" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M17.7539 27.5L3.75391 15L17.7539 2.5" stroke="white" stroke-width="5" stroke-linecap="round"/></svg>');
}

section.hero .hero-controls .carousel-control-next-icon {
	background-image: url('data:image/svg+xml,<svg width="21" height="30" viewBox="0 0 21 30" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2.5 2.5L16.5 15L2.5 27.5" stroke="white" stroke-width="5" stroke-linecap="round"/></svg>');
}




/* Benefits */
section.benefits .item .icon img {
	width: 68px;
	height: 68px;
	object-fit: contain;
	margin-bottom: 40px;
}

section.benefits .item h3 {
	margin-bottom: 20px;
}

section.benefits .item p {
	margin-bottom: 0;
}



/* Farm */
section.farm:not(.about) {
	padding-bottom: 100px;
}
section.farm .content {
	padding-left: 60px;
}

section.farm .badge {
	position: absolute;
	background-color: var(--c-green);
	border-radius: var(--radius-max);
	aspect-ratio: 1;
	padding: 15px 25px 0 25px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	font-weight: var(--fw-900);
	text-transform: uppercase;
	line-height: 1.2;
}

section.farm .badge span {
	font-size: 30px;
}

section.farm .badge::after {
	content: '';
	position: absolute;
	inset: 10px;
	background-color: transparent;
	border: 2px solid var(--c-white);
	border-radius: var(--radius-max);
	width: calc(100% - 20px);
	height: calc(100% - 20px);
}

section.farm .badge {
	top: 0;
	right: 0;
	transform: translate(-40%, -40%);
}

section.farm.about .badge {
	top: unset;
	right: unset;
	left: 50%;
	bottom: 0;
	transform: translate(-50%, 70%);
}

section.farm .photos {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: end;
	justify-content: end;
	gap: 15px;
	max-width: 75%;
	max-height: 75%;
	position: absolute;
	bottom: -80px;
	right: -40px;
}

section.farm .photos img:nth-child(2) {
	transform: translateY(-40px);
}

section.farm.about .about-photos {
	grid-template-columns: 1fr 1fr;
	gap: 20px;	
}

section.farm.about .about-photos img {
	width: 100%;
}





/* Picking */
section.picking .status {
	width: 472px;
	height: 240px;
	margin-top: 60px;
	padding: 20px 70px 20px 90px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	gap: 15px;
	overflow-y: auto;
}

section.picking .status p {
	color: var(--c-white);
	margin-bottom: 0;
}

section.picking .status.green {
	background-image: url('../img/picking-green.png');
}

section.picking .status.gray {
	background-image: url('../img/picking-gray.png');
}

section.picking .status.yellow {
	background-image: url('../img/picking-yellow.png');
}

section.picking .status.red {
	background-image: url('../img/picking-red.png');
}

section.picking .card {
	display: grid;
	grid-template-columns: 50% 50%;
	overflow: hidden;
	border-radius: var(--radius);
	border: 0;
	box-shadow: 0 0 100px rgba(0,0,0,0.1);
}

section.picking .card .thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

section.picking .card .meta {
	padding: 45px 35px;
	gap: 25px;	
}

section.picking .card .meta .title {
	gap: 10px;
}

section.picking .card .meta .title img {
	max-width: 68px;
	max-height: 68px;
	object-fit: contain;
}

section.picking .card .meta ul,
section.picking .card .meta ul li {
	list-style-type: none;
	padding: 0;
	margin: 0;
}



/* CTA */
section.cta {
	background-color: var(--c-green-dark);
}

section.cta img {
	min-height: 1200px;
	width: 100%;
	object-fit: cover;
}

section.cta .container {
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	height: 50%;
}

section.cta .content > * {
	color: var(--c-white);
}



/* Gallery */
section.flexi.photogallery .gallery {
	--gallery-gap: 30px;
	--gallery-columns: 5;
	gap: var(--gallery-gap);
}

section.flexi.photogallery .gallery .gallery-item {
	position: relative;
	flex-grow: 0;
	flex-shrink: 0;
	flex-basis: calc(100% / var(--gallery-columns) - (var(--gallery-gap) / var(--gallery-columns) * (var(--gallery-columns) - 1)));
	border-radius: var(--radius);
	overflow: hidden;
}

section.flexi.photogallery .gallery .gallery-item img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1;
	object-fit: cover;
}

section.flexi.photogallery .gallery .gallery-item .caption {
	position: absolute;
	display: block;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(95, 73, 29, 0.8);
	color: var(--c-white);
	padding: 18px 36px;
}

section.flexi.photogallery .gallery .gallery-item a:after {
	content: url('data:image/svg+xml,<svg width="60" height="59" viewBox="0 0 80 78" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="34.5677" cy="34.5703" r="21.443" transform="rotate(-45 34.5677 34.5703)" stroke="white" stroke-width="6"/><path d="M51.8516 49.4688L77.4793 75.0965" stroke="white" stroke-width="6"/></svg>');
	position: absolute;
	inset: 0;
	background-color: rgba(95, 73, 29, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: var(--transition);
}

section.flexi.photogallery .gallery  .gallery-item a:hover:after {
	opacity: 1;
}


/* Topbar  */
section.topbar .bar {
	background-color: var(--c-white);
	border-radius: var(--radius);
	padding: 56px 30px;
}

section.topbar .bar .item {
	border-right: 1px solid #CCAE79;
	padding: 10px 5px;
}

section.topbar .bar .col-lg-4:last-child .item,
section.topbar .bar .col-xl-3:last-child .item,
section.topbar .bar .col-md-6:nth-child(2n) .item {
	border-right: 0;
}

section.topbar .bar .icon img {
	max-width: 66px;
	max-height: 66px;
	object-fit: contain;
}

section.topbar.contacts .bar .icon img {
	max-width: 50px;
	max-height: 50px;	
}

section.topbar.contacts .bar .item a {
	color: var(--c-black);
}



/* Accordion */
section.accordion h2.title {
	margin-bottom: 50px;
}

section.accordion h3.title {
	margin-bottom: 40px;
}

section.accordion .accordion:not(:last-child) {
	margin-bottom: 100px;
}

section.accordion .accordion-item {
	margin-bottom: 12px;
	border-radius: var(--radius);
	overflow: hidden;
}

section.accordion .accordion-button {
	padding: 28px 40px;
	gap: 28px;
	color: var(--c-black);
}

section.accordion .accordion-button:not(.collapsed) {
	background-color: var(--c-green);
	color: var(--c-white);
	box-shadow: none;
}

section.accordion .accordion-button:focus{
	box-shadow: none;
}

section.accordion .accordion-button.collapsed:hover {
	background-color: rgba(70, 123, 55,0.1);
}

section.accordion .accordion-button:after {
	background-image: url('data:image/svg+xml,<svg width="21" height="13" viewBox="0 0 21 13" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2.5 2.5L10.5 10.5L18.5 2.5" stroke="%23467B37" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}

section.accordion .accordion-button:not(.collapsed):after {
	background-image: url('data:image/svg+xml,<svg width="21" height="13" viewBox="0 0 21 13" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2.5 2.5L10.5 10.5L18.5 2.5" stroke="white" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}

section.accordion .accordion-body {
	background-color: var(--c-green);
	color: var(--c-white);
	padding: 0 90px 40px 40px;
}

section.accordion .accordion-body h3 {
	font-size: 20px;
}

section.accordion .accordion-body a {
	text-decoration: underline;
	color: var(--c-white);
}



/* Contacts  */
section.contacts {
	padding-bottom: 240px;
}
section.contacts .contacts-socials {
	bottom: -210px;
	right: 0;
	padding: 60px 85px;
	background-image: url('../img/picking-green.png');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

section.contacts .contacts-socials h3 {
	color: var(--c-white);
}

section.contacts .contacts-socials svg path {
	fill: var(--c-white);
}

section.contacts .contacts-socials a svg {
	width: 33px;
	height: 33px;
	object-fit: contain;
}

section.contacts .contacts-socials a:hover {
	opacity: 0.7;
}


/* Content */
.content h2, .content h3, .content h4, .content h5, .content h6 {
	margin-bottom: 0.6em;
}

.content iframe[src*="youtu"] {
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
}

.content a:not(.btn) {
	text-decoration: underline;
	font-weight: var(--fw-800);
	color: var(--c-green);
}

.content a:not(.btn):hover,
.content a:not(.btn):focus {
	color: var(--c-green-dark);
}

.content img {
	border-radius: var(--radius);
}

.content ol,
.content ul {
	padding-left: 1.5em;
}

.content ol li,
.content ul li {
  padding-left: 1em;
}

.content ol li::marker,
.content ul li::marker {
	font-weight: var(--fw-800);
	color: var(--c-green-dark);
}

.content ul li::marker {
	font-size: 1.4em;
	line-height: 0;
}


/* Footer */
section.footer-img::before {
	content: '';
	position: absolute;
	top: -2px;
	left: 0;
	right: 0;
	width: 100%;
	height: 80px;
	background-image: url('../img/bg-lowercut.png');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	z-index: 1;
}

section.footer-img img {
	min-height: 700px;
	width: 100%;
	object-fit: cover;
}

footer {
	background-color: var(--c-brown);
	color: var(--c-white);
	padding: 70px 0 50px 0;
	position: relative;
}

footer::before {
	content: '';
	position: absolute;
	top: -22px;
	left: 0;
	right: 0;
	width: 100%;
	height: 24px;
	background-image: url('../img/footer-uppercut.png');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

footer .footer-logo {
	flex: 0 0 auto;
}

footer .footer-logo img {
	width: 120px;
}

footer .footer-nav {
	line-height: 1.8;
}

footer .footer-nav .title {
	text-transform: uppercase;
	font-weight: var(--fw-900);
	color: var(--c-green);
}

footer .footer-nav ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	column-gap: 15px;
}

footer .footer-nav.legal ul {
	justify-content: flex-end;
}

footer .footer-nav ul li {
	margin: 0;
	padding: 0;
}

footer .footer-nav ul li a {
	text-transform: uppercase;
	font-weight: var(--fw-900);
	color: var(--c-white);	
	text-decoration: underline;
}

footer .footer-nav ul li a:hover,
footer .footer-nav ul li a:focus {
	opacity: 0.7;
}

footer .footer-nav.legal ul li a {
	text-transform: none;
	font-weight: var(--fw-400);
}

footer .footer-photos {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	justify-content: end;
	gap: 15px;
	position: absolute;
	top: -100%;
	right: 0px;
	transform: translateY(-40%);
}

footer .footer-photos img {
	width: 100%;
}

footer .socials a svg {
	height: 22px;
}

footer .socials a:hover {
	opacity: 0.7;
}

footer .socials a svg path {
	fill: var(--c-white);
}








/* Media queries */
/* Container max width  */
@media (min-width: 1400px) {
	.container, .container-lg, .container-md, .container-sm {
		max-width: 1380px;
	}

	.container-xl, .container-xxl {
		max-width: 1600px;
	}

	.container-xl .col-ps {
		padding-left: 184px;
	}
	
	.container-xl .col-pe {
		padding-right: 184px;
	}
}

/* Smaller than XXL  */
@media (max-width: 1399.98px) {
	/* Hero */
	section.hero .hero-content {
		padding-left: 60px;
	}
}

/* Smaller than XL */
@media (max-width: 1199.98px) {
	/* Header */
	.navbar-expand-lg .navbar-nav {
		column-gap: 20px;
	}

	/* Hero */
	section.hero .hero-content {
		padding-left: 80px;
	}

	/* Topbar */
	section.topbar .bar .col-lg-6 .item {
		margin-bottom: 32px;
	}

	section.topbar .bar .col-lg-6:nth-child(2n) .item {
		border-right: 0;
	}

	section.topbar .bar .col-lg-6:nth-last-child(1) .item,
	section.topbar .bar .col-lg-6:nth-last-child(2) .item {
		margin-bottom: 0;
	}	

}

/* Smaller than LG */
@media (max-width: 991.98px) {
	/* Common */ 
	.btn {
		padding: 15px 45px;
	}

	/* Header */
	.navbar {
		padding: 15px 0;
	}

	.navbar-toggler {
		border: 0;
		padding: 5px;
		background-color: transparent;
		width: 60px;
	}

	.navbar-toggler:focus {
		box-shadow: none;
	}

	.navbar-toggler-icon {
		background-image: url('data:image/svg+xml,<svg width="39" height="35" viewBox="0 0 39 35" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2.5 2.5H36.5" stroke="%23467B37" stroke-width="5" stroke-linecap="round"/><path d="M2.5 17.5H36.5" stroke="%23467B37" stroke-width="5" stroke-linecap="round"/><path d="M2.5 32.5H36.5" stroke="%23467B37" stroke-width="5" stroke-linecap="round"/></svg>');
		width: 53px;
		height: 62px;
	}

	.navbar .offcanvas {
		width: 500px;
		max-width: calc(100% - 20px);
		bottom: unset;
		background-color: var(--c-green);
	}

	.admin-bar .navbar .offcanvas {
		top: 32px;
	}

	.navbar .offcanvas .offcanvas-header {
		padding: 0 35px;
		border-bottom: 1px solid var(--c-white);
	}

	.navbar .offcanvas .navbar-brand img {
		width: 120px;
		position: relative;
		top: unset;
		left: unset;
		padding: 10px;
	}

	.navbar .offcanvas .btn-close {
		background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" fill="white"><path d="M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z"/></svg>');
		background-repeat: no-repeat;
		width: 16px;
		height: 16px;
	}

	.navbar .offcanvas .offcanvas-body {
		padding: 35px;
	}

	.navbar .offcanvas .navbar-nav {
		row-gap: 20px;
	}

	.navbar .offcanvas .nav-link {
		color: var(--c-white);
	}

	.navbar-brand {
		width: 150px;
	}

	.navbar-brand img {
		top: -40px;
	}

	/* Hero */
	section.hero .hero-carousel .carousel-item {
		flex-direction: column;
	}

	section.hero .hero-image {
		position: relative;
		inset: 0;
		height: 75vh;
	}

	section.hero .hero-content {
		width: 100%;
		min-height: 75vh;
		padding: 85px 0;
	}

	section.hero .hero-content::after {
		inset: 0;
	}

	section.hero .container-xl .col-ps {
		padding-left: 0;
	}
	
	section.hero .container-xl .col-pe {
		padding-right: 0;
	}

	/* Benefits */
	section.benefits .item {
		margin-bottom: 40px;
	}

	/* Farm  */
	section.farm:not(.about) {
		padding-bottom: 50px;
	}

	section.farm .main-photo {
		padding-bottom: 20%;
	}

	section.farm .photos {
		bottom: 50px;
		right: 0;
	}

	section.farm .photos img {
		max-width: unset;
		width: 100%;
	}

	section.farm .photos img:nth-child(1) {
		padding-left: 16px;
	}

	section.farm .photos img:nth-child(2) {
		padding-right: 16px;
	}

	section.farm .content {
		padding-left: 0;
	}

	/* Gallery */
	section.flexi.photogallery .gallery {
		--gallery-gap: 15px;
		--gallery-columns: 4;
	}

	/* CTA */
	section.cta img {
		min-height: 1400px;
	}

	section.cta .content br {
		display: none;
	}

	/* Topbar */
	section.topbar .bar .col-xl-3 .item {
		border-right: 0;
		border-bottom: 1px solid #CCAE79;
		padding: 30px 0;
		margin-bottom: 0;
	}

	section.topbar .bar .col-xl-3:first-child .item {
		padding-top: 0;
	}

	section.topbar .bar .col-xl-3:last-child .item {
		border-bottom: 0;
		padding-bottom: 0;
	}

	/* Contacts */
	section.contacts .contacts-socials {
		bottom: -30px;
		right: -80px;
		transform: translateY(100%);
		background-position: left center;
		padding: 35px 90px;
	}


	/* Footer */
	footer .footer-photos {
		transform: translateY(-65%);
	}

	footer .footer-photos img:nth-child(1) {
		padding-left: 16px;
	}

	footer .footer-photos img:nth-child(2) {
		padding-right: 16px;
	}
}

/* Smaller than MD */
@media (max-width: 767.98px) {
	/* Typography */
	h1, .h1 {
		font-size: 45px;
	}

	h2, .h2 {
		font-size: 32px;
	}

	h3, .h3 {
		font-size: 20px;
	}

	/* Section common */
	section {
		padding: 50px 0;
	}

	.container-xl .col-ps,
	.container-xl .col-pe {
		--bs-gutter-x: 3rem;
	}

	/* Hero */
	section.hero {
		margin-bottom: 40px;
	}

	/* Benefits */
	section.benefits {
		padding-top: 0;
	}

	section.benefits .item {
		padding-left: 40px;
		padding-right: 40px;
	}

	section.benefits .item .icon img {
		margin-bottom: 20px;
	}

	/* Farm */
	section.farm .main-photo {
		padding-bottom: 30%;

	}
	section.farm .photos {
		max-width: 100%;
		grid-template-columns: 3fr 2fr;
	}

	section.farm .badge {
		transform: translate(-40%, -40%) scale(0.6);
	}

	/* Picking */
	section.picking p br {
		display: none;
	}

	section.picking .status {
		margin-top: 48px;
		max-width: 100%;
		height: auto;
		padding: 25px 65px 25px 45px;
	}

	section.picking .status p br {
		display: block;
	}

	section.picking .card {
		grid-template-columns: 1fr;
	}

	section.picking .card .meta {
		grid-row: 1;
	}

	section.picking .card .thumbnail {
		grid-row: 2;
	}

	/* Gallery */
	section.flexi.photogallery .gallery {
		--gallery-gap: 15px;
		--gallery-columns: 3;
	}

	section.flexi.photogallery .gallery .gallery-item .caption {
		padding: 10px 20px;
	}

	/* Accordion */
	section.accordion h2.title {
		margin-bottom: 25px;
	}

	section.accordion .accordion-button {
		padding: 20px 24px;
	}

	section.accordion .accordion-body {
		padding: 0 24px 20px 24px;
	}

	section.accordion .accordion:not(:last-child) {
		margin-bottom: 50px;
	}


	/* Footer */
	section.footer-img img {
		min-height: 600px;
	}

	footer .footer-nav.legal ul {
		justify-content: flex-start;
	}

}


/* WP mobile */
@media (max-width: 783px) {
	body.admin-bar {
		min-height: calc(100vh - 46px);
	}

	.admin-bar .navbar .offcanvas {
		top: 46px;
	}

	.admin-bar header.sticky-top {
		top: 0;
	}
}


/* Smaller than SM */
@media (max-width: 575.98px) {
	/* Gallery */
	section.flexi.photogallery .gallery {
		--gallery-gap: 10px;
		--gallery-columns: 2;
	}
}

