@font-face {
	font-family: "Serotiva";
	src: url("./fonts/Serotiva-Regular.eot");
	src: url("./fonts/Serotiva-Regular.eot?#iefix") format("embedded-opentype"), url("./fonts/Serotiva-Regular.woff2") format("woff2"), url("./fonts/Serotiva-Regular.woff") format("woff");
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Serotiva";
	src: url("./fonts/Serotiva-Bold.eot");
	src: url("./fonts/Serotiva-Bold.eot?#iefix") format("embedded-opentype"), url("./fonts/Serotiva-Bold.woff2") format("woff2"), url("./fonts/Serotiva-Bold.woff") format("woff");
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Serotiva";
	src: url("./fonts/Serotiva-Medium.eot");
	src: url("./fonts/Serotiva-Medium.eot?#iefix") format("embedded-opentype"), url("./fonts/Serotiva-Medium.woff2") format("woff2"), url("./fonts/Serotiva-Medium.woff") format("woff");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Serotiva";
	src: url("./fonts/Serotiva-SemiBold.eot");
	src: url("./fonts/Serotiva-SemiBold.eot?#iefix") format("embedded-opentype"), url("./fonts/Serotiva-SemiBold.woff2") format("woff2"), url("./fonts/Serotiva-SemiBold.woff") format("woff");
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Serotiva";
	src: url("./fonts/Serotiva-Italic.eot");
	src: url("./fonts/Serotiva-Italic.eot?#iefix") format("embedded-opentype"), url("./fonts/Serotiva-Italic.woff2") format("woff2"), url("./fonts/Serotiva-Italic.woff") format("woff");
	font-weight: normal;
	font-style: italic;
	font-display: swap;
}

:root {
	--color-primary: #000;
	--color-secondary: #fff;

	--color--text: #000;

	--font-primary: "Serotiva", sans-serif;
}

/* Utilities */

.color--primary {
	color: var(--color-primary) !important;
}

.color--secondary {
	color: var(--color-secondary) !important;
}

.color--tertiary {
	color: var(--color-tertiary) !important;
}

.bg--primary {
	background-color: var(--color-primary) !important;
}

.bg--secondary {
	background-color: var(--color-secondary) !important;
}

.bg--tertiary {
	background-color: var(--color-tertiary) !important;
}

.font--primary {
	font-family: var(--font-primary) !important;
}

.weight--medium {
	font-weight: 500 !important;
}

.weight--regular {
	font-weight: 400 !important;
}

/* General */
body {
	font-family: var(--font-primary);
	color: var(--color-primary);
	font-size: 1.125rem;
	cursor: none;
}

a,
a:focus,
a:hover {
	outline: none;
	cursor: none;
}

[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled),
button:not(:disabled) {
	cursor: none;
}

p {
	margin-bottom: 1.5rem;
}

/* Bootstrap button's */

.btn {
	border-radius: 35px;
	padding: 0.775rem 1.8rem 0.675rem;
	letter-spacing: 1.5px;
	text-transform: uppercase;
}

.btn-primary {
	background-color: var(--color-primary);
	border-color: var(--color-primary);
	color: var(--color-secondary);
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	font-size: 0.8rem;
	position: relative;
	/* filter: url("#goo"); */
}

.btn-primary::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	border-radius: 35px;
	background: #000;

	z-index: -1;
}

.btn-close {
	--bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
}

.btn-primary svg,
.btn-outline-secondary svg {
	margin: -2px 0 0 0.5rem;
}

.btn-primary:hover {
	background-color: var(--color-secondary);
	border-color: var(--color-primary);
	color: var(--color-primary);
}

.btn-link {
	color: var(--color-primary);
	text-decoration: none;
	font-weight: 400;
	letter-spacing: 1.5px;
	text-transform: uppercase;
}

.btn-secondary {
	background-color: var(--color-secondary);
	border-color: var(--color-secondary);
	color: var(--color-primary);
	text-transform: uppercase;
	font-size: 0.8rem;
}

.btn-secondary:hover {
	background-color: var(--color-primary);
	border-color: var(--color-primary);
	color: var(--color-secondary);
}

.btn-outline-primary {
	background-color: var(--color-primary);
	border-color: var(--color-primary);
	color: var(--color-primary);
}

.btn-outline-primary:hover {
	background-color: var(--color-secondary);
	border-color: var(--color-secondary);
	color: var(--color-secondary);
}

.btn-outline-secondary {
	background-color: transparent;
	border-color: var(--color-secondary);
	color: var(--color-secondary);
}

.btn-outline-secondary:hover {
	background-color: var(--color-secondary);
	border-color: var(--color-secondary);
	color: var(--color-primary);
}

.btn-outline-secondary svg {
	stroke: #fff;
}

.btn-outline-secondary:hover svg {
	stroke: var(--color-primary);
}

.btn-header {
	background: none;
	border: 1px solid #fff;
	transition: none;
	font-size: 0.8rem;
	text-transform: none;
}

.btn-header:hover {
	background: none;
	border-color: #fff;
	color: #fff !important;
}

.header--scrolled .btn-header:hover {
	background: none;
	border-color: var(--color-primary);
	color: var(--color-primary) !important;
}

.single .btn-header:hover {
	color: var(--color-primary) !important;
}

/* HEADER */

.header {
	position: absolute;
	top: 0;
	width: 100%;
	color: var(--color-secondary);
	z-index: 2;
	padding: 2rem;
}

.navbar-toggler {
	border: none;
	outline: none;
	padding: 0.375rem;
}

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

.navbar {
	--bs-navbar-toggler-icon-bg: none;
}

.navbar-toggler-icon svg {
	fill: #fff;
}

.offcanvas {
	flex-direction: row;
	align-items: center;
}

.offcanvas.offcanvas-start {
	width: 100%;
}

.navbar-brand {
	color: var(--color-secondary);
	font-size: 2rem;
	display: flex;
}

.navbar-brand svg {
	margin-right: 1.2rem;
	overflow: visible;
	max-width: 230px;
	width: 100%;
	fill: #fff;
}

.single .navbar-brand svg {
	fill: #000;
}

/* .navbar-brand .cls-1 {
	fill: #fff;
}

.navbar-brand .cls-2 {
	fill: none;
	stroke: #fff;
	stroke-miterlimit: 10;
	stroke-width: 1.4px;
}

.single .navbar-brand svg .cls-1 {
	fill: var(--color-primary);
}

.single .navbar-brand svg .cls-2 {
	stroke: var(--color-primary);
}
 */
.category-filter__item .btn {
	font-size: 0.9rem;
	position: relative;
}

.category-filter__item .btn:hover,
.category-filter__item .btn.active {
	color: var(--color-primary);
}

.category-filter__item .btn.active::before {
	content: "";
	position: absolute;
	left: 0.3rem;
	top: 50%;
	transform: translateY(-50%);
	width: 7px;
	height: 7px;
	background-color: var(--color-primary);
	border-radius: 50%;
	transition: all ease 0.4s;
}

.category-filter {
	margin-bottom: 4rem;
}

#headerlogo {
	width: 60px;
	height: auto;
}

#header-logo-text {
	width: 100px;
}

.header .menu-item a {
	color: var(--color-secondary);
	text-transform: uppercase;
	font-weight: 400;
	text-decoration: none;
	letter-spacing: 1.5px;
	display: block;
	padding: 1rem 2rem;
	position: relative;
	font-size: 0.8rem;
}

/* .current_page_item a::before,
.current-menu-item a::before,
.single-spaces .menu-item-object-spaces a::before {
	content: "";
	position: absolute;
	left: 0.6rem;
	top: 50%;
	transform: translateY(-50%);
	width: 7px;
	height: 7px;
	background-color: var(--color-secondary);
	border-radius: 50%;
	transition: all ease 0.4s;
}

.single-spaces .menu-item-object-spaces a::before {
	background-color: var(--color-primary);
}

.header--scrolled .current_page_item a::before,
.header--scrolled .current-menu-item a::before {
	background-color: var(--color-primary);
} */

.header .menu-item.current_page_item a,
.header .menu-item.current-menu-item a,
.footer .current_page_item a,
.footer .current-menu-item a,
.single-spaces .menu-item-object-spaces a {
	font-weight: 700;
}

.single .navbar-brand,
.single .menu-item a {
	color: var(--color-primary);
}

.single .btn-header {
	border-color: var(--color-primary);
	color: var(--color-primary);
}

/* SECTION */

.section:last-of-type {
	margin-bottom: 20vh;
}
.section,
.section:first-of-type {
	margin-bottom: 45vh;
}

.section-video {
	color: var(--color-secondary);
}

.section-video__intro {
	font-size: 1.125rem;
	font-weight: 500;
}

.section-video h1 {
	font-size: 5rem;
	line-height: 0.95;
	margin-bottom: 2rem;
}

.btn-scroll {
	text-transform: uppercase;
	color: #fff;
	font-weight: 500;
	letter-spacing: 1.5px;
	font-size: 0.8rem;
	transform: translateY(-100%);
	position: absolute;
	top: 0;
	left: 0;
}

.section-content {
	color: var(--color-primary);
	padding: 7rem 4rem;
	position: relative;
	z-index: 3;
	margin-top: 10rem;
}

.section-content.lastsection {
	margin-top: 0;
}

.section-people {
	padding-bottom: 10rem;
}

.video-wrapper {
	position: relative;
	width: 100%;
	overflow: visible;
	min-height: 70vh;
	padding-top: 30vh;
}

.parallax-element {
	position: fixed;
	width: 100vw;
	height: 100vh;
	z-index: -1;
}
.parallax-element img,
.parallax-element video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.video-wrapper__content {
	position: relative;
	width: 100%;
	padding: 0rem 9%;
}

.overlay {
	position: relative;
}

.parallax-element.overlay {
	position: fixed;
}

.overlay::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(45, 42, 42, 0.48);
	z-index: 3;
}

.overlay.overlay--gray::after {
	background-color: rgba(96, 96, 96, 0.3);
}

.mid-section {
	height: 50vh;
}

.section-parallax {
	height: 200vh;
	position: fixed;
	width: 100%;
	transform: translate(0, -50%);
	z-index: 1;
}

.section-parallax img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* GRID masonry */

.grid-item,
.grid-sizer {
	width: 16.666666%;
}

.post-type-archive-spaces .grid-sizer,
.post-type-archive-spaces .grid-item {
	width: 25%;
	aspect-ratio: auto !important;
}

.grid-item.size-big {
	width: 33.333333%;
}

.grid-item.size-huge {
	width: 50%;
}

.grid-item {
	padding: 0.4rem;
}

.grid-item:not(.text-item):not(.grid-full) {
	aspect-ratio: 1 / 1.5;
}

.grid-item.size-big:not(.text-item) {
	aspect-ratio: 1 / 1.16;
}

.grid-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.space-bottom {
	margin-bottom: 13.6%;
}

/* .space-top {
	margin-top: 13.6%;
} */

.grid-item {
	position: relative;
	overflow: hidden;
}

.grid-item.grid-full {
	width: 100%;
	padding: 0;
}

.grid-item.text-item {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--color-secondary);
	color: var(--color-primary);
	text-align: center;
	padding: 1rem;
}

.grid-item__title {
	font-size: 0.9rem;
	text-transform: uppercase;
	margin: 1.2rem 0;
	position: absolute;
	left: 1.6rem;
	top: 0.4rem;
	color: #fff;
	font-weight: 700;
	z-index: 3;
}

.grid-item a {
	color: var(--color-primary);
	text-decoration: none;
	font-weight: 600;
	letter-spacing: 1.5px;
}

.text-item {
	min-height: 250px;
}

.text-item h2 {
	font-size: 5rem;
	font-weight: 600;
	text-transform: uppercase;
	margin: 0;
	line-height: 0.9;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}

.text-item h2 small {
	font-size: 1.3rem;
	font-weight: 400;
	letter-spacing: 1.5px;
	display: block;
	line-height: 1;
	flex: 1;
}

small.w-100.flex-fill {
	text-align: center;
}

.text-item span {
	display: block;
	white-space: nowrap;
	text-align: center;
}

.grid-item.text-item.size-huge small {
	display: block;
}

.space-item {
	position: relative;
}

.video-link {
	position: absolute;
	top: 1rem;
	right: 1rem;
	opacity: 0;
	transform: translate(100%, 0);
	z-index: 10;
}

.space-item:hover .video-link {
	opacity: 1;
	transform: translate(0, 0);
	transition: all ease 0.3s;
}

.space-item .space-metas {
	font-size: 0.9rem;
	padding: 1.2rem 1rem;
	opacity: 0;
}

.space-item:hover .space-metas {
	opacity: 1;
	transition: opacity ease 0.3s;
}

.space-item .space-metas span {
	padding: 0.4rem 1rem;
}

.space-item img {
	width: 100%;
	height: auto;
}

.space-item::after {
	content: "";
	position: absolute;
	top: 0.4rem;
	left: 0.4rem;
	right: 0.4rem;
	height: 50%;
	background: #000;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.44) 0%, rgba(237, 221, 83, 0) 100%);
	transition: opacity ease 0.3s;
	z-index: 0;
	display: block;
}

/* SINGLE SPACE */

.single .stroke-black {
	stroke: #000;
}

.single-page__section {
	padding-top: 7rem;
}

.single-page__title {
	font-size: 5.3rem;
	font-weight: 600;
	margin-bottom: 2rem;
	line-height: 0.8;
}

.single-page__text {
	column-count: 2;
	column-gap: 7rem;
}

.space-tags {
	break-inside: avoid;
}

.space-tags ul {
	padding: 0;
	margin: 1rem 0;
	flex-wrap: wrap;
}

.space-tags li {
	list-style: none;
	position: relative;
}

.space-tags li::before {
	content: "";
	background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjIwIiBoZWlnaHQ9IjIyMyIgdmlld0JveD0iMCAwIDIyMCAyMjMiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik00OS4zNCAwQzIyLjEyMSAwIDAgMjIuMzUwNiAwIDQ5Ljg1MjNDMCA3Ny4zNTM5IDIyLjEyMSA5OS43MDQ1IDQ5LjM0IDk5LjcwNDVDNzYuNTU5MSA5OS43MDQ1IDk4LjY4IDc3LjM1MzkgOTguNjggNDkuODUyM0M5OC42OCAyMi4zNTA2IDc2LjU1OTEgMCA0OS4zNCAwWiIgZmlsbD0iYmxhY2siLz4KPHBhdGggZD0iTTE3MC42NTkgMEMxNDMuNDQgMCAxMjEuMzE5IDIyLjM1MDYgMTIxLjMxOSA0OS44NTIyQzEyMS4zMTkgODkuNDAyMyA4OS45NTI2IDEyMS42MTkgNTAuOTgxOCAxMjIuNDkyQzUwLjQ2MzMgMTIyLjQ5MiA1MC4yMDQxIDEyMi42NjYgNDkuNTEyOCAxMjIuNTc5QzIyLjEyMDkgMTIyLjU3OSAwIDE0NC45MjkgMCAxNzIuNDMxQzAgMTk5LjkzMyAyMi4xMjEgMjIyLjI4MyA0OS4zNCAyMjIuMjgzQzc2LjU1OTEgMjIyLjI4MyA5OC42OCAxOTkuOTMzIDk4LjY4IDE3Mi40MzFDOTguNjggMTcxLjY0NSA5OC43NjY0IDE3MC45NDcgOTguOTM5MiAxNzAuMjQ4QzEwMC4wNjMgMTMxLjgzMyAxMzAuOTExIDEwMC44MzkgMTY4LjkzMSA5OS44NzkxQzE2OS40NSA5OS43OTE4IDE3MC4wNTQgOTkuNzA0NSAxNzAuNTczIDk5LjcwNDVDMTk3Ljc5MiA5OS43MDQ1IDIxOS45MTMgNzcuMzUzOSAyMTkuOTEzIDQ5Ljg1MjJDMjE5LjkxMyAyMi4zNTA2IDE5Ny43OTIgMCAxNzAuNTczIDBIMTcwLjY1OVoiIGZpbGw9ImJsYWNrIi8+CjxwYXRoIGQ9Ik0xNzAuNjYgMTIyLjU3OEMxNDMuNDQxIDEyMi41NzggMTIxLjMyIDE0NC45MjggMTIxLjMyIDE3Mi40M0MxMjEuMzIgMTk5LjkzMiAxNDMuNDQxIDIyMi4yODIgMTcwLjY2IDIyMi4yODJDMTk3Ljg3OSAyMjIuMjgyIDIyMCAxOTkuOTMyIDIyMCAxNzIuNDNDMjIwIDE0NC45MjggMTk3Ljg3OSAxMjIuNTc4IDE3MC42NiAxMjIuNTc4WiIgZmlsbD0iYmxhY2siLz4KPC9zdmc+Cg==");
	width: 16px;
	height: 16px;
	background-repeat: no-repeat;
	background-size: contain;
	margin-right: 1rem;
	background-attachment: scroll;
	background-position: 0 0;
	display: inline-block;
	margin-bottom: -4px;
}

.spaces-navigation {
	margin: 4rem;
}

.space-metas {
	font-weight: 300;
}

.space-metas-list {
	font-size: 0.8rem;
}

.space-gallery {
	margin: 8rem 0 0;
}

.space-gallery__slider {
	display: flex;
	flex-wrap: nowrap;
	overflow-x: clip;
}

.space-gallery__slide {
	aspect-ratio: 480 / 319;
	padding: 0.2rem;
	flex: 1;
	min-width: 20%;
}

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

.article-fifty {
	padding: 2rem 0rem;
	margin: 0 auto;
}

.article-fifty p {
	font-size: 1.125rem;
}

.article-fifty .display-3 {
	margin-top: 5rem;
}

.display-3 {
	font-size: 2.7rem;
	font-weight: 500;
}

.cta-block {
	padding: 3rem;
}

.cta-block .display-3 {
	line-height: 1;
	margin-bottom: 1.5rem;
}

.cta-block p {
	max-width: 81%;
	margin-left: auto;
	margin-right: auto;
}

.cta-block small {
	letter-spacing: 1.5px;
	font-weight: 600;
}

.aspect-ratio-1 {
	aspect-ratio: 1 / 1;
}

.single .single-page__image {
	aspect-ratio: 2 / 0.7;
	width: 100%;
	margin-top: 7rem;
}

.single-page__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* ABOUT */

.article__team {
	overflow: visible;
}

.team-slider {
	display: flex;
	flex-wrap: nowrap;
	padding-left: 4rem;
}

.team-slider__info {
	position: absolute;
	top: 1rem;
	left: 1rem;
	right: 1rem;
	bottom: 1rem;
	display: flex;
	flex-direction: column;
	background: #000;
	transform: scale(0);
	color: #fff;
	padding: 1rem;
	text-align: center;
	font-size: 0.8rem;
}

.team-slider__info-name {
	font-size: 2rem;
}

.team-slider__item {
	padding: 0 0.3rem;
	flex: 1;
	min-width: 25%;
	position: relative;
	transform-origin: 50% 0;
}

.team-slider__photo {
	aspect-ratio: 300/411;
	position: relative;
	overflow: hidden;
}

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

.team-slider .slick-track {
	display: flex;
}

.team-slider .slick-slide {
	flex: 1;
}

/* FOOTER */

.footer {
	background: var(--color-secondary);
	padding: 3rem 3rem 1rem;
	font-weight: 600;
	font-size: 0.9rem;
}

.footer-row {
	margin-bottom: 7rem;
}

.copyright-row {
	font-size: 0.8rem;
	color: #a1a1aa;
	font-weight: 400;
}

.copyright-row a {
	color: #a1a1aa !important;
	text-decoration: none;
	text-transform: none;
	font-weight: 400;
}

.list-separated li {
	position: relative;
	padding: 0 0.6rem;
}

.list-separated li:not(:last-child)::after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 20px;
	background: #a1a1aa;
}

.footerlogo {
	width: 100%;
	height: auto;
	max-width: 220px;
	position: relative;
}

/* #footerlogo .path {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

#footer-logo-wrapper {
	position: absolute;
	left: 0;
	bottom: 0;
	top: 0;
	right: 0;
} */

.footer-title {
	text-transform: uppercase;
	font-size: 0.8rem;
	color: #a1a1aa;
	margin-bottom: 1.4rem;
}

.footer a {
	color: var(--color-primary);
	text-decoration: none;
	font-weight: 600;
	font-size: 0.8rem;
}

.footer .menu-item a,
.footer span {
	font-size: 0.8rem;
}

.footer a {
	position: relative;
}

.footer ul a::before,
.single-spaces .footer .menu-item-object-spaces a::before {
	left: -1rem;
	background: var(--color-primary);
}

.social-list {
	margin: 0 -0.7rem;
}

.social-list__item {
	padding: 0 0.7rem;
}

.social-list__link:hover,
.social-list__link:hover svg {
	color: var(--color-primary);
	fill: var(--color-primary);
}

#map {
	height: 70vh;
	margin-top: 3rem;
}

.gm-style img {
	max-width: 100%;
	object-fit: cover;
}

.gm-style .card-img-top {
	aspect-ratio: 16/9;
}

.gm-style .card {
	border: none;
}

.img-holder {
	position: relative;
}

.space-metas {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	display: flex;
	padding: 0.5rem;
	justify-content: center;
}

.space-metas span {
	display: block;
	padding: 0.5rem;
	background: #fff;
	color: #000;
	text-transform: uppercase;
	margin: 0 0.3rem;
	border-radius: 50px;
}

.cursor-effect {
	position: fixed;
	z-index: 9999999999;
	top: 0;
	left: 0;
	width: 25px;
	height: 25px;
	border-radius: 50%;
	background: #fff;
	display: block;
	opacity: 1;
	pointer-events: none;
	margin: -12.5px 0 0 -12.5px;
	mix-blend-mode: difference;
}

.cursor-shadow {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	transform: translate(-50%, -50%);
	background: #fff;
	border-radius: 50%;
	width: 25px;
	display: block;
	height: 25px;
	filter: url("#goo");
}

.cursor-effect span {
}

.cursor-effect.hovered {
	transform: scale(1.5);
}

.filtergoo {
	filter: url("#goo");
}

/* RESPONSIVE */

@media (max-width: 1799.98px) {
	.section-video h1 {
		font-size: 5.4rem;
	}

	.team-slider__item {
		min-width: 33.333333%;
	}
}

/* `xxl` applies to x-large devices (large desktops, less than 1400px)*/
@media (max-width: 1399.98px) {
	.video-wrapper__content {
		padding: 0rem 4rem;
	}

	.section-video h1 {
		font-size: 4.4rem;
	}

	.section-content {
		padding: 6rem 1rem;
	}

	.grid-item.text-item {
		padding: 2.3rem;
	}

	.text-item h2 {
		font-size: 4rem;
	}

	.text-item h2 small {
		font-size: 1.4rem;
	}

	.post-type-archive-spaces .grid-sizer,
	.post-type-archive-spaces .grid-item {
		width: 33.333333%;
	}

	.team-slider__item {
		min-width: 30%;
	}
}
/* `xl` applies to large devices (desktops, less than 1200px)*/
@media (max-width: 1199.98px) {
	html {
		font-size: 16px;
	}

	.section-video__intro {
		font-size: 1rem;
	}

	.section-video h1 {
		font-size: 3.6rem;
	}

	.navbar-brand {
		font-size: 1.3rem;
	}

	.menu-item a {
		font-size: 0.9rem;
		padding: 0.5rem 1rem;
		letter-spacing: 0;
	}

	.btn-header {
		border-color: #fff !important;
	}

	.header {
		padding: 1rem;
	}

	.footer {
		padding: 4rem 2rem;
	}

	.team-slider__info {
		font-size: 0.8rem;
	}

	.btn-link {
		padding: 1rem 0.8rem;
	}

	.category-filter__item .btn.active::before {
		left: 0;
	}

	.team-slider__item {
		min-width: 45%;
	}
}

/* `lg` applies to medium devices (tablets, less than 992px)*/
@media (max-width: 991.98px) {
	.offcanvas {
		flex-direction: column;
		align-items: initial;
		background: var(--color-primary);
	}

	.offcanvaslogo {
		font-size: 2rem;
		color: #fff;
		text-decoration: none;
		fill: #fff;
		max-width: 230px;
	}

	.offcanvas-header {
		padding: 1.1rem 2.1rem;
	}

	.header .menu-item a {
		margin: 0 1.2rem;
		color: #fff !important;
		font-size: 1.4rem;
		border-bottom: 1px solid rgba(255, 255, 255, 0.3);
		padding: 1rem 0;
	}

	.footer .menu-item a {
		color: var(--color-primary) !important;
		display: block;
		padding: 0.3rem 1rem;
	}

	.grid-item,
	.grid-sizer {
		width: 25%;
	}

	.post-type-archive-spaces .grid-sizer,
	.post-type-archive-spaces .grid-item {
		width: 50%;
		aspect-ratio: auto !important;
	}

	.grid-item.size-big {
		width: 50%;
	}

	.grid-item.size-huge {
		width: 50%;
	}

	.team-slider__info-name {
		font-size: 1.5rem;
	}
	.footerlogo {
		margin-bottom: 3rem;
		max-width: 100px;
	}

	.social-list {
		margin-bottom: 3rem;
	}

	.footer-row {
		margin-bottom: 2rem;
	}

	.copyright {
		display: block;
		padding-top: 1.5rem;
		border-top: 1px solid #000;
	}

	.list-separated li {
		padding: 0;
		margin-bottom: 0.5rem;
	}

	.list-separated li::after {
		display: none;
	}

	.space-gallery {
		margin-top: 0;
	}

	.space-gallery__slide {
		min-width: 100%;
	}

	.single .single-page__image {
		aspect-ratio: auto;
		padding: 0.2rem;
	}

	.space-gallery__slider {
		flex-wrap: wrap;
		overflow: auto;
	}

	.btn-s {
		padding: 1rem;
	}

	.single-page__title {
		font-size: 3.6rem;
	}

	.space-metas-list li {
		flex: 1;
		text-align: center;
		font-size: 0.8rem;
	}
}

/*`md` applies to small devices (landscape phones, less than 768px)*/
@media (max-width: 767.98px) {
	.video-wrapper__content {
		padding: 0 1rem;
	}
	.section-video h1 {
		font-size: 2.3rem;
	}

	.section-content {
		padding: 1rem 0;
	}

	.team-slider__info {
		font-size: 0.9rem;
	}

	.section,
	.section:first-of-type {
		margin-bottom: 0;
	}

	.display-5 {
		font-size: calc(1.225rem + 2.1vw);
	}

	.article-fifty {
		padding: 0;
	}

	.article-fifty p {
		font-size: 1rem;
	}

	.display-3 {
		font-size: 2rem;
	}

	.cta-block {
		padding: 1rem;
	}

	.team-slider {
		padding: 0;
		display: block;
	}

	.team-slider__item {
		min-width: 100%;
		margin-bottom: 1rem;
	}

	.video-wrapper {
		margin-bottom: 20vh;
	}

	.spaces-navigation {
		margin: 2rem 0;
	}

	.single-page__text {
		column-count: 1;
	}

	body,
	a,
	a:focus,
	a:hover,
	[type="button"]:not(:disabled),
	[type="reset"]:not(:disabled),
	[type="submit"]:not(:disabled),
	button:not(:disabled) {
		cursor: auto;
	}
	.cursor-effect {
		display: none;
	}

	.space-bottom {
		margin-bottom: 0;
	}

	.gridsection {
		padding: 0 !important;
	}

	.gridsection .container-fluid {
		padding-left: 0;
		padding-right: 0;
	}

	.grid-item {
		padding: 0.2rem;
	}

	.cta-block p {
		max-width: 100%;
	}
}

/* `sm` applies to x-small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {
	.grid-item,
	.grid-sizer .post-type-archive-spaces .grid-sizer,
	.post-type-archive-spaces .grid-item,
	.grid-item.size-big,
	.grid-item.size-huge {
		width: 100%;
	}

	.footer {
		padding: 4rem 1rem;
	}
}

/* PRINT */
@media print {
	* {
		background: transparent !important;
		color: #000 !important;
		box-shadow: none !important;
		text-shadow: none !important;
	}
	a,
	a:visited {
		text-decoration: underline;
	}
	a[href]:after {
		content: " (" attr(href) ")";
	}
	abbr[title]:after {
		content: " (" attr(title) ")";
	}
	.ir a:after,
	a[href^="javascript:"]:after,
	a[href^="#"]:after {
		content: "";
	}
	pre,
	blockquote {
		border: 1px solid #999;
		page-break-inside: avoid;
	}
	thead {
		display: table-header-group;
	}
	tr,
	img {
		page-break-inside: avoid;
	}
	img {
		max-width: 100% !important;
	}
	@page {
		margin: 0.5cm;
	}
	p,
	h2,
	h3 {
		orphans: 3;
		widows: 3;
	}
	h2,
	h3 {
		page-break-after: avoid;
	}
}
