article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
	display: block;
}

audio,
canvas,
video {
	display: inline-block;
}

[hidden] {
	display: none;
}

html {
	font-family: sans-serif;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	overflow-x: hidden;
}

body {
	margin: 0;
}

a:focus {
	outline: thin dotted;
}

a:active,
a:hover {
	outline: 0;
}

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

h1,
h2,
h3 {
	font-family: 'Breathdemo', serif;
}	

h4,
h5,
h6,
p {
	font-family: 'Cormorant Garamond', serif;
	font-weight: 400;
	letter-spacing: 1px;
}

abbr[title] {
	border-bottom: 1px dotted;
}

b,
strong {
	font-weight: bold;
}

dfn {
	font-style: italic;
}

hr {
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	height: 0;
}

mark {
	background: #ff0;
	color: #211615;
}

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

pre {
	white-space: pre-wrap;
}

q {
	quotes: "\201C""\201D""\2018""\2019";
}

small {
	font-size: 80%;
}

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

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

img {
	border: 0;
}

svg:not(:root) {
	overflow: hidden;
}

figure {
	margin: 0;
}

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

legend {
	border: 0;
	padding: 0;
}

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

button,
input {
	line-height: normal;
}

button,
select {
	text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

/* button[disabled],
html input[disabled] {
	cursor: default;
} */

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

input[type="search"] {
	-webkit-appearance: textfield;
	-moz-box-sizing: content-box;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
	vertical-align: top;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

*,
*::after,
*::before {
	box-sizing: border-box;
}

body {
	--color-text: #211615;
	--color-text-alt: #b89d85;
	--color-bg: #F4F2EF;
	--color-link: #211615;
	--color-link-hover: #b89d85;
	--color-link-alt: #211615;
	--color-link-toc: #211615;
	min-height: 100vh;
	font-family: 'Cormorant Garamond', serif;
	font-weight: 400;
	letter-spacing: 1px;
	color: #57585c;
	color: var(--color-text);
	background-color: #F4F2EF;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-size: 1rem;
}

/* Page Loader */
.js .loading::before {
	content: '';
	position: fixed;
	z-index: 100000;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--color-bg);
}

.js .loading::after {
	content: '';
	position: fixed;
	z-index: 100000;
	top: 50%;
	left: 50%;
	width: 60px;
	height: 60px;
	margin: -30px 0 0 -30px;
	pointer-events: none;
	border-radius: 50%;
	opacity: 0.4;
	background: var(--color-link);
	animation: loaderAnim 0.7s linear infinite alternate forwards;
}

@keyframes loaderAnim {
	to {
		opacity: 1;
		transform: scale3d(0.5, 0.5, 1);
	}
}


a {
	text-decoration: none;
	color: var(--color-link);
	outline: none;
}

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

button:focus,
a:focus {
	outline: none;
}

.hidden {
	position: absolute;
	overflow: hidden;
	width: 0;
	height: 0;
	pointer-events: none;
}

.message {
	background: var(--color-link-alt);
	color: var(--color-text-alt);
	padding: 0.5rem;
	margin: 0;
	text-align: center;
}

/* Icons */
.icon {
	display: block;
	width: 1.5em;
	height: 1.5em;
	margin: 0 auto;
	fill: currentColor;
}

.main-header {
	padding: 15px;
	z-index: 2;
}

.main-header__title {
	font-size: inherit;
	font-weight: normal;
}

.main-header__links {
	position: relative;
	z-index: 1;
}

.main-header__links a {
	text-transform: lowercase;
	display: inline-block;
	margin: 0 0.75rem 0 0;
}

.main-header__links a i {
	background-color: transparent;
	color: var(--color-text-alt);
	font-size: 20px;
	width: 20px;
	height: 35px;
	display: flex;
	align-items: center;
	border-radius: 50%;
}

.main-header__links a:hover i {
	text-decoration: none;
	color: var(--color-text);
	cursor: pointer !important;
	background-color: transparent;
}

.main-header__links a:hover {
	text-decoration: none;
	transition: 0.3s;
}

.slide__figure-title {
	font-weight: normal;
	margin: 0.5rem 0 0 0;
	font-size: inherit;
}

.slide__figure-title::before {
	display: inline-block;
	margin: 0 0.5rem 0 0;
}

.slide__figure-description {
	margin: 0;
	font-style: italic;
	color: var(--color-text-alt);
}

.slide__figure {
	position: relative;
	display: block;
	height: unset;
	width: calc(100vw - 3rem);
	max-width: 70%;
	margin: 0 auto 2rem auto;
	flex-direction: column;
}

.slide__figure-inner {
	position: relative;
	flex: 1;
}

.slide__figure-img {
	position: relative;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: cover;
}

.slide__figure-img.cover {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.slide__figure-img.cover h4 {
	position: relative;
	color: var(--color-text);
	letter-spacing: 10px;
	margin-top: 60px;
}

.slide__number {
	display: none;
}

.nav {
	display: block;
	position: absolute;
	top: 1.2rem;
	left: calc(1rem + 10px);
	z-index: 0;
}

.nav.right {
	display: block;
	position: absolute;
	top: 15px;
	left: 20px;
	z-index: 1;
}

.nav__button {
	border: 0;
	margin: 0 1.2rem 0.5rem 0;
	padding: 0;
	line-height: 1;
	background: none;
	color: var(--color-link-alt);
}

.nav__button:focus {
	outline: none;
}

.nav__button:hover {
	color: var(--color-link-hover);
}

.nav__button-text {
	position: relative;
	display: block;
	width: 35px;
	height: 35px;
	background-color: var(--color-link-hover);
	color: #FFF;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-left: 10px;
}

.nav__button-text:hover {
	background-color: var(--color-link);
	transition: 0.3s;
}

/* .nav__button-text::after,
.nav__button-text::before {
	content: '';
	position: absolute;
	height: 1px;
	top: 50%;
	width: 7px;
	right: 0;
	background: currentColor;
} */

.nav__button-text::after {
	transition: opacity 0.2s, transform 0.2s;
}

.nav--open .nav__button-text::after {
	transform: rotate(90deg);
	opacity: 0;
}

.nav__button-text::before {
	transform: rotate(90deg);
	transition: transform 0.2s;
}

.nav--open .nav__button-text::before {
	transform: rotate(0deg);
}

.nav--open .toc {
	background-color: #EEE3D0;
	padding: 10px 20px;
	margin-top: 15px;
	transition: all 0.4s;
}

.nav img {
	width: 100px;
	margin-left: 60px;
}

.toc__item {
	pointer-events: none;
	opacity: 0;
	display: block;
	margin: 0.35rem 0;
	opacity: 0;
}

.nav--open .toc__item {
	font-size: 1rem;
	pointer-events: auto;
	text-decoration: none;
}

.toc__item-page {
	display: inline-block;
	width: 1.2rem;
	pointer-events: none;
	color: var(--color-text-alt);
}

.toc__item-title {
	pointer-events: none;
	color: var(--color-link-toc);
}

.toc__item:hover .toc__item-title,
.toc__item--current .toc__item-title {
	color: var(--color-link-hover);
}

.arrow-nav {
	display: none !important;
}

@media screen and (min-width: 1201px) {
	.message {
		display: none;
	}

	body {
		overflow-x: hidden;
	}

	.main-header {
		padding: 0;
		position: fixed;
		top: 1.2rem;
		right: calc(1rem + 10px);
		z-index: 4000;
	}

	.main-header__title {
		display: inline;
	}

	.main-header__links {
		display: inline;
	}

	.main-header__links a {
		margin: 0 0 0 0.75rem;
	}

	.slideshow {
		width: 100%;
		height: 100%;
		position: relative;
	}

	.slideshow__indicator {
		/* width: 10px;
		background: #211615; */
		height: 100%;
		left: 0;
		top: 0;
		position: absolute;
		z-index: 100;
		transform-origin: 0% 50%;
		z-index: 6000;
	}

	.slideshow__indicator:last-child {
		left: auto;
		right: 0;
		transform-origin: 100% 50%;
	}

	.slide {
		position: relative;
		/* top: 0;
		left: 0; */
		display: block;
		/* grid-area: 2 / 1 / 3 / 2;
		padding: 0;
		--gridgap: 1vw;
		--gridwidth: 100%;
		--gridheight: 100%; */
		display: block;
		width: 100%;
		height: 100%;
		/* grid-template-rows: repeat(20, calc(var(--gridheight) / 20 - var(--gridgap)));
		grid-template-columns: repeat(20, calc(var(--gridwidth) / 19 - var(--gridgap)));
		grid-gap: var(--gridgap); */
		align-content: center;
		justify-content: center;
		background-color: #F4F2EF;
		padding: 80px 0;
		/* background-image: url(../img/bg-pattern.jpg);
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat; */
	}

	/* .slide--layout-1 .slide__figure:first-child {
		grid-area: 22 / 1 / 1 / 24;
	}

	.slide--layout-1 .slide__figure:nth-child(2) {
		grid-area: 6 / 12 / 20 / 20;
	} */

	/* .slide--layout-1 .slide__figure:nth-child(3) {
		grid-area: 14 / 6 / 21 / 9;
	}

	.slide--layout-1 .slide__figure:nth-child(4) {
		grid-area: 11 / 12 / 21 / 18;
	} */

	/* .slide--layout-2 .slide__figure:first-child {
		grid-area: 13 / 3 / 22 / 12;
	}

	.slide--layout-2 .slide__figure:nth-child(2) {
		grid-area: 10 / 13 / 24 / 19;
	}

	.slide--layout-2 .slide__figure:nth-child(3) {
		grid-area: 11 / 4 / 21 / 9;
	}

	.slide--layout-2 .slide__figure:nth-child(4) {
		grid-area: 13 / 12 / 21 / 18;
	}

	.slide--layout-3 .slide__figure:first-child {
		grid-area: 4 / 6 / 20 / 20;
	}

	.slide--layout-3 .slide__figure:nth-child(2) {
		grid-area: 2 / 12 / 20 / 20;
	}

	.slide--layout-3 .slide__figure:nth-child(3) {
		grid-area: 10 / 16 / 21 / 21;
	}

	.slide--layout-4 .slide__figure:first-child {
		grid-area: 4 / 3 / 24 / 19;
	}

	.slide--layout-4 .slide__figure:nth-child(2) {
		grid-area: 2 / 14 / 9 / 21;
	}

	.slide--layout-4 .slide__figure:nth-child(3) {
		grid-area: 10 / 2 / 18 / 10;
	}

	.slide--layout-4 .slide__figure:nth-child(4) {
		grid-area: 11 / 12 / 21 / 18;
	}

	.slide--layout-5 .slide__figure:first-child {
		grid-area: 4 / 3 / 21 / 12;
	}

	.slide--layout-5 .slide__figure:nth-child(2) {
		grid-area: 3 / 12 / 18 / 19;
	} */

	/* .slide--current {
		pointer-events: auto;
		z-index: 999;
	}

	.slide__figure {
		width: auto;
		height: auto;
		max-width: none;
		margin: 0;
		will-change: transform;
		perspective: 1000px;
	}

	.slide__figure-inner {
		overflow: hidden;
		transform: rotate3d(0, 1, 0, 0.1deg);
		will-change: transform;
	}

	.slide__figure-img {
		z-index: 10;
		opacity: 1;
		will-change: transform;
	}

	.slide__figure-reveal {
		position: absolute;
		top: -1px;
		left: -1px;
		width: calc(100% + 2px);
		height: calc(100% + 2px);
		background: #F4F2EF;
		z-index: 20;
		will-change: transform;
	}

	.js .slide__figure-reveal {
		transform: translate3d(0, 0, 0);
	}

	.js .slide--current .slide__figure-reveal {
		transform: translate3d(100%, 0, 0);
	}

	.js .slide__figure-title {
		opacity: 0;
	}

	.js .slide--current .slide__figure-title {
		opacity: 1;
	}

	.js .slide__figure-description {
		opacity: 0;
	}

	.js .slide--current .slide__figure-description {
		opacity: 1;
	} */

	/* .slide__deco {
		position: absolute;
		font-size: 10vw;
		font-weight: bold;
		line-height: 1;
		overflow: hidden;
		perspective: 1000px;
		will-change: transform;
	}

	.slide__deco-inner {
		position: relative;
		display: block;
		will-change: transform;
		transform: rotate3d(0, 1, 0, 0.1deg);
	}

	.slide__deco--2 .slide__deco-inner {
		left: -50%;
	}

	.slide__deco--3 .slide__deco-inner {
		right: -50%;
	}

	.slide__deco--1 {
		bottom: 10vh;
		left: -2.65vw;
	}

	.slide__deco--2 {
		left: 50%;
		top: 7vh;
		font-size: 17vw;
	}

	.slide__deco--3 {
		right: 0;
		bottom: 10vh;
		font-size: 17vw;
	}

	.slide__number {
		display: block;
		position: absolute;
		bottom: 2.5rem;
	}

	.slide__number--left {
		left: calc(1rem + 10px);
		border: 1px solid var(--color-text-alt);
		border-radius: 50%;
		width: 40px;
		height: 40px;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.slide__number--right {
		right: calc(1rem + 10px);
		border: 1px solid var(--color-text-alt);
		border-radius: 50%;
		width: 40px;
		height: 40px;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.revealer {
		position: absolute;
		width: 100%;
		height: 100%;
		pointer-events: none;
		top: 0;
		left: 0;
		display: flex;
		z-index: 5000;
	}

	.revealer__item {
		width: 50%;
		height: 100%;
		position: relative;
		overflow: hidden;
	} */

	/* .revealer__item--right {
		border-left: 2px solid var(--color-link);
	} */

	/* .revealer__item--left {
		border-right: none;
	}

	.revealer__item-inner {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: #F4F2EF;
		transform: translate3d(100%, 0, 0);
	} */

	.arrow-nav {
		display: block;
		position: absolute;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		pointer-events: none;
		display: flex;
		align-items: center;
		justify-content: space-between;
		z-index: 4000;
		padding: 1.4rem;
	}

	.arrow-nav__item {
		pointer-events: auto;
		border: 0;
		padding: 0;
		margin: 0;
		background: none;
		color: var(--color-link-alt);
	}

	.arrow-nav__item:hover {
		color: var(--color-link-hover);
	}

	.arrow-nav__item--prev {
		visibility: hidden;
	}

	.arrow-nav__item--prev .icon {
		transform: rotate(180deg);
	}

	.icon--nav {
		pointer-events: none;
		transition: transform 0.2s;
	}

	.arrow-nav__item--next:hover .icon--nav {
		transform: translate3d(-2px, 0, 0);
	}

	.arrow-nav__item--prev:hover .icon--nav {
		transform: rotate(180deg) translate3d(-2px, 0, 0);
	}

	.nav__chapter {
		font-size: inherit;
		font-weight: normal;
		margin: 0;
		display: inline-block;
		line-height: 1;
	}
	
	.nav.right {
		display: block;
		position: absolute;
		top: 0;
		left: -80px;
	}
	
	.nav img {
		width: 150px;
	}
}


@media screen and (max-width: 1200px) {
	.slide__figure {
		height: unset;
		max-width: 100%;
	}
}



/* Custom */
.content-flex {
	display: flex;
	align-items: center;
	flex-direction: column;
}



/* Slide */
.slide__figure h2 {
	font-size: 3rem;
	font-weight: 300;
	color: var(--color-text-alt);
	/* border-bottom: 1px solid var(--color-text); */
}

.slide__figure h2.text-rotate {
	-webkit-transform: rotate(-90deg);
	-moz-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	-o-transform: rotate(-90deg);
}

.slide__figure ul.table-contents {
	padding-left: 0;
}

.slide__figure ul.table-contents li {
	padding: 15px 0;
	border-bottom: 1px dashed var(--color-text-alt);
}

.slide__figure ul.table-contents li a {
	font-size: 1.8rem;
	color: var(--color-text-alt);
}

.slide__figure ul.table-contents li a:hover,
.slide__figure ul.table-contents li a:focus {
	text-decoration: none;
	color: var(--color-text);
}



/* Projects */
.projects h2 {
	position: absolute;
    left: -300px;
    top: 40%;
	color: var(--color-text-alt);
	font-weight: 300;
	border-bottom: 1px solid var(--color-text-alt);
	padding-bottom: 20px;
}

.projects h4 {
	color: var(--color-text-alt);
}

@media screen and (max-width: 1200px) {
	.projects {
		padding: 20px 0;
	}

	.projects h4 {
		font-size: 1.2rem;
	}
}



/* About Us */
.about-us h1 {
	font-size: 4rem;
	font-weight: 300;
	color: var(--color-text-alt);
	text-transform: uppercase;
	letter-spacing: 3px;
}

/* .about-us h1 span {
	color: transparent;
	-webkit-text-stroke: 1px var(--color-text-alt);
  	-webkit-text-fill-color: transparent;
} */

.about-us h5 {
	font-size: 1.4rem;
	font-weight: 300;
	color: var(--color-text-alt);
	margin-bottom: 40px;
}

.about-us p {
	font-size: 1rem;
	font-weight: 300;
	color: var(--color-text-alt);
	margin-bottom: 40px;
}

.about-us .content-about {
	padding: 20px;
	border-left: 1px solid var(--color-text-alt);
}

@media screen and (max-width: 1200px) {
	.about-us {
		padding: 20px 0;
	}

	.about-us h1 {
		font-size: 3rem;
	}
}

@media screen and (max-width: 767px) {
	.about-us h1 {
		font-size: 2rem;
	}
}

@media screen and (max-width: 575px) {
	.about-us h1 {
		font-size: 1.5rem;
	}
}



/* About Us */
.contact-us h1 {
	font-size: 4rem;
	font-weight: 300;
	color: var(--color-text-alt);
	text-transform: uppercase;
	letter-spacing: 3px;
}

/* .contact-us h1 span {
	color: transparent;
	-webkit-text-stroke: 1px var(--color-text-alt);
  	-webkit-text-fill-color: transparent;
} */

.contact-us h5 {
	font-size: 1.4rem;
	font-weight: 300;
	color: var(--color-text-alt);
	margin-bottom: 40px;
}

.contact-us p {
	font-size: 1rem;
	font-weight: 300;
	color: var(--color-text-alt);
	margin-bottom: 40px;
}

.contact-us ul {
	list-style: none;
	padding-left: 0
}

.contact-us ul li {
	margin-bottom: 10px;
}

.contact-us ul li a {
	color: var(--color-text-alt);
	font-size: 1.2rem;
	font-weight: 400;
	cursor: pointer !important;
}

.contact-us ul li a:hover,
.contact-us ul li a:focus {
	color: var(--color-text);
	text-decoration: none !important;
}

.contact-us .content-contact {
	padding: 20px;
	border-left: 1px solid var(--color-text-alt);
}

@media screen and (max-width: 1200px) {
	.contact-us {
		padding: 20px 0;
	}

	.contact-us h1 {
		font-size: 3rem;
	}
}

@media screen and (max-width: 767px) {
	.contact-us h1 {
		font-size: 2rem;
	}
}


/* Cover */
.cover-area .cover-bg {
	position: relative;
}

.cover-area .cover-bg::before {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(244, 242, 239, 0.5);
}

.cover-area .cover-bg img {
	width: 400px;
}

.cover-area .cover-area-brand {
	position: absolute;
	content: '';
	top: 40%;
	left: 0;
	right: 0;
	margin: auto;
	display: flex;
	justify-content: center;
}

.cover-area .cover-area-brand img {
	width: 650px;
}

.cover-area-desc {
	position: absolute;
	content: '';
	top: -200px;
	left: 0;
	right: 0;
	margin: auto;
	width: 600px;
}

/* .dot-area-left {
	position: absolute;
	top: 50px;
	right: 10px;
}

.dot-area-right {
	position: absolute;
	top: 50px;
	left: 10px;
}

.dot-area-left ul,
.dot-area-right ul {
	list-style: none;
}

.dot-area-left ul li,
.dot-area-right ul li {
	margin-bottom: 30px;
}

.dot-area-left ul li i,
.dot-area-right ul li i {
	font-size: 20px;
	color: #FFF;
} */


@media screen and (max-width: 1200px) {
	.cover-area .cover-bg img {
		width: 400px;
	}

	.cover-area .cover-area-brand {
		flex-direction: column;
	}
	
	.cover-area .cover-area-brand img {
		width: 100%;
	}

	.cover-area .cover-area-brand h4 {
		font-size: 1rem;
		margin-top: 30px;
	}
	
	.cover-area-desc {
		position: relative;
		content: '';
		top: 0;
		width: 100%;
	}
}

@media screen and (max-width: 992px) {
	.cover-area .cover-bg img {
		width: 250px;
	}
}





/* Modals */
.modal .modal-dialog .modal-content {
	border-radius: 0;
	background-color: #F4F2EF;
}

.modal .modal-dialog .modal-content .modal-header {
	border-bottom: 0;
}

.modal .modal-dialog .modal-content .modal-header h5 {
	color: var(--color-link);
	font-weight: 400;
}

.modal .modal-dialog .modal-content .modal-footer {
	border-top: 0;
}



/* Buttons */
.btn--primary {
	background-color: var(--color-link);
	font-weight: 700;
	color: var(--color-text-alt);
	padding: 8px 20px;
	border: 2px solid var(--color-link);
	border-radius: 0;
}

.btn--primary:focus, 
.btn--primary:hover {
	background-color: transparent;
	transition: 0.3s;
	color: var(--color-link);
}

.btn--primary-outline {
	background-color: transparent;
	font-weight: 700;
	color: var(--color-text-alt);
	padding: 8px 20px;
	border: 2px solid var(--color-link);
	border-radius: 0;
}

.btn--primary-outline:focus, 
.btn--primary-outline:hover {
	background-color: var(--color-link);
	transition: 0.3s;
	color: var(--color-text-alt);
}



/* Services */
.service-title h2 {
	color: var(--color-text-alt);
	font-size: 1rem;
	font-weight: 600;
}
  
.service-categ {
    color: var(--color-text-alt);
	font-size: 1rem;
    font-weight: 400;
}
  
.cursor {
    position: absolute;
    width: 250px;
    height: 350px;
    top: 0;
    left: 50%;
    transform: scale(0.1);
    opacity: 0;
    margin: -30% 0 0 ;
    background-size: cover;
    z-index: 1;
}
  
.service {
    border-bottom: 1px solid var(--color-text-alt);
	width: 100%;
    height: 180px;
    padding: 20px 0;
    /* display: flex;
    align-items: center;
    justify-content: space-between;
    flex-basis: 1; */
    position: relative;
    z-index: 1;
}
  
.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
	display: none;
}

@media screen and (max-width: 1200px) {
	.service {
		width: 100%;
		height: unset;
	}

	.services {
		padding: 20px 0;
	}
}



/* Extras */
.client-logo {
	width: 100px;
	height: 100px;
	margin: auto;
	cursor: pointer;
	border-radius: 50%;
	overflow: hidden;
}

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

@media screen and (max-width: 575px) {
	.client-logo {
		width: 75px;
		height: 75px;
	}
}

hr {
	background-color: var(--color-text);
}



/* Gallery */
.gallery {
	display: flex;
	flex-flow: wrap;
}

.gallery-item {
	width: 32%;
	margin: 3px;
}

@media screen and (max-width: 767px) {
	.gallery-item {
		width: 110px;
		height: 110px;
		overflow: hidden;
	}
	
	.gallery-item img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
}

@media screen and (max-width: 575px) {
	.gallery-item {
		width: 100px;
		height: 100px;
	}
}



/* Contact Form */
.wpcf7 {
	max-width: 100% !important;
	margin: 0 !important;
	padding-top: 20px;
}

.wpcf7 label {
	margin-top: 15px;
}
	
.wpcf7 input {
	padding: 8px 0;
	font-size: 1rem;
	font-weight: 400 !important;
	color: var(--color-text); !important;
	background-color: transparent !important;
	border-radius: 0 !important;
	border: none !important;
	border-bottom: 1px solid var(--color-text-alt) !important;
	width: 100% !important;
}

.wpcf7 input:focus {
	box-shadow: none !important;
	border-bottom: 1px solid var(--color-text); !important;
	outline: none !important;
}

.wpcf7 input::placeholder {
	color: var(--color-text);
}

.wpcf7 textarea {
	font-weight: 300 !important;
	background-color: transparent !important;
	border-radius: 0 !important;
	border: none !important;
	border-bottom: 1px solid var(--color-text-alt) !important;
	padding: 8px 0 !important;
	width: 100% !important;
	height: 100px !important;
}

.wpcf7 textarea:focus {
	box-shadow: none !important;
	border-bottom: 1px solid var(--color-text) !important;
	outline: none !important;
}

.wpcf7-form-control.wpcf7-submit {
	background-color: var(--color-link-hover) !important;
	color: #FFF !important;
	padding: 10px !important;
	font-size: 1rem !important;
	font-weight: 700 !important;
	border: none !important;
	border-radius: 0 !important;
	width: 100% !important;
	height: 50px !important;
	margin-top: 30px !important;
}

.wpcf7-form-control.wpcf7-submit:hover,
.wpcf7-form-control.wpcf7-submit:focus {
	transition: 0.3s !important;
	background-color: var(--color-link) !important;
}



/* Extras */
.owl-dots {
	display: none !important;
}
