/* Table of Content
==================================================
	#Font-Face
	#Site Styles
	#Media Queries */

/* #Font-Face
================================================== */


/* #Site Styles
================================================== */

/* ### general ### */
:root {
	--page-bg: #e9e4dd;
	--width-base: 1820px;
	--gutter-side: 30px;
	--gutter-top: 0;
	--gutter-right: var(--gutter-side);
	--gutter-bottom: var(--gutter-side);
	--gutter-left: var(--gutter-side);
	--gutter-side-tablet: 20px;
	--gutter-side-phone: 20px;
	--color-error: #d9534f;
	--color-success: #5cb85c;
	--color-info: #5bc0de;
	--color-light: #e0c5b5;
	--primary-color: #423b2d;
	--secondary-color: #e06a46;
	--alternate-color: #56c4ba;
	--gray-color: #697489;
	--white-color: #fff;
	--black-color: #000;
	--brown-color: #c3862b;
	--brown-color-100: #d09d4d;
	--brown-color-200: #dab074;
	--brown-color-300: #e4c79e;
	--brown-color-400: #ab4225;
	--brown-color-500: #D8A78E;
	--light-gray-color: #dedede;
	--max-width: var(--width-base);
	--base-duration: 0.25s;
	--base-timing: ease-in-out;
	--text-color-base: #333;
	--link-color-base: #337ab7;
	--link-decoration-base: none;
	--link-hover-color-base: #337ab7;
	--link-hover-decoration-base: underline;
	--font-family-base: 'Noyh', sans-serif;
	--font-size-base: 18px;
	--font-size-h1: 45px;
	--font-size-h3: 28px;
	--font-size-h4: 24px;
	--font-size-h5: 15px;
	--font-size-h6: 10px;
	--line-height-base: 1.1;
	--heading-margin: 0 0 20px;
	--heading-font-family: inherit;
	--heading-font-weight: 400;
	--heading-line-height: 1;
	--heading-color: inherit;
}

@media only screen and (min-width: 768px) {
	:root {
		--font-size-h1: 50px;
		--font-size-h3: 30px;
		--font-size-h4: 26px;
	}
}

@media only screen and (min-width: 1025px) {
	:root {
		--gutter-side: 50px;
		--font-size-base: 20px;
		--font-size-h1: 5.1vw;
		--font-size-h3: 32px;
		--font-size-h4: 28px;
		--heading-margin: 0 0 30px;
	}
}

@media only screen and (min-width: 1441px) {
	:root {
		--gutter-side: 60px;
		--font-size-base: 24px;
		--font-size-h3: 35px;
		--font-size-h4: 30px;
	}
}

@media only screen and (min-width: 1920px) {
	:root {
		--font-size-h1: 100px;
	}
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html,
body {
	font-family: var(--font-family-base);
	font-size: var(--font-size-base);
	font-weight: 300;
	line-height: var(--line-height-base);
	color: var(--primary-color);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	background: var(--page-bg);
}

input,
select,
textarea {
	padding: 10px 15px;
	width: 100%;
	height: 38px;
	font-family: var(--font-family-base);
	font-size: 18px;
	text-transform: uppercase;
	color: var(--primary-color);
	border: 0;
	border-radius: 20px;
	background-color: var(--white-color);
}

textarea {
	height: 177px;
}

label {
	margin-bottom: 5px;
	display: block;
	font-weight: 400;
}

button[type='submit'] {
	min-width: 220px;
	background-color: var(--brown-color-400);
}

	button[type='submit']:hover {
		background-color: var(--secondary-color);
	}

.form-field.checkbox label {
	position: relative;
	display: block;
	line-height: 1.2;
}

.form-field.checkbox input {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}

	.form-field.checkbox input:checked ~ span:before {
		background-color: var(--primary-color);
	}

.form-field.checkbox span {
	position: relative;
	display: block;
}


	.form-field.checkbox span:before {
		margin-right: 10px;
		position: relative;
		top: 3px;
		display: inline-block;
		width: 11px;
		height: 11px;
		border: 5px solid var(--white-color);
		background-color: var(--white-color);
		content: '';
	}

.form-row {
	margin-right: -20px;
	margin-left: -20px;
	display: flex;
	flex-wrap: wrap;
}

	.form-row .form-field {
		padding-right: 20px;
		padding-left: 20px;
		width: 100%;
	}

img {
	display: block;
	max-width: 100%;
	border: 0;
}

ul,
li {
	list-style: none;
}

a {
	display: inline-block;
	text-decoration: underline;
	color: inherit;
	transition: all var(--base-duration);
}

	a:hover {
		text-decoration: none;
	}

p {
	margin: 0 0 20px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
	margin: var(--heading-margin);
	font-family: var(--font-family-base);
	font-weight: var(--heading-font-weight);
	line-height: var(--heading-line-height);
	color: var(--heading-color);
}

h1,
.h1,
h2,
.h2 {
	margin-bottom: 20px;
	font-size: var(--font-size-h1);
	line-height: 0.8;
	letter-spacing: 4px;
	text-transform: uppercase;
}

h3,
.h3 {
	font-size: var(--font-size-h3);
	letter-spacing: 3.3px;
	text-transform: uppercase;
}

h4,
.h4 {
	font-size: var(--font-size-h4);
}

h5,
.h5 {
	font-size: var(--font-size-h5);
}

h6,
.h6 {
	font-size: var(--font-size-h6);
}

:focus {
	outline: none;
}

@media only screen and (min-width: 768px) {
	h1,
	.h1,
	h2,
	.h2 {
		letter-spacing: 7px;
	}

	.form-row .form-field {
		width: 50%;
	}
}

@media only screen and (min-width: 1441px) {
	h1,
	.h1,
	h2,
	.h2 {
		letter-spacing: 9px;
	}
}

/* ### global classes ### */
.clear {
	visibility: hidden;
	clear: both;
	height: 0;
	line-height: 0;
}

.small-text {
	font-size: 15px;
}

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

.button {
	padding: 11px 40px;
	display: inline-block;
	font-family: var(--font-family-base);
	font-size: 20px;
	font-weight: 400;
	line-height: var(--heading-line-height);
	letter-spacing: 1.5px;
	text-align: center;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--white-color);
	border: 0;
	border-radius: 28px;
	background-color: var(--secondary-color);
	transition: var(--base-duration);
	cursor: pointer;
}

	.button:hover {
		background-color: #be5c3e;
	}

.container {
	padding-right: var(--gutter-side);
	padding-left: var(--gutter-side);
}

.list-items {
	text-align: left;
	display: inline-flex;
	flex-direction: column;
	margin: 0 auto 30px auto;
}

	.list-items li {
		position: relative;
		padding-left: 12px;
	}

		.list-items li:before {
			left: 0;
			top: 8px;
			width: 3px;
			height: 3px;
			content: '';
			display: block;
			position: absolute;
			border-radius: 50%;
			background-color: var(--primary-color);
		}

@media only screen and (min-width: 768px) {
	.list-items li:before {
		top: 12px;
	}
}

@media only screen and (min-width: 992px) {
	.button {
		font-size: 25px;
	}
}

@media only screen and (min-width: 1830px) {
	.container {
		padding-right: calc((100% - var(--width-base)) / 2);
		padding-left: calc((100% - var(--width-base)) / 2);
	}
}

/* ### slick slider ### */
.slick-slider {
	position: relative;
}

	.slick-slider .slick-arrow {
		position: absolute;
		top: 50%;
		z-index: 1;
		width: 30px;
		height: 30px;
		font-size: 0;
		color: transparent;
		text-indent: -9999px;
		border: 0;
		background: url('../images/arrow.svg') center center no-repeat;
		transform: translateY(-50%);
		cursor: pointer;
	}

	.slick-slider .slick-prev {
		left: 0;
		transform: rotate(90deg) translateY(-50%);
	}

	.slick-slider .slick-next {
		right: 0;
		transform: rotate(-90deg) translateY(-50%);
	}

	.slick-slider .slick-dots {
		position: absolute;
		bottom: 20px;
		left: 0;
		z-index: 9;
		display: flex;
		justify-content: center;
		width: 100%;
		text-align: center;
	}

		.slick-slider .slick-dots li {
			margin: 0 4px;
		}

			.slick-slider .slick-dots li button {
				width: 10px;
				cursor: pointer;
				height: 10px;
				text-indent: -9999px;
				border: 1px solid var(--white-color);
				border-radius: 50%;
				background: transparent;
			}

			.slick-slider .slick-dots li.slick-active button {
				background: var(--white-color);
			}

.slick-slide {
	height: auto;
}

/* ### wrapper ### */
.wrapper {
	position: relative;
	overflow: hidden;
	display: block;
	width: 100%;
	min-height: 100%;
}

/* ### header ### */
.header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 12;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 80px;
}

	.header .header-logo {
		display: none;
	}

		.header .header-logo img {
			width: 100%;
		}

	.header .header-logo-small {
		margin-top: -30px;
		margin-left: -30px;
		position: absolute;
		top: 50%;
		left: 50%;
		width: 60px;
	}

@keyframes slideDown {
	from {
		transform: translateY(-100%);
	}

	to {
		transform: translateY(0);
	}
}

@media only screen and (min-width: 992px) {
	.header {
		height: 120px;
	}

		.header .header-logo {
			width: 342px;
		}
}

/* ### header menu ### */
.header-menu {
	padding: 40px 20px;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 13;
	width: 260px;
	overflow: auto;
}

	.header-menu.open {
		height: 100vh;
		background: var(--page-bg);
	}

.header-menu-inner {
	display: none;
	text-align: right;
}

	.header-menu-inner a {
		text-decoration: none;
	}

		.header-menu-inner a:hover {
			color: var(--secondary-color);
		}

	.header-menu-inner > ul {
		padding-top: 10px;
	}

		.header-menu-inner > ul > li {
			padding: 4px 0;
		}

			.header-menu-inner > ul > li > a {
				display: block;
				font-size: 30px;
				line-height: 28px;
				color: var(--primary-color);
			}

			.header-menu-inner > ul > li > ul {
				padding: 8px 0;
				display: none;
			}

				.header-menu-inner > ul > li > ul > li {
					padding: 2px 0;
				}

					.header-menu-inner > ul > li > ul > li > a {
						display: block;
						font-size: 24px;
						font-weight: 300;
						color: var(--primary-color);
					}

					.header-menu-inner > ul > li > ul > li > ul {
						padding: 8px 0;
						display: none;
					}

						.header-menu-inner > ul > li > ul > li > ul > li > a {
							display: block;
							opacity: 0.5;
							font-size: 24px;
							font-weight: 300;
							font-style: italic;
							color: var(--primary-color);
						}

.header-menu .menu-toggle.active {
	color: var(--primary-color);
}

.header-menu .menu-toggle {
	position: relative;
	z-index: 15;
	width: 100%;
	font-size: 35px;
	font-weight: 300;
	letter-spacing: 3.8px;
	text-align: right;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--white-color);
	transition: 0.2s;
	cursor: pointer;
}

	.header-menu .menu-toggle:after {
		position: absolute;
		top: -20px;
		right: 0;
		opacity: 0;
		visibility: hidden;
		width: 24px;
		height: 24px;
		background: url('../images/close.svg') center center no-repeat;
		transition: all0 0.3s;
		content: '';
	}

	.header-menu .menu-toggle.active:after {
		opacity: 1;
		visibility: visible;
	}

/* #Single portfolio page
================================================== */

.main-heading {
	margin-top: 8em;
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 2em;
}

.upper-section {
	display: flex;
	justify-content: space-around;
	align-items: center;
}

.text-wrapper {
	width: 500px;
}

.location {
	margin: 0;
	text-transform: uppercase;
	font-size: 1.2em;
	font-weight: 400;
	letter-spacing: 0.1em;
}

.lower-section {
	padding-top: 1.1em;
	display: flex;
	justify-content: space-around;
	align-items: center;
	margin-bottom: 3em;
}

.description {
	margin: 0;
	font-weight: 100;
	font-size: 0.8em;
}

.heading-picture img {
	width: 100%;
	border: 3px solid white;
}

.picture-text {
	padding: 2em 0;
	width: 1350px;
	margin: 0 auto;
}

.heading-footer {
	display: flex;
	flex-direction: row;
	align-items: center;
}

.heading-footer-left {
	flex-basis: 40%;
	padding: 1em;
}

.heading-footer-left-header {
	font-size: 1.2em;
	font-weight: 500;
	width: 300px;
	margin: 0 auto;
	padding-bottom: 0.8em;
	letter-spacing: 0.1em;
	line-height: 0.7em;
}

.heading-footer-right {
	flex-basis: 60%;
}

	.heading-footer-right img {
		width: 100%;
	}

.detalis-wraper {
	display: flex;
	flex-direction: column;
}

.details {
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 0.3em;
	background-color: #e0c5b5;
	padding: 1.5em 4em;
}

.details-heading {
	font-size: 1.5em;
}

.details-pictures {
	display: flex;
	flex-direction: row;
	gap: 1px;
}

	.details-pictures img {
		width: 100%;
	}

.kitchen-wraper {
	display: flex;
	flex-direction: column;
}

.kitchen {
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 0.3em;
	background-color: #423b2d;
	padding: 1.5em 4em;
	color: white;
}

.kitchen-heading {
	font-size: 1.5em;
}

.kitchen-pictures {
	display: flex;
	flex-direction: column;
	gap: 1px;
}

.top-horizontal {
	display: flex;
	flex-direction: column;
	gap: 1px;
}

.bottom-vertical {
	display: flex;
	flex-direction: row;
}

.kitchen-pictures img {
	width: 100%;
}

.bar-wines-wrapper {
	display: flex;
	flex-direction: column;
}

.bar-wines {
	display: flex;
	flex-direction: row;
	align-items: center;
}

.bar-wines-left {
	flex-basis: 60%;
}

	.bar-wines-left img {
		width: 100%;
	}

.bar-wines-right {
	flex-basis: 40%;
	padding: 1em;
	background-color: #e9e4dd;
	text-align: center;
}

.bar-wines-right-heading {
	font-size: 1.2em;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 0.8em;
	width: 330px;
	margin: 0 auto;
}

.bar-wines-pictures-top, .bar-wines-pictures-bottom {
	display: flex;
	flex-direction: row;
	gap: 1px;
}

	.bar-wines-pictures-top img, .bar-wines-pictures-bottom img, .bar-wines-pictures-middle img {
		width: 100%;
	}

.washrooms-wrapper {
	display: flex;
	flex-direction: row;
	align-items: center;
}

.washrooms-left {
	flex-basis: 40%;
	padding: 1em;
	background-color: #e9e4dd;
	text-align: center;
}

.washrooms-left-header {
	font-size: 1.2em;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.washrooms-right {
	flex-basis: 60%;
}

	.washrooms-right img {
		width: 100%
	}

.bottom-picture {
	display: flex;
	flex-direction: column;
	gap: 1px;
}

	.bottom-picture img {
		width: 100%;
	}

.bottom-testemonial {
	position: relative;
}

.section-image {
	position: relative;
	width: 100%;
	height: auto;
}

	.section-image img {
		width: 100%;
		height: auto;
	}

.section-testemonial {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: white;
	text-align: center;
	padding: 3em 4em;
	width: 1300px;
}

.inner-text {
	padding: 3em 1em;
}

.testemonial {
	font-weight: 500;
}

.author {
	font-weight: 200;
	font-size: 0.7em;
	font-style: italic;
}

hr {
	height: 2px;
}
/* ================================================== 

/* #Journal single page
================================================== */

.heading-footer-journal {
	display: flex;
	flex-direction: row;
	gap: 1px;
	padding: 1px;
}

.footer-left {
	flex: 60%;
}

.footer-right {
	display: flex;
	flex: 40%;
}

.footer-left img {
	display: flex;
	width: 100%
}

.footer-right img {
	width: 100%;
	object-fit: cover;
}

.middle-wraper {
	display: flex;
	flex-direction: column;
}

.middle {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 1em;
	background-color: #423b2d;
	color: white;
	padding: 2em 4em;
}

.middle-heading {
	font-size: 1.4em;
}

.middle-content-first-section {
	font-size: 0.8em;
}

.middle-pictures {
	display: flex;
	flex-direction: row;
	gap: 1px;
	padding: 1px;
}

.first-picture, .second-picture, .third-picture {
	display: flex;
	flex: 33.33%;
}

	.first-picture img, .second-picture img, .third-picture img {
		width: 100%;
	}
/* ================================================== 

/* #Journal single page
================================================== */
@media only screen and (min-width: 768px) {
	.header-menu .menu-toggle, .header-menu-inner {
		text-align: center;
	}

	.header .header-logo {
		position: relative;
		display: block;
		width: 280px;
	}

	.header .header-logo-small {
		margin-top: -30px;
		margin-left: -30px;
		position: absolute;
		top: 50%;
		left: 50%;
		opacity: 0;
		visibility: hidden;
		width: 60px;
	}

	.header.sticky .header-logo {
		opacity: 0;
		visibility: hidden;
	}

	.header.sticky .header-logo-small {
		opacity: 1;
		visibility: visible;
	}

	.header {
		position: absolute;
	}

		.header.sticky {
			position: fixed;
			animation: slideDown 0.35s ease-out;
		}
}

@media only screen and (min-width: 992px) {
	.header {
		height: 120px;
	}

		.header .header-logo {
			width: 342px;
		}

		.header .header-logo-small {
			margin-top: -44px;
			margin-left: -44px;
			width: 88px;
		}
}
/* ### hero section ### */
.hero {
	margin-bottom: 40px;
	position: relative;
	width: 100%;
}

.hero-image {
	width: 100%;
	height: 640px;
}


	.hero-image img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

.hero-title {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	text-align: center;
	color: var(--white-color);
	transform: translateY(-50%);
}

	.hero-title h1 {
		margin-bottom: 0;
	}

.hero.hero-large .hero-image,
.hero.hero-small .hero-image {
	height: 300px;
}

.hero.hero-small .hero-title {
	padding-top: 50px;
}

.hero-slide {
	display: none;
}

	.hero-slide:first-child {
		display: block;
	}

/* #Media Queries
================================================== */
@media only screen and (min-width: 767px) {
	.hero.hero-large .hero-image {
		height: 440px;
	}

	.hero.hero-small .hero-image {
		height: 340px;
	}
}

@media only screen and (min-width: 992px) {
	.hero .hero-image {
		min-height: calc(100vh - 460px);
	}

	.hero.hero-large .hero-image {
		height: 1080px;
		min-height: unset;
	}

	.hero.hero-small .hero-image {
		height: 733px;
		min-height: unset;
	}
}

@media only screen and (min-width: 1500px) {
	.hero .hero-image {
		min-height: calc(100vh - 360px);
	}

	.hero.hero-large .hero-image,
	.hero.hero-small .hero-image {
		min-height: unset;
	}
}

/* ### usp section ### */
.usp {
	margin-bottom: 48px;
	width: 100%;
}

	.usp h3 {
		width: 100%;
		text-align: center;
	}

	.usp .usp-list {
		display: flex;
		flex-wrap: wrap;
		text-align: center;
	}

	.usp .usp-item {
		width: 100%;
		font-size: 20px;
		font-weight: 300;
	}

	.usp.usp-alt h4 {
		text-transform: uppercase;
	}

@media only screen and (min-width: 768px) {
	.usp .usp-item {
		padding-bottom: 30px;
	}

	.usp.usp-alt h4 {
		font-size: 50px;
	}

	.usp.usp-alt .usp-list {
		margin-bottom: 20px;
	}
}

/* #Media Queries
================================================== */
@media only screen and (min-width: 768px) {
	.usp .usp-list {
		margin: 0 -30px;
	}

	.usp .usp-item {
		padding: 0 30px;
	}
}

@media only screen and (min-width: 992px) {
	.usp .usp-list {
		margin: 0 -60px;
	}

	.usp .usp-item {
		padding: 0 60px;
		width: 33.333%;
		font-size: 24px;
	}
}

/* ### image-slide ### */
.image-slider {
	position: relative;
	width: 100%;
}

.image-slide {
	position: relative;
	display: none;
	width: 100%;
	height: 640px;
}

	.image-slide:first-child {
		display: block;
	}

	.image-slide img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

.image-slider .image-title {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	text-align: center;
	color: var(--white-color);
	transform: translateY(-50%);
}

.image-slider .image-bottom {
	position: absolute;
	bottom: 30px;
	left: 0;
	width: 100%;
	text-align: center;
}

.image-slider .slick-dots {
	bottom: 100px;
}

/* #Media Queries
================================================== */
@media only screen and (min-width: 768px) {
	.image-slide {
		height: 740px;
	}
}

@media only screen and (min-width: 992px) {
	.image-slide {
		height: 1080px;
	}

	.image-slider .slick-dots {
		bottom: 135px;
	}

	.image-slider .image-bottom {
		bottom: 50px;
	}
}

/* ### quote ### */
.quote {
	padding-top: 100px;
	padding-bottom: 100px;
	position: relative;
	z-index: 3;
	width: 100%;
	text-align: center;
	color: var(--white-color);
	background: var(--primary-color);
}

.quote-holder {
	margin: 0 auto;
	padding-top: 70px;
	padding-bottom: 70px;
	max-width: 1222px;
	border-top: 2px solid var(--white-color);
	border-bottom: 2px solid var(--white-color);
}

	.quote-holder blockquote {
		margin-bottom: 30px;
		display: block;
		text-transform: unset;
	}

	.quote-holder span {
		display: block;
		font-size: 22px;
		font-style: italic;
	}

/* #Media Queries
================================================== */
@media only screen and (min-width: 768px) {
	.quote {
		padding-top: 170px;
		padding-bottom: 170px;
	}
}

@media only screen and (min-width: 992px) {
	.quote-holder {
		padding-top: 140px;
		padding-bottom: 140px;
	}

	.quote {
		padding-top: 270px;
		padding-bottom: 270px;
	}

	.quote-holder blockquote {
		margin-bottom: 50px;
	}

	.quote-holder span {
		font-size: 30px;
		line-height: 1;
		letter-spacing: 1.5px;
	}
}

/* ### text-block ### */
.text-block {
	padding-top: 60px;
	padding-bottom: 60px;
	position: relative;
	width: 100%;
	text-align: center;
	color: var(--white-color);
	background: var(--primary-color);
}

	.text-block .top {
		margin: 0 auto;
		max-width: 1400px;
		padding-bottom: 30px;
	}

	.text-block .text {
		margin: 0 auto;
		max-width: 1075px;
	}

	.text-block p {
		font-weight: 300;
		line-height: 24px;
	}

	.text-block .list {
		margin: 0 -15px;
		padding-top: 10px;
		display: flex;
		flex-wrap: wrap;
		width: calc(100% + 30px);
	}

	.text-block .item {
		padding: 0 15px 15px;
		position: relative;
		transition: all 0.3s;
	}

	.text-block .icon {
		height: 180px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.text-block .image {
		margin-bottom: 35px;
		position: relative;
		width: 100%;
	}

		.text-block .image img {
			width: 100%;
		}

	.text-block .item span {
		position: absolute;
		top: 50%;
		left: 0;
		display: block;
		width: 100%;
		font-size: 100px;
		text-align: center;
		transform: translateY(-50%);
		transition: all 0.3s;
	}

/* #Media Queries
================================================== */
@media only screen and (min-width: 768px) {
	.text-block {
		padding-top: 80px;
		padding-bottom: 80px;
	}

		.text-block .item span {
			font-size: 150px;
		}

		.text-block .item {
			margin-bottom: 30px;
			width: 50%;
		}
}

@media only screen and (min-width: 992px) {
	.text-block .item {
		margin-bottom: 0;
		width: 25%;
	}

	.text-block {
		padding-top: 115px;
		padding-bottom: 115px;
	}
}

@media only screen and (min-width: 1200px) {
	.text-block .list {
		margin: 0 -25px;
		width: calc(100% + 50px);
	}

	.text-block .item {
		padding: 0 25px;
	}

		.text-block .item span {
			font-size: 250px;
		}
}

/* ### brand-section ### */
.brand-section {
	padding-top: 60px;
	padding-bottom: 60px;
	position: relative;
	width: 100%;
	text-align: center;
	background: rgba(216, 167, 142, 0.5);
}

	.brand-section .top {
		margin: 0 auto 50px;
	}

	.brand-section .list {
		margin: 0 -13px;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		width: calc(100% + 26px);
	}

	.brand-section .item {
		padding: 0 13px 26px;
		position: relative;
		width: 112px;
		mix-blend-mode: multiply;
	}

	.brand-section.alt {
		background: transparent;
	}

/* #Media Queries
================================================== */
@media only screen and (min-width: 768px) {
	.brand-section {
		padding-top: 80px;
		padding-bottom: 80px;
	}

		.brand-section .item {
			width: 120px;
		}
}

@media only screen and (min-width: 992px) {
	.brand-section .list {
		padding: 80px 0 0;
	}

	.brand-section {
		padding-top: 180px;
		padding-bottom: 180px;
	}

		.brand-section .item {
			width: 140px;
		}
}

@media only screen and (min-width: 1200px) {
	.brand-section .item {
		width: 169px;
	}

	.brand-section .list {
		padding: 80px 100px 0;
	}
}

/* ### poster-block ### */
.poster {
	position: relative;
}

	.poster .poster-text {
		margin-top: 60px;
		margin-bottom: 60px;
		position: unset;
		text-align: center;
	}

	.poster img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.poster h3 {
		margin: 0 auto;
		padding-top: 30px;
		max-width: 441px;
		text-transform: unset;
	}

/* ### team-block ### */
.team {
	position: relative;
}

	.team .team-text {
		margin-top: 60px;
		margin-bottom: 60px;
		position: unset;
		text-align: center;
	}

	.team img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.team h2 {
		text-align: center;
		text-transform: uppercase;
	}

	.team h3 {
		margin: 0 auto;
		padding-top: 30px;
		max-width: 707px;
		text-transform: unset;
	}

/* ### member block ### */
.member .holder {
	margin: 20px -10px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.member .cart {
	margin-bottom: 10px;
	padding-right: 10px;
	padding-left: 10px;
	width: 100%;
}

.member .image {
	position: relative;
	display: block;
	width: 100%;
	height: auto;
}

.member .overlay {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	opacity: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(66, 59, 45, 0.6);
	transition: 0.5s ease;
}

.member .cart:hover .overlay {
	opacity: 1;
}

.member .text {
	position: absolute;
	top: 50%;
	left: 50%;
	font-size: 20px;
	text-align: center;
	color: var(--white-color);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

	.member .text .name {
		text-transform: uppercase;
	}

	.member .text .designation {
		font-style: italic;
	}

.member .image img {
	width: 100%;
	height: auto;
}

/* #Media Queries
================================================== */

@media only screen and (min-width: 767px) {
	.member .cart {
		width: 50%;
	}

	.member .image img {
		width: 100%;
		height: auto;
	}
}

@media only screen and (min-width: 992px) {
	.member .cart {
		width: 33.33%;
	}

	.member .image img {
		width: 100%;
		height: auto;
	}
}

@media only screen and (min-width: 1200px) {
	.poster .poster-text {
		margin: 0 auto;
		position: absolute;
		top: 12%;
		left: 39%;
		max-width: 700px;
		text-align: center;
	}

	.team .team-text {
		margin: 0 auto;
		position: absolute;
		top: 33%;
		left: 32%;
		max-width: 700px;
		text-align: center;
		color: var(--white-color);
	}

	.member .cart {
		width: 20%;
	}

	.member .image img {
		width: 100%;
		height: auto;
	}
}


/* ### packages ### */
.packages {
	padding-top: 80px;
	padding-bottom: 80px;
	background-color: var(--color-light);
}

	.packages h3 {
		margin-bottom: 5px;
	}

.packages-head {
	display: flex;
	margin-bottom: 30px;
	justify-content: flex-end;
}

	.packages-head ul {
		display: flex;
		width: 100%;
		font-weight: 400;
		text-align: center;
	}

		.packages-head ul li {
			width: 33.33%;
		}

.packages-list {
	margin-bottom: 30px;
}

	.packages-list span {
		display: block;
		width: 33.33%;
		position: relative;
		text-indent: -9999px;
		background-image: url("../images/check-mark.png");
		background-color: var(--color-light);
		background-size: 20px auto;
		background-position: center center;
		background-repeat: no-repeat;
	}

	.packages-list strong {
		width: 100%;
		font-weight: 300;
		margin-right: auto;
		position: relative;
		padding-right: 20px;
		margin-bottom: 10px;
		background-color: var(--color-light);
	}

	.packages-list ul li {
		display: flex;
		flex-wrap: wrap;
		margin-bottom: 15px;
		position: relative;
		justify-content: flex-end;
	}

		.packages-list ul li:after,
		.packages-list ul li:before {
			content: '';
			display: none;
			position: absolute;
		}

		.packages-list ul li:after {
			right: 0;
			top: 0;
			width: 35px;
			height: 100%;
			background-color: var(--color-light);
		}

		.packages-list ul li:before {
			height: 1px;
			width: 100%;
			left: 0;
			top: 50%;
			transform: translateY(-50%);
			background-color: var(--primary-color);
		}

/* #Media Queries
================================================== */

@media only screen and (min-width: 767px) {
	.packages {
		padding-top: 140px;
		padding-bottom: 140px;
	}

	.packages-head {
		display: flex;
	}

		.packages-head ul {
			width: auto;
			font-weight: 300;
		}

			.packages-head ul li {
				width: auto;
			}

				.packages-head ul li:not(:last-child) {
					margin-right: 30px;
				}

	.packages-list {
		padding-left: 30px;
	}

		.packages-list strong {
			width: auto;
			margin-bottom: 0;
		}

		.packages-list span {
			width: 60px;
			margin: 0 17px;
		}

		.packages-list ul li {
			flex-wrap: nowrap;
			margin-bottom: 5px;
		}

			.packages-list ul li:after,
			.packages-list ul li:before {
				display: block;
			}
}

@media only screen and (min-width: 1025px) {
	.packages-list span {
		width: 60px;
		margin: 0 20px;
		background-size: 24px auto;
	}

	.packages-list {
		padding-left: 40px;
	}
}

@media only screen and (min-width: 1441px) {
	.packages-head ul li:not(:last-child) {
		margin-right: 40px;
	}

	.packages-list span {
		width: 80px;
		margin: 0 20px;
		background-size: 28px auto;
	}

	.packages-list {
		padding-left: 50px;
	}
}

/* ### image-block ### */
.image-block {
	position: relative;
	z-index: 9;
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}

.image-block-content {
	margin-right: auto;
	margin-left: auto;
	padding: var(--gutter-side);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	font-weight: 400;
	text-align: center;
}

	.image-block-content ul {
		margin-bottom: 30px;
		line-height: 0.8;
	}

	.image-block-content li {
		margin-bottom: 10px;
		opacity: 0.2;
		font-size: 22px;
		transition: opacity var(--base-duration);
	}

		.image-block-content li:nth-child(2) {
			transition-delay: var(--base-duration);
		}

		.image-block-content li:nth-child(3) {
			transition-delay: 1s;
		}

		.image-block-content li:nth-child(4) {
			transition-delay: 1.5s;
		}

		.image-block-content li:nth-child(5) {
			transition-delay: 2s;
		}

	.image-block-content h3 {
		opacity: 0.2;
		transition: opacity var(--base-duration);
		transition-delay: 2.5s;
	}

		.image-block-content h3.animated,
		.image-block-content li.animated {
			opacity: 1;
		}

.image-block-inner {
	width: 100%;
	max-width: 500px;
}

.image-block-image {
	width: 100%;
}

/* #Media Queries
================================================== */
@media only screen and (min-width: 992px) {
	.image-block-image {
		width: 65%;
	}

		.image-block-image img {
			width: 100%;
			height: 100%;
			object-fit: cover;
		}

	.image-block-content li {
		font-size: 26px;
	}

	.image-block-content {
		width: 35%;
	}
}

@media only screen and (min-width: 1200px) {
	.image-block-content ul {
		margin-bottom: 60px;
	}

	.image-block-content li {
		margin-bottom: 20px;
		font-size: 30px;
	}
}

/* ### info-block ### */
.info-block {
	margin-bottom: 45px;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	width: 100%;
}

	.info-block h3 {
		text-align: center;
	}

	.info-block .holder {
		margin-bottom: 30px;
		display: flex;
		flex-wrap: wrap;
		align-items: flex-start;
		width: 100%;
	}

		.info-block .holder p {
			margin-bottom: 20px;
			line-height: 1.1;
		}

	.info-block .right .button {
		margin-bottom: 30px;
		color: var(--primary-color);
		background: rgba(216, 167, 142, 0.5);
	}

		.info-block .right .button:hover {
			background: rgba(216, 167, 142, 1);
		}

	.info-block .right,
	.info-block .left {
		width: 100%;
	}

	.info-block .image {
		margin-bottom: 40px;
		width: 100%;
	}

		.info-block .image img {
			width: 100%;
			height: 100%;
			object-fit: cover;
		}

/* #Media Queries
================================================== */
@media only screen and (min-width: 768px) {
	.info-block .left {
		padding-right: 35px;
		width: 65%;
		text-align: right;
	}

	.info-block .right {
		width: 35%;
	}
}

@media only screen and (min-width: 992px) {
	.info-block .right .button {
		min-width: 300px;
	}
}

@media only screen and (min-width: 1200px) {
	.info-block .right .button {
		min-width: 350px;
	}

	.info-block .left {
		padding-bottom: 20px;
		padding-left: 100px;
	}
}

/* ### gallery-slider ### */
.gallery-slider {
	padding-top: 60px;
	padding-bottom: 60px;
	position: relative;
	width: 100%;
	text-align: center;
	background: var(--primary-color);
}

	.gallery-slider .image img {
		width: 100%;
	}

	.gallery-slider .image {
		margin-right: 15px;
		width: 280px;
	}

	.gallery-slider .holder {
		position: relative;
		width: 100%;
	}

	.gallery-slider .slick-arrow {
		opacity: 0;
		visibility: hidden;
	}

/* #Media Queries
================================================== */
@media only screen and (min-width: 768px) {
	.gallery-slider {
		padding-top: 100px;
		padding-bottom: 100px;
	}

		.gallery-slider .image {
			margin-right: 30px;
		}
}

@media only screen and (min-width: 992px) {
	.gallery-slider {
		padding-top: 160px;
		padding-bottom: 160px;
	}

		.gallery-slider .slick-arrow {
			opacity: 1;
			visibility: visible;
		}

		.gallery-slider .image {
			margin-right: 100px;
			width: 300px;
		}

		.gallery-slider .holder {
			padding: 0 50px;
		}

		.gallery-slider .slick-prev {
			left: -50px;
		}

		.gallery-slider .slick-next {
			right: -50px;
		}
}

@media only screen and (min-width: 1200px) {
	.gallery-slider .slick-prev {
		left: -120px;
	}

	.gallery-slider .slick-next {
		right: -120px;
	}

	.gallery-slider {
		padding-top: 250px;
		padding-bottom: 250px;
	}

		.gallery-slider .holder {
			padding: 0 100px;
		}

		.gallery-slider .image {
			margin-right: 160px;
			width: 395px;
		}
}

/* ### map-block ### */
.map-block {
	display: flex;
	flex-wrap: wrap;
}

.map-block-place,
.map-block-address {
	width: 100%;
}

.map-block-place {
	min-height: 400px;
}

.map-block-address {
	padding: var(--gutter-side);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

	.map-block-address address {
		padding-bottom: var(--gutter-side);
		font-weight: 300;
		font-style: normal;
	}

		.map-block-address address p {
			margin-bottom: 20px;
		}

		.map-block-address address:last-child {
			padding-bottom: 0;
		}

.map-block-holder {
	width: 100%;
}

/* #Media Queries
================================================== */
@media only screen and (min-width: 992px) {
	.map-block-place {
		width: 65%;
	}

	.map-block-address {
		width: 35%;
	}

	.map-block-holder {
		padding-top: 80px;
		padding-bottom: 80px;
		max-width: 500px;
	}
}

/* ### contact form ### */
.contact-form {
	padding-top: var(--gutter-side);
	padding-bottom: var(--gutter-side);
	color: var(--white-color);
	background-color: var(--primary-color);
}

.contact-form-holder {
	margin-right: auto;
	margin-left: auto;
	padding-top: var(--gutter-side);
	padding-bottom: var(--gutter-side);
	width: 100%;
	max-width: 872px;
}

/* #Media Queries
================================================== */
@media only screen and (min-width: 992px) {
	.contact-form-holder {
		padding-top: 144px;
		padding-bottom: 144px;
	}
}

/* ### step-block ### */
.step-block {
	padding-top: 60px;
	padding-bottom: 60px;
	position: relative;
	width: 100%;
	text-align: center;
}

	.step-block p {
		font-weight: 300;
		line-height: 24px;
	}

	.step-block .list {
		margin: 0 -15px;
		padding-top: 10px;
		display: flex;
		flex-wrap: wrap;
		width: calc(100% + 30px);
	}

	.step-block .item {
		padding: 0 20px 15px;
		position: relative;
		transition: all 0.3s;
	}

	.step-block .image {
		margin-bottom: 35px;
		position: relative;
		width: 100%;
	}

		.step-block .image img {
			width: 100%;
		}

	.step-block .number {
		display: block;
		width: 100%;
		font-size: 100px;
		line-height: 1;
		transition: all 0.3s;
	}

	.step-block .item:hover .number {
		color: var(--secondary-color);
	}

	.step-block.alt {
		color: var(--white-color);
		background: var(--primary-color);
	}

/* #Media Queries
================================================== */
@media only screen and (min-width: 768px) {
	.step-block {
		padding-top: 80px;
		padding-bottom: 80px;
	}

		.step-block .number {
			font-size: 150px;
		}

		.step-block .item {
			width: 33.333%;
		}
}

@media only screen and (min-width: 992px) {
	.step-block {
		padding-top: 115px;
		padding-bottom: 115px;
	}
}

@media only screen and (min-width: 1200px) {
	.step-block {
		padding-top: 250px;
		padding-bottom: 250px;
	}

		.step-block .number {
			font-size: 250px;
		}

		.step-block .list {
			margin: 0 -25px;
			width: calc(100% + 50px);
		}

		.step-block .item {
			margin-bottom: 30px;
			padding: 0 60px;
		}
}

/* ### newsletter ### */
.newsletter {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	background: rgba(216, 167, 142, 0.5);
}

	.newsletter .small-text {
		margin-bottom: 10px;
	}

	.newsletter .newsletter-content {
		padding: 50px var(--gutter-side);
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		width: 100%;
		text-align: center;
		color: var(--white-color);
	}

		.newsletter .newsletter-content h3 {
			margin-bottom: 0;
		}

		.newsletter .newsletter-content h4 {
			font-style: italic;
			letter-spacing: 1.8px;
			text-transform: uppercase;
			color: var(--white-color);
		}

		.newsletter .newsletter-content ul {
			margin: 20px auto;
			padding-left: 12px;
			width: 100%;
			max-width: 400px;
			font-size: var(--font-size-h3);
			font-weight: 400;
			line-height: 1;
			letter-spacing: 3.3px;
			text-align: left;
		}

			.newsletter .newsletter-content ul li {
				padding-left: 15px;
				list-style: outside;
			}

				.newsletter .newsletter-content ul li::marker {
					font-size: 15px;
				}

		.newsletter .newsletter-content p {
			font-weight: 300;
		}

.newsletter-inner {
	width: 100%;
	max-width: 1050px;
}

.newsletter .newsletter-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.newsletter .newsletter-image {
	width: 100%;
}

.newsletter .newsletter-form {
	margin: 0 auto;
	max-width: 850px;
	text-align: left;
}

.newsletter.full .newsletter-form {
	margin: 0 auto;
	max-width: unset;
}

.newsletter .newsletter-form label {
	margin-bottom: 5px;
	display: block;
}

.newsletter .newsletter-form .button {
	margin: 20px auto 0;
	display: block;
	width: 220px;
	background: var(--brown-color-400);
}

	.newsletter .newsletter-form .button:hover {
		background: #7c311d;
	}

.newsletter.full {
	padding-top: var(--gutter-side);
	padding-bottom: var(--gutter-side);
	display: block;
}

	.newsletter.full .newsletter-content {
		margin-right: auto;
		margin-left: auto;
		padding-right: 0;
		padding-left: 0;
	}

.newsletter .bottom {
	padding: 0 20px;
	position: absolute;
	bottom: 48px;
	left: 0;
	z-index: 2;
	width: 100%;
	text-align: center;
	pointer-events: none;
}

	.newsletter .bottom .button {
		pointer-events: auto;
	}

.newsletter .newsletter-notice {
	text-align: center;
	font-style: italic;
	margin-top: 30px;
}

.newsletter.alt .newsletter-content ul {
	width: 100%;
	max-width: 600px;
	letter-spacing: unset;
	font-size: var(--font-size-base);
}

/* #Media Queries
================================================== */
@media only screen and (min-width: 992px) {
	.newsletter .newsletter-image {
		width: 37%;
	}

	.newsletter .newsletter-content {
		width: 63%;
	}

	.newsletter.full .newsletter-content {
		width: 100%;
		max-width: 872px;
	}

	.newsletter .bottom {
		text-align: right;
	}

	.newsletter .newsletter-content ul {
		letter-spacing: 3.3px;
	}
}

@media only screen and (min-width: 1200px) {
	.newsletter .bottom {
		text-align: center;
	}
}

/* ### services ### */
.services {
	margin-top: 64px;
	margin-bottom: 64px;
	width: 100%;
}

.services-holder {
	margin-right: auto;
	margin-left: auto;
	display: grid;
	grid-template-rows: repeat(1, 1fr);
	grid-template-columns: repeat(1, 1fr);
	gap: 20px;
	max-width: 1476px;
}

@media only screen and (min-width: 640px) {
	.services-holder {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media only screen and (min-width: 1025px) {
	.services-holder {
		grid-template-columns: repeat(3, 1fr);
		gap: 33px;
	}
}

@media only screen and (min-width: 1240px) {
	.services-holder {
		gap: 43px;
	}
}

@media only screen and (min-width: 1400px) {
	.services-holder {
		gap: 63px;
	}
}

/* ### service block ### */
.service-block {
	position: relative;
	display: block;
	color: var(--white-color);
}

	.service-block h3 {
		margin-bottom: 0;
		font-size: 30px;
		transition: opacity var(--base-duration);
	}

	.service-block:hover .service-block-text {
		opacity: 1;
	}

	.service-block:hover .service-block-img {
		opacity: 0;
	}

.service-block-img {
	position: relative;
	transition: opacity var(--base-duration);
}

	.service-block-img img {
		width: 100%;
		height: auto;
		transition: opacity var(--base-duration);
	}

	.service-block:before,
	.service-block-img:before {
		position: absolute;
		top: 0;
		left: 0;
		display: block;
		width: 100%;
		height: 100%;
		background-color: var(--brown-color-100);
		content: '';
		mix-blend-mode: multiply;
	}

	.service-block-img h3 {
		padding: 28px;
		position: absolute;
		top: 50%;
		left: 0;
		width: 100%;
		text-align: center;
		transform: translateY(-50%);
	}

.service-block-text {
	padding: 28px;
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	opacity: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	transition: opacity 0.5s;
}

	.service-block-text h3 {
		text-transform: none;
	}

	.service-block-text .button {
		margin-top: 30px;
		width: 100%;
	}

@media only screen and (min-width: 1025px) {
	.service-block h3 {
		font-size: 40px;
	}

	.service-block-text,
	.service-block-img h3 {
		padding: 38px;
	}
}

@media only screen and (min-width: 1200px) {
	.service-block h3 {
		font-size: 50px;
	}

	.service-block-text {
		padding: 48px;
	}
}

/* ### brand-block ### */
.brand-block {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}

.brand-block-image {
	order: 1;
	width: 100%;
}

	.brand-block-image img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

.brand-block-content {
	padding: var(--gutter-side);
	display: flex;
	align-items: center;
	justify-content: center;
	order: 2;
	font-weight: 300;
	text-align: center;
}

	.brand-block-content h3 {
		text-transform: none;
	}

	.brand-block-content .holder {
		width: 100%;
	}

	.brand-block-content .wrap {
		margin-right: -20px;
		margin-left: -20px;
		padding-top: var(--gutter-side);
		display: flex;
		flex-wrap: wrap;
	}

	.brand-block-content .wrap-columns {
		margin: 0;
		display: block;
	}

.brand-item {
	margin-bottom: 20px;
	padding-right: 20px;
	padding-left: 20px;
	width: 100%;
	font-weight: 300;
}

	.brand-item .icon {
		margin-bottom: 20px;
	}

		.brand-item .icon img {
			margin: 0 auto;
		}

.brand-box {
	margin-bottom: 25px;
	padding-right: 20px;
	padding-left: 20px;
	width: 50%;
}

	.brand-box img {
		margin: 0 auto;
	}

.brand-block-btn {
	padding-top: 35px;
}

.brand-text {
	margin-bottom: 25px;
	padding-right: 10px;
	padding-left: 10px;
	width: 100%;
}

	.brand-text figure {
		margin-bottom: 10px;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		height: 70px;
	}

		.brand-text figure img {
			width: auto;
			max-height: 70px;
		}

	.brand-text:last-child {
		margin-bottom: 0;
	}

.brand-block.inner {
	align-items: unset;
}

.brand-service {
	margin-bottom: 25px;
	padding-right: 10px;
	padding-left: 10px;
	width: 100%;
}

	.brand-service h5 {
		margin-bottom: 15px;
		font-size: 24px;
	}

.service-holder {
	margin-right: -7px;
	margin-left: -7px;
	display: flex;
	justify-content: center;
}

.service-box {
	padding-right: 7px;
	padding-left: 7px;
}

	.service-box .text {
		padding: 10px 5px;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 114px;
		height: 114px;
		font-size: 17px;
		line-height: var(--heading-line-height);
		background-color: var(--brown-color);
	}

	.service-box.brown-100 .text {
		background-color: var(--brown-color-100);
	}

	.service-box.brown-200 .text {
		background-color: var(--brown-color-200);
	}

	.service-box.brown-300 .text {
		background-color: var(--brown-color-300);
	}

/* #Media Queries
================================================== */
@media only screen and (min-width: 768px) {
	.brand-item {
		margin-bottom: 0;
		width: 50%;
	}

		.brand-item .icon {
			min-height: 99px;
		}

		.brand-item:first-child .icon {
			padding-top: 20px;
		}

	.brand-box {
		width: 25%;
	}

	.brand-text {
		width: 50%;
	}

	.brand-block-content .wrap-columns {
		column-count: 2;
		column-gap: 30px;
	}

		.brand-block-content .wrap-columns .brand-text {
			padding: 0;
			display: inline-block;
			width: 100%;
		}

	.brand-service {
		padding-right: 20px;
		padding-left: 20px;
		width: 50%;
	}

	.brand-block-inner {
		width: 100%;
	}
}

@media only screen and (min-width: 992px) {
	.brand-block-inner {
		max-width: 480px;
	}

	.brand-block-content .holder {
		max-width: 550px;
	}

	.brand-block-content .holder-alt {
		max-width: 620px;
	}

	.brand-block-content {
		order: 1;
		width: 38%;
	}

	.brand-block-image {
		order: 2;
		width: 62%;
	}

	.brand-block.reverse .brand-block-content {
		order: 2;
	}

	.brand-block.reverse .brand-block-image {
		order: 1;
	}

	.brand-service {
		width: 100%;
	}
}

@media only screen and (min-width: 1200px) {
	.brand-item {
		padding-right: 20px;
		padding-left: 20px;
	}

	.brand-text {
		padding-right: 20px;
		padding-left: 20px;
	}
}

@media only screen and (min-width: 1400px) {
	.brand-service {
		width: 50%;
	}
}

/* ### story-block ### */
.story-block {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}

.story-block-image {
	width: 100%;
}

	.story-block-image img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

.story-block-content {
	padding: var(--gutter-side);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

	.story-block-content .holder {
		width: 100%;
		text-align: center;
	}

	.story-block-content h2 {
		margin-bottom: 40px;
	}

	.story-block-content h3 {
		margin-bottom: 40px;
		text-transform: unset;
	}

	.story-block-content .wrap {
		margin-right: -30px;
		margin-left: -30px;
		display: flex;
		flex-wrap: wrap;
	}

.story-item {
	margin-bottom: 20px;
	padding-right: 30px;
	padding-left: 30px;
	width: 100%;
	font-weight: 300;
}

	.story-item .icon {
		margin-bottom: 20px;
	}

		.story-item .icon img {
			margin: 0 auto;
		}

	.story-item .text h4 {
		font-size: 28px;
		text-transform: uppercase;
	}

	.story-item .text p {
		margin-bottom: 22px;
	}

.story-column {
	padding: 0 20px;
	width: 100%;
}

/* #Media Queries
================================================== */
@media only screen and (min-width: 768px) {
	.story-item {
		margin-bottom: 0;
		width: 33.33%;
	}

		.story-item .icon {
			display: flex;
			align-items: center;
			justify-content: center;
			min-height: 99px;
		}

	.story-column {
		width: 50%;
	}
}

@media only screen and (min-width: 992px) {
	.story-block-content {
		width: 62%;
	}

	.story-block .holder {
		max-width: 950px;
	}

	.story-block-image {
		width: 38%;
	}

	.story-column .text {
		margin: 0 auto;
		max-width: 380px;
	}
}

@media only screen and (min-width: 1200px) {
	.story-item .text h4 {
		font-size: 35px;
	}
}

/* ### express block ### */
.express-block {
	padding-top: 80px;
	padding-bottom: 80px;
	text-align: center;
	background-color: rgba(216, 167, 142, 0.5);
}

	.express-block h2 {
		margin-bottom: 45px;
	}

	.express-block p {
		font-weight: 300;
	}

.express-block-wrap {
	margin: 0 auto;
	padding-top: 28px;
	max-width: 1600px;
}

	.express-block-wrap .holder {
		display: flex;
		flex-wrap: wrap;
	}

.express-item {
	margin-bottom: 30px;
	width: 100%;
}

	.express-item:last-child {
		margin-bottom: 0;
	}

.express-box {
	position: relative;
	display: block;
	color: var(--white-color);
}

	.express-box img {
		width: 100%;
	}

	.express-box:before {
		position: absolute;
		top: 0;
		left: 0;
		display: block;
		opacity: 0;
		width: 100%;
		height: 100%;
		background-color: var(--secondary-color);
		transition: opacity var(--base-duration);
		content: '';
		mix-blend-mode: multiply;
	}

	.express-box:hover:before {
		opacity: 1;
	}

	.express-box .text {
		padding: 20px;
		position: absolute;
		top: 50%;
		left: 50%;
		width: 100%;
		transform: translate(-50%, -50%);
	}

		.express-box .text h3 {
			font-size: 30px;
		}

/* #Media Queries
================================================== */
@media only screen and (min-width: 768px) {
	.express-block {
		padding-top: 100px;
		padding-bottom: 100px;
	}

		.express-block .holder {
			margin-right: -15px;
			margin-left: -15px;
		}

	.express-item {
		padding-right: 15px;
		padding-left: 15px;
		width: 50%;
	}
}

@media only screen and (min-width: 992px) {
	.express-block .holder {
		margin-right: -20px;
		margin-left: -20px;
	}

	.express-item {
		margin-bottom: 0;
		padding-right: 20px;
		padding-left: 20px;
		width: 33.33%;
	}

	.express-box .text h3 {
		font-size: 32px;
	}
}

@media only screen and (min-width: 1200px) {
	.express-block {
		padding-top: 175px;
		padding-bottom: 173px;
	}

		.express-block .holder {
			margin-right: -33px;
			margin-left: -33px;
		}

	.express-item {
		padding-right: 33px;
		padding-left: 33px;
	}

	.express-box .text h3 {
		font-size: 38px;
	}
}

@media only screen and (min-width: 1440px) {
	.express-box .text h3 {
		font-size: 50px;
	}
}

/* ### social-block ### */
.social-block .social-text {
	margin: 0 auto 50px;
	max-width: 315px;
}

.social-block ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}

	.social-block ul > li {
		margin-right: 25px;
		margin-bottom: 10px;
	}

		.social-block ul > li img {
			width: 34px;
			height: auto;
		}

		.social-block ul > li:last-child {
			margin-right: 0;
		}

@media only screen and (min-width: 1200px) {
	.social-block ul > li img {
		width: 64px;
	}
}

/* ### intro block ### */
.intro-block {
	text-align: center;
	padding-top: 80px;
	padding-bottom: 80px;
	color: var(--white-color);
	background-color: var(--primary-color);
}

	.intro-block .holder {
		display: flex;
		max-width: 1200px;
		align-items: center;
		flex-direction: column;
		margin: 0 auto;
	}

	.intro-block .list-items li:before {
		background-color: var(--white-color);
	}

/* #Media Queries
================================================== */
@media only screen and (min-width: 768px) {
	.intro-block {
		padding-top: 280px;
		padding-bottom: 280px;
	}

		.intro-block .list-items {
			margin-bottom: 50px;
		}
}


/* ### footer container ### */
.footer {
	padding-top: 60px;
	padding-bottom: 60px;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	color: var(--white-color);
	background: var(--primary-color);
}

	.footer .col1 {
		width: 100%;
	}

	.footer .col2 {
		margin: 20px 0;
		width: 100%;
	}

	.footer .logo {
		width: 100%;
		max-width: 280px;
	}

		.footer .logo img {
			width: 100%;
		}

	.footer .col1 p {
		margin-bottom: 0;
		font-size: 18px;
		font-weight: 300;
		line-height: 18px;
	}

	.footer .footer-menu {
		display: grid;
		flex-wrap: wrap;
		grid-template-columns: repeat(2, 1fr);
		column-gap: 20px;
	}

		.footer .footer-menu li a {
			display: block;
			font-size: 24px;
			font-weight: 300;
			line-height: 1;
			text-decoration: none;
			color: var(--white-color);
			transition: all 0.3s;
		}

			.footer .footer-menu li a:hover {
				opacity: 0.7;
			}

	.footer .col3 strong {
		display: block;
		font-size: 24px;
		font-weight: 300;
		line-height: 1;
		color: var(--white-color);
	}

	.footer .col3 ul {
		margin-top: 10px;
		display: flex;
		justify-content: flex-end;
	}

		.footer .col3 ul li {
			margin-left: 10px;
		}

			.footer .col3 ul li a {
				display: block;
				width: 30px;
				transition: all 0.3s;
			}

			.footer .col3 ul li svg {
				width: 100%;
				height: auto;
			}

			.footer .col3 ul li a:hover {
				opacity: 0.7;
			}

			.footer .col3 ul li:first-child {
				margin-left: 0;
			}


.journals-header {
	background-color: #e4c79e;
	height: 100vh;
}

.journals-hamburger-button {
	color: #fff;
}

.header-heading {
	/* display props */
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	padding: 1em 2em 0.5em 7em;
	font-family: 'Noyh Geometric Slim Regular';
}

.header-body {
	padding-top: 2em;
	background-color: #e8c49c;
}

.header-search {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	padding: 3em 2em;
	width: 400px;
}

	.header-search input {
		background: transparent;
		padding: 0.2em;
		color: #423b2d;
		text-align: center;
	}

		.header-search input::placeholder {
			color: #423b2d;
		}

.search-wrapper {
	position: relative;
	display: flex;
	align-items: center;
	border: 2px solid #423b2d;
	border-radius: 15px;
}

/* Style for the search input field */
#search-input {
	width: 100%;
	padding-right: 1.5em;
}

/* Style for the icon */
.search-wrapper .fa-magnifying-glass {
	padding-left: 10px;
	padding-right: 10px;
}

	.search-wrapper .fa-magnifying-glass:hover {
		cursor: pointer;
	}

.para {
	width: 900px;
	text-align: center;
	margin: 0 auto;
}

.body-heading {
	letter-spacing: 0.1em;
	margin-top: 120px;
	text-align: center;
	font-weight: 600;
}

.header-body-content {
	text-transform: uppercase;
	font-size: 3.5em;
	letter-spacing: 0.2em;
	color: white;
	font-weight: bold;
	margin-top: 100px;
	text-align: center;
	font-family: var(--font-family-base);
	font-weight: 300;
}

.journey-body {
	display: flex;
	flex-wrap: wrap;
	gap: 3px;
	padding: 0.2em;
	background-color: white;
}

.element-container {
	flex: 0 0 calc(33.33% - 3px);
	display: flex;
	flex-direction: column;
}

@media only screen and (max-width: 850px) {
	.element-container {
		flex: 0 0 calc(50% - 3px);
	}
}

@media only screen and (max-width: 550px) {
	.element-container {
		flex: 0 0 calc(100% - 3px);
	}
}

.element-image {
	height: 100%;
}

	.element-image img {
		width: 100%;
		height: 100%;
	}

.element-footer {
	background-color: #e9e4dd;
	padding: 1em 0 0 3em;
	color: #423b2d;
}

.element-container-location {
	text-transform: uppercase;
	margin: 0 !important;
	font-weight: bold;
}

.portfolio-pagination {
	background-color: #e9e4dd;
	color: #423b2d;
	padding: 5em 0;
}

.pagination-elems {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: end;
	color: #423b2d;
}

.pagination-counter {
	padding: 10px;
	font-size: 1.5em;
	letter-spacing: 0.1em;
}

.element-footer-brand {
	font-style: italic;
	margin: 0 !important;
	font-size: 0.8em;
}

.portfolio-body {
	display: flex;
	flex-wrap: wrap;
	background-color: white;
}

.body-card img {
	width: 100%;
	height: 100%;
	padding: 0;
}


.body-card h4 {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.body-card {
	position: relative;
	text-align: center;
	color: white;
	flex: 50%;
	font-family: 'Noyh Geometric Slim SemiLight';
	font-size: 1.5em;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	line-height: 1.2em;
	padding: 0.5px;
}

.element-footer-date {
	font-style: italic;
	font-size: 0.8em;
}

.companies {
	width: 80%;
	margin: 0 auto;
	padding-top: 4em;
	display: grid;
	grid-template-columns: repeat(9, 1fr);
	justify-items: center;
}

	.companies img {
		width: 90px;
		padding-bottom: 4em;
	}

@media only screen and (max-width: 1500px) {
	.element-container {
		flex: 0 0 calc(50% - 3px);
	}
}

@media only screen and (max-width: 1200px) {
	.companies {
		grid-template-columns: repeat(4, 1fr);
	}
}

@media only screen and (max-width: 800px) {
	.element-container {
		flex: 0 0 calc(100% - 3px);
	}
}

@media only screen and (max-width: 500px) {
	.companies img {
		width: 50px;
		padding-bottom: 4em;
	}
}

@media only screen and (max-width: 980px) {
	.header-bodyaa {
		width: 500px;
		margin: 0 auto;
		text-align: center;
	}

	.para {
		width: inherit;
		margin: inherit;
	}
}

@media only screen and (max-width: 500px) {
	.header-bodyaa {
		width: 318px;
		margin: 0 auto;
		text-align: center;
	}

	.para {
		width: inherit;
		margin: inherit;
	}
}

@media only screen and (max-width: 500px) {
	.body-card {
		flex: 100%;
	}
}

@media only screen and (max-width: 500px) {
	.header-search {
		width: 100%;
		justify-content: center;
	}

	.middle-placeholder, .right-placeholder {
		display: none;
	}
}


/* #Media Queries
================================================== */
@media only screen and (min-width: 768px) {
	.footer .col1 {
		padding-right: 50px;
		width: 35%;
	}

	.footer .col2 {
		margin: 0;
		width: 30%;
	}

	.footer .col3 {
		margin-left: auto;
		width: 30%;
		text-align: right;
	}

		.footer .col3 ul li a {
			width: 36px;
		}
}

@media only screen and (min-width: 992px) {
	.footer .logo {
		max-width: 340px;
	}
}

@media only screen and (min-width: 1200px) {
	.footer {
		padding-top: 100px;
		padding-bottom: 100px;
	}

		.footer .col1 {
			width: 33%;
			max-width: 520px;
		}

		.footer .col2 {
			width: 27%;
			max-width: 430px;
		}
}
