:root {
	--f-spinner-width: 36px;
	--f-spinner-height: 36px;
	--f-spinner-color-1: rgba(0, 0, 0, 0.1);
	--f-spinner-color-2: rgba(17, 24, 28, 0.8);
	--f-spinner-stroke: 2.75
}

.f-spinner {
	margin: auto;
	padding: 0;
	width: var(--f-spinner-width);
	height: var(--f-spinner-height)
}

.f-spinner svg {
	width: 100%;
	height: 100%;
	vertical-align: top;
	animation: f-spinner-rotate 2s linear infinite
}

.f-spinner svg * {
	stroke-width: var(--f-spinner-stroke);
	fill: none
}

.f-spinner svg *:first-child {
	stroke: var(--f-spinner-color-1)
}

.f-spinner svg *:last-child {
	stroke: var(--f-spinner-color-2);
	animation: f-spinner-dash 2s ease-in-out infinite
}

@keyframes f-spinner-rotate {
	100% {
		transform: rotate(360deg)
	}
}

@keyframes f-spinner-dash {
	0% {
		stroke-dasharray: 1, 150;
		stroke-dashoffset: 0
	}

	50% {
		stroke-dasharray: 90, 150;
		stroke-dashoffset: -35
	}

	100% {
		stroke-dasharray: 90, 150;
		stroke-dashoffset: -124
	}
}

.f-throwOutUp {
	animation: var(--f-throw-out-duration, 0.175s) ease-out both f-throwOutUp
}

.f-throwOutDown {
	animation: var(--f-throw-out-duration, 0.175s) ease-out both f-throwOutDown
}

@keyframes f-throwOutUp {
	to {
		transform: translate3d(0, calc(var(--f-throw-out-distance, 150px) * -1), 0);
		opacity: 0
	}
}

@keyframes f-throwOutDown {
	to {
		transform: translate3d(0, var(--f-throw-out-distance, 150px), 0);
		opacity: 0
	}
}

.f-zoomInUp {
	animation: var(--f-transition-duration, 0.2s) ease .1s both f-zoomInUp
}

.f-zoomOutDown {
	animation: var(--f-transition-duration, 0.2s) ease both f-zoomOutDown
}

@keyframes f-zoomInUp {
	from {
		transform: scale(0.975) translate3d(0, 16px, 0);
		opacity: 0
	}

	to {
		transform: scale(1) translate3d(0, 0, 0);
		opacity: 1
	}
}

@keyframes f-zoomOutDown {
	to {
		transform: scale(0.975) translate3d(0, 16px, 0);
		opacity: 0
	}
}

.f-fadeIn {
	animation: var(--f-transition-duration, 0.2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeIn;
	z-index: 2
}

.f-fadeOut {
	animation: var(--f-transition-duration, 0.2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeOut;
	z-index: 1
}

@keyframes f-fadeIn {
	0% {
		opacity: 0
	}

	100% {
		opacity: 1
	}
}

@keyframes f-fadeOut {
	100% {
		opacity: 0
	}
}

.f-fadeFastIn {
	animation: var(--f-transition-duration, 0.2s) ease-out both f-fadeFastIn;
	z-index: 2
}

.f-fadeFastOut {
	animation: var(--f-transition-duration, 0.1s) ease-out both f-fadeFastOut;
	z-index: 2
}

@keyframes f-fadeFastIn {
	0% {
		opacity: .75
	}

	100% {
		opacity: 1
	}
}

@keyframes f-fadeFastOut {
	100% {
		opacity: 0
	}
}

.f-fadeSlowIn {
	animation: var(--f-transition-duration, 0.5s) ease both f-fadeSlowIn;
	z-index: 2
}

.f-fadeSlowOut {
	animation: var(--f-transition-duration, 0.5s) ease both f-fadeSlowOut;
	z-index: 1
}

@keyframes f-fadeSlowIn {
	0% {
		opacity: 0
	}

	100% {
		opacity: 1
	}
}

@keyframes f-fadeSlowOut {
	100% {
		opacity: 0
	}
}

.f-crossfadeIn {
	animation: var(--f-transition-duration, 0.2s) ease-out both f-crossfadeIn;
	z-index: 2
}

.f-crossfadeOut {
	animation: calc(var(--f-transition-duration, 0.2s)*.5) linear .1s both f-crossfadeOut;
	z-index: 1
}

@keyframes f-crossfadeIn {
	0% {
		opacity: 0
	}

	100% {
		opacity: 1
	}
}

@keyframes f-crossfadeOut {
	100% {
		opacity: 0
	}
}

.f-slideIn.from-next {
	animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInNext
}

.f-slideIn.from-prev {
	animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInPrev
}

.f-slideOut.to-next {
	animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutNext
}

.f-slideOut.to-prev {
	animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutPrev
}

@keyframes f-slideInPrev {
	0% {
		transform: translateX(100%)
	}

	100% {
		transform: translate3d(0, 0, 0)
	}
}

@keyframes f-slideInNext {
	0% {
		transform: translateX(-100%)
	}

	100% {
		transform: translate3d(0, 0, 0)
	}
}

@keyframes f-slideOutNext {
	100% {
		transform: translateX(-100%)
	}
}

@keyframes f-slideOutPrev {
	100% {
		transform: translateX(100%)
	}
}

.f-classicIn.from-next {
	animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInNext;
	z-index: 2
}

.f-classicIn.from-prev {
	animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInPrev;
	z-index: 2
}

.f-classicOut.to-next {
	animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutNext;
	z-index: 1
}

.f-classicOut.to-prev {
	animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutPrev;
	z-index: 1
}

@keyframes f-classicInNext {
	0% {
		transform: translateX(-75px);
		opacity: 0
	}

	100% {
		transform: translate3d(0, 0, 0);
		opacity: 1
	}
}

@keyframes f-classicInPrev {
	0% {
		transform: translateX(75px);
		opacity: 0
	}

	100% {
		transform: translate3d(0, 0, 0);
		opacity: 1
	}
}

@keyframes f-classicOutNext {
	100% {
		transform: translateX(-75px);
		opacity: 0
	}
}

@keyframes f-classicOutPrev {
	100% {
		transform: translateX(75px);
		opacity: 0
	}
}

:root {
	--f-button-width: 40px;
	--f-button-height: 40px;
	--f-button-border: 0;
	--f-button-border-radius: 0;
	--f-button-color: #374151;
	--f-button-bg: #f8f8f8;
	--f-button-hover-bg: #e0e0e0;
	--f-button-active-bg: #d0d0d0;
	--f-button-shadow: none;
	--f-button-transition: all 0.15s ease;
	--f-button-transform: none;
	--f-button-svg-width: 20px;
	--f-button-svg-height: 20px;
	--f-button-svg-stroke-width: 1.5;
	--f-button-svg-fill: none;
	--f-button-svg-filter: none;
	--f-button-svg-disabled-opacity: 0.65
}

.f-button {
	display: flex;
	justify-content: center;
	align-items: center;
	box-sizing: content-box;
	position: relative;
	margin: 0;
	padding: 0;
	width: var(--f-button-width);
	height: var(--f-button-height);
	border: var(--f-button-border);
	border-radius: var(--f-button-border-radius);
	color: var(--f-button-color);
	background: var(--f-button-bg);
	box-shadow: var(--f-button-shadow);
	pointer-events: all;
	cursor: pointer;
	transition: var(--f-button-transition)
}

@media(hover: hover) {
	.f-button:hover:not([disabled]) {
		color: var(--f-button-hover-color);
		background-color: var(--f-button-hover-bg)
	}
}

.f-button:active:not([disabled]) {
	background-color: var(--f-button-active-bg)
}

.f-button:focus:not(:focus-visible) {
	outline: none
}

.f-button:focus-visible {
	outline: none;
	box-shadow: inset 0 0 0 var(--f-button-outline, 2px) var(--f-button-outline-color, var(--f-button-color))
}

.f-button svg {
	width: var(--f-button-svg-width);
	height: var(--f-button-svg-height);
	fill: var(--f-button-svg-fill);
	stroke: currentColor;
	stroke-width: var(--f-button-svg-stroke-width);
	stroke-linecap: round;
	stroke-linejoin: round;
	transition: opacity .15s ease;
	transform: var(--f-button-transform);
	filter: var(--f-button-svg-filter);
	pointer-events: none
}

.f-button[disabled] {
	cursor: default
}

.f-button[disabled] svg {
	opacity: var(--f-button-svg-disabled-opacity)
}

.f-carousel__nav .f-button.is-prev,
.f-carousel__nav .f-button.is-next,
.fancybox__nav .f-button.is-prev,
.fancybox__nav .f-button.is-next {
	position: absolute;
	z-index: 1
}

.is-horizontal .f-carousel__nav .f-button.is-prev,
.is-horizontal .f-carousel__nav .f-button.is-next,
.is-horizontal .fancybox__nav .f-button.is-prev,
.is-horizontal .fancybox__nav .f-button.is-next {
	top: 50%;
	transform: translateY(-50%)
}

.is-horizontal .f-carousel__nav .f-button.is-prev,
.is-horizontal .fancybox__nav .f-button.is-prev {
	left: var(--f-button-prev-pos)
}

.is-horizontal .f-carousel__nav .f-button.is-next,
.is-horizontal .fancybox__nav .f-button.is-next {
	right: var(--f-button-next-pos)
}

.is-horizontal.is-rtl .f-carousel__nav .f-button.is-prev,
.is-horizontal.is-rtl .fancybox__nav .f-button.is-prev {
	left: auto;
	right: var(--f-button-next-pos)
}

.is-horizontal.is-rtl .f-carousel__nav .f-button.is-next,
.is-horizontal.is-rtl .fancybox__nav .f-button.is-next {
	right: auto;
	left: var(--f-button-prev-pos)
}

.is-vertical .f-carousel__nav .f-button.is-prev,
.is-vertical .f-carousel__nav .f-button.is-next,
.is-vertical .fancybox__nav .f-button.is-prev,
.is-vertical .fancybox__nav .f-button.is-next {
	top: auto;
	left: 50%;
	transform: translateX(-50%)
}

.is-vertical .f-carousel__nav .f-button.is-prev,
.is-vertical .fancybox__nav .f-button.is-prev {
	top: var(--f-button-next-pos)
}

.is-vertical .f-carousel__nav .f-button.is-next,
.is-vertical .fancybox__nav .f-button.is-next {
	bottom: var(--f-button-next-pos)
}

.is-vertical .f-carousel__nav .f-button.is-prev svg,
.is-vertical .f-carousel__nav .f-button.is-next svg,
.is-vertical .fancybox__nav .f-button.is-prev svg,
.is-vertical .fancybox__nav .f-button.is-next svg {
	transform: rotate(90deg)
}

.f-carousel__nav .f-button:disabled,
.fancybox__nav .f-button:disabled {
	pointer-events: none
}

html.with-fancybox {
	width: auto;
	overflow: visible;
	scroll-behavior: auto
}

html.with-fancybox body {
	touch-action: none
}

html.with-fancybox body.hide-scrollbar {
	width: auto;
	margin-right: calc(var(--fancybox-body-margin, 0px) + var(--fancybox-scrollbar-compensate, 0px));
	overflow: hidden !important;
	overscroll-behavior-y: none
}

.fancybox__container {
	--fancybox-color: #dbdbdb;
	--fancybox-hover-color: #fff;
	--fancybox-bg: rgba(24, 24, 27, 0.98);
	--fancybox-slide-gap: 10px;
	--f-spinner-width: 50px;
	--f-spinner-height: 50px;
	--f-spinner-color-1: rgba(255, 255, 255, 0.1);
	--f-spinner-color-2: #bbb;
	--f-spinner-stroke: 3.65;
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	direction: ltr;
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	color: #f8f8f8;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	overflow: visible;
	z-index: var(--fancybox-zIndex, 1050);
	outline: none;
	transform-origin: top left;
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: none;
	-ms-text-size-adjust: 100%;
	text-size-adjust: 100%;
	overscroll-behavior-y: contain
}

.fancybox__container *,
.fancybox__container *::before,
.fancybox__container *::after {
	box-sizing: inherit
}

.fancybox__container::backdrop {
	background-color: rgba(0, 0, 0, 0)
}

.fancybox__backdrop {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: -1;
	background: var(--fancybox-bg);
	opacity: var(--fancybox-opacity, 1);
	will-change: opacity
}

.fancybox__carousel {
	position: relative;
	box-sizing: border-box;
	flex: 1;
	min-height: 0;
	z-index: 10;
	overflow-y: visible;
	overflow-x: clip
}

.fancybox__viewport {
	width: 100%;
	height: 100%
}

.fancybox__viewport.is-draggable {
	cursor: move;
	cursor: grab
}

.fancybox__viewport.is-dragging {
	cursor: move;
	cursor: grabbing
}

.fancybox__track {
	display: flex;
	margin: 0 auto;
	height: 100%
}

.fancybox__slide {
	flex: 0 0 auto;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	height: 100%;
	margin: 0 var(--fancybox-slide-gap) 0 0;
	padding: 4px;
	overflow: auto;
	overscroll-behavior: contain;
	transform: translate3d(0, 0, 0);
	backface-visibility: hidden
}

.fancybox__container:not(.is-compact) .fancybox__slide.has-close-btn {
	padding-top: 40px
}

.fancybox__slide.has-iframe,
.fancybox__slide.has-video,
.fancybox__slide.has-html5video {
	overflow: hidden
}

.fancybox__slide.has-image {
	overflow: hidden
}

.fancybox__slide.has-image.is-animating,
.fancybox__slide.has-image.is-selected {
	overflow: visible
}

.fancybox__slide::before,
.fancybox__slide::after {
	content: "";
	flex: 0 0 0;
	margin: auto
}

.fancybox__backdrop:empty,
.fancybox__viewport:empty,
.fancybox__track:empty,
.fancybox__slide:empty {
	display: block
}

.fancybox__content {
	align-self: center;
	display: flex;
	flex-direction: column;
	position: relative;
	margin: 0;
	padding: 2rem;
	max-width: 100%;
	color: var(--fancybox-content-color, #374151);
	background: var(--fancybox-content-bg, #fff);
	cursor: default;
	border-radius: 0;
	z-index: 20
}

.is-loading .fancybox__content {
	opacity: 0
}

.is-draggable .fancybox__content {
	cursor: move;
	cursor: grab
}

.can-zoom_in .fancybox__content {
	cursor: zoom-in
}

.can-zoom_out .fancybox__content {
	cursor: zoom-out
}

.is-dragging .fancybox__content {
	cursor: move;
	cursor: grabbing
}

.fancybox__content [data-selectable],
.fancybox__content [contenteditable] {
	cursor: auto
}

.fancybox__slide.has-image>.fancybox__content {
	padding: 0;
	background: rgba(0, 0, 0, 0);
	min-height: 1px;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center center;
	transition: none;
	transform: translate3d(0, 0, 0);
	backface-visibility: hidden
}

.fancybox__slide.has-image>.fancybox__content>picture>img {
	width: 100%;
	height: auto;
	max-height: 100%
}

.is-animating .fancybox__content,
.is-dragging .fancybox__content {
	will-change: transform, width, height
}

.fancybox-image {
	margin: auto;
	display: block;
	width: 100%;
	height: 100%;
	min-height: 0;
	object-fit: contain;
	user-select: none;
	filter: blur(0px)
}

.fancybox__caption {
	align-self: center;
	max-width: 100%;
	flex-shrink: 0;
	margin: 0;
	padding: 14px 0 4px 0;
	overflow-wrap: anywhere;
	line-height: 1.375;
	color: var(--fancybox-color, currentColor);
	opacity: var(--fancybox-opacity, 1);
	cursor: auto;
	visibility: visible
}

.is-loading .fancybox__caption,
.is-closing .fancybox__caption {
	opacity: 0;
	visibility: hidden
}

.is-compact .fancybox__caption {
	padding-bottom: 0
}

.f-button.is-close-btn {
	--f-button-svg-stroke-width: 2;
	position: absolute;
	top: 0;
	right: 8px;
	z-index: 40
}

.fancybox__content>.f-button.is-close-btn {
	--f-button-width: 34px;
	--f-button-height: 34px;
	--f-button-border-radius: 4px;
	--f-button-color: var(--fancybox-color, #fff);
	--f-button-hover-color: var(--fancybox-color, #fff);
	--f-button-bg: transparent;
	--f-button-hover-bg: transparent;
	--f-button-active-bg: transparent;
	--f-button-svg-width: 22px;
	--f-button-svg-height: 22px;
	position: absolute;
	top: -38px;
	right: 0;
	opacity: .75
}

.is-loading .fancybox__content>.f-button.is-close-btn {
	visibility: hidden
}

.is-zooming-out .fancybox__content>.f-button.is-close-btn {
	visibility: hidden
}

.fancybox__content>.f-button.is-close-btn:hover {
	opacity: 1
}

.fancybox__footer {
	padding: 0;
	margin: 0;
	position: relative
}

.fancybox__footer .fancybox__caption {
	width: 100%;
	padding: 24px;
	opacity: var(--fancybox-opacity, 1);
	transition: all .25s ease
}

.is-compact .fancybox__footer {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 20;
	background: rgba(24, 24, 27, .5)
}

.is-compact .fancybox__footer .fancybox__caption {
	padding: 12px
}

.is-compact .fancybox__content>.f-button.is-close-btn {
	--f-button-border-radius: 50%;
	--f-button-color: #fff;
	--f-button-hover-color: #fff;
	--f-button-outline-color: #000;
	--f-button-bg: rgba(0, 0, 0, 0.6);
	--f-button-active-bg: rgba(0, 0, 0, 0.6);
	--f-button-hover-bg: rgba(0, 0, 0, 0.6);
	--f-button-svg-width: 18px;
	--f-button-svg-height: 18px;
	--f-button-svg-filter: none;
	top: 5px;
	right: 5px
}

.fancybox__nav {
	--f-button-width: 50px;
	--f-button-height: 50px;
	--f-button-border: 0;
	--f-button-border-radius: 50%;
	--f-button-color: var(--fancybox-color);
	--f-button-hover-color: var(--fancybox-hover-color);
	--f-button-bg: transparent;
	--f-button-hover-bg: rgba(24, 24, 27, 0.3);
	--f-button-active-bg: rgba(24, 24, 27, 0.5);
	--f-button-shadow: none;
	--f-button-transition: all 0.15s ease;
	--f-button-transform: none;
	--f-button-svg-width: 26px;
	--f-button-svg-height: 26px;
	--f-button-svg-stroke-width: 2.5;
	--f-button-svg-fill: none;
	--f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.5));
	--f-button-svg-disabled-opacity: 0.65;
	--f-button-next-pos: 1rem;
	--f-button-prev-pos: 1rem;
	opacity: var(--fancybox-opacity, 1)
}

.fancybox__nav .f-button:before {
	position: absolute;
	content: "";
	top: -30px;
	right: -20px;
	left: -20px;
	bottom: -30px;
	z-index: 1
}

.is-idle .fancybox__nav {
	animation: .15s ease-out both f-fadeOut
}

.is-idle.is-compact .fancybox__footer {
	pointer-events: none;
	animation: .15s ease-out both f-fadeOut
}

.fancybox__slide>.f-spinner {
	position: absolute;
	top: 50%;
	left: 50%;
	margin: var(--f-spinner-top, calc(var(--f-spinner-width) * -0.5)) 0 0 var(--f-spinner-left, calc(var(--f-spinner-height) * -0.5));
	z-index: 30;
	cursor: pointer
}

.fancybox-protected {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 40;
	user-select: none
}

.fancybox-ghost {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	min-height: 0;
	object-fit: contain;
	z-index: 40;
	user-select: none;
	pointer-events: none
}

.fancybox-focus-guard {
	outline: none;
	opacity: 0;
	position: fixed;
	pointer-events: none
}

.fancybox__container:not([aria-hidden]) {
	opacity: 0
}

.fancybox__container.is-animated[aria-hidden=false]>*:not(.fancybox__backdrop, .fancybox__carousel),
.fancybox__container.is-animated[aria-hidden=false] .fancybox__carousel>*:not(.fancybox__viewport),
.fancybox__container.is-animated[aria-hidden=false] .fancybox__slide>*:not(.fancybox__content) {
	animation: var(--f-interface-enter-duration, 0.25s) ease .1s backwards f-fadeIn
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop {
	animation: var(--f-backdrop-enter-duration, 0.35s) ease backwards f-fadeIn
}

.fancybox__container.is-animated[aria-hidden=true]>*:not(.fancybox__backdrop, .fancybox__carousel),
.fancybox__container.is-animated[aria-hidden=true] .fancybox__carousel>*:not(.fancybox__viewport),
.fancybox__container.is-animated[aria-hidden=true] .fancybox__slide>*:not(.fancybox__content) {
	animation: var(--f-interface-exit-duration, 0.15s) ease forwards f-fadeOut
}

.fancybox__container.is-animated[aria-hidden=true] .fancybox__backdrop {
	animation: var(--f-backdrop-exit-duration, 0.35s) ease forwards f-fadeOut
}

.has-iframe .fancybox__content,
.has-map .fancybox__content,
.has-pdf .fancybox__content,
.has-youtube .fancybox__content,
.has-vimeo .fancybox__content,
.has-html5video .fancybox__content {
	max-width: 100%;
	flex-shrink: 1;
	min-height: 1px;
	overflow: visible
}

.has-iframe .fancybox__content,
.has-map .fancybox__content,
.has-pdf .fancybox__content {
	width: calc(100% - 120px);
	height: 90%
}

.fancybox__container.is-compact .has-iframe .fancybox__content,
.fancybox__container.is-compact .has-map .fancybox__content,
.fancybox__container.is-compact .has-pdf .fancybox__content {
	width: 100%;
	height: 100%
}

.has-youtube .fancybox__content,
.has-vimeo .fancybox__content,
.has-html5video .fancybox__content {
	width: 960px;
	height: 540px;
	max-width: 100%;
	max-height: 100%
}

.has-map .fancybox__content,
.has-pdf .fancybox__content,
.has-youtube .fancybox__content,
.has-vimeo .fancybox__content,
.has-html5video .fancybox__content {
	padding: 0;
	background: rgba(24, 24, 27, .9);
	color: #fff
}

.has-map .fancybox__content {
	background: #e5e3df
}

.fancybox__html5video,
.fancybox__iframe {
	border: 0;
	display: block;
	height: 100%;
	width: 100%;
	background: rgba(0, 0, 0, 0)
}

.fancybox-placeholder {
	border: 0 !important;
	clip: rect(1px, 1px, 1px, 1px) !important;
	-webkit-clip-path: inset(50%) !important;
	clip-path: inset(50%) !important;
	height: 1px !important;
	margin: -1px !important;
	overflow: hidden !important;
	padding: 0 !important;
	position: absolute !important;
	width: 1px !important;
	white-space: nowrap !important
}

.f-carousel__thumbs {
	--f-thumb-width: 96px;
	--f-thumb-height: 72px;
	--f-thumb-outline: 0;
	--f-thumb-outline-color: #5eb0ef;
	--f-thumb-opacity: 1;
	--f-thumb-hover-opacity: 1;
	--f-thumb-selected-opacity: 1;
	--f-thumb-border-radius: 2px;
	--f-thumb-offset: 0px;
	--f-button-next-pos: 0;
	--f-button-prev-pos: 0
}

.f-carousel__thumbs.is-classic {
	--f-thumb-gap: 8px;
	--f-thumb-opacity: 0.5;
	--f-thumb-hover-opacity: 1;
	--f-thumb-selected-opacity: 1
}

.f-carousel__thumbs.is-modern {
	--f-thumb-gap: 4px;
	--f-thumb-extra-gap: 16px;
	--f-thumb-clip-width: 46px
}

.f-thumbs {
	position: relative;
	flex: 0 0 auto;
	margin: 0;
	overflow: hidden;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	user-select: none;
	perspective: 1000px;
	transform: translateZ(0)
}

.f-thumbs .f-spinner {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 2px;
	background-image: linear-gradient(#ebeff2, #e2e8f0);
	z-index: -1
}

.f-thumbs .f-spinner svg {
	display: none
}

.f-thumbs.is-vertical {
	height: 100%
}

.f-thumbs__viewport {
	width: 100%;
	height: auto;
	overflow: hidden;
	transform: translate3d(0, 0, 0)
}

.f-thumbs__track {
	display: flex
}

.f-thumbs__slide {
	position: relative;
	flex: 0 0 auto;
	box-sizing: content-box;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	margin: 0;
	width: var(--f-thumb-width);
	height: var(--f-thumb-height);
	overflow: visible;
	cursor: pointer
}

.f-thumbs__slide.is-loading img {
	opacity: 0
}

.is-classic .f-thumbs__viewport {
	height: 100%
}

.is-modern .f-thumbs__track {
	width: max-content
}

.is-modern .f-thumbs__track::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: calc((var(--f-thumb-clip-width, 0))*-0.5);
	width: calc(var(--width, 0)*1px + var(--f-thumb-clip-width, 0));
	cursor: pointer
}

.is-modern .f-thumbs__slide {
	width: var(--f-thumb-clip-width);
	transform: translate3d(calc(var(--shift, 0) * -1px), 0, 0);
	transition: none;
	pointer-events: none
}

.is-modern.is-resting .f-thumbs__slide {
	transition: transform .33s ease
}

.is-modern.is-resting .f-thumbs__slide__button {
	transition: clip-path .33s ease
}

.is-using-tab .is-modern .f-thumbs__slide:focus-within {
	filter: drop-shadow(-1px 0px 0px var(--f-thumb-outline-color)) drop-shadow(2px 0px 0px var(--f-thumb-outline-color)) drop-shadow(0px -1px 0px var(--f-thumb-outline-color)) drop-shadow(0px 2px 0px var(--f-thumb-outline-color))
}

.f-thumbs__slide__button {
	appearance: none;
	width: var(--f-thumb-width);
	height: 100%;
	margin: 0 -100% 0 -100%;
	padding: 0;
	border: 0;
	position: relative;
	border-radius: var(--f-thumb-border-radius);
	overflow: hidden;
	background: rgba(0, 0, 0, 0);
	outline: none;
	cursor: pointer;
	pointer-events: auto;
	touch-action: manipulation;
	opacity: var(--f-thumb-opacity);
	transition: opacity .2s ease
}

.f-thumbs__slide__button:hover {
	opacity: var(--f-thumb-hover-opacity)
}

.f-thumbs__slide__button:focus:not(:focus-visible) {
	outline: none
}

.f-thumbs__slide__button:focus-visible {
	outline: none;
	opacity: var(--f-thumb-selected-opacity)
}

.is-modern .f-thumbs__slide__button {
	--clip-path: inset(0 calc(((var(--f-thumb-width, 0) - var(--f-thumb-clip-width, 0))) * (1 - var(--progress, 0)) * 0.5) round var(--f-thumb-border-radius, 0));
	clip-path: var(--clip-path)
}

.is-classic .is-nav-selected .f-thumbs__slide__button {
	opacity: var(--f-thumb-selected-opacity)
}

.is-classic .is-nav-selected .f-thumbs__slide__button::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: auto;
	bottom: 0;
	border: var(--f-thumb-outline, 0) solid var(--f-thumb-outline-color, transparent);
	border-radius: var(--f-thumb-border-radius);
	animation: f-fadeIn .2s ease-out;
	z-index: 10
}

.f-thumbs__slide__img {
	overflow: hidden;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: var(--f-thumb-offset);
	box-sizing: border-box;
	pointer-events: none;
	object-fit: cover;
	border-radius: var(--f-thumb-border-radius)
}

.f-thumbs.is-horizontal .f-thumbs__track {
	padding: 8px 0 12px 0
}

.f-thumbs.is-horizontal .f-thumbs__slide {
	margin: 0 var(--f-thumb-gap) 0 0
}

.f-thumbs.is-vertical .f-thumbs__track {
	flex-wrap: wrap;
	padding: 0 8px
}

.f-thumbs.is-vertical .f-thumbs__slide {
	margin: 0 0 var(--f-thumb-gap) 0
}

.fancybox__thumbs {
	--f-thumb-width: 96px;
	--f-thumb-height: 72px;
	--f-thumb-border-radius: 2px;
	--f-thumb-outline: 2px;
	--f-thumb-outline-color: #ededed;
	position: relative;
	opacity: var(--fancybox-opacity, 1);
	transition: max-height .35s cubic-bezier(0.23, 1, 0.32, 1)
}

.fancybox__thumbs.is-classic {
	--f-thumb-gap: 8px;
	--f-thumb-opacity: 0.5;
	--f-thumb-hover-opacity: 1
}

.fancybox__thumbs.is-classic .f-spinner {
	background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05))
}

.fancybox__thumbs.is-modern {
	--f-thumb-gap: 4px;
	--f-thumb-extra-gap: 16px;
	--f-thumb-clip-width: 46px;
	--f-thumb-opacity: 1;
	--f-thumb-hover-opacity: 1
}

.fancybox__thumbs.is-modern .f-spinner {
	background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05))
}

.fancybox__thumbs.is-horizontal {
	padding: 0 var(--f-thumb-gap)
}

.fancybox__thumbs.is-vertical {
	padding: var(--f-thumb-gap) 0
}

.is-compact .fancybox__thumbs {
	--f-thumb-width: 64px;
	--f-thumb-clip-width: 32px;
	--f-thumb-height: 48px;
	--f-thumb-extra-gap: 10px
}

.fancybox__thumbs.is-masked {
	max-height: 0px !important
}

.is-closing .fancybox__thumbs {
	transition: none !important
}

.fancybox__toolbar {
	--f-progress-color: var(--fancybox-color, rgba(255, 255, 255, 0.94));
	--f-button-width: 46px;
	--f-button-height: 46px;
	--f-button-color: var(--fancybox-color);
	--f-button-hover-color: var(--fancybox-hover-color);
	--f-button-bg: rgba(24, 24, 27, 0.65);
	--f-button-hover-bg: rgba(70, 70, 73, 0.65);
	--f-button-active-bg: rgba(90, 90, 93, 0.65);
	--f-button-border-radius: 0;
	--f-button-svg-width: 24px;
	--f-button-svg-height: 24px;
	--f-button-svg-stroke-width: 1.5;
	--f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.15));
	--f-button-svg-fill: none;
	--f-button-svg-disabled-opacity: 0.65;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin: 0;
	padding: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI Adjusted", "Segoe UI", "Liberation Sans", sans-serif;
	color: var(--fancybox-color, currentColor);
	opacity: var(--fancybox-opacity, 1);
	text-shadow: var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, 0.5));
	pointer-events: none;
	z-index: 20
}

.fancybox__toolbar :focus-visible {
	z-index: 1
}

.fancybox__toolbar.is-absolute,
.is-compact .fancybox__toolbar {
	position: absolute;
	top: 0;
	left: 0;
	right: 0
}

.is-idle .fancybox__toolbar {
	pointer-events: none;
	animation: .15s ease-out both f-fadeOut
}

.fancybox__toolbar__column {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-content: flex-start
}

.fancybox__toolbar__column.is-left,
.fancybox__toolbar__column.is-right {
	flex-grow: 1;
	flex-basis: 0
}

.fancybox__toolbar__column.is-right {
	display: flex;
	justify-content: flex-end;
	flex-wrap: nowrap
}

.fancybox__infobar {
	padding: 0 5px;
	line-height: var(--f-button-height);
	text-align: center;
	font-size: 17px;
	font-variant-numeric: tabular-nums;
	-webkit-font-smoothing: subpixel-antialiased;
	cursor: default;
	user-select: none
}

.fancybox__infobar span {
	padding: 0 5px
}

.fancybox__infobar:not(:first-child):not(:last-child) {
	background: var(--f-button-bg)
}

[data-fancybox-toggle-slideshow] {
	position: relative
}

[data-fancybox-toggle-slideshow] .f-progress {
	height: 100%;
	opacity: .3
}

[data-fancybox-toggle-slideshow] svg g:first-child {
	display: flex
}

[data-fancybox-toggle-slideshow] svg g:last-child {
	display: none
}

.has-slideshow [data-fancybox-toggle-slideshow] svg g:first-child {
	display: none
}

.has-slideshow [data-fancybox-toggle-slideshow] svg g:last-child {
	display: flex
}

[data-fancybox-toggle-fullscreen] svg g:first-child {
	display: flex
}

[data-fancybox-toggle-fullscreen] svg g:last-child {
	display: none
}

:fullscreen [data-fancybox-toggle-fullscreen] svg g:first-child {
	display: none
}

:fullscreen [data-fancybox-toggle-fullscreen] svg g:last-child {
	display: flex
}

.f-progress {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	transform: scaleX(0);
	transform-origin: 0;
	transition-property: transform;
	transition-timing-function: linear;
	background: var(--f-progress-color, var(--f-carousel-theme-color, #0091ff));
	z-index: 30;
	user-select: none;
	pointer-events: none
}

/*!
  Theme Name: AmiaHotel
  Author: Anonymous
  Author URI:
  Version: 1
  Description: AmiaHotel theme for Wordpress
  License: GNU General Public License v2 or later
  License URI: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
  Text Domain: AmiaHotel
  Tags: one-column, two-columns
  Theme URI:
*/
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%
}

body {
	margin: 0
}

main {
	display: block
}

h1 {
	font-size: 2em;
	margin: .67em 0
}

hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible
}

pre {
	font-family: monospace, monospace;
	font-size: 1em
}

a {
	background-color: transparent
}

abbr[title] {
	border-bottom: none;
	text-decoration: underline;
	-webkit-text-decoration: underline dotted;
	text-decoration: underline dotted
}

b,
strong {
	font-weight: bolder
}

code,
kbd,
samp {
	font-family: monospace, monospace;
	font-size: 1em
}

small {
	font-size: 80%
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline
}

sub {
	bottom: -.25em
}

sup {
	top: -.5em
}

img {
	border-style: none
}

button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	line-height: 1.15;
	margin: 0
}

button,
input {
	overflow: visible
}

button,
select {
	text-transform: none
}

[type=button],
[type=reset],
[type=submit],
button {
	-webkit-appearance: button
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
	border-style: none;
	padding: 0
}

[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring,
button:-moz-focusring {
	outline: 1px dotted ButtonText
}

fieldset {
	padding: .35em .75em .625em
}

legend {
	box-sizing: border-box;
	color: inherit;
	display: table;
	max-width: 100%;
	padding: 0;
	white-space: normal
}

progress {
	vertical-align: baseline
}

textarea {
	overflow: auto
}

[type=checkbox],
[type=radio] {
	box-sizing: border-box;
	padding: 0
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
	height: auto
}

[type=search] {
	-webkit-appearance: textfield;
	outline-offset: -2px
}

[type=search]::-webkit-search-decoration {
	-webkit-appearance: none
}

::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit
}

details {
	display: block
}

summary {
	display: list-item
}

[hidden],
template {
	display: none
}

@font-face {
	font-display: block;
	font-family: icomoon;
	font-style: normal;
	font-weight: 400;
	src: url(fonts/icomoon.woff?yuzzw2) format("woff")
}

[class*=" icon-"],
[class^=icon-] {
	font-family: icomoon !important;
	speak: none;
	font-feature-settings: normal;
	font-style: normal;
	font-variant: normal;
	font-weight: 400;
	line-height: 1;
	text-transform: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale
}

.icon-chevron-down:before {
	content: "\e908"
}

.icon-cross:before {
	content: "\e90d"
}

.icon-chevron-up:before {
	content: "\e911"
}

.icon-chevron-left:before {
	content: "\e912"
}

.icon-chevron-right:before {
	content: "\e913"
}

html {
	box-sizing: border-box
}

*,
:after,
:before {
	box-sizing: inherit
}

.contact-info-list,
.floating-button-area .floating-button-list,
.footer-links,
.job-list,
.link-list,
.menu,
.social-media,
.sub-menu {
	list-style: none;
	margin: 0;
	padding: 0
}

.visually-hidden {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	white-space: nowrap;
	width: 1px
}

.visually-hidden.focusable:active,
.visually-hidden.focusable:focus {
	clip: auto;
	height: auto;
	margin: 0;
	overflow: visible;
	position: static;
	white-space: inherit;
	width: auto
}

@font-face {
	font-family: Ergon;
	font-style: normal;
	font-weight: 400;
	src: url(fonts/Ergon-Regular-Web.woff2) format("woff2"), url(fonts/Ergon-Regular-Web.woff) format("woff")
}

@font-face {
	font-family: Ergon;
	font-style: normal;
	font-weight: 300;
	src: url(fonts/Ergon-Light-Web.woff2) format("woff2"), url(fonts/Ergon-Light-Web.woff) format("woff")
}

blockquote {
	margin-bottom: 1rem;
	padding-left: 1rem
}

blockquote p {
	margin-bottom: .5rem
}

.wp-block-pullquote,
.wp-block-quote {
	box-sizing: border-box;
	word-wrap: break-word;
	border-style: solid;
	border-width: 0 0 0 2px;
	margin-bottom: 1rem;
	padding-left: 1rem
}

.wp-block-pullquote p,
.wp-block-quote p {
	margin-bottom: .5rem
}

.wp-block-pullquote blockquote {
	margin: 0;
	padding: 0
}

.comment-form label {
	display: block;
	padding-bottom: 4px
}

.comment-form textarea {
	height: 120px;
	margin: 0;
	min-height: 120px;
	overflow: auto
}

.comment-form input[type=text],
.comment-form textarea {
	margin: 0 4px 0 0;
	max-width: 300px;
	width: 100%
}

.comment-form input[type=submit] {
	display: block;
	float: none
}

.post-password-form label {
	display: block;
	margin-bottom: 4px
}

.post-password-form input[type=password] {
	margin: 0 4px 0 0;
	max-width: 300px;
	width: 100%
}

.search-form {
	display: flex;
	margin-bottom: 15px
}

.search-form input {
	display: inline-flex;
	height: 32px
}

.search-form input[type=search] {
	margin: 0 4px 0 0;
	width: 150px
}

.search-form input[type=submit] {
	flex-shrink: 0
}

.post-password-form input {
	display: inline-flex;
	height: 32px
}

.post-password-form input[type=password] {
	width: 150px
}

.comment-form fieldset,
.post-password-form fieldset,
.search-form fieldset {
	border: 0;
	padding: 0
}

.comment-form input[type=submit],
.post-password-form input[type=submit],
.search-form input[type=submit] {
	background: #000;
	border: 0;
	color: #fff;
	height: 32px;
	padding: 0 8px
}

.comment-form input[type=submit]:hover,
.post-password-form input[type=submit]:hover,
.search-form input[type=submit]:hover {
	opacity: .8
}

.wp-block-post-comments-form .comment-form-cookies-consent {
	display: flex;
	gap: .5em
}

.wp-block-post-comments-form .comment-form-cookies-consent label {
	padding: 0
}

.wp-block-comment-template {
	list-style: none;
	margin: 0 0 1rem;
	padding: 0
}

.wp-block-comment-template .wp-block-comment-edit-link p {
	margin: 0
}

.wp-block-comment-template .wp-block-columns {
	margin-bottom: 2rem
}

.wp-block-comment-template .wp-block-comment-content p {
	margin: 1rem 0
}

.wp-block-comment-template ol {
	list-style: none;
	margin-bottom: 0;
	max-width: 100%;
	padding-left: 2rem
}

.wpcf7-form input[type=email].wpcf7-not-valid,
.wpcf7-form input[type=tel].wpcf7-not-valid,
.wpcf7-form input[type=text].wpcf7-not-valid,
.wpcf7-form textarea.wpcf7-not-valid {
	border-color: red
}

.wpcf7-form input[type=checkbox] {
	opacity: 0;
	position: absolute
}

.wpcf7-form input[type=checkbox]+.wpcf7-list-item-label {
	cursor: pointer;
	display: block;
	padding: 0 0 0 30px;
	position: relative
}

.wpcf7-form input[type=checkbox]+.wpcf7-list-item-label:before {
	background: #fff;
	border: 1px solid #000;
	content: "";
	height: 20px;
	left: 0;
	position: absolute;
	top: 0;
	width: 20px
}

.wpcf7-form input[type=checkbox]+.wpcf7-list-item-label:after {
	border-color: #000;
	border-style: solid;
	border-width: 0 2px 2px 0;
	content: "";
	height: 14px;
	left: 6px;
	opacity: 0;
	position: absolute;
	top: 1px;
	transform: rotate(45deg) skewX(10deg);
	width: 8px
}

.wpcf7-form input[type=checkbox]:checked+.wpcf7-list-item-label:after {
	opacity: 1
}

.wpcf7-form input[type=checkbox]:disabled+.wpcf7-list-item-label {
	color: #ccc;
	cursor: auto
}

.wpcf7-form input[type=checkbox]:disabled+.wpcf7-list-item-label:before {
	background: #ccc;
	box-shadow: none
}

.wpcf7-form input[type=file]::file-selector-button {
	background-color: #000;
	border: 2px solid #000;
	color: #fff;
	padding: 1em 1.5em;
	transition: 1s
}

.wpcf7-form input[type=file]::file-selector-button:hover {
	opacity: .5
}

.form-flex {
	flex-wrap: wrap;
	margin-bottom: 2rem
}

.form-flex,
.is-layout-flex {
	display: flex;
	gap: 1.5rem
}

.form-area {
	width: 100%
}

.form-row {
	margin-bottom: 2rem
}

.label-name {
	display: block;
	margin-bottom: 1rem
}

.select-area .wpcf7-form-control-wrap {
	display: block;
	position: relative
}

.select-area .wpcf7-form-control-wrap:after {
	background-color: #000;
	clip-path: polygon(100% 0, 0 0, 50% 100%);
	content: "";
	height: .8em;
	margin-top: -.4em;
	position: absolute;
	right: 2rem;
	top: 50%;
	width: 1em;
	z-index: 1
}

.wpcf7-select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-color: #fff;
	border: 1px solid;
	color: #000;
	display: block;
	font-size: 1rem;
	font-weight: 400;
	line-height: 2;
	padding: .625rem 2.4rem;
	transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
	width: 100%;
	z-index: 1
}

.wpcf7-submit {
	background: #000;
	border: 1px solid #000;
	color: #fff;
	margin-bottom: 2rem;
	padding: 10px;
	width: 150px
}

.widget_calendar #next {
	text-align: right
}

.gallery-item dt {
	float: none;
	padding: 0
}

.navigation,
.navigation-comments {
	margin-bottom: 1rem;
	position: relative;
	vertical-align: middle
}

.navigation .screen-reader-text,
.navigation-comments .screen-reader-text {
	left: -99999px;
	position: absolute
}

.navigation .page-numbers,
.navigation-comments .page-numbers {
	display: inline-block;
	padding: 0 6px;
	vertical-align: middle
}

.navigation .next,
.navigation .prev,
.navigation-comments .next,
.navigation-comments .prev {
	background: #000;
	color: #fff;
	display: inline-block;
	max-width: 48%;
	padding: 10px;
	-webkit-text-decoration: none;
	text-decoration: none;
	vertical-align: middle
}

.navigation .next:hover,
.navigation .prev:hover,
.navigation-comments .next:hover,
.navigation-comments .prev:hover {
	opacity: .8
}

.navigation-single {
	display: flex;
	justify-content: space-between;
	margin-bottom: 1rem
}

.navigation-single .next,
.navigation-single .prev {
	align-items: center;
	background: #000;
	color: #fff;
	display: inline-flex;
	max-width: 48%;
	-webkit-text-decoration: none;
	text-decoration: none
}

.navigation-single .next:hover,
.navigation-single .prev:hover {
	opacity: .8
}

.navigation-single .next a,
.navigation-single .prev a {
	color: inherit;
	display: block;
	padding: 10px;
	-webkit-text-decoration: none;
	text-decoration: none
}

.navigation-single .next a {
	margin-left: auto
}

.wp-caption {
	border: 1px solid #ccc;
	clear: both;
	margin-bottom: 1rem;
	max-width: 100%;
	padding: 10px
}

.wp-caption img {
	margin: 0;
	max-width: 100%;
	vertical-align: top
}

.wp-caption p {
	margin: 10px 0 0
}

div.aligncenter {
	margin: 0 auto 1rem
}

img.aligncenter {
	display: block;
	margin: 0 auto
}

.alignleft {
	float: left;
	margin: 0 1rem 4px 0
}

.alignright {
	float: right;
	margin: 0 0 4px 1rem
}

.mejs-container {
	margin-bottom: 1rem
}

.alignnone,
.bypostauthor,
.gallery,
.gallery-caption,
.sticky,
.wp-caption-text {
	height: auto
}

.wp-block-table table {
	border-collapse: collapse;
	width: 100%
}

.wp-block-table table td,
.wp-block-table table th {
	border: 1px solid;
	padding: .5em
}

.wp-block-table table thead {
	border-bottom: 3px solid
}

.wp-block-table table tfoot {
	border-top: 3px solid
}

#wp-calendar tbody td {
	text-align: center
}

#wp-calendar td,
#wp-calendar th {
	border: 1px solid #ccc
}

.share-this .st-btn {
	background: #999;
	border-radius: 50%;
	font-size: 2em;
	height: 3em;
	line-height: 3em;
	text-align: center;
	width: 3em
}

.share-this .st-btn img {
	display: inline-block;
	height: auto;
	vertical-align: middle;
	width: 2em
}

body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: #000;
	font-family: Ergon, Arial, Noto Sans, sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5
}

a {
	color: #0366d6;
	transition: color .35s cubic-bezier(.3, .86, .36, .95)
}

a:hover {
	color: #035abd
}

dl,
ol,
p,
ul {
	margin: 0 0 1.5em
}

input[type=email],
input[type=tel],
input[type=text],
textarea {
	-webkit-appearance: none;
	background-color: transparent;
	border: 1px solid;
	border-radius: 0;
	min-width: 0;
	padding: 1.2rem 2.4rem;
	transition: border-color .35s cubic-bezier(.3, .86, .36, .95);
	width: 100%
}

input[type=email]:focus,
input[type=email]:hover,
input[type=tel]:focus,
input[type=tel]:hover,
input[type=text]:focus,
input[type=text]:hover,
textarea:focus,
textarea:hover {
	box-shadow: none;
	outline: none
}

.header {
	background: transparent;
	left: 0;
	mix-blend-mode: difference;
	padding: 25px 0;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 199
}

.header .container .col:nth-child(2) {
	text-align: center
}

.header .container .col:nth-child(3) {
	text-align: right
}

.header .container .col a {
	color: #eddae1;
	display: inline-block;
	font-size: 20px;
	font-weight: 300;
	letter-spacing: .001em;
	line-height: 1.2;
	padding-bottom: 2px;
	position: relative;
	vertical-align: top
}

.header .container .col a:before {
	background: #eddae1;
	bottom: 0;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	transition: width .3s linear;
	width: 0
}

.header .container .col a:hover:before {
	width: 100%
}

.header .container .logo a {
	display: block;
	padding: 0
}

.header .container .logo a:before {
	display: none
}

.header .container .logo a:hover svg path {
	fill: #8fc4a8
}

.header .container .logo a svg path {
	transition: fill .3s linear
}

.header .nav-opener {
	display: none
}

.nav-active,
.nav-drop {
	overflow: hidden
}

.nav-drop {
	background: #fefefe;
	bottom: 0;
	display: flex;
	flex-direction: column;
	height: 100vh;
	justify-content: space-between;
	left: 0;
	mix-blend-mode: normal;
	opacity: 0;
	overflow-y: auto;
	position: fixed;
	right: 0;
	transition: opacity .5s linear, visibility .5s linear, transform .5s linear;
	visibility: hidden;
	z-index: 999
}

.nav-active .nav-drop {
	opacity: 1;
	visibility: visible
}

.nav-drop .drop-top {
	padding: 25px 0;
	width: 100%
}

.nav-drop .drop-top .container .col a {
	color: #122520;
	display: inline-block;
	font-size: 20px;
	font-weight: 300;
	letter-spacing: .001em;
	line-height: 1.2;
	padding-bottom: 2px;
	position: relative;
	vertical-align: top
}

.nav-drop .drop-top .container .col a:before {
	background: #122520;
	bottom: 0;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	transition: width .3s linear;
	width: 0
}

.nav-drop .drop-top .container .col a:hover:before {
	width: 100%
}

.nav-drop .drop-top .container .logo a {
	display: block;
	padding: 0
}

.nav-drop .drop-top .container .logo a:before {
	display: none
}

.nav-drop .drop-top .container .logo a:hover svg path {
	fill: #6b3a56
}

.nav-drop .drop-top .container .logo a svg path {
	transition: fill .3s linear
}

.nav-drop .drop-mid {
	padding: 0 0 42px
}

.nav-drop .drop-bottom {
	height: var(--floatingBtnHeight)
}

.nav-drop .drop-bottom p {
	display: none;
	margin: 0
}

.nav-drop .drop-bottom .nav-opener {
	color: #122520;
	display: inline-block;
	font-size: 21px;
	font-weight: 300;
	line-height: 1;
	padding: 0 0 0 51px;
	position: relative;
	vertical-align: top
}

.nav-drop .drop-bottom .nav-opener:before {
	background: #122520;
	bottom: -2px;
	content: "";
	height: 1px;
	left: 51px;
	position: absolute;
	transition: width .3s linear;
	width: 0
}

.nav-drop .drop-bottom .nav-opener .cross {
	height: 30px;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 30px
}

.nav-drop .drop-bottom .nav-opener .cross:after,
.nav-drop .drop-bottom .nav-opener .cross:before {
	background: #122520;
	content: "";
	height: 2px;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%) rotate(24deg);
	width: 30px
}

.nav-drop .drop-bottom .nav-opener .cross:after {
	transform: translateY(-50%) rotate(-24deg)
}

.nav-drop .drop-bottom .nav-opener:hover:before {
	width: calc(100% - 51px)
}

.menu {
	font-size: 42px;
	font-weight: 300;
	line-height: 1.26;
	text-align: center
}

.menu>li {
	margin: 0 0 7px
}

.menu>li a {
	color: inherit;
	display: inline-block;
	position: relative;
	vertical-align: top
}

.menu>li a:before {
	background: #122520;
	bottom: 0;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	transition: width .3s linear;
	width: 0
}

.menu>li a:hover:before {
	width: 100%
}

.sub-menu {
	font-size: 20px;
	font-weight: 300;
	line-height: 1.26;
	padding: 20px 0 0;
	text-align: center
}

.sub-menu>li {
	margin: 0 0 7px
}

.sub-menu>li a {
	color: #000;
	display: inline-block;
	padding-bottom: 2px;
	position: relative;
	vertical-align: top
}

.sub-menu>li a:before {
	background: #122520;
	bottom: 0;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	transition: width .3s linear;
	width: 0
}

.sub-menu>li a:hover:before {
	width: 100%
}

.logo {
	font-size: 0;
	line-height: 0;
	margin: 0 auto;
	max-width: 134px
}

.logo svg {
	height: auto;
	max-width: none;
	width: 100%
}

body {
	background: #fefefe;
	color: #122520;
	font-size: 18px;
	font-weight: 300;
	line-height: 1.46
}

.wrapper {
	overflow: clip;
	position: relative;
	width: 100%
}

.container {
	margin: 0 auto;
	max-width: 100%;
	padding: 0 24px
}

a {
	transition: color .3s linear, background .3s linear, opacity .3s linear
}

a,
a:hover {
	-webkit-text-decoration: none;
	text-decoration: none;
	text-decoration-thickness: 1px
}

a:focus,
button:focus {
	outline: 2px dotted #fc2436
}

.using-mouse a:focus,
.using-mouse button:focus {
	outline: none
}

img {
	height: auto;
	max-width: 100%;
	vertical-align: top
}

.popup-holder {
	height: 0;
	position: relative
}

.modal-active,
.modal-block,
.popup-holder {
	overflow: hidden
}

.modal-block {
	align-items: center;
	background: #fefefe;
	bottom: 0;
	display: flex;
	flex-direction: row;
	left: 0;
	margin: 0;
	opacity: 0;
	padding: 0;
	position: fixed;
	right: 0;
	top: 0;
	transition: opacity .5s linear, visibility .5s linear;
	visibility: hidden;
	z-index: 99999999
}

.modal-active .modal-block {
	opacity: 1;
	visibility: visible
}

.modal-block .modal-wrap {
	max-height: 100%;
	overflow: hidden;
	overflow-y: auto;
	padding: 20px 0;
	width: 100%
}

.modal-block .modal-content {
	background: #fefefe;
	color: #122520;
	font-size: 19px;
	font-weight: 300;
	letter-spacing: .0075em;
	line-height: 1.52;
	margin: 0 auto;
	max-width: 301px;
	padding: 24px 15px 68px;
	text-align: center
}

.modal-block .modal-bg {
	bottom: 0;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	z-index: -1
}

.modal-block .modal-bg img {
	height: 100%;
	left: 0;
	max-width: none;
	-o-object-fit: cover;
	object-fit: cover;
	position: absolute;
	top: 0;
	width: 100%
}

.modal-block .fern {
	font-size: 0;
	line-height: 0;
	margin: 0 auto 13px;
	width: 65px
}

.modal-block .fern svg {
	height: auto;
	max-width: none;
	width: 100%
}

.modal-block .h1,
.modal-block h1 {
	font-size: 52px;
	font-weight: 300;
	line-height: .9;
	margin: 0 0 15px;
	text-transform: uppercase
}

.modal-block p {
	margin: 0 0 49px
}

.modal-block .date {
	font-size: 28px;
	font-weight: 300;
	line-height: 1.05
}

.modal-block .modal-close {
	background: none;
	height: 30px;
	opacity: 1;
	outline: none;
	overflow: hidden;
	position: absolute;
	right: 20px;
	text-indent: -99999px;
	top: 20px;
	transition: opacity .3s linear;
	width: 30px;
	z-index: 40
}

.modal-block .modal-close:after,
.modal-block .modal-close:before {
	background: #fefefe;
	content: "";
	height: 1.5px;
	left: 0;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%) rotate(45deg)
}

.modal-block .modal-close:after {
	transform: translateY(-50%) rotate(-45deg)
}

.modal-block .modal-close:hover {
	opacity: .7
}

.fancybox__backdrop {
	background: rgba(0, 0, 0, .6)
}

.hidden {
	height: 0;
	left: -99999px;
	overflow: hidden;
	position: absolute;
	text-indent: -99999px;
	top: 0;
	width: 0
}

iframe {
	aspect-ratio: 4/3;
	height: auto;
	width: 100%
}

.h1,
h1 {
	font-size: 31px;
	margin: 0 0 9px
}

.h1,
.h2,
h1,
h2 {
	font-weight: 300;
	letter-spacing: 0;
	line-height: 1.26
}

.h2,
h2 {
	font-size: 26px;
	margin: 0 0 30px
}

.h3,
.h4,
.h5,
.h6,
h3,
h4,
h5,
h6 {
	font-weight: 300
}

.wpcf7-form input[type=checkbox]+.wpcf7-list-item-label:before {
	top: 2px
}

.wpcf7-form input[type=checkbox]+.wpcf7-list-item-label:after {
	top: 3px
}

input[type=email],
input[type=password],
input[type=search],
input[type=tel],
input[type=text],
textarea {
	display: block;
	font-size: 18px;
	height: 50px;
	line-height: 1.5;
	max-width: 100%;
	padding: 10px 22px;
	width: 100%
}

textarea {
	height: 200px;
	resize: none
}

button[type=submit],
input[type=submit] {
	background: #6b3a56;
	border: none;
	color: #fc2436;
	display: inline-block;
	font-size: 21px;
	font-weight: 300;
	height: auto;
	line-height: .762;
	padding: 17px 22px;
	text-align: center;
	transition: background .3s linear, color .3s linear;
	vertical-align: top
}

button[type=submit]:hover,
input[type=submit]:hover {
	background: #122520;
	color: #00923a
}

.comment-form,
.post-password-form,
.search-form {
	max-width: 100%
}

.comment-form button[type=submit],
.comment-form input[type=submit],
.post-password-form button[type=submit],
.post-password-form input[type=submit],
.search-form button[type=submit],
.search-form input[type=submit] {
	background: #6b3a56;
	border: none;
	color: #fc2436;
	display: inline-block;
	font-size: 21px;
	font-weight: 300;
	height: auto;
	line-height: .762;
	padding: 17px 22px;
	text-align: center;
	transition: background .3s linear, color .3s linear;
	vertical-align: top
}

.comment-form button[type=submit]:hover,
.comment-form input[type=submit]:hover,
.post-password-form button[type=submit]:hover,
.post-password-form input[type=submit]:hover,
.search-form button[type=submit]:hover,
.search-form input[type=submit]:hover {
	background: #122520;
	color: #00923a
}

.nav-links,
.navigation,
.navigation-comments,
.navigation-single {
	align-items: center;
	display: flex;
	flex-wrap: wrap
}

.nav-links .next,
.nav-links .prev,
.navigation .next,
.navigation .prev,
.navigation-comments .next,
.navigation-comments .prev,
.navigation-single .next,
.navigation-single .prev {
	background: #6b3a56;
	border: none;
	color: #fc2436;
	display: inline-block;
	font-size: 21px;
	font-weight: 300;
	height: auto;
	line-height: .762;
	padding: 17px 22px;
	text-align: center;
	transition: background .3s linear, color .3s linear;
	vertical-align: top
}

.nav-links .next:hover,
.nav-links .prev:hover,
.navigation .next:hover,
.navigation .prev:hover,
.navigation-comments .next:hover,
.navigation-comments .prev:hover,
.navigation-single .next:hover,
.navigation-single .prev:hover {
	background: #122520;
	color: #00923a
}

.footer {
	background: #6b3a56;
	color: #fc2436;
	font-size: 18px;
	font-weight: 300;
	letter-spacing: .001em;
	line-height: 1.3;
	padding: 22px 0 16px
}

.footer.alt-style {
	background: #122520;
	color: #00923a
}

.footer.alt-style svg path {
	fill: #00923a
}

.footer a {
	color: inherit;
	position: relative;
	-webkit-text-decoration: none;
	text-decoration: none;
	transition: color .3s linear
}

.footer a:hover {
	color: #fefefe
}

.footer-top {
	margin: 0 0 46px;
	text-align: center
}

.footer-top p {
	margin: 0 0 7px
}

.footer-bottom {
	text-align: center
}

.footer-bottom p {
	margin: 0
}

address {
	display: block;
	font-size: 20px;
	font-style: normal;
	line-height: 1.34;
	margin: 0 0 22px;
	padding: 0;
	text-align: center
}

.designer-logo {
	font-size: 0;
	line-height: 0;
	margin: 0 auto;
	max-width: 176px
}

.designer-logo a {
	display: block
}

.designer-logo svg {
	height: auto;
	max-width: none;
	width: 100%
}

.designer-logo svg path {
	transition: fill .3s linear
}

.social-media {
	display: none
}

.social-media>li {
	margin: 0 0 0 10px
}

.social-media>li a {
	-webkit-text-decoration: none;
	text-decoration: none
}

.logo-aa {
	font-size: 0;
	line-height: 0;
	margin: 0 auto 16px;
	max-width: 157px
}

.logo-aa svg {
	height: auto;
	max-width: none;
	width: 100%
}

.footer-links {
	line-height: 1.3;
	margin: 0 0 76px;
	text-align: center
}

.footer-links>li {
	margin: 0 0 2px
}

.btn {
	background: #6b3a56;
	color: #fc2436;
	display: inline-block;
	font-size: 21px;
	font-weight: 300;
	line-height: .762;
	padding: 17px 22px;
	text-align: center;
	vertical-align: top
}

.btn:hover {
	background: #122520;
	color: #00923a
}

.scrollable-wrapper {
	overflow: hidden;
	position: relative
}

.scrollable-wrapper.alt-style .scrollable-content .text-holder {
	padding: 140px 0 56px
}

.intro-section {
	background: #fefefe;
	min-height: 100vh;
	padding: 0 0 var(--scrollableContentHeight);
	position: relative;
	z-index: 200
}

.intro-section .intro-header {
	padding-top: 24px
}

.intro-section .background {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -1
}

.intro-section .background:before {
	background-color: rgba(18, 37, 32, .5);
	content: "";
	height: 100%;
	left: 0;
	mix-blend-mode: multiply;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 2
}

.intro-section .background img,
.intro-section .background video {
	height: 100%;
	left: 0;
	max-width: none;
	-o-object-fit: cover;
	object-fit: cover;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 1
}

.intro-section .container {
	max-width: 100%
}

.intro-section .top-bar {
	margin: 0 0 100px;
	text-align: right
}

.scrollable-content {
	background: transparent;
	color: #fefefe;
	left: 0;
	mix-blend-mode: exclusion;
	pointer-events: none;
	position: absolute;
	right: 0;
	text-align: center;
	top: calc(var(--introHeaderHeight) - 50px);
	z-index: 201
}

.scrollable-content * {
	color: inherit
}

.scrollable-content .text-holder {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: .0075em;
	line-height: 1.3;
	margin: 0 auto;
	max-width: 565px;
	padding: 137px 0 107px
}

.scrollable-content .text-holder p {
	margin: 0 0 36px
}

.scrollable-content .text-holder .h1,
.scrollable-content .text-holder h1 {
	font-size: 31px;
	font-weight: 300;
	letter-spacing: 0;
	line-height: 1.26;
	margin: 0 auto 18px;
	max-width: 200px
}

.scrollable-content .text-holder a,
.scrollable-content .text-holder button,
.scrollable-content .text-holder input {
	pointer-events: auto
}

.scrollable-content .leaf {
	font-size: 0;
	line-height: 0;
	margin: 0 auto;
	width: 22px
}

.scrollable-content .leaf svg {
	height: auto;
	max-width: none;
	width: 100%
}

.scrollable-content .leaf svg path {
	fill: #c5a07b
}

.sound-button {
	display: inline-block;
	height: 37px;
	vertical-align: top;
	width: 39px
}

.intro-logo {
	margin: 0 auto;
	max-width: 168px
}

.intro-text {
	height: var(--scrollableContentHeight)
}

.image-banner {
	margin: 0;
	padding-top: 138.5%;
	position: relative
}

.image-banner img {
	height: 100%;
	left: 0;
	max-width: none;
	-o-object-fit: cover;
	object-fit: cover;
	position: absolute;
	top: 0;
	width: 100%
}

.divider {
	align-items: center;
	display: flex;
	height: 200px;
	justify-content: center
}

.divider.inViewport .leaf {
	animation: move 3.5s linear .5s infinite
}

.divider .leaf {
	width: 30px
}

.divider .leaf svg {
	height: auto;
	max-width: none;
	width: 100%
}

@keyframes move {
	0% {
		transform: rotate(0deg)
	}

	50% {
		transform: rotate(20deg)
	}

	to {
		transform: rotate(0deg)
	}
}

.text-section {
	background: #fefefe;
	color: #122520;
	font-size: 18px;
	font-weight: 300;
	letter-spacing: .0075em;
	line-height: 1.46;
	padding: 76px 0 75px;
	text-align: center
}

.text-section.bg-lightgray {
	background: #f7f7f7
}

.text-section .container {
	max-width: 1220px
}

.text-section .h2,
.text-section h2 {
	color: #122520;
	font-size: 23px;
	font-weight: 300;
	letter-spacing: .01em;
	line-height: 1.42;
	margin: 0 0 31px
}

.text-section .h1,
.text-section h1 {
	color: #122520;
	font-size: 31px;
	font-weight: 300;
	letter-spacing: 0;
	line-height: 1.26;
	margin: -4px 0 28px
}

.text-section p {
	margin: 0 auto 43px;
	max-width: 760px
}

.title {
	color: #122520;
	display: block;
	font-size: 13px;
	font-weight: 400;
	letter-spacing: .26em;
	line-height: 1.23;
	margin: 0 0 25px;
	text-transform: uppercase
}

.link-list {
	color: #122520;
	font-size: 31px;
	font-weight: 300;
	line-height: 1.26;
	margin-bottom: 46px
}

.link-list>li {
	margin: 0 0 7px
}

.link-list>li a {
	color: inherit
}

.link-list>li a,
.link-list>li a:hover {
	-webkit-text-decoration: none;
	text-decoration: none
}

.link-list>li a:hover {
	color: #6b3a56
}

.link-holder {
	margin: 0 0 4px;
	text-align: center
}

.link-holder a {
	color: #122520;
	display: inline-block;
	font-size: 17px;
	font-weight: 300;
	line-height: 1.24;
	padding: 0 0 2px;
	position: relative;
	vertical-align: top
}

.link-holder a:hover:before {
	width: 0
}

.link-holder a:before {
	background: #6b3a56;
	bottom: 0;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	transition: width .3s linear;
	width: 100%
}

.img-text-section {
	display: flex;
	flex-wrap: wrap
}

.img-text-section.reverse {
	flex-direction: column-reverse
}

.img-text-section .col {
	width: 100%
}

.img-text-section .text-holder {
	background: #6b3a56;
	color: #fc2436;
	display: flex;
	flex-direction: column;
	font-weight: 300;
	justify-content: space-between;
	min-height: 500px;
	padding: 50px 24px 41px;
	text-align: center
}

.img-text-section .text-holder .text-bottom,
.img-text-section .text-holder .text-mid,
.img-text-section .text-holder .text-top {
	width: 100%
}

.img-text-section .text-holder a {
	color: #fc2436
}

.img-text-section .text-holder a:hover {
	-webkit-text-decoration: none;
	text-decoration: none
}

.img-text-section .img-holder {
	padding-top: 133%;
	position: relative
}

.img-text-section .img-holder img {
	height: 100%;
	left: 0;
	max-width: none;
	-o-object-fit: cover;
	object-fit: cover;
	position: absolute;
	top: 0;
	width: 100%
}

.img-text-section .title {
	color: inherit;
	line-height: 1.2;
	margin: 0 0 24px
}

.img-text-section .link-holder a:before {
	background: #fc2436
}

.img-text-section .h1,
.img-text-section h1 {
	font-size: 68px;
	font-weight: 400;
	line-height: 1;
	margin: 0 0 14px
}

.img-text-section .h2,
.img-text-section h2 {
	font-size: 62px;
	font-weight: 400;
	line-height: 1;
	margin: 0 0 37px
}

.img-text-section .h2 .small,
.img-text-section h2 .small {
	display: block;
	font-size: 56px;
	font-weight: 300
}

.job-list {
	font-size: 38px;
	letter-spacing: 0;
	line-height: 1.26;
	text-align: center
}

.job-list>li {
	margin: 0 0 7px
}

.multi-img-section {
	display: flex;
	flex-wrap: wrap;
	overflow: hidden;
	position: relative
}

.multi-img-section.reverse {
	flex-direction: column-reverse
}

.multi-img-section .col {
	overflow: hidden;
	width: 100%
}

.multi-img-section .img-holder {
	overflow: hidden;
	padding-top: 138.5%;
	position: relative
}

.multi-img-section .img-holder img {
	height: 100%;
	left: 0;
	max-width: none;
	-o-object-fit: cover;
	object-fit: cover;
	position: absolute;
	top: 0;
	width: 100%
}

.multi-img-section .text-holder {
	align-items: center;
	color: #122520;
	display: flex;
	font-size: 18px;
	font-weight: 300;
	letter-spacing: .0076em;
	line-height: 1.46;
	padding: 61px 24px 75px;
	text-align: center
}

.multi-img-section .text-holder .w-100 {
	width: 100%
}

.multi-img-section .text-holder .text-wrap {
	margin: 0 auto;
	max-width: 600px
}

.multi-img-section .text-holder .h2,
.multi-img-section .text-holder h2 {
	font-size: 26px;
	font-weight: 300;
	letter-spacing: 0;
	line-height: 1.26;
	margin: 0 0 30px
}

.multi-img-section .text-holder p {
	margin: 0 0 18px
}

.floating-button-area {
	top: 0;
	left: auto;
	opacity: 0;
	padding: 18px 0;
	pointer-events: none;
	position: fixed;
	right: -8px;
	text-align: center;
	transform: translateY(100%);
	transition: transform .3s linear, opacity .3s linear, visibility .3s linear;
	visibility: hidden;
	z-index: 1000
}

.floating-btn-active .floating-button-area {
	opacity: 1;
	transform: none;
	visibility: visible
}

.floating-button-area .floating-button-list {
	align-items: center;
	display: inline-flex;
	justify-content: center;
	position: relative
}

.floating-button-area .floating-button-list>li {
	margin: 0 2px
}

.floating-button-area .btn,
.floating-button-area .nav-opener,
.floating-button-area a,
.floating-button-area button {
	margin: 0;
	pointer-events: auto
}

.floating-button-area .nav-opener {
	align-items: center;
	background: #6b3a56;
	color: #fc2436;
	display: flex;
	height: 50px;
	justify-content: center;
	width: 61px
}

.nav-active .floating-button-area .nav-opener {
	background: #fefefe;
	color: #122520
}

.floating-button-area .nav-opener .close-text {
	align-items: center;
	background: #fefefe;
	bottom: 0;
	color: #122520;
	display: flex;
	font-size: 21px;
	font-weight: 300;
	justify-content: center;
	left: 67px;
	line-height: .762;
	opacity: 0;
	padding: 17px 22px;
	pointer-events: none;
	position: absolute;
	right: 0;
	top: 0;
	transition: opacity .3s linear, visibility .3s linear;
	visibility: hidden
}

.nav-active .floating-button-area .nav-opener .close-text {
	opacity: 1;
	pointer-events: auto;
	visibility: visible
}

.close-text {
	display: none !important;
}

.floating-button-area .nav-opener .burger-icon {
	display: block;
	height: 9px;
	position: relative;
	transition: border .3s linear;
	width: 29px
}

.floating-button-area .nav-opener .burger-icon:after,
.floating-button-area .nav-opener .burger-icon:before {
	background: #fc2436;
	content: "";
	height: 1.5px;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	transition: all .3s linear
}

.nav-active .floating-button-area .nav-opener .burger-icon:after,
.nav-active .floating-button-area .nav-opener .burger-icon:before {
	background: #122520;
	top: 50%;
	transform: translateY(-50%) rotate(-23deg)
}

.floating-button-area .nav-opener .burger-icon:after {
	bottom: 0;
	top: auto
}

.nav-active .floating-button-area .nav-opener .burger-icon:after {
	bottom: auto;
	top: 50%;
	transform: translateY(-50%) rotate(23deg)
}

@keyframes squeez {
	0% {
		transform: scale(1);
		transform-origin: 0 0
	}

	50% {
		transform: scaleY(.8);
		transform-origin: 0 0
	}

	to {
		transform: scale(1);
		transform-origin: 0 0
	}
}

.content-section {
	min-height: 110vh;
	padding: calc(var(--headerHeight) + 55px) 0 90px
}

.content-section p a {
	color: inherit;
	display: inline-block;
	position: relative;
	vertical-align: top
}

.content-section p a:before {
	background: #122520;
	bottom: 0;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	transition: width .3s linear;
	width: 0
}

.content-section p a:hover:before {
	width: 100%
}

.info-section {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: .0075em;
	line-height: 1.46;
	min-height: 110vh;
	padding: 150px 0 90px;
	padding: calc(var(--headerHeight) + 55px) 0 90px;
	text-align: center
}

.info-section .container {
	max-width: 820px
}

.info-section .h1,
.info-section h1 {
	font-size: 31px;
	font-weight: 300;
	letter-spacing: 0;
	line-height: 1.26;
	margin: 0 0 31px
}

.info-section a {
	color: inherit;
	display: inline-block;
	position: relative;
	vertical-align: top
}

.info-section a:before {
	background: #122520;
	bottom: 0;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	transition: width .3s linear;
	width: 0
}

.info-section a:hover:before {
	width: 100%
}

.info-section p {
	margin: 0
}

.info-section hr {
	background: none;
	border: none;
	height: 1px;
	margin: 0 0 17px
}

.content .search-form {
	margin: 0 0 30px;
	width: 100%
}

.content .search-form fieldset {
	border: none;
	width: 100%
}

.content .search-form input[type=search],
.content .search-form input[type=text] {
	-webkit-appearance: none;
	border: 1px solid #6b3a56;
	border-radius: 0;
	color: #6b3a56;
	font-size: 18px;
	height: 50px;
	line-height: 1.2;
	margin: 0 0 10px;
	outline: none;
	padding: 10px 20px;
	width: 100%
}

.content .search-form input[type=submit] {
	font-size: 18px;
	height: 50px;
	line-height: 1.2;
	min-width: 150px;
	padding: 10px 20px;
	text-align: center
}

.content .comment-form {
	font-size: 18px;
	line-height: 1.2
}

.content .comment-form p {
	margin: 0 0 10px
}

.content .comment-form .comment-form-cookies-consent input {
	display: block;
	margin: 0 0 2px
}

.content .comment-form .comment-form-cookies-consent label {
	display: block
}

.content .comment-form label {
	display: inline-block;
	margin: 0 0 5px;
	vertical-align: top
}

.content .comment-form input[type=email],
.content .comment-form input[type=password],
.content .comment-form input[type=search],
.content .comment-form input[type=tel],
.content .comment-form input[type=text],
.content .comment-form textarea {
	-webkit-appearance: none;
	border: 1px solid #6b3a56;
	border-radius: 0;
	color: #6b3a56;
	font-size: 18px;
	height: 50px;
	line-height: 1.2;
	margin: 0;
	max-width: 500px;
	outline: none;
	padding: 10px 20px;
	width: 100%
}

.content .comment-form textarea {
	height: 300px;
	padding-bottom: 20px;
	padding-top: 20px;
	resize: none
}

.content .comment-form input[type=submit] {
	font-size: 18px;
	height: 50px;
	line-height: 1.2;
	margin: 0;
	min-width: 150px;
	padding: 10px 20px;
	text-align: center
}

.content-block {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: .0075em;
	line-height: 1.46;
	margin-top: calc(var(--scrollableContentHeight)*-1);
	padding: var(--scrollableContentHeight) 0 0;
	position: relative;
	text-align: center
}

.content-block:has(.background-image) {
	min-height: 544px;
	padding: var(--scrollableContentHeight) 0 137px
}

.content-block:has(.background-image) .contact-info-list {
	margin: 0
}

.content-block:has(.background-image)~.career-info {
	padding: 121px 0
}

.content-block .text-area {
	font-size: inherit;
	font-weight: 300;
	line-height: inherit;
	margin: 0 0 17px
}

.content-block .background-image {
	left: -203px;
	position: absolute;
	top: 262px;
	width: 100%;
	z-index: -1
}

.content-block .background-image img {
	height: auto;
	max-width: none;
	min-width: 1000px;
	width: 100%
}

.content-block .title {
	margin: 0 0 13px
}

.content-block .container {
	max-width: 1270px
}

.section-title {
	display: none;
	margin: 0 0 100px
}

.contact-info-list {
	margin: 0 0 27px
}

.contact-info-list>li {
	margin: 0 0 2px
}

.contact-info-list>li a {
	color: inherit;
	display: inline-block;
	position: relative;
	vertical-align: top
}

.contact-info-list>li a:before {
	background: #122520;
	bottom: 0;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	transition: width .3s linear;
	width: 0
}

.contact-info-list>li a:hover:before {
	width: 100%
}

.career-info {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: .0075em;
	line-height: 1.46;
	padding: 0 0 121px;
	text-align: center
}

.career-info .container {
	max-width: 1270px
}

.career-info .text-box {
	margin: 0 auto 59px;
	max-width: 600px
}

.text-info-box {
	font-size: 23px;
	font-weight: 300;
	letter-spacing: .01em;
	line-height: 1.42
}

.text-info-box p {
	margin: 0
}

.text-info-box p a {
	color: inherit;
	display: inline-block;
	position: relative;
	vertical-align: top
}

.text-info-box p a:before {
	background: #122520;
	bottom: 0;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	transition: width .3s linear;
	width: 100%
}

.text-info-box p a:hover:before {
	width: 0
}

.iframe-holder {
	margin: 0 auto 61px;
	max-width: 800px;
	overflow: hidden;
	position: relative;
	z-index: 1
}

@media (min-width:768px) {
	.header .container {
		align-items: flex-start;
		display: flex;
		justify-content: space-between
	}

	.header .container .col {
		width: 33.33%
	}

	.header .container .logo {
		margin-top: -4px
	}

	.header .nav-opener {
		display: inline-block
	}

	.nav-drop .drop-top .container {
		align-items: flex-start;
		display: flex;
		justify-content: space-between
	}

	.nav-drop .drop-top .container .col {
		width: 33.33%
	}

	.nav-drop .drop-top .container .col:nth-child(2) {
		text-align: center
	}

	.nav-drop .drop-top .container .col:nth-child(3) {
		text-align: right
	}

	.nav-drop .drop-top .container .logo {
		margin-top: -4px
	}

	.nav-drop .drop-mid {
		padding: 0 0 93px
	}

	.nav-drop .drop-bottom {
		font-size: 20px;
		font-weight: 300;
		height: auto;
		letter-spacing: .001em;
		line-height: 1.2;
		padding: 34px 0;
		text-align: center
	}

	.nav-drop .drop-bottom p {
		display: block
	}

	.nav-drop .drop-bottom .nav-opener {
		display: none
	}

	.menu {
		font-size: 46px
	}

	.menu>li {
		margin: 0 0 13px
	}

	.sub-menu {
		display: none
	}

	.logo {
		max-width: 148px
	}

	body {
		font-size: 20px;
		line-height: 1.56
	}

	.modal-block .modal-content {
		font-size: 25px;
		max-width: 410px;
		padding: 33px 22px 109px
	}

	.modal-block .fern {
		margin: 0 auto 16px;
		width: 86px
	}

	.modal-block .h1,
	.modal-block h1 {
		font-size: 69px;
		margin: 0 0 17px
	}

	.modal-block p {
		margin: 0 0 65px
	}

	.h1,
	.modal-block .date,
	h1 {
		font-size: 37px
	}

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

	.wpcf7-form input[type=checkbox]+.wpcf7-list-item-label:before {
		top: 4px
	}

	.wpcf7-form input[type=checkbox]+.wpcf7-list-item-label:after {
		top: 5px
	}

	input[type=email],
	input[type=password],
	input[type=search],
	input[type=tel],
	input[type=text],
	textarea {
		font-size: 20px;
		height: 62px
	}

	.comment-form button[type=submit],
	.comment-form input[type=submit],
	.nav-links .next,
	.nav-links .prev,
	.navigation .next,
	.navigation .prev,
	.navigation-comments .next,
	.navigation-comments .prev,
	.navigation-single .next,
	.navigation-single .prev,
	.post-password-form button[type=submit],
	.post-password-form input[type=submit],
	.search-form button[type=submit],
	.search-form input[type=submit],
	button[type=submit],
	input[type=submit] {
		font-size: 22px;
		line-height: 1.3;
		padding: 17px 22px
	}

	.footer {
		padding: 25px 0
	}

	.footer-top {
		align-items: flex-start;
		display: flex;
		flex-direction: row-reverse;
		flex-wrap: wrap;
		margin: 0 0 55px;
		text-align: left
	}

	.footer-top .col {
		width: 50%
	}

	.footer-top p {
		margin: 0 0 10px
	}

	.footer-bottom {
		align-items: flex-end;
		display: flex;
		flex-direction: row-reverse;
		flex-wrap: wrap;
		text-align: left
	}

	.footer-bottom .col {
		width: 33.33%
	}

	address {
		font-size: 22px
	}

	.designer-logo {
		margin: 0;
		max-width: 194px
	}

	.social-media {
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-end
	}

	.logo-aa {
		margin: 0 auto;
		max-width: 188px
	}

	.footer-links {
		font-size: 20px;
		margin: 0;
		text-align: right
	}

	.footer-links>li {
		margin: 0
	}

	.btn {
		font-size: 22px;
		line-height: 1.3;
		padding: 17px 22px
	}

	.scrollable-wrapper.alt-style .scrollable-content .text-holder {
		padding: 140px 0 56px
	}

	.intro-section .intro-header {
		padding-top: 29px
	}

	.scrollable-content .text-holder {
		font-size: 20px;
		padding: 170px 0 120px
	}

	.scrollable-content .text-holder .h1,
	.scrollable-content .text-holder h1 {
		font-size: 37px;
		max-width: 100%
	}

	.scrollable-content .leaf {
		width: 27px
	}

	.image-banner {
		padding-top: 54.167%
	}

	.divider {
		height: 250px
	}

	.divider .leaf {
		width: 33px
	}

	.text-section {
		font-size: 20px;
		line-height: 1.56
	}

	.text-section .h2,
	.text-section h2 {
		font-size: 29px;
		line-height: 1.5
	}

	.text-section .h1,
	.text-section h1 {
		font-size: 37px;
		margin: 0 0 30px
	}

	.title {
		font-size: 15px;
		line-height: 1.2
	}

	.link-list {
		font-size: 37px;
		margin-bottom: 0
	}

	.link-list>li {
		margin: 0 0 10px
	}

	.link-holder a {
		font-size: 19px
	}

	.img-text-section {
		flex-direction: row
	}

	.img-text-section.reverse {
		flex-direction: row-reverse
	}

	.img-text-section .col {
		position: relative;
		width: 50%
	}

	.img-text-section .text-holder {
		min-height: 100vh
	}

	.img-text-section .img-holder {
		height: 100%;
		left: 0;
		padding-top: 0;
		position: absolute;
		top: 0;
		width: 100%
	}

	.img-text-section .title {
		margin: 0 0 40px
	}

	.img-text-section .h1,
	.img-text-section h1 {
		font-size: 83px
	}

	.img-text-section .h2,
	.img-text-section h2 {
		font-size: 70px
	}

	.img-text-section .h2 .small,
	.img-text-section h2 .small {
		font-size: 60px
	}

	.job-list {
		font-size: 48px
	}

	.job-list>li {
		margin: 0 0 10px
	}

	.multi-img-section.reverse {
		flex-direction: row-reverse
	}

	.multi-img-section .col {
		height: 100vh;
		position: relative;
		width: 50%
	}

	.multi-img-section .img-holder {
		bottom: 0;
		height: 100vh;
		left: 0;
		padding-top: 0;
		position: absolute;
		top: 0;
		transform: translateY(100%);
		width: 100%
	}

	.multi-img-section .img-holder:first-child {
		transform: translateY(0)
	}

	.multi-img-section .text-holder {
		font-size: 20px;
		height: 100vh;
		line-height: 1.56;
		padding: 40px 24px
	}

	.multi-img-section .text-holder .h2,
	.multi-img-section .text-holder h2 {
		font-size: 32px;
		margin: 0 0 32px
	}

	.floating-button-area {
		text-align: right;
		z-index: 998
	}

	.floating-button-area .floating-button-list {
		display: flex;
		justify-content: flex-end
	}

	.floating-button-area .floating-button-list>li {
		margin: 0 0 0 4px
	}

	.floating-button-area .nav-opener,
	.floating-button-area .nav-opener .close-text {
		display: none
	}

	.content-section {
		padding: calc(var(--headerHeight) + 75px) 0 110px
	}

	.info-section {
		font-size: 20px;
		line-height: 1.56;
		padding: 120px 0 110px;
		padding: calc(var(--headerHeight) + 75px) 0 110px
	}

	.info-section .h1,
	.info-section h1 {
		font-size: 37px;
		margin: 0 0 41px
	}

	.info-section hr {
		margin: 0 0 19px
	}

	.content .search-form fieldset {
		display: flex
	}

	.content .search-form input[type=search],
	.content .search-form input[type=text] {
		flex-basis: 0;
		flex-grow: 1;
		font-size: 20px;
		height: 60px;
		margin: 0;
		width: auto
	}

	.content .search-form input[type=submit] {
		flex-shrink: 0;
		font-size: 20px;
		height: 60px
	}

	.content .comment-form .comment-form-cookies-consent {
		align-items: center;
		display: flex;
		flex-wrap: wrap
	}

	.content .comment-form .comment-form-cookies-consent input {
		flex-shrink: 0;
		margin: 0 10px 0 0
	}

	.content .comment-form .comment-form-cookies-consent label {
		flex-basis: 0;
		flex-grow: 1;
		margin: 0
	}

	.content .comment-form input[type=email],
	.content .comment-form input[type=password],
	.content .comment-form input[type=search],
	.content .comment-form input[type=submit],
	.content .comment-form input[type=tel],
	.content .comment-form input[type=text],
	.content .comment-form textarea {
		font-size: 20px;
		height: 60px
	}

	.content-block {
		font-size: 20px;
		line-height: 1.56;
		padding: var(--scrollableContentHeight) 0 0
	}

	.content-block:has(.background-image) {
		min-height: 750px;
		padding: var(--scrollableContentHeight) 0 127px
	}

	.content-block:has(.background-image)~.career-info {
		padding: 140px 0
	}

	.content-block .text-area {
		margin: 0 0 27px
	}

	.content-block .background-image {
		left: -100px;
		right: -100px;
		top: -3px;
		width: auto
	}

	.contact-info-list>li {
		margin: 0
	}

	.career-info {
		font-size: 20px;
		line-height: 1.56;
		padding: 0 0 140px
	}

	.career-info .text-box {
		margin: 0 auto 100px
	}

	.text-info-box {
		font-size: 29px;
		line-height: 1.5
	}

	.iframe-holder {
		margin: 0 auto 90px
	}
}

@media screen and (min-width:1024px) {
	.form-area.w-50 {
		width: calc(50% - .75rem)
	}
}

@media (min-width:1024px) {
	.menu {
		font-size: 50px
	}

	body {
		font-size: 22px
	}

	.modal-block .modal-content {
		font-size: 32px;
		line-height: 1.52;
		max-width: 520px;
		padding: 42px 30px 151px
	}

	.modal-block .fern {
		margin: 0 auto 19px;
		width: 107px
	}

	.modal-block .h1,
	.modal-block h1 {
		font-size: 86px;
		line-height: .9;
		margin: 0 0 21px
	}

	.modal-block p {
		margin: 0 0 86px
	}

	.modal-block .date {
		font-size: 46px;
		line-height: 1.05
	}

	.modal-block .modal-close {
		height: 28px;
		right: 33px;
		top: 33px;
		width: 28px
	}

	.modal-block .modal-close:after,
	.modal-block .modal-close:before {
		height: 1px
	}

	.h1,
	h1 {
		font-size: 43px
	}

	.h2,
	h2 {
		font-size: 36px
	}

	.wpcf7-form input[type=checkbox]+.wpcf7-list-item-label:before {
		top: 6px
	}

	.wpcf7-form input[type=checkbox]+.wpcf7-list-item-label:after {
		top: 7px
	}

	.footer {
		padding: 29px 0
	}

	address {
		font-size: 24px;
		margin: 0 0 19px
	}

	.logo-aa {
		max-width: 230px
	}

	.scrollable-wrapper.alt-style .intro-section {
		min-height: 80.3vh
	}

	.scrollable-wrapper.alt-style .scrollable-content .text-holder {
		padding: 160px 0
	}

	.scrollable-wrapper.alt-style .scrollable-content .text-holder .h1,
	.scrollable-wrapper.alt-style .scrollable-content .text-holder h1 {
		display: none
	}

	.scrollable-content {
		top: var(--introHeaderHeight)
	}

	.scrollable-content .text-holder {
		font-size: 22px;
		padding: 130px 0
	}

	.scrollable-content .text-holder .h1,
	.scrollable-content .text-holder h1 {
		font-size: 43px
	}

	.intro-logo {
		max-width: 271px
	}

	.divider {
		height: 300px
	}

	.divider .leaf {
		width: 36px
	}

	.text-section {
		font-size: 22px;
		padding: 159px 0 199px
	}

	.text-section .h2,
	.text-section h2 {
		font-size: 35px
	}

	.text-section .h1,
	.text-section h1 {
		font-size: 43px
	}

	.title {
		font-size: 17px
	}

	.link-list {
		font-size: 43px
	}

	.link-list>li {
		margin: 0 0 12px
	}

	.link-holder a {
		font-size: 21px;
		padding: 0 0 5px
	}

	.img-text-section .h1,
	.img-text-section h1 {
		font-size: 93px
	}

	.img-text-section .h2,
	.img-text-section h2 {
		font-size: 80px;
		margin: 0 0 24px
	}

	.img-text-section .h2 .small,
	.img-text-section h2 .small {
		font-size: 66px
	}

	.job-list {
		font-size: 58px
	}

	.job-list>li {
		margin: 0 0 12px
	}

	.multi-img-section .text-holder {
		font-size: 22px
	}

	.multi-img-section .text-holder .h2,
	.multi-img-section .text-holder h2 {
		font-size: 36px;
		margin: 0 0 34px
	}

	.floating-btn-active .floating-button-area .btn,
	.floating-btn-active .floating-button-area .nav-opener,
	.floating-btn-active .floating-button-area a,
	.floating-btn-active .floating-button-area button {
		animation: squeez .3s linear .3s forwards
	}

	.content-section {
		padding: calc(var(--headerHeight) + 85px) 0 130px
	}

	.info-section {
		font-size: 22px;
		padding: 140px 0 130px;
		padding: calc(var(--headerHeight) + 85px) 0 130px
	}

	.info-section .h1,
	.info-section h1 {
		font-size: 43px;
		margin: 0 0 51px
	}

	.info-section hr {
		margin: 0 0 21px
	}

	.content-block {
		font-size: 22px;
		padding: 44px 0 0
	}

	.content-block:has(.background-image) {
		min-height: 950px;
		padding: 44px 0 107px
	}

	.content-block:has(.background-image)~.career-info {
		padding: 160px 0
	}

	.section-title {
		display: block;
		margin: 0 0 100px
	}

	.career-info {
		font-size: 22px;
		padding: 250px 0 160px
	}

	.career-info .text-box {
		margin: 0 auto 150px
	}

	.text-info-box {
		font-size: 35px
	}

	.iframe-holder {
		margin: 0 auto 120px
	}
}

@media (min-width:1200px) {
	.menu {
		font-size: 54px
	}

	body {
		font-size: 24px
	}

	.container {
		padding: 0 35px
	}

	.h1,
	h1 {
		font-size: 49px
	}

	.h2,
	h2 {
		font-size: 42px
	}

	.wpcf7-form input[type=checkbox]+.wpcf7-list-item-label:before {
		top: 8px
	}

	.wpcf7-form input[type=checkbox]+.wpcf7-list-item-label:after {
		top: 9px
	}

	address {
		font-size: 26px
	}

	.logo-aa {
		max-width: 257px
	}

	.scrollable-wrapper.alt-style .scrollable-content .text-holder {
		padding: 190px 0
	}

	.intro-section .top-bar {
		margin: 0 0 114px
	}

	.scrollable-content .text-holder {
		font-size: 24px;
		padding: 180px 0 140px
	}

	.scrollable-content .text-holder p {
		margin: 0 0 52px
	}

	.scrollable-content .text-holder .h1,
	.scrollable-content .text-holder h1 {
		font-size: 49px;
		margin: 0 0 51px
	}

	.scrollable-content .leaf {
		width: 31px
	}

	.divider {
		height: 350px
	}

	.divider .leaf {
		width: 39px
	}

	.text-section {
		font-size: 24px;
		padding: 159px 0 249px
	}

	.text-section .h2,
	.text-section h2 {
		font-size: 41px
	}

	.text-section .h1,
	.text-section h1 {
		font-size: 49px;
		margin: 0 0 50px
	}

	.title {
		font-size: 18px
	}

	.link-list {
		font-size: 49px
	}

	.link-holder a {
		font-size: 22px
	}

	.img-text-section .text-holder {
		padding: 100px 35px 107px
	}

	.img-text-section .h1,
	.img-text-section h1 {
		font-size: 103px;
		margin: 0 0 36px
	}

	.img-text-section .h2,
	.img-text-section h2 {
		font-size: 90px;
		line-height: 1.2
	}

	.img-text-section .h2 .small,
	.img-text-section h2 .small {
		font-size: 72px
	}

	.job-list {
		font-size: 68px
	}

	.multi-img-section .text-holder {
		font-size: 24px;
		padding: 50px 35px
	}

	.multi-img-section .text-holder .h2,
	.multi-img-section .text-holder h2 {
		font-size: 42px;
		margin: 0 0 36px
	}

	.floating-button-area {
		padding: 33px 0
	}

	.content-section {
		padding: calc(var(--headerHeight) + 115px) 0 156px
	}

	.info-section {
		font-size: 24px;
		padding: 202px 0 156px;
		padding: calc(var(--headerHeight) + 115px) 0 156px
	}

	.info-section .h1,
	.info-section h1 {
		font-size: 49px;
		margin: 0 0 61px
	}

	.info-section hr {
		margin: 0 0 23px
	}

	.content-block {
		font-size: 24px
	}

	.content-block:has(.background-image) {
		min-height: 1270px
	}

	.content-block:has(.background-image)~.career-info {
		padding: 180px 0
	}

	.content-block .background-image {
		left: 0;
		right: 0
	}

	.section-title {
		margin: 0 0 157px
	}

	.career-info {
		font-size: 24px;
		padding: 0 0 180px
	}

	.career-info .text-box {
		margin: 0 auto 188px
	}

	.text-info-box {
		font-size: 41px
	}

	.iframe-holder {
		margin: 0 auto 149px
	}
}

@media (min-width:1400px) {

	.h1,
	.menu,
	h1 {
		font-size: 58px
	}

	.h2,
	h2 {
		font-size: 48px
	}

	.logo-aa {
		max-width: 288px
	}

	.scrollable-content .text-holder {
		font-size: 26px
	}

	.scrollable-content .text-holder .h1,
	.scrollable-content .text-holder h1 {
		font-size: 58px
	}

	.divider {
		height: 420px
	}

	.divider .leaf {
		width: 42px
	}

	.text-section .h2,
	.text-section h2 {
		font-size: 48px;
		margin: 33px 0 60px
	}

	.link-list,
	.text-section .h1,
	.text-section h1 {
		font-size: 58px
	}

	.img-text-section .h1,
	.img-text-section h1 {
		font-size: 126px
	}

	.img-text-section .h2,
	.img-text-section h2 {
		font-size: 100px
	}

	.img-text-section .h2 .small,
	.img-text-section h2 .small {
		font-size: 80px
	}

	.job-list {
		font-size: 76px
	}

	.multi-img-section .text-holder .h2,
	.multi-img-section .text-holder h2 {
		font-size: 48px;
		margin: 0 0 38px
	}

	.info-section .h1,
	.info-section h1 {
		font-size: 58px;
		margin: 0 0 70px
	}

	.info-section hr {
		margin: 0 0 24px
	}

	.text-info-box {
		font-size: 48px
	}
}

@media (max-width:767px) {

	.navigation .page-numbers,
	.navigation-comments .page-numbers {
		padding: 0 3px
	}

	.navigation .next,
	.navigation .prev,
	.navigation-comments .next,
	.navigation-comments .prev,
	.navigation-single .next a,
	.navigation-single .prev a {
		padding: 4px
	}

	.header .container .col:first-child,
	.header .container .col:nth-child(3),
	.nav-drop .drop-top .container .col:first-child,
	.nav-drop .drop-top .container .col:nth-child(3) {
		display: none
	}

	.footer-bottom {
		font-size: 17px;
		line-height: 1.3
	}

	.multi-img-section {
		height: auto !important
	}

	.multi-img-section .text-holder .title {
		margin: 0 0 20px
	}

	.nav-active .floating-button-area .btn,
	.nav-active .floating-button-area .nav-opener,
	.nav-active .floating-button-area a,
	.nav-active .floating-button-area button {
		background: #fefefe;
		color: #122520
	}

	.floating-button-area .btn {
		transition: opacity .3s linear, visibility .3s linear, background .3s linear, color .3s linear
	}

	.nav-active .floating-button-area .btn {
		opacity: 0;
		pointer-events: none;
		visibility: hidden
	}
}

@media (max-width:1023px) {
	iframe {
		width: 100%
	}
}