/*!
Theme Name: The Jane
Theme URI: https://them.es/starter
Author: Yellow Submarine
Author URI: https://www.yellowsubmarine.be/
Description: 
Version: 3.6.1
Requires at least: 5.0
Tested up to: 6.8
Requires PHP: 7.2
License: GPL version 2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0
Tags: custom-background, custom-colors, featured-images, flexible-header, microformats, post-formats, rtl-language-support, theme-options, translation-ready, accessibility-ready
Text Domain: the-jane
*/
@font-face {
	font-family: 'edict_displayregular';
	src: url('assets/fonts/edictdisplay-regular-webfont.woff2') format('woff2'),
		 url('assets/fonts/edictdisplay-regular-webfont.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'edict_displayregular_italic';
	src: url('assets/fonts/edictdisplay-regularitalic-webfont.woff2') format('woff2'),
		 url('assets/fonts/edictdisplay-regularitalic-webfont.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'lateralcondensed_bold';
	src: url('assets/fonts/lateral-condensedbold-webfont.woff2') format('woff2'),
		 url('assets/fonts/lateral-condensedbold-webfont.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}
.lateral {
  font-family: 'lateralcondensed_bold';
  letter-spacing: 2px;
  text-transform: uppercase;
}
a {
  text-decoration-thickness: 0.01rem;
  text-underline-offset: 5px;
}
a:hover, a.active {
  color: #777879;
}
.navbar {
	padding: 1.75rem 0 !important;
}
.bars {
  z-index: 9999;
  position: absolute;
  right: 12px;
  top: 23px;
  cursor: pointer;
}
.bars div {
	width: 40px;
	height: 2px;
	background-color: #000;
	margin: 8px 0;
	transition: 0.4s;
	border-radius: 1px;
}
.bars:hover div {
	background-color: #777879;
}
.bar1:not(.collapsed .bar1) {
	transform: translate(0, 10px) rotate(-30deg);
}
.bar2:not(.collapsed .bar2) {
	opacity: 0;
}
.bar3:not(.collapsed .bar3) {
	transform: translate(0, -10px) rotate(30deg);
}
.navbar div:last-child a {
  border-bottom: 1px solid;
  padding-bottom: 5px;
  text-decoration: none;
}
.navbar.scrolled {
  box-shadow: 0 0 1.25rem rgba(30,34,40,.06);
  background: #f7f7f4;
}
.navbar-brand img {
  margin-top: 1rem;
  transition: .3s all;
}
.navbar-brand img:last-child {
  margin-left: 12px;
}
.navbar.scrolled .navbar-brand img {
  margin-top: .2rem;
  width: 160px;
}
#offcanvasMenu {
	width: 450px;
	top: 0;
	right: 0;
}
#offcanvasMenu a svg {
	vertical-align: top;
}
.offcanvas img {
  height: 50px !important;
}
.offcanvas.fade {
  transition: opacity .15s linear;
  transform: none;
}
.offcanvas.fade:not(.show) {
  opacity: 0;
}
.offcanvas.fade.show {
  opacity: 1;
}
.offcanvas.offcanvas-start {
  -webkit-transform: none;
  transform: none;
} 
#offcanvasMenu a {
	text-decoration: none;
}
a:hover svg.fill path {
	fill: #777879;
}
a:hover svg.stroke path {
	stroke: #777879;
}
.home #header {
	position: absolute;
	width: 100%;
}
.home .navbar-brand img{
	opacity: 0;
}
.home .scrolled .navbar-brand img:first-child {
	opacity: 1;
}
.min-svh-100 {
  min-height: 100vh !important;
  min-height: 100dvh !important;
  min-height: 100svh !important;
}
.logo {
	width: 75%;
}
#scroll-down {
  display: block;
  position: relative;
  padding-top: 79px;
  text-align: center;
  width: 20px;
}
#scroll-down::before {
	-webkit-animation: elasticus 2.9s cubic-bezier(1, 0, 0, 1) infinite;
	-moz-animation: elasticus 2.9s cubic-bezier(1, 0, 0, 1) infinite;
	-o-animation: elasticus 2.9s cubic-bezier(1, 0, 0, 1) infinite;
	animation: elasticus 2.9s cubic-bezier(1, 0, 0, 1) infinite;
	position: absolute;
	top: 0px;
	left: 50%;
	margin-left: -1px;
	width: 1px;
	height: 50px;
	background: #000;
	content: ' ';
}
@-webkit-keyframes elasticus {
	0% {
		-webkit-transform-origin: 0% 0%;
		-ms-transform-origin: 0% 0%;
		-moz-transform-origin: 0% 0%;
		-o-transform-origin: 0% 0%;
		transform-origin: 0% 0%;
		-webkit-transform: scale(1, 0);
		-ms-transform: scale(1, 0);
		-moz-transform: scale(1, 0);
		-o-transform: scale(1, 0);
		transform: scale(1, 0);
	}

	50% {
		-webkit-transform-origin: 0% 0%;
		-ms-transform-origin: 0% 0%;
		-moz-transform-origin: 0% 0%;
		-o-transform-origin: 0% 0%;
		transform-origin: 0% 0%;
		-webkit-transform: scale(1, 1);
		-ms-transform: scale(1, 1);
		-moz-transform: scale(1, 1);
		-o-transform: scale(1, 1);
		transform: scale(1, 1);
	}

	50.1% {
		-webkit-transform-origin: 0% 100%;
		-ms-transform-origin: 0% 100%;
		-moz-transform-origin: 0% 100%;
		-o-transform-origin: 0% 100%;
		transform-origin: 0% 100%;
		-webkit-transform: scale(1, 1);
		-ms-transform: scale(1, 1);
		-moz-transform: scale(1, 1);
		-o-transform: scale(1, 1);
		transform: scale(1, 1);
	}

	100% {
		-webkit-transform-origin: 0% 100%;
		-ms-transform-origin: 0% 100%;
		-moz-transform-origin: 0% 100%;
		-o-transform-origin: 0% 100%;
		transform-origin: 0% 100%;
		-webkit-transform: scale(1, 0);
		-ms-transform: scale(1, 0);
		-moz-transform: scale(1, 0);
		-o-transform: scale(1, 0);
		transform: scale(1, 0);
	}
}

@-moz-keyframes elasticus {
	0% {
		-webkit-transform-origin: 0% 0%;
		-ms-transform-origin: 0% 0%;
		-moz-transform-origin: 0% 0%;
		-o-transform-origin: 0% 0%;
		transform-origin: 0% 0%;
		-webkit-transform: scale(1, 0);
		-ms-transform: scale(1, 0);
		-moz-transform: scale(1, 0);
		-o-transform: scale(1, 0);
		transform: scale(1, 0);
	}

	50% {
		-webkit-transform-origin: 0% 0%;
		-ms-transform-origin: 0% 0%;
		-moz-transform-origin: 0% 0%;
		-o-transform-origin: 0% 0%;
		transform-origin: 0% 0%;
		-webkit-transform: scale(1, 1);
		-ms-transform: scale(1, 1);
		-moz-transform: scale(1, 1);
		-o-transform: scale(1, 1);
		transform: scale(1, 1);
	}

	50.1% {
		-webkit-transform-origin: 0% 100%;
		-ms-transform-origin: 0% 100%;
		-moz-transform-origin: 0% 100%;
		-o-transform-origin: 0% 100%;
		transform-origin: 0% 100%;
		-webkit-transform: scale(1, 1);
		-ms-transform: scale(1, 1);
		-moz-transform: scale(1, 1);
		-o-transform: scale(1, 1);
		transform: scale(1, 1);
	}

	100% {
		-webkit-transform-origin: 0% 100%;
		-ms-transform-origin: 0% 100%;
		-moz-transform-origin: 0% 100%;
		-o-transform-origin: 0% 100%;
		transform-origin: 0% 100%;
		-webkit-transform: scale(1, 0);
		-ms-transform: scale(1, 0);
		-moz-transform: scale(1, 0);
		-o-transform: scale(1, 0);
		transform: scale(1, 0);
	}
}

@-o-keyframes elasticus {
	0% {
		-webkit-transform-origin: 0% 0%;
		-ms-transform-origin: 0% 0%;
		-moz-transform-origin: 0% 0%;
		-o-transform-origin: 0% 0%;
		transform-origin: 0% 0%;
		-webkit-transform: scale(1, 0);
		-ms-transform: scale(1, 0);
		-moz-transform: scale(1, 0);
		-o-transform: scale(1, 0);
		transform: scale(1, 0);
	}

	50% {
		-webkit-transform-origin: 0% 0%;
		-ms-transform-origin: 0% 0%;
		-moz-transform-origin: 0% 0%;
		-o-transform-origin: 0% 0%;
		transform-origin: 0% 0%;
		-webkit-transform: scale(1, 1);
		-ms-transform: scale(1, 1);
		-moz-transform: scale(1, 1);
		-o-transform: scale(1, 1);
		transform: scale(1, 1);
	}

	50.1% {
		-webkit-transform-origin: 0% 100%;
		-ms-transform-origin: 0% 100%;
		-moz-transform-origin: 0% 100%;
		-o-transform-origin: 0% 100%;
		transform-origin: 0% 100%;
		-webkit-transform: scale(1, 1);
		-ms-transform: scale(1, 1);
		-moz-transform: scale(1, 1);
		-o-transform: scale(1, 1);
		transform: scale(1, 1);
	}

	100% {
		-webkit-transform-origin: 0% 100%;
		-ms-transform-origin: 0% 100%;
		-moz-transform-origin: 0% 100%;
		-o-transform-origin: 0% 100%;
		transform-origin: 0% 100%;
		-webkit-transform: scale(1, 0);
		-ms-transform: scale(1, 0);
		-moz-transform: scale(1, 0);
		-o-transform: scale(1, 0);
		transform: scale(1, 0);
	}
}

@keyframes elasticus {
	0% {
		-webkit-transform-origin: 0% 0%;
		-ms-transform-origin: 0% 0%;
		-moz-transform-origin: 0% 0%;
		-o-transform-origin: 0% 0%;
		transform-origin: 0% 0%;
		-webkit-transform: scale(1, 0);
		-ms-transform: scale(1, 0);
		-moz-transform: scale(1, 0);
		-o-transform: scale(1, 0);
		transform: scale(1, 0);
	}

	50% {
		-webkit-transform-origin: 0% 0%;
		-ms-transform-origin: 0% 0%;
		-moz-transform-origin: 0% 0%;
		-o-transform-origin: 0% 0%;
		transform-origin: 0% 0%;
		-webkit-transform: scale(1, 1);
		-ms-transform: scale(1, 1);
		-moz-transform: scale(1, 1);
		-o-transform: scale(1, 1);
		transform: scale(1, 1);
	}

	50.1% {
		-webkit-transform-origin: 0% 100%;
		-ms-transform-origin: 0% 100%;
		-moz-transform-origin: 0% 100%;
		-o-transform-origin: 0% 100%;
		transform-origin: 0% 100%;
		-webkit-transform: scale(1, 1);
		-ms-transform: scale(1, 1);
		-moz-transform: scale(1, 1);
		-o-transform: scale(1, 1);
		transform: scale(1, 1);
	}

	100% {
		-webkit-transform-origin: 0% 100%;
		-ms-transform-origin: 0% 100%;
		-moz-transform-origin: 0% 100%;
		-o-transform-origin: 0% 100%;
		transform-origin: 0% 100%;
		-webkit-transform: scale(1, 0);
		-ms-transform: scale(1, 0);
		-moz-transform: scale(1, 0);
		-o-transform: scale(1, 0);
		transform: scale(1, 0);
	}
}
footer .nav-link {
  font-size: 1rem;
}
#reserve-button {
  left: 0;
  bottom: 0;
  background: #f7f7f4;
  width: 100%;
  padding: 12px 12px 10px;
  font-size: 1rem;
}

@media (min-width: 576px) {
	:root {
	  scroll-padding-top: 114px;
	}
	.bars div {
		width: 50px;
		height: 3px;
	}
	.bar1:not(.collapsed .bar1) {
	  transform: translate(0, 11px) rotate(-30deg);
	}
	.bar3:not(.collapsed .bar3) {
	  transform: translate(0, -11px) rotate(30deg);
	}
}
@media (min-width: 768px) { 
}
@media (min-width: 992px) {
	.navbar {
		padding: 2.5rem 0 !important;  
		top: 0;
		transition: .5s all;
		z-index: 1;
	}
	.navbar.scrolled {
		position: fixed !important;
	}
	.bars {
		position: fixed;
		left: 50px;
		right: auto;
		top: 39px;
	}
	.navbar-brand-wrapper {
		transform: translateX(-50%);
		position: absolute;
		left: 50%;
	}
	#offcanvasMenu {
		margin: 23px 0 23px 25px;
		left: 0;
		right: auto;
	}
	header + section {
		margin-top: 70px;
	}
	.home header + section {
		margin-top: 0;
	} 
	.logo {
		width: 23%;
	}
}
@media (min-width: 1200px) {
	.mt-lg-negative {
		margin-top: -220px !important;
	}
}










.alignnone {
	margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
	display: block;
	margin: 5px auto 5px auto;
}

.alignright {
	float: right;
	margin: 5px 0 20px 20px;
}

.alignleft {
	float: left;
	margin: 5px 20px 20px 0;
}

a img.alignright {
	float: right;
	margin: 5px 0 20px 20px;
}

a img.alignnone {
	margin: 5px 20px 20px 0;
}

a img.alignleft {
	float: left;
	margin: 5px 20px 20px 0;
}

a img.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption {
	max-width: 96%; /* Image does not overflow the content area */
	padding: 5px 3px 10px;
	text-align: center;
}
.wp-caption.alignnone {
	margin: 5px 20px 20px 0;
}
.wp-caption.alignleft {
	margin: 5px 20px 20px 0;
}
.wp-caption.alignright {
	margin: 5px 0 20px 20px;
}
.wp-caption img {
	border: 0 none;
	height: auto;
	margin: 0;
	max-width: 98.5%;
	padding: 0;
	width: auto;
}
.wp-caption p.wp-caption-text {
	font-size: 11px;
	line-height: 17px;
	margin: 0;
	padding: 0 4px 5px;
}

.gallery-item {
	display: inline-block;
	text-align: left;
	vertical-align: top;
	width: 50%;
}

.gallery-item a,
.gallery-item a:hover,
.gallery-item a:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
	background: none;
	display: inline-block;
	max-width: 100%;
}

.gallery-item a img {
	display: block;
	-webkit-transition: -webkit-filter 0.2s ease-in;
	transition: -webkit-filter 0.2s ease-in;
	transition: filter 0.2s ease-in;
	transition: filter 0.2s ease-in, -webkit-filter 0.2s ease-in;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.gallery-item a:hover img,
.gallery-item a:focus img {
	-webkit-filter: opacity(60%);
	filter: opacity(60%);
}

.gallery-caption {
	display: block;
	text-align: left;
	padding: 0 10px 0 0;
	margin-bottom: 0;
}

.gallery-columns-1 .gallery-item {
	max-width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-columns-6 .gallery-caption,
.gallery-columns-7 .gallery-caption,
.gallery-columns-8 .gallery-caption,
.gallery-columns-9 .gallery-caption {
	display: none;
}

.bypostauthor {
	font-weight: bold;
}

/* Text meant only for screen readers. */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}
