/*
Theme Name: Residenze Vesta
Author: Neiko srl
Author URI: http://www.neiko.it/
Description: Residenze Vesta - 2025
Version: 1.0
License: GNU General Public License v2 or later
*/

/*  FONTS e COLORI */
:root {
	--1000: rgba(52, 49, 46, 1);
	--900: rgba(97, 92, 86, 1);
	--800: rgba(170, 151, 125, 1);
	--700: rgba(191, 171, 151, 1);
	--500: rgba(194, 162, 110, 1);
	--300: rgba(221, 193, 137, 1);
	--200: rgba(245, 235, 218, 1);
	--0: rgba(250, 250, 250, 1);

	--font: avenir-next-lt-pro, sans-serif;
	--font-weight-regular: 400;
	/* Regular */
	--font-weight-medium: 500;
	/* Regular */
	--font-weight-bold: 700;
	/* Bold */
}

@view-transition {
	navigation: auto;
}

/* GENERAL */
html,
body {
	margin: 0;
	padding: 0;
	background-color: var(--0);
	color: var(--1000);
	font-family: var(--font);
	font-weight: var(--font-weight-regular);
	font-size: clamp(17px, 1.042vw, 20px);
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	-o-font-smoothing: antialiased;
}

@media (max-width: 991.98px) {
	.container-fluid {
		padding-left: var(--70);
		padding-right: var(--70);
	}

	.no-padding {
		margin-left: calc(-1 * var(--70));
		margin-right: calc(-1 * var(--70));
	}
}

@media (max-width: 575.98px) {
	.container-fluid {
		padding-left: var(--50);
		padding-right: var(--50);
	}

	.no-padding {
		margin-left: calc(-1 * var(--50));
		margin-right: calc(-1 * var(--50));
	}
}

img,
a img {
	border: none !important;
}

::-moz-selection {
	background: none repeat scroll 0 0 var(--500);
	color: var(--1000);
}

* {
	outline: 0 !important;
}

b,
strong,
.bold {
	font-weight: var(--font-weight-bold);
}

a {
	text-decoration: none;
	color: var(--500);
	position: relative;

	&:hover {
		text-decoration: none;
		color: var(--500);
	}

	&.white {
		color: var(--0);
	}

	&.white:hover {
		color: var(--0);
	}

	&.dark {
		color: var(--900);
	}

	&.dark:hover {
		color: var(--1000);
	}

	&::after {
		content: "";
		position: absolute;
		bottom: -3px;
		right: 0;
		width: 0;
		height: 1px;
		background-color: var(--500);
		transition: 0.6s cubic-bezier(0.79, 0.14, 0.15, 0.86);
	}

	&:hover::after {
		width: 100%;
		left: 0;
		right: unset;
	}

	&.no-decoration::after {
		display: none;
	}
}

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

/* COLORI */

.cream-bg {
	background-color: var(--200);
}

.gold-bg {
	background-color: var(--500);
}

.white-bg {
	background-color: var(--0);
}

.dark-bg {
	background-color: var(--1000);
}

.gradient-bg {
	background: linear-gradient(180deg, var(--800) 0%, var(--200) 100%);
}

.white-to-cream-bg {
	background: linear-gradient(180deg, var(--0) 0%, var(--200) 100%);
}

.va-decoration {
	position: relative;

	&::before {
		content: "";
		width: clamp(6.75rem, 14.115vw, 13.55rem);
		height: 100%;
		background-image: url("images/v-decoration.svg");
		background-size: contain;
		background-position: center center;
		background-repeat: no-repeat;
		position: absolute;
		top: 0;
		left: 0;
	}

	&::after {
		content: "";
		width: clamp(6.75rem, 14.115vw, 13.55rem);
		height: 100%;
		background-image: url("images/a-decoration.svg");
		background-size: contain;
		background-position: center center;
		background-repeat: no-repeat;
		position: absolute;
		top: 0;
		right: 0;
		z-index: 0;
	}

	& .z-index {
		z-index: 10;
	}

	@media (max-width: 991.98px) {
		&::before {
			display: none;
		}

		&::after {
			display: none;
		}
	}
}

.flame-decoration {
	position: relative;
	&::before {
		content: "";
		position: absolute;
		top: 0;
		left: 50%;
		transform: translate(-50%, -50%);
		width: clamp(1.375rem, 2.865vw, 2.75rem);
		height: clamp(2.775rem, 5.781vw, 5.55rem);
		background-image: url("images/flame-decoration.svg");
		background-size: contain;
		background-position: center center;
		background-repeat: no-repeat;
	}
}

/* COMPONENTI */

.button-primary {
	display: inline-flex;
	flex-direction: row;
	flex-wrap: nowrap;
	padding: 5px 5px 5px 15px;
	gap: 10px;
	background-color: var(--500);
	align-items: center;
	color: var(--0);
	transition: 0.3s;
	text-decoration: none;
	border-radius: 50px;
	font-weight: var(--font-weight-bold);
	text-transform: uppercase;

	& .button-icon {
		padding: 10px;
		aspect-ratio: 1 / 1;
		font-size: 16px;
		color: var(--1000);
		background-color: var(--0);
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 50%;

		& i {
			font-size: 16px;
			color: var(--1000);
		}
	}

	&:hover {
		background-color: var(--1000);
		text-decoration: none;
		color: var(--0);
	}

	&:focus-visible {
		outline: 2px solid var(--300) !important;
		outline-offset: 2px;
		text-decoration: none;
	}

	&::after {
		display: none;
	}

	@media (max-width: 575.98px) {
		font-size: 16px;
	}
}

/* TYPO */

.big {
	font-size: 1.1rem;
}

.small {
	font-size: clamp(0.8rem, 0.833vw, 0.8rem);
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
	font-family: var(--font);
	font-weight: var(--font-weight-medium);
	color: var(--1000);
}

h1,
.h1 {
	/*
	font-size: clamp(1.750rem, 2.604vw, 2.500rem);
	line-height: clamp(1.900rem, 2.865vw, 2.750rem);
	*/
	font-size: clamp(2.2rem, 3.385vw, 3.25rem);
	line-height: clamp(2.4rem, 3.646vw, 3.5rem);
}

h2,
.h2 {
	font-size: clamp(1.4rem, 1.875vw, 1.8rem);
	line-height: clamp(1.6rem, 2.083vw, 2rem);
}

h3,
.h3 {
	font-size: clamp(1.2rem, 1.458vw, 1.4rem);
	line-height: clamp(1.3rem, 1.563vw, 1.5rem);
}

h4,
.h4 {
	font-size: clamp(1rem, 1.042vw, 1rem);
}

h5,
.h5 {
	font-size: clamp(0.9rem, 0.938vw, 0.9rem);
	letter-spacing: clamp(0.225rem, 0.234vw, 0.225rem);
	color: var(--900);
}

i {
	font-style: normal;

	&.gold-text {
		color: var(--500);
	}

	&.white-text {
		color: var(--0);
	}

	&.dark-text {
		color: var(--1000);
	}
}

.gold-text {
	color: var(--500);
}

.white-text {
	color: var(--0);
}

.dark-text {
	color: var(--1000);
}

/* ANIMAZIONE TESTI */

.animated-text {
	overflow: hidden;
	display: block;
}

.animated-text span {
	display: inline-block;
	transform: translateY(100%);
	opacity: 0;
	transition: transform 1.5s cubic-bezier(0.08, 0.82, 0.17, 1),
		opacity 1s cubic-bezier(0.08, 0.82, 0.17, 1);
}

.animated-text.visible span {
	transform: translateY(0);
	opacity: 1;
}

/* LOADER */

#loader {
	position: fixed;
	width: 100%;
	height: 100%;
	background: var(--200);
	z-index: 9999;
	display: flex;
	justify-content: center;
	align-items: center;
}

.loader-inner {
	border: 8px solid var(--300);
	/* Colore di sfondo del loader */
	border-top: 8px solid var(--500);
	/* Colore del loader */
	border-radius: 50%;
	width: 50px;
	height: 50px;
	animation: spin 1s linear infinite;
}

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

	100% {
		transform: rotate(360deg);
	}
}

/* HEADER */

#header {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
	padding-top: var(--30);
	color: var(--0);

	@media (max-width: 991.98px) {
		transition: 0.3s;
		overflow: hidden;

		&.background {
			background-color: var(--900);
			height: 100vh;
		}
	}

	.page-template-page-contatti & {
		color: var(--900);
	}
}

.navbar-nav {
	padding-top: var(--30);
	gap: var(--50);

	@media (max-width: 991.98px) {
		padding-top: 0;
		padding-bottom: var(--150);
		height: 100dvh;
		justify-content: center;
		align-items: center;
	}
}

.navbar-brand {
	text-decoration: none !important;
	color: var(--0);
	.page-template-page-contatti & {
		color: var(--900);
	}

	& svg {
		height: clamp(9rem, 14.583vw, 14rem);
		width: auto;
	}

	&::after {
		display: none;
	}
}

.nav-link {
	color: currentcolor;
	text-transform: uppercase;
	padding: 0 !important;
	position: relative;

	&:hover {
		color: currentcolor;
	}

	.current-menu-item & {
		font-weight: var(--font-weight-bold);
	}

	&::after {
		content: "";
		position: absolute;
		right: 0;
		bottom: 0;
		width: 0;
		height: 1px;
		transition: 0.4s;
		background-color: var(--500);
		z-index: 0;
	}

	&:hover::after,
	.current-menu-item &::after {
		right: unset;
		left: 0;
		width: 100%;
	}

	&:visited {
		color: currentcolor;
	}

	@media (max-width: 991.98px) {
		.page-template-page-contatti .navbar-collapse & {
			color: var(--0) !important;
		}
	}
	
}

.page-template-page-contatti .navbar-toggler.collapsed {
	border: var(--bs-border-width) solid var(--900);
	& .navbar-toggler-icon {
		background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
	}
}

#discover-more {
	position: absolute;
	bottom: var(--70);
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: var(--20);
	align-items: center;
	& a {
		writing-mode: sideways-lr;
		color: var(--0);
		text-decoration: none;
		&::after {
			display: none;
		}
	}
	& #line {
		stroke-dasharray: 70;
		stroke-dashoffset: 0;
		animation-name: line;
		animation-duration: 2s;
		animation-timing-function: cubic-bezier(0.79, 0.14, 0.15, 0.86);
		animation-fill-mode: forwards;
		animation-iteration-count: infinite;
		transform-origin: top center;
	}
}

@keyframes line {
	0% {
		/* opacity: 0; */
		transform: scale(0);
	}
	50% {
		opacity: 1;
		transform: scale(1);
		stroke-dashoffset: 0;
	}
	100% {
		stroke-dashoffset: 70;
	}
}

#back-to-site {
	position: absolute;
	bottom: var(--70);
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
}

/* FOOTER */

/* PAGINE */

#hero {
	width: 100%;
	height: 100svh;
	position: relative;
	background-color: var(--900);

	& img {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
		z-index: 0;
	}

	.text {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		color: var(--0);
		z-index: 3;

		& h1 {
			position: relative;
			top: 0;
			left: 0;
			transform: translate(0%, 0%);
			color: var(--0);
			z-index: 3;
		}
	}

	h1,
	.h1 {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		color: var(--0);
		z-index: 3;
	}

	&::after {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: black;
		background: linear-gradient(
			180deg,
			rgba(0, 0, 0, 0.55) 0%,
			rgba(0, 0, 0, 0.1) 50%,
			rgba(0, 0, 0, 0.15) 100%
		);
	}
}

.circle {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	display: inline-block;
	height: 100%;
	width: auto;
	aspect-ratio: 1;
	border: 2px solid var(--700);
	border-radius: 50%;
}

.intro-title {
	display: flex;
	flex-direction: row;
	gap: var(--20);
	align-items: center;
}

.separation {
	margin: 0;
	position: relative;
	height: 1px;
	display: flex;
	align-items: center;
	justify-content: center;

	&::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: calc(50% - 80px);
		height: 1px;
		background-color: var(--500);
	}

	&::after {
		content: "";
		width: calc(50% - 80px);
		position: absolute;
		top: 0;
		right: 0;
		height: 1px;
		background-color: var(--500);
	}

	& .half-circle {
		width: 70px;
		aspect-ratio: 1;
		border-top: 1px solid var(--500);
		border-bottom: 1px solid var(--500);
		border-radius: 50%;
		border-left: 1px solid transparent;
		border-right: 1px solid transparent;
	}
}

.project-card-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: var(--70) var(--50) var(--50) var(--50);
	border-radius: var(--10);
	background: radial-gradient(
		297.01% 91.11% at 50% 50%,
		var(--200, #f5ebda) 0%,
		var(--500, #c2a26e) 100%
	);

	& .project-card-wrapper {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		gap: var(--30);

		@media (max-width: 991.98px) {
			flex-direction: column;
			gap: var(--100);
		}
	}
}

.card {
	display: flex;
	padding: var(--100) var(--30) var(--30) var(--30);
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: var(--20);
	flex: 1 0 0;
	position: relative;
	border: 0;

	&.white {
		background-color: var(--0);
	}

	&.cream {
		background-color: var(--200);
	}

	&.shadow {
		box-shadow: 0px 4px 12px 0px rgba(97, 92, 86, 0.15);
	}

	&.full-height {
		height: 100%;
	}

	&.icon-text-row {
		padding: var(--30) var(--30) var(--30) var(--100);
	}

	& .card-icon {
		padding: var(--30);
		position: absolute;
		top: 0;
		left: 50%;
		border-radius: 50%;
		aspect-ratio: 1;
		display: flex;
		align-items: center;
		justify-content: center;
		transform: translate(-50%, -50%);

		&.grey {
			background-color: var(--700);
		}

		&.gold {
			background-color: var(--500);
		}

		& i {
			font-size: clamp(2.1rem, 2.917vw, 2.8rem);
			color: var(--0);
		}

		.icon-text-row & {
			top: 50%;
			left: 0;
			transform: translate(-50%, -50%);
		}
	}
}

.display-container {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	border-radius: 3px;
	overflow: hidden;

	&.cream {
		background-color: var(--200);
	}

	&.white {
		background-color: var(--0);
	}

	& .display-image {
		width: 50%;

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

		@media (max-width: 991.98px) {
			width: 100%;
		}
	}

	& .display-text {
		width: 50%;
		padding: var(--120) var(--150);
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: flex-start;

		@media (max-width: 991.98px) {
			width: 100%;
		}

		@media (max-width: 575.98px) {
			padding: var(--50);
		}
	}

	@media (max-width: 991.98px) {
		flex-direction: column;
	}
}

.apartment {
	width: 100%;
	border-radius: 3px;
	position: relative;

	& img {
		border-radius: 3px;
	}

	& .apartment-info {
		width: calc(100% - (var(--30) * 2));
		position: relative;
		margin-top: calc(-1 * var(--50));
		left: var(--30);
		padding: var(--30);
		display: flex;
		flex-direction: column;
		align-items: center;
		background-color: var(--0);
		border-radius: var(--10);
		box-shadow: 0px 4px 12px 0px rgba(97, 92, 86, 0.15);
	}
}

.map {
	padding-left: 0;
	padding-right: 0;
}

.service-container {
	width: 100%;
	border-radius: 3px;
	overflow: hidden;
	position: relative;
	display: flex;
	flex-direction: row;
	align-items: end;
	padding: var(--30);
	margin-bottom: var(--30);
	border-radius: 3px;
	overflow: hidden;

	&.nine-by-6 {
		width: auto;
		aspect-ratio: 9 / 6;
	}

	&.portrait {
		height: calc(100% - var(--30));
	}

	&.landscape {
		aspect-ratio: 94 / 41;
	}

	&::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: linear-gradient(
			180deg,
			rgba(52, 49, 46, 0) 60%,
			var(--1000) 100%
		);
		z-index: 2;
	}

	& img {
		object-fit: cover;
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 1;
	}

	& .h3 {
		color: var(--0);
		z-index: 3;
	}
}

.border-grey-bottom {
	border-bottom: 1px solid var(--900);
}

.border-grey-top {
	border-top: 1px solid var(--900);
}

.border-grey-left {
	border-left: 1px solid var(--900);
}

@media (min-width: 992px) {
	.border-lg-grey-right {
		border-right: 1px solid var(--900);
	}
}

.border-gold-right {
	border-right: 1px solid var(--500);
}

.border-gold-bottom {
	border-bottom: 1px solid var(--500);
}

.border-gold-top {
	border-top: 1px solid var(--500);
}

.border-gold-left {
	border-left: 1px solid var(--500);
}

@media (min-width: 992px) {
	.border-lg-gold-right {
		border-right: 1px solid var(--500);
	}
}

.border-gold-right {
	border-right: 1px solid var(--500);
}

.design-apartment {
	position: relative;

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

	& .nine-by-six {
		width: 100%;
		object-fit: cover;
		aspect-ratio: 9 / 6;

		@media (max-width: 991.98px) {
			aspect-ratio: 1;
		}
	}
}

.image-container {
	border-radius: 3px;
	overflow: hidden;

	&.square {
		width: 100%;
		aspect-ratio: 1;
	}

	&.wide {
		aspect-ratio: 2 / 1;
	}

	&.stretch {
		width: 100%;
		height: 100%;
	}

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

.service-card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;

	& .service-info {
		position: relative;
		margin-top: calc(-1 * var(--50));
		margin-bottom: calc(-1 * var(--50));
		width: calc(100% - (2 * var(--30)));
		border-radius: 5px;
		background-color: var(--0);
		padding: var(--30);
	}
}

#gallery-container {
	height: 100vh;
	padding-top: calc(var(--120) * 3);
	padding-bottom: var(--50);
	background-color: var(--900);

	& .row {
		height: 100%;

		@media (max-width: 991.98px) {
			gap: var(--70);
		}
	}

	& .image-gallery-selector {
		position: relative;
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: end;
		padding: var(--30);
		height: 100%;
		border-radius: 5px;
		overflow: hidden;

		&::before {
			content: "";
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			border-radius: 3px;
			background: linear-gradient(
				180deg,
				rgba(194, 162, 110, 0) 60%,
				var(--900) 100%
			);
			z-index: 1;
		}

		& img {
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			object-fit: cover;
			z-index: 0;
		}

		& h2,
		& a {
			position: relative;
			z-index: 2;
		}
	}

	@media (max-width: 991.98px) {
		padding-top: calc(var(--120) * 3.5);
		padding-bottom: var(--50);
	}
}

.sticky {
	position: sticky;
	top: var(--120);

	@media (max-width: 767.98px) {
		position: relative;
		top: 0;
	}
}

/* FOOTER */

.navbar-brand-footer {
	width: clamp(4rem, 6.771vw, 6.5rem);
}

.abitare-logo {
	width: 294px;
	height: auto;

	@media (max-width: 575.98px) {
		width: 180px;
		height: auto;
	}
}

.wpcf7-form {
	display: flex;
	flex-wrap: wrap;
	gap: var(--30);

	& p {
		min-width: calc(50% - calc(var(--30) / 2));
		height: 100%;
		margin-bottom: 0;
		color: var(--900);

		&:nth-child(10),
		&:nth-child(11),
		&:nth-child(12) {
			min-width: 100%;
		}

		&:nth-child(25) {
			min-width: 100%;
			text-align: center;
		}

		& label {
			display: inline-block;
			width: 100%;
			color: var(--900);

			& input[type="text"],
			& input[type="email"],
			& input[type="number"],
			& select {
				width: 100%;
				height: 100%;
				margin-top: var(--15);
				display: flex;
				align-items: center;
				align-self: stretch;
				gap: 10px;
				padding: 10px 15px;
				border-radius: 5px;
				border: 1px solid var(--0);
				border-bottom: 1px solid var(--500);
				background: var(--0);
				color: var(--900);
			}

			& .intl-tel-input {
				margin-top: var(--15);
			}

			& textarea {
				width: 100%;
				margin-top: var(--15);
				padding: 10px 15px;
				border-radius: 5px;
				border: 1px solid var(--0);
				border-bottom: 1px solid var(--500);
				background: var(--0);
				color: var(--900);
			}
		}

		@media (max-width: 991.98px) {
			width: 100%;
		}
	}
}

.wpcf7-list-item {
	margin: 0;
}

.intl-tel-input.separate-dial-code .selected-flag {
	background: transparent;
}

.selected-dial-code {
	font-size: 0.75rem;
}

/* 1) Nascondi il checkbox nativo */
input.custom-checkbox {
	position: absolute !important;
	opacity: 0 !important;
	pointer-events: none;
	width: 20px;
	height: 20px;
	margin: 0;
}

/* 2) Prepara il “finto” quadratino sullo span etichetta */
input.custom-checkbox + .wpcf7-list-item-label {
	position: relative;
	padding-left: 47px;
	cursor: pointer;
	user-select: none;
	line-height: 1.4;
}

/* 3) Disegna il quadratino */
input.custom-checkbox + .wpcf7-list-item-label::before {
	content: "";
	position: absolute;
	left: 0;
	/*
  top: 50%;
  transform: translateY(-50%);
  */
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--0);
	transition: 0.3s;
}

input.custom-checkbox:checked + .wpcf7-list-item-label::before {
	background-color: var(--500);
}

/* 4) Stato “checked”: la spunta */
input.custom-checkbox:checked + .wpcf7-list-item-label::after {
	content: "";
	position: absolute;
	left: 13px;
	top: 12px;
	transform: translateY(-50%) rotate(45deg);
	width: 6px;
	height: 12px;
	border: solid var(--0);
	border-width: 0 2px 2px 0;
}

/* 5) Hover/Focus per accessibilità */
input.custom-checkbox + .wpcf7-list-item-label:hover::before {
	background-color: var(--500);
}

input.custom-checkbox:focus-visible + .wpcf7-list-item-label::before {
	border: 1px solid var(--500);
}

.wpcf7-submit {
	display: inline-flex;
	flex-direction: row;
	flex-wrap: nowrap;
	padding: 10px 15px;
	min-width: 200px;
	border: none;
	gap: 10px;
	background-color: var(--500);
	align-items: center;
	color: var(--0);
	transition: 0.3s;
	text-decoration: none;
	border-radius: 50px;
	font-weight: var(--font-weight-bold);
	text-transform: uppercase;

	&:hover {
		background-color: var(--900);
		text-decoration: none;
	}

	&:focus-visible {
		outline: 2px solid var(--300) !important;
		outline-offset: 2px;
		text-decoration: none;
	}
}

.wpcf7-spinner {
	display: none;
}

.wpcf7-not-valid-tip {
	color: var(--500);
}

.wpcf7 form.sent .wpcf7-response-output {
	border-color: #46b450;
	background-color: rgb(70 180 80 / 20%);
	color: var(--1000);
}

.wpcf7 form .wpcf7-response-output {
	margin: 2em 0.5em 1em;
	padding: 0.2em 1em;
	border: 1px solid #00a0d2;
	color: var(--0);
	width: 100%;
	text-align: center;
	border-radius: 5px;
}

.info {
	display: flex;
	gap: var(--30);

	@media (max-width: 991.98px) {
		justify-content: center;
	}
}

/* FANCYBOX */

.fancybox__thumbs {
	display: none !important;
}

.carousel__button.fancybox__button--thumbs {
	display: none;
}

.fancybox__counter {
	display: none;
}

.fancybox__progress {
	background-color: var(--300);
}

/* PLANIMETRIE */

.tab-buttons {
	display: inline-flex;
	flex-direction: row;
	z-index: 1;
	transform: translateY(1px);
	position: relative;
	max-width: 100%;
	overflow: auto;
	&::before {
		content: "";
		width: 100%;
		height: 0.5px;
		background: var(--500);
		position: absolute;
		bottom: 0;
		left: 0;
	}
	& .tab-button {
		text-transform: uppercase;
		font-weight: var(--font-weight-medium);
		padding: var(--10) var(--15);
		background-color: var(--200);
		border: 1px solid var(--0);
		border-radius: 5px 5px 0 0;
		&.active {
			background: var(--0);
			border: 1px solid var(--500);
			border-bottom: 1px solid var(--0);
			z-index: 1;
		}
	}
}

.tab-content {
	background: var(--0);
	border: 1px solid var(--500);
	border-radius: 0 5px 5px 5px;
	overflow: hidden;
}
