/*
==================================================================
Theme Name: Hove
Version: 1.0
Author: Neobrand®
Author URI: https://neobrand.com
==================================================================
*/

/* Variables */

:root {
	--grey: #9a999e;
	--softgrey: #fbfbfb;
	--black: #000000;
	--block-1:1700px;
	--block-2:1200px;
	--block-3:840px;
	--size-90:90px;
	--size-70:70px;
	--size-34:34px;
	--size-26:26px;
	--size-24:24px;
	--size-20:20px;
	--size-16:16px;
	--size-14:14px;
}

::selection {
	background-color: #000;
	text-shadow: none;
	color: #fff;
}

::placeholder {
	color: var(--grey);
}

/* General */

html,body {
	font-family: 'Nexa', sans-serif;
	scroll-behavior: smooth;
	line-height: 1.2;
}

body figure {
	margin-bottom: 0;
}

a {
	padding-bottom: 1px;
	color: #fff;
	text-decoration: none;
	font-weight: 400;
	background: linear-gradient(to right, currentColor 0%, currentColor 100%);
	background-size: 0px 1px;
	background-position: right 0 bottom 0;
	background-repeat: no-repeat;
	transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
}

a:hover:not(.wp-block-button__link) {
	background-size: 100% 1px;
	background-position: left 0 bottom 0;
}

p {
	margin: 0;
	font-size: var(--size-20);
	font-weight: 400;
	line-height: 1.4;
}

.button {
	width: fit-content;
	padding: 15px 20px 10px;
	font-size: var(--size-16);
	text-transform: uppercase;
	background: none;
	background-color: #fff;
	color: #000;
	font-weight: 600;
	cursor: pointer;
	transition: all 280ms ease;
}

.button.black {
	background-color: #000;
	color: #fff;
}

.button:not(:disabled):hover {
	transform: scale(1.1);
}

.button.small{
	font-size: 12px;
	padding: 10px 15px;
	font-family: Arial, Helvetica, sans-serif;
}

#main .wp-block-button__link {
	padding: 15px 20px 10px;
	text-transform: uppercase;
	font-weight: 600;
	background-color: black !important;
	cursor: pointer;
	transition: all 280ms ease;
}

#main .wp-block-button__link:hover {
	transform: scale(1.1);
}

#main .wp-block-button__link i {
	margin-right: 10px;
}


/* Header */

#header {
	height: 190px;
	padding-block: 50px;
	background-color: #fff;
}

#header nav {
	max-width: 1700px;
}

#header nav #logo {
	background: none;
}

#header nav .menu {
	gap: 2rem;
}

#header nav .menu a:not(.button) {
	font-size: var(--size-16);
	text-transform: uppercase;
	font-weight: 600;
	color: black;
	background: none;
}

#header nav .menu a:not(.button)::after {
	content: '';
	width: 0;
	height: 2px;
	background-color: currentcolor;
	transition: all 280ms ease;
	position: absolute;
	bottom: -10px;
}

#header nav .menu a:hover::after,
#header nav .menu a.current::after {
	width: 30%;
}

#logo img {
	float: left;
}

.home #header {
	background-color: transparent;
}

.home #logo {
	filter: invert(1);
}

.home #header nav .menu a:not(.button) {
	color: white;
	transform: translateY(3px);
}


/* Pages */

#main {
	background-color: #fff;
}

section > div {
	opacity: 0;
	transform: translateY(-50px);
	transition: all 280ms ease;
}

.properties {
	padding-top: 150px;
	padding-bottom: 150px;
}

.properties > .flex {
	margin-bottom: 60px;
}

.properties.bg-black > .flex h3,
.properties.bg-black > .flex p{
    color: #fff;
}

.properties > .flex h3 {
    margin-bottom: 25px;
    font-weight: 600;
    font-size: var(--size-70);
    text-align: center;
}
.properties > .flex p {
	width: 60%;
	font-size: var(--size-20);
	text-align: center;
}

.properties .bottom {
	margin-top: 50px;
}

#presentation {
	overflow: hidden;
}

#presentation > div {
	opacity: 1;
	transform: translateY(0);
}

#presentation > div .content figure {
	opacity: 0;
	transform: translateX(-75px);
}

#presentation figure img{
	object-fit: cover;
}

#presentation > div .content .text {
	opacity: 0;
	transform: translateX(75px);
}

#presentation > div .features > a {
	position: relative;
	z-index: 9;
	overflow: hidden;
}

#presentation > div .features > a:hover .item {
	background-size: 110%;
}

#presentation > div .features > a:hover .item h3 {
	transform: scale(1.1);
}

#presentation > div .features .item {
	opacity: 0;
	transform: translateY(75px);
	transition: all 320ms ease;
	background-position: center center;
}

section > div.visible {
	opacity: 1;
	transform: translateY(0);
}

section > * {
	opacity: 0;
}

.fadeInRight {
	animation-name: fadeInRight;
	animation-duration: 560ms;
	animation-timing-function: cubic-bezier(.74, 0, .24, .99);
	animation-fill-mode: forwards;
	animation-delay: 150ms;
}

.fadeInLeft {
	animation-name: fadeInLeft;
	animation-duration: 560ms;
	animation-timing-function: cubic-bezier(.74, 0, .24, .99);
	animation-fill-mode: forwards;
	animation-delay: 150ms;
}

@keyframes fadeInRight {
	from {
		opacity: 0;
		transform: translateX(-75px);
	}

	to {
		opacity: 1;
		transform: none;
	}

}

@keyframes fadeInLeft {
	from {
		opacity: 0;
		transform: translateX(75px);
	}

	to {
		opacity: 1;
		transform: none;
	}

}

.fadeInUp {
	animation-name: fadeInUp;
	animation-duration: 560ms;
	animation-timing-function: cubic-bezier(.74, 0, .24, .99);
	animation-fill-mode: forwards;
	animation-delay: 150ms;
}

.fadeInDown {
	animation-name: fadeInDown;
	animation-duration: 560ms;
	animation-timing-function: cubic-bezier(.74, 0, .24, .99);
	animation-fill-mode: forwards;
	animation-delay: 150ms;
}

@keyframes fadeInUp {

	from {
		opacity: 0;
		transform: translateY(150px);
	}

	to {
		opacity: 1;
		transform: none;
	}

}

@keyframes fadeInDown {

	from {
		opacity: 0;
		transform: translateY(-150px);
	}

	to {
		opacity: 1;
		transform: none;
	}

}

.pop {
	animation-name: pop;
	animation-duration: 560ms;
	animation-timing-function: cubic-bezier(.74, 0, .24, .99);
	animation-fill-mode: forwards;
	animation-delay: 150ms;
}

@keyframes pop {

	from {
		opacity: 0;
		transform: scale(1.3);
	}

	to {
		opacity: 1;
		transform: none;
	}

}

.home #hero {
	width: 100%;
	min-height: 100vh;
	background-repeat: no-repeat;
	background-size: cover;
}

.home #hero {
	min-height: 100vh;
}

#hero > div {
	padding-inline: 260px 160px;
}

#hero > figure {
	max-height: calc(100vh - 190px);
	overflow: hidden;
}

#hero .content {
	gap: 40px;
}

#hero .content figure i {
	width: 80px;
	height: 80px;
	background-color: #fff;
	color: #000;
}

#hero .content div {
	gap: 35px;
}

#hero h1 {
	margin-bottom: 25px;
	font-size: var(--size-70);
	line-height: 1.1;
	font-weight: 600;
	color: #000;
}

#hero p {
	color: var(--grey);
	font-size: var(--size-20);
	margin-bottom: 45px;
}

.home #hero {
	padding-top: 190px;
	padding-bottom: 160px;
	margin-top: -190px;
	overflow: hidden;
	position: relative;
}

.home #hero > div {
	padding: 0;
	gap: 40px;
}

.home #hero figure {
	cursor: pointer;
}

.home #hero .youtube-bg {
	opacity: 0.5;
}

.home #hero::before {
	content: '';
	width: 100%;
	height: calc(100% + 350px);
	background-color: rgb(0 0 0 / 85%);
	pointer-events: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

@supports (backdrop-filter:grayscale(1)) {
	.home #hero::before {
		backdrop-filter: grayscale(1);
		background-color: rgb(0 0 0 / 80%) !important;
	}

}

.home #hero h1 {
	margin-top: 50px;
	margin-bottom: 0;
	font-size: var(--size-90);
}

.home #hero h1,
.home #hero p {
	color: #fff;
}

.home #hero p {
	font-size: var(--size-34);
}

.home #hero .play {
	position: absolute;
	bottom: 0;
	margin-bottom: 40px;
	opacity: 1 !important;
	opacity: 0;
	gap: 10px;
	background: none;
	z-index: 1;
	transition: all 280ms ease;
}

.home #hero .play:hover {
	gap: 15px;
}

.home #hero .play:hover i {
	transform: scale(1.1);
}

.home #hero .play:hover span {
	transform: scale(1.1);
}

.home #hero .play span {
	width: 100%;
	color: white;
	display: flex;
	gap: 10px;
	z-index: 1;
	padding-top: 5px;
	transition: all 280ms ease;
}

.home #hero .play i {
	color: white;
	transition: all 280ms ease;
}

#presentation {
	min-height: 940px;
}

#presentation .content .text {
	padding: 260px 260px 260px 185px;
	background-color: var(--softgrey);
}

#presentation .content .text h2 {
	margin-bottom: 25px;
	font-size: var(--size-70);
	line-height: 1.1;
	font-weight: 600;
}

#presentation .content .text p {
	margin-bottom: 45px;
	font-size: var(--size-20);
	color: var(--grey);
}

#main .features .item {
	padding-inline: 135px;
	color: #000;
	gap: 25px;
}

#main .features .item.grey {
	background-color: var(--softgrey);
}

#main .features .item.black {
	background-color: #000;
	color: #fff;
}

#main .features .item[style] {
	color: #fff;
	background-size: 100%;
	transition: all 520ms ease;
}

#main .features .item[style]::before {
	content: '';
	background-color: rgb(0 0 0 / 100%);
	position: absolute;
	inset: 0;
	height: 101%;
}

#main .features .item h3 {
	line-height: 1.2;
	opacity: 1;
	font-size: var(--size-34);
	font-weight: 900;
	text-transform: uppercase;
	transform: translate(-50%, -50%) scale(1);
	transition: all 320ms ease;
}

.home #main .features .item h3 {
	transform: none;
	transition: all 520ms ease;
}

body:not(.home) #main .features .item:hover h3 {
	opacity: 0;
	transform: translate(-50%, -50%) scale(0);
}

#main .features .item {
	transition: all 280ms ease;
}

#main .features .item p {
	opacity: 0;
	transform: translate(-50%, -50%) scale(0);
	transition: all 320ms ease;
}

body:not(.home) #main .features .item:hover p {
	display: block;
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
}

#text {
	padding-block: 150px;
}

#text > div h2,
#reviews .text h2 {
	padding-top: 75px;
	margin-bottom: 25px;
	font-weight: 600;
	font-size: var(--size-70);
}

#text > div h2::before,
#reviews .text h2::before {
	content: '';
	width: 50px;
	height: 45px;
	background-image: url('images/heart.svg');
	animation: pulse 2s infinite;
	background-size: cover;
	position: absolute;
	top: 0;
}

#reviews .text h2::before {
	filter: invert(1);
}

#text > div p {
	color: var(--grey);
}

.services .sent .wpcf7-response-output {
	width: 100%;
	height: calc(100% + 10px);
	padding: 0;
	margin: 0;
	position: absolute;
	left: 0;
	top: -8px;
	background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: var(--size-20);
}

#main #services {
	background-color: var(--softgrey);
}

#main #services figure img,
#main #services figure .base.hide {
	opacity: 0;
	transform: translateX(-50px);
}

.service #hero figure img,
.service #hero figure .base.hide {
	opacity: 0;
}

.service #hero figure .base,
.service #hero figure .active {
	opacity: 1;
}

#main #services figure .base,
#main #services figure .active {
	opacity: 1;
	transform: translateX(0);
}

#main #services > div {
	padding-block: 100px;
	padding-left: 225px;
}

#main #services > div h2 {
	margin-bottom: 35px;
	font-size: var(--size-70);
	font-weight: 600;
}

#main #services > div .service a {
	padding-block: 10px;
	font-size: var(--size-20);
	color: #000;
	background: none;
	transition: all 280ms ease;
}

#main #services > div .service.active a,
#main #services > div .service a:hover {
	font-weight: 600;
	transform: translateX(20px);
}

#main #services > div .service a::before {
	content: '\02015';
	margin-right: 10px;
	display: inline-block;
}

.about #text {
	padding-top: 10px;
}

.about #hero {
	min-height: auto;
	padding-bottom: 150px;
}

#main #team > div {
	padding-bottom: 150px;
	gap: 80px;
}

#main #team article figure figcaption {
	padding: 35px;
	background-color: rgb(0 0 0 / 70%);
	opacity: 0;
	gap: 15px;
}

#main #team article:hover figure figcaption {
	opacity: 1;
}

#main #team article h2 {
	font-size: var(--size-34);
	font-weight: 600;
	text-transform: uppercase;
	color: #fff;
}

#main #team article a {
	font-size: var(--size-20);
}

#main #team article a:last-child {
	margin-bottom: 0;
}

#main #alhambra {
	margin-bottom: -15px;
	mix-blend-mode: multiply;
}

#main #gallery {
	padding: 150px 110px;
	background-color: #000;
	display: grid;
	grid-template-rows: repeat(2, 1fr);
	gap: 80px;
}

#main #gallery figure img {
	object-fit: cover;
}

#main #gallery figure:nth-child(1) {
	grid-column: 1 / 3;
	grid-row: 1 / -1;
}

#main #gallery figure:nth-child(2) {
	grid-column: 3 / 5;
	grid-row: 1;
}

#main #gallery figure:nth-child(3) {
	grid-column: 3 / 5;
	grid-row: 2;
}

#main #gallery .our-video {
	width: 100%;
	grid-column: 1/-1;
	position: relative;
	padding-bottom: 56.25%;
	display: flex;
	align-items: center;
	justify-content: center;
}

#main #gallery .our-video img {
	position: absolute;
	top: 0;
	left: 50%;
	width: 100%;
	height: 100%;
	border: 0;
	z-index: 2;
}

#main #gallery .our-video img::after {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	inset: 0;
	background-color: black;
	z-index: 4;
}

#main #gallery .our-video i {
	color: white;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 3;
}

#main #gallery .our-video iframe {
	position: absolute;
	top: 0;
	left: 50%;
	width: 100%;
	height: 100%;
	border: 0;
}

.home #cta, .contact #cta {
	padding-block: 150px;
}

.about #cta,
.services #main #cta {
	padding-block: 150px 110px;
}

#main #cta > div {
	padding: 110px;
	background-color: var(--softgrey);
	color: #000;
}

#main #cta.black > div {
	background-color: #000;
	color: #fff;
}

#main #cta > div h3 {
	margin-bottom: 15px;
	font-size: var(--size-34);
	font-weight: 600;
	line-height: 1.4;
	text-transform: uppercase;
}

#main #cta > div p {
	margin-bottom: 20px;
}

#main #cta .text > a {
	text-decoration: none;
	float: left;
	margin-bottom: 35px;
}

#main #cta .wpcf7 [data-name="acceptance"] label,
#main #cta .wpcf7 [data-name="acceptance"] label a {
	color: #000;
}

.contact #hero .sent .wpcf7-response-output {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	font-size: var(--size-20);
	background-color: #000;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0;
	left: 0;
}

.contact #hero div div {
	gap: 25px;
}

.contact #hero div h3 {
	font-weight: 600;
}

.contact #hero div a.relative {
	padding-left: 40px;
	color: #000;
	line-height: 1.4;
	background: none;
	transition: all 280ms ease;
	opacity: 0.5;
}

.contact #hero div a:hover {
	opacity: 1;
}

.contact #hero div a span {
	background: linear-gradient(to right, currentColor 0%, currentColor 100%);
	background-size: 0px 1px;
	background-position: right 0 bottom 0;
	background-repeat: no-repeat;
	transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
}

.contact #hero div a span:hover {
	background-size: 100% 1px;
	background-position: left 0 bottom 0;
}

.contact #hero div a img {
	transform: translateY(calc(-50% + -2px));
	position: absolute;
	top: 50%;
	left: 0;
}

.contact #hero .wpcf7 {
	width: 50%;
	padding-block: 50px;
	padding-inline: 150px;
	background-color: #000;
	overflow: hidden;
	display: flex;
	align-items: center;
}

.contact #hero .wpcf7 p {
	color: #fff;
	margin-bottom: 35px;
}

.contact #hero .wpcf7 .last label,
.contact #hero .wpcf7 .last label a {
	color: #fff;
	background: none;
}

.contact #hero .wpcf7 .showinfo {
	color: #fff;
}

.contact #text {
	padding-bottom: 60px;
}

.contact #text h2 {
	display: flex;
	justify-content: center;
}

.contact #text p {
	width: 50%;
}

.contact #map {
	padding-bottom: 150px;
	gap: 80px;
}

.contact #map figure {
	width: 660px;
}

#reviews {
	padding-block: 150px;
	background-color: #000;
}

#reviews > div {
	padding-left: 260px;
}

#reviews > div,
#reviews #slider {
	gap: 20px;
}

#reviews .text {
	padding: 0;
	margin-bottom: 60px;
	align-self: center;
}

#reviews .text h2 {
	margin-bottom: 25px;
	font-weight: 600;
	font-size: var(--size-70);
	color: #fff;
}

#reviews .text p {
	color: #fff;
}

#reviews article {
	min-width: 600px;
	width: 600px;
	background-color: #fff;
}

#reviews article figure {
	cursor: pointer;
}

#reviews article figure i {
	background-color: black;
	padding: 12px;
	border-radius: 100%;
}

#reviews article:last-child {
	margin-right: 20px;
}

#reviews nav {
	padding-right: 30px;
	font-size: var(--size-34);
	gap: 20px;
}

#reviews nav button {
	width: 40px;
	height: 30px;
	padding: 0;
	background-color: transparent;
	border: 0;
	cursor: pointer;
	position: relative;
}

#reviews nav button.disabled {
	opacity: 0.25;
	cursor: not-allowed;
}

#reviews nav button:not(.disabled):hover {
	transform: scale(1.2);
}

#reviews nav button::before,
#reviews nav button::after {
	content: '';
}

#reviews nav button::before {
	width: 100%;
	height: 2px;
	background-color: #fff;
	position: absolute;
}

#reviews nav button::after {
	width: 10px;
	height: 10px;
	transform: rotate(45deg);
	position: absolute;
}

#reviews nav button.prev::after {
	border-bottom: 2px solid #fff;
	border-left: 2px solid #fff;
}

#reviews nav button.next::after {
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	right: 0;
}

#reviews #slider::-webkit-scrollbar {
	display: none;
}

#reviews #slider {
	-ms-overflow-style: none;
	scrollbar-width: none;
}

#reviews #slider article {
	font-size: var(--size-20);
	color: #fff;
	scroll-snap-align: start;
}

#reviews .scroll {
	width: 300px;
	height: 3px;
	background-color: #555;
	bottom: -20px;
}

#reviews .scroll span {
	width: 0;
	height: 3px;
	background-color: #fff;
}

#opinions {
	padding-block: 100px;
	background-color: var(--softgrey);
}

#opinions article {
	margin-top: 50px;
}

#opinions article .text{
	position: relative;
}

#opinions article .text.hide{
	overflow: hidden;
	max-height: 200px;
	position: relative;
}

#opinions article .text.hide::after {
	content:'';
	width:100%;
	height:100%;    
	position:absolute;
	left:0;
	top:0;
	background:linear-gradient(transparent 150px, var(--softgrey));
}

#opinions article .text .more {
	color: black;
	font-weight: 600;
	display: none;
	left: 50%;
	bottom: -5px;
	transform: translateX(-50%);
	z-index: 9;
}

#opinions article figure {
	width: 100px;
	margin-top: -50px;
	aspect-ratio: 1 / 1;
	box-shadow: 0 0 0 5px var(--softgrey);
	border-radius: 50vw;
	overflow: hidden;
}

#opinions article .name {
	margin-top: 20px;
	margin-bottom: 20px;
	font-size: var(--size-34);
	font-weight: 600;
	color: #000;
}

#opinions article .text {
	color: #000;
}

#opinions .owl-nav {
	width: 100%;
	display: flex;
	justify-content: center;
	gap: 50px;
	transform: translateX(-50%);
	position: absolute;
	bottom: -50px;
	left: 50%;
}

#opinions button {
	height: 20px;
	width: 50px;
	display: flex;
	align-items: center;
	transition: all 280ms ease;
	position: relative;
}

#opinions button:hover {
	transform: scale(1.2);
}

#opinions button::before,
#opinions button::after {
	content: '';
}

#opinions button::before {
	width: 100%;
	height: 2px;
	background-color: #000;
	position: absolute;
}

#opinions button::after {
	width: 10px;
	height: 10px;
	transform: rotate(45deg);
	position: absolute;
}

#opinions button.owl-prev::after {
	border-bottom: 2px solid #000;
	border-left: 2px solid #000;
}

#opinions button.owl-next::after {
	border-top: 2px solid #000;
	border-right: 2px solid #000;
	right: 0;
}

.gift #content form {
	padding-bottom: 50px;
	margin-bottom: 50px;
	border-bottom: 2px solid #000;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.gift #content form p {
	margin-bottom: 0;
}

.gift #content form .grid {
	gap: 20px;
}

.gift .sent .wpcf7-response-output {
	width: 100%;
	height: calc(100% + 2px);
	padding: 0;
	margin: 0;
	position: absolute;
	left: 0;
	top: 0;
	background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: var(--size-20);
}

#hero {
	min-height: 180px;
	background-color: var(--softgrey);
}

.regular #content {
	padding-block: 50px 100px;
}

#hero h1 {
	margin-bottom: 0;
	font-size: var(--size-34);
	font-weight: 600;
	opacity: 1 !important;
}

.regular #content h2,
.regular #content h3{
	padding-bottom: 15px;
}

.regular #content p {
	margin-bottom: 25px;
}

.regular #content a{
	color: black;
}

.regular #content p:last-child {
	margin-bottom: 0;
}

.regular #content .wp-block-image {
	margin-bottom: 25px;
}

.regular #content h2 {
	font-size: var(--size-26);
}

.regular #content h3 {
	font-size: var(--size-24);
}

.regular #content h4 {
	font-size: var(--size-20);
}

.regular #content ol li{
	list-style: auto;
}

.regular #content ul, 
.regular #content ol {
	padding-left: 20px;
	display: flex;
	flex-direction: column;
	gap: 5px;
	margin-bottom: 15px;
}

.regular #content ul li, 
.regular #content ol li  {
	font-size: var(--size-20);
	position: relative;
	margin: 0;
	font-size: var(--size-20);
	font-weight: 400;
	line-height: 1.4;
}

.regular #content ul li::before {
	content: '';
	background-color: black;
	position: absolute;
	top: 6px;
	left: -12px;
	width: 6px;
	height: 6px;
	border-radius: 100%;
}

.regular #content table th,
.regular #content table td{
	border: 1px solid black;
}

.regular #content table th{
	padding: 12px 7px;
}

.regular #content table td{
	padding: 7px;
}



/* Single */

.service #hero {
	min-height: 180px;
	max-height: 180px;
	width: 100%;
	overflow: hidden;
	position: relative;
}

.service #hero figure {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.service #hero figure img {
	object-fit: cover;
}

.service #hero::after {
	content: '';
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	inset: 0;
	background-color: #ffffffcf;
}

@supports (backdrop-filter:blur(10px)) {
	.service #hero::after {
		backdrop-filter: blur(10px);
		background-color: #ffffffad
	}

}

.service #hero h2 {
	font-size: var(--size-34);
	font-weight: 600;
	z-index: 1;
}

.service #content {
	padding-block: 100px;
}

.service #content div h2 {
	font-size: var(--size-34);
	font-weight: 600;
}

.service #content nav {
	width: 340px;
	gap: 20px;
	top: 25px;
}

.service #content nav a {
	width: fit-content;
	font-size: var(--size-20);
	color: #000;
	background: none;
	transition: all 280ms ease;
}

.service #content nav a::before {
	content: '—';
	margin-right: 10px;
	display: inline-block;
}

.service #content nav a:hover,
.service #content nav a.current {
	transform: translateX(20px);
	font-weight: 600;
}

.service #content > article {
	width: 70%;
	padding-left: 110px;
}

.service #content > article h1 {
	margin-bottom: 35px;
	font-size: var(--size-70);
	font-weight: 600;
}

.service #content > article h2,
.service #content > article h3 {
	margin-bottom: 15px;
	font-weight: 600;
}

.service #content > article h2 {
	font-size: var(--size-26);
}

.service #content > article h3 {
	font-size: var(--size-24);
}

.service #content > article ul {
	margin-bottom: 15px;
}

.service #content > article ul li {
	list-style: disc;
	margin-left: 20px;
	margin-bottom: 20px;
}

.service #content > article ul li li {
	list-style: square;
}

.service #content > article ul li li:first-child {
	margin-top: 10px;
}

.service #content > article ul li:last-child,
.service #content > article ul li li:last-child {
	margin-bottom: 0;
}

.service #content > article ol {
	margin-bottom: 15px;
}

.service #content > article ol li {
	list-style: decimal;
	margin-left: 20px;
	margin-bottom: 5px;
}

.service #content > article ol li li:first-child {
	margin-top: 10px;
}

.service #content > article ol li li:last-child {
	margin-bottom: 0;
}

.service #content > article li {
	font-size: var(--size-20);
	font-weight: 400;
	line-height: 1.4;
}

.service #content > article .wp-block-gallery,
.service #content > article .wp-block-embed,
.inmueble .wp-block-embed {
	width: 100%;
	margin-bottom: 20px;
}

.service #content > article .wp-embed-aspect-16-9,
.service #content > article .wp-embed-aspect-16-9 > div,
.inmueble .wp-embed-aspect-16-9 > div {
	width: 100%;
	aspect-ratio: 16 / 9;
	position: relative;
}

.service #content > article .wp-embed-aspect-16-9 iframe,
.inmueble .wp-embed-aspect-16-9 iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.service #content > article p,
.service #content > article .wp-block-image {
	margin-bottom: 20px;
}

.service #content > article p strong,
.service #content > article li strong {
	font-weight: 600;
}

.service #content > article p:last-child,
.service #content > article .wp-block-image:last-child {
	margin-bottom: 0;
}

.service #content > article p a,
.service #content > article li a {
	background-color: rgb(0 0 0 / 10%);
	color: #000;
}

.service #content > article p a:hover,
.service #content > article li a:hover {
	background-color: rgb(0 0 0 / 0%);
}

#content > article .wp-block-button__link {
	margin-bottom: 25px;
}

.service main #cta {
	padding-block: 0px 110px;
}

/* Inmuebles */

.inmuebles{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}

.inmuebles .inmueble{
	display: flex;
	background-color: var(--softgrey);
}

.inmuebles .inmueble > *{
	width: 50%;
}

.inmuebles h2 a {
	color: #000;
	line-height: 1.2em;
	font-weight: 600;
	font-size: 24px;
}

.inmuebles article > figure{
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

.inmuebles article > figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 280ms ease;
}

.inmuebles article > figure:hover img {
	transform: scale(1.1);
}

.inmuebles .inmueble .precio{
	position: absolute;
	right: 5px;
	bottom: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: rgba(0, 0, 0, 0.6);
	color: white;
	font-size: 20px;
	transition: all 280ms ease;
	padding: 10px 20px;
	border-radius: 3px;
	font-family: Arial, Helvetica, sans-serif;
}

.inmuebles .inmueble .post-meta {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-top: 20px;
}

.inmuebles .inmueble .post-meta span{
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: Arial, Helvetica, sans-serif;
}

.inmueble .icon{
	height:20px !important;
	width: auto !important;
}

.inmuebles .vendido {
	position: absolute;
	background-color: black;
	color: white;
	z-index: 1;
	left: -88px;
	top: 14px;
	font-size: 26px;
	font-weight: 600;
	padding: 15px 100px 5px 100px;
	text-align: center;
	transform: rotate(-25deg);
}

.inmuebles.vertical{
	grid-template-columns: 1fr 1fr 1fr 1fr;
}
.inmuebles.vertical .inmueble{
	flex-direction: column;
}
.inmuebles.vertical .inmueble > *{
	width: 100%;
}

.inmuebles.carousel .owl-nav {
	width: 100%;
	display: flex;
	justify-content: center;
	gap: 50px;
	transform: translateX(-50%);
	position: absolute;
	bottom: -50px;
	left: 50%;
}

.inmuebles.carousel .owl-nav button {
	height: 20px;
	width: 50px;
	display: flex;
	align-items: center;
	transition: all 280ms ease;
	position: relative;
}

.inmuebles.carousel .owl-nav button:hover {
	transform: scale(1.2);
}

.inmuebles.carousel .owl-nav button::before,
.inmuebles.carousel .owl-nav button::after {
	content: '';
}

.inmuebles.carousel .owl-nav button::before {
	width: 100%;
	height: 2px;
	background-color: black;
	position: absolute;
}

.bg-black.properties .inmuebles.carousel .owl-nav button::before{
	background-color: white;
}

.inmuebles.carousel .owl-nav button::after {
	width: 10px;
	height: 10px;
	transform: rotate(45deg);
	position: absolute;
}

.inmuebles.carousel .owl-nav button.owl-prev::after {
	border-bottom: 2px solid black;
	border-left: 2px solid black;
}

.inmuebles.carousel .owl-nav button.owl-next::after {
	border-top: 2px solid black;
	border-right: 2px solid black;
	right: 0;
}

.bg-black.properties .inmuebles.carousel .owl-nav button.owl-prev::after {
	border-bottom: 2px solid white;
	border-left: 2px solid white;
}

.bg-black.properties .inmuebles.carousel .owl-nav button.owl-next::after {
	border-top: 2px solid white;
	border-right: 2px solid white;
	right: 0;
}

/*Inmueble*/

.post .inmueble .galeria a{
	overflow: hidden;
	position: relative;
	display: flex;
	height: 100%;
}

.post .inmueble .galeria .grid a{
	aspect-ratio: 16 / 9;
}

.post .inmueble .galeria a img {
	transition: all 280ms ease;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.post .inmueble .galeria a::after {
	content: '\f06e';
	font-family: "Font Awesome 6 Free";
	font-weight: 500;
	color: white;
	transform: translate(-50%,-50%);
	opacity: 0;
	transition: all 280ms ease;
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 3;
}

.post .inmueble .galeria a:hover::after {
	opacity: 1;
	transform: translate(-50%,-50%);
}

.post .inmueble .galeria a:hover img {
	filter: brightness(0.5);
}

.post .inmueble .galeria a:nth-child(n+5) {
    display: none;
}

.post .inmueble .galeria a .side-button {
	position: absolute;
	right: 5px;
	bottom: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: rgba(0, 0, 0, 0.6);
	font-size: 20px;
	transition: all 280ms ease;
	padding: 10px 20px;
	border-radius: 3px;
	font-family: Arial, Helvetica, sans-serif;
}

.post .inmueble .galeria a:hover .side-button{
	background-color: rgba(0, 0, 0, 1);
}

.post .inmueble .galeria a .side-button.center {
	width: 100%;
	height: 100%;
	font-size: 28px;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	transform: none;
}

.post .inmueble .galeria a:hover .side-button.center{
	opacity: 0;
}

.fancybox__content{
	height: 80vh !important;
	width: 80vw !important;
}

.post .inmueble .datos p.title {
	font-size: var(--size-26);
	font-weight: 600;
}

.post .inmueble .datos p.title:first-child {
	margin-top: 0 !important;
}

.post .inmueble .datos span{
	display: flex;
	gap: 10px;
	align-items: center;
	font-family: Arial, Helvetica, sans-serif;
}

.post .inmueble .datos span img{
	height: 20px;
	width: auto;
}

.post .inmueble .precio {
	border: 1px solid black;
	border-radius: 3px;
	padding: 15px 19px;
	margin-bottom: 20px;
}

.post .inmueble .precio p {
	margin-top: 5px;
	font-weight: 600;
	width: 100%;
	font-size: 30px;
	margin-bottom: -10px;
}

.post .inmueble .entorno{
	display: flex;
	gap: 5px;
	flex-wrap: wrap;
}

.post .inmueble .entorno span {
	background-color: var(--grey);
	padding: 5px 10px;
	border-radius: 50px;
	color: white;
	font-size: 13px;
	font-family: Arial, Helvetica, sans-serif;
}

.post .inmueble .datos .energetica{
	display: flex;
	gap: 35px;
	align-items: center;
	overflow: hidden;
	width: 100%;
}

.post .inmueble .energetica .letra {
	display: flex;
	width: 30px;
	height: 40px;
	justify-content: center;
	align-items: center;
	color: white;
	position: relative;
	font-weight: bold;
	font-size: 18px;
	padding-left: 10px;
}

.post .inmueble .energetica .letra::after {
	content: '';
	width: 40px;
	height: 40px;
	transform: rotate(45deg);
	display: flex;
	position: absolute;
	z-index: -1;
	right: -15px;
}

.post .inmueble .energetica .info {
	display: flex;
	flex-direction: column;
}

.post .inmueble .energetica p{
	margin: 0;
	font-size: 14px;
}

.post .inmueble .vendido{
	background-color: black;
	color: white;
	padding: 20px 30px 10px 30px;
	font-size: 32px;
	text-align: center;
}

.eficienca_A,.eficienca_A:after{background-color: #009639 !important;}
.eficienca_B,.eficienca_B:after{background-color: #39B54A !important;}
.eficienca_C,.eficienca_C:after{background-color: #8DC63F !important;}
.eficienca_D,.eficienca_D:after{background-color: #FCEE21 !important;}
.eficienca_E,.eficienca_E:after{background-color: #F7941D !important;}
.eficienca_F,.eficienca_F:after{background-color: #ED1C24 !important;}
.eficienca_G,.eficienca_G:after{background-color: #A6001A !important;}

hr {
	width: 100%;
	border-top: none;
	border-bottom: 1px solid #c7c7c7;
	border-left: none;
	border-right: none;
}

/* Blog */

#blog-nav a {
	padding: 10px 10px 8px 10px;
	line-height: 1;
	border: 2px solid black;
	color: black;
	transition: all 280ms ease;
}

#blog-nav a.current,
#blog-nav a:hover {
	color: #fff;
	background: #000;
}

#blog div article {
	background-color: var(--softgrey);
}

#blog div article:nth-child(even) {
	flex-direction: row-reverse;
}

#blog div article > figure {
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

#blog div article > figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 280ms ease;
}

#blog div article > figure:hover img {
	transform: scale(1.1);
}

#blog div article > div > .post-meta a {
	color: #000;
}

#blog div article > div > span {
	font-size: var(--size-14);
}

#blog div article > div h3 {
	font-size: var(--size-26);
	font-weight: 600;
	line-height: 1.2;
}

#blog div article > div p {
	width: 100%;
	font-size: var(--size-18);
	color: var(--grey);

}

#blog div article > div h3 a {
	color: #000;
}

#blog div article > div > a {
	width: fit-content;
	color: black;
}

#pagination span,
#pagination a {
	width: 60px;
	height: 40px;
	padding-top: 3px;
	background: #000;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 280ms ease;
}

#pagination a:hover {
	transform: scale(1.07);
}

#pagination span {
	color: #000;
	background-color: #fff;
	border: 2px solid #000;
}

.post.service #content > article {
	padding-left: 0;
	padding-right: 110px;
}

#related p.title {
	font-size: var(--size-26);
	font-weight: 600;
}

#related article {
	background-color: black;
}

#related article h3 {
	width: 100%;
	font-size: var(--size-20);
	line-height: 1.2em;
	font-weight: 600;
	color: #fff;
	background: none;
	transition: all 280ms ease;
}

#related .instagram {
	margin-top: var(--space-20);
}

.insta_link {
	text-transform: none;
	margin: auto;
	margin-top: var(--space-30);
}

.insta_link i {
	font-size: 20px;
}

.insta_link span {
	margin-top: 3px;
}

.post.service #content nav {
	margin-right: 0;
}

.post.service #content nav a {
	width: 100%;
	color: #fff;
}

.post.service #content nav a:hover {
	background-color: transparent;
}

.post.service #content figure img {
	transition: all 280ms ease;
}

.post.service #content #related article:hover img {
	transform: scale(1.1);
}

#related article p {
	width: 100%;
}

.post.service #content #related {
	width: 30%;
}

.service #content nav a:hover {
	background: #000;
	color: #fff;
	transform: none;
}

.post.service #content > article h1 {
	font-size: var(--size-34);
	line-height: 1.2em;
}

.post.service #content nav a::before {
	display: none;
}

#topbar {
	padding-top: 15px;
	border-bottom: 2px solid #000;
	padding-bottom: 13px;
	opacity: 0;
	transform: translateY(-100%);
	pointer-events: none;
	transition: all 280ms ease;
}

#topbar.fixed {
	opacity: 1;
	transform: none;
	pointer-events: all;
}

.service #content > article #topbar p {
	margin-bottom: 0;
	font-size: var(--size-16);
	font-weight: var(--weight-600);
	line-height: 0.9;
}

.service #content > article #topbar a {
	color: black;
}

.service #content > article #topbar button {
	padding: 0;
	margin-right: 10px;
	border: 0;
	background-color: transparent;
}

/* Footer */

#bottom-cta {
	background-color: #fff;
}

#bottom-cta > div {
	padding: 110px;
	background-position: center right;
	background-color: #fff;
}

#bottom-cta h3 {
	font-size: var(--size-34);
	margin-bottom: 25px;
	font-weight: 900;
	text-transform: uppercase;
}

#bottom-cta div figure {
	opacity: 0.5;
}

#bottom-cta p {
	margin-bottom: 45px;
	font-size: var(--size-20);
}

#bottom-cta .inputs {
	max-width: 620px;
	margin-bottom: 20px;
	grid-template-columns: 150px 200px 160px;
}

#bottom-cta [type="text"],
#bottom-cta [type="email"] {
	height: 40px;
	font-size: var(--size-16);
}

#bottom-cta [type="submit"] {
	height: 40px;
	font-size: var(--size-16);
	font-weight: 400;
	text-transform: none;
	border-radius: 0px;
}

#bottom-cta .sent .wpcf7-response-output {
	width: calc(100% + 2px);
	height: 100%;
	padding: 0;
	margin: 0;
	background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0;
	left: 0;
}

#footer {
	padding-block: 100px 50px;
	font-size: var(--size-16);
	background-color: #000;
	color: #fff;
	gap: 90px;
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: -1;
}

#footer > div {
	width: 100%;
	max-width: 1700px;
}

#footer #info > div {
	line-height: 1.5;
	gap: 90px;
}

#footer #info div .logo {
	margin-right: -45px;
}

#footer #info div h3 {
	font-weight: 900;
	margin-bottom: 15px;
	text-transform: uppercase;
}

#footer #info nav .menu {
	margin-bottom: 35px;
	gap: 15px;
}

#footer #info nav .menu a {
	font-size: var(--size-16);
	font-weight: 400;
	text-transform: uppercase;
}

#footer #info nav .social {
	font-size: 28px;
	gap: 25px;
}

#footer #copy {
	padding-top: 25px;
	border-top: 2px solid #333;
}

#footer #copy nav span:not(:last-child)::after {
	content: '|';
	margin: 0 10px;
}

#footer #copy p {
	font-size: var(--size-14);
}


/* Misc */

.lity-active,
.lity-active body {
	overflow: hidden;
}

.lity {
	z-index: 9990;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	white-space: nowrap;
	background: #0b0b0b;
	background: rgba(0, 0, 0, .9);
	outline: none !important;
	opacity: 0;
	-webkit-transition: opacity .3s ease;
	-o-transition: opacity .3s ease;
	transition: opacity .3s ease;
}

.lity.lity-opened {
	opacity: 1;
}

.lity.lity-closed {
	opacity: 0;
}

.lity * {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.lity-wrap {
	z-index: 9990;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	text-align: center;
	outline: none !important;
}

.lity-wrap::before {
	content: '';
	display: inline-block;
	height: 100%;
	vertical-align: middle;
	margin-right: -0.25em;
}

.lity-loader {
	z-index: 9991;
	color: #fff;
	position: absolute;
	top: 50%;
	margin-top: -0.8em;
	width: 100%;
	text-align: center;
	font-size: 14px;
	font-family: Arial, Helvetica, sans-serif;
	opacity: 0;
	-webkit-transition: opacity .3s ease;
	-o-transition: opacity .3s ease;
	transition: opacity .3s ease;
}

.lity-loading .lity-loader {
	opacity: 1;
}

.lity-container {
	z-index: 9992;
	position: relative;
	text-align: left;
	vertical-align: middle;
	display: inline-block;
	white-space: normal;
	max-width: 100%;
	max-height: 100%;
	outline: none !important;
}

.lity-content {
	z-index: 9993;
	width: 100%;
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
	-webkit-transition: -webkit-transform .3s ease;
	transition: -webkit-transform .3s ease;
	-o-transition: -o-transform .3s ease;
	transition: transform .3s ease;
	transition: transform .3s ease, -webkit-transform .3s ease, -o-transform .3s ease;
}

.lity-loading .lity-content,
.lity-closed .lity-content {
	-webkit-transform: scale(0.8);
	-ms-transform: scale(0.8);
	-o-transform: scale(0.8);
	transform: scale(0.8);
}

.lity-content::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	display: block;
	right: 0;
	width: auto;
	height: auto;
	z-index: -1;
	-webkit-box-shadow: 0 0 8px rgba(0, 0, 0, .6);
	box-shadow: 0 0 8px rgba(0, 0, 0, .6);
}

.lity-close,
.lity-close:hover,
.lity-close:focus,
.lity-close:active,
.lity-close:visited {
	z-index: 9994;
	width: 35px;
	height: 35px;
	position: fixed;
	right: 20px;
	top: 20px;
	-webkit-appearance: none;
	cursor: pointer;
	text-decoration: none;
	text-align: center;
	padding: 0;
	color: #fff;
	font-style: normal;
	font-size: 35px;
	font-family: Arial, Baskerville, monospace;
	line-height: 35px;
	text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
	border: 0;
	background: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.lity-close::-moz-focus-inner {
	border: 0;
	padding: 0;
}

.lity-close:active {
	top: 1px;
}

.lity-image img {
	max-width: 100%;
	display: block;
	line-height: 0;
	border: 0;
}

.lity-iframe .lity-container {
	width: 100%;
	max-width: 964px;
}

.lity-iframe-container {
	width: 100%;
	height: 0;
	padding-top: 56.25%;
	overflow: auto;
	pointer-events: auto;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-overflow-scrolling: touch;
}

.lity-iframe-container iframe {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-webkit-box-shadow: 0 0 8px rgba(0, 0, 0, .6);
	box-shadow: 0 0 8px rgba(0, 0, 0, .6);
	background: #000;
}

.lity-hide {
	display: none;
}

.popup {
	background-color: rgb(0 0 0 / 0%);
	pointer-events: none;
	transition-delay: 280ms;
	visibility: hidden;
}

.popup.active {
	backdrop-filter: grayscale(1);
	background-color: rgb(0 0 0 / 80%);
	pointer-events: all;
	transition-delay: 0ms;
	visibility: visible;
}

.popup > div {
	padding: 50px;
	opacity: 0;
	background-color: #fff;
	transform: translateY(50px);
}

.popup.active > div {
	transform: none;
	opacity: 1;
	transition-delay: 280ms;
}

.popup .close {
	width: 30px;
	height: 30px;
	margin: 20px;
	cursor: pointer;
	pointer-events: none;
}

.popup.active .close {
	pointer-events: all;
	z-index: 1;
}

.popup .close::before,
.popup .close::after {
	content: '';
	width: 100%;
	height: 2px;
	background-color: var(--grey);
	transition: all 280ms ease;
	position: absolute;
}

.popup .close::before {
	transform: rotate(45deg);
}

.popup .close::after {
	transform: rotate(-45deg);
}

.popup .close:hover::before,
.popup .close:hover::after {
	background-color: #000;
}

.popup [readonly="readonly"] {
	display: none;
}

.popup .text {
	gap: 20px;
	margin-bottom: 30px;
}

.popup .text h3 {
	font-size: var(--size-34);
	font-weight: 600;
	text-transform: uppercase;
}

.popup .sent .wpcf7-response-output {
	width: 100%;
	padding: 0;
	margin: 0;
	font-size: var(--size-20);
	background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: -2px;
	bottom: -2px;
	left: 0;
	z-index: 10;
}

.wpcf7 .wpcf7-form {
	width: 100%;
	position: relative;
}

.wpcf7 .fields {
	gap: 40px;
}

.wpcf7 .inputs {
	gap: 20px;
}

.wpcf7 .select,
.wpcf7 [type="text"],
.wpcf7 [type="email"],
.wpcf7 [type="tel"],
.wpcf7 textarea {
	width: 100%;
	height: 50px;
	padding-top: 8px;
	padding-left: 15px;
	border: 2px solid #000;
	font-size: var(--size-16);
	border-radius: 0px;
}

.wpcf7 .select {
	color: var(--grey);
	padding-right: 50px;
	background: #fff url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E') no-repeat right 15px top 55%;
	overflow: hidden;
	text-overflow: ellipsis;
	appearance: none;
	cursor: pointer;
}

.wpcf7 textarea {
	padding: 15px;
	height: 100px;
}

.wpcf7 .showinfo {
	font-size: var(--size-14);
}

.wpcf7 .form,
.wpcf7 .last {
	gap: 20px;
}

.wpcf7 p.privacy-info,
#hero .wpcf7 p.privacy-info {
	margin-top: 5px;
	bottom: 0;
	font-size: 12px;
	line-height: 1;
	text-align: justify;
	hyphens: auto;
	float: right;
}

.wpcf7 .showinfo {
	cursor: pointer;
}

.wpcf7 .showinfo i {
	width: 14px;
}

.wpcf7 .flatpickr-calendar {
	border-radius: 0;
	border: 2px solid #000;
}

.wpcf7 .flatpickr-calendar .flatpickr-months {
	margin-bottom: 8px;
	border-bottom: 1px solid #000;
}

.wpcf7 .flatpickr-calendar .flatpickr-months select {
	appearance: none;
}

.wpcf7 .flatpickr-calendar .flatpickr-time {
	margin-top: 15px;
	border-top-color: #000;
}

.wpcf7 .flatpickr-calendar .flatpickr-time input {
	font-weight: 600;
	font-size: var(--size-300);
}

.wpcf7 .flatpickr-calendar .flatpickr-day {
	border-radius: 0;
}

.wpcf7 .flatpickr-calendar .flatpickr-day.selected {
	background-color: #000;
	border-color: #000;
}

.wpcf7 .last label {
	cursor: pointer;
}

.wpcf7 [type="submit"] {
	border: 0;
	align-self: flex-end;
	transition: all 280ms ease;
	border-radius: 0px;
}

.wpcf7 [type="submit"]:disabled {
	opacity: 0.25;
}

.wpcf7 [data-name="acceptance"] label {
	font-size: var(--size-300);
	color: #000;
	display: flex;
	align-items: center;
	cursor: pointer;
	float: left;
	position: relative;
}

.wpcf7 [data-name="acceptance"] label span {
	transform: translateY(2px);
	text-align: left;
}

.wpcf7 [data-name="acceptance"] label input {
	width: 18px;
	height: 18px;
	opacity: 0;
	cursor: pointer;
	position: absolute;
}

.wpcf7 [data-name="acceptance"] label::before {
	content: '';
	min-width: 14px;
	max-width: 14px;
	height: 14px;
	margin-right: 10px;
	border: 2px solid currentcolor;
	float: left;
}

.wpcf7 [data-name="acceptance"] label::after {
	content: '';
	width: 10px;
	height: 10px;
	background-color: currentcolor;
	transform: scale(0);
	transition: all 120ms ease;
	position: absolute;
	left: 4px;
}

.wpcf7 [data-name="acceptance"] label.active::after {
	transform: none;
}

.wpcf7 a {
	color: #000;
	text-decoration: underline;
	background: none;
}

.wpcf7 a i {
	font-size: 12px;
	transform: scale(0);
	transition: all 280ms ease;
	position: relative;
	top: -1px;
}

.wpcf7 a:hover i {
	transform: none;
}

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

.wpcf7 .wpcf7-spinner {
	margin: 0;
	border-radius: 0;
	background-color: rgb(0 0 0 / 70%);
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0;
	left: 0;
}

.wpcf7 .wpcf7-spinner::before {
	display: none;
}

.wpcf7 .wpcf7-spinner span {
	content: '';
	width: 5px;
	height: 5px;
	background-color: #fff;
	animation-name: loading;
	animation-duration: 1s;
	animation-iteration-count: infinite;
}

.grecaptcha-badge{
	opacity: 0;
	pointer-events: none;
}

@keyframes loading {
	0% {
		width: 5px;
	}

	50% {
		width: 90%;
	}

	100% {
		width: 5px;
	}

}

.wpcf7 .wpcf7-not-valid-tip {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 7.5px 10px 7.5px 0;
	border-color: transparent #e91e63 transparent transparent;
	text-indent: -9999px;
	transform: translateY(-50%);
	overflow: hidden;
	position: absolute;
	right: 5px;
	top: 50%;
}

.wpcf7 form.invalid .wpcf7-response-output {
	display: none;
}

#whatsapp {
	width: 70px;
	height: 70px;
	background: none;
	background-color: #25d366;
	color: #fff;
	font-size: 32px;
	right: 20px;
	bottom: 20px;
	z-index: 10;
}

#up {
	width: 30px;
	height: 30px;
	background: none;
	background-color: #000;
	color: #fff;
	font-size: 18px;
	opacity: 0;
	transform: translateY(30px);
	pointer-events: none;
	right: 40px;
	bottom: 110px;
	z-index: 9;
}

#up.active {
	opacity: 1;
	transform: scale(1);
	pointer-events: all;
}

.edit-post {
	width: 40px;
	height: 44px;
	padding-right: 3px;
	padding-top: 2px;
	font-size: var(--size-20);
	background: none;
	background-color: #2196f3;
	transform: translateY(-50%);
	left: 20px;
}

@keyframes pulse {
	10% {
		transform: scale(1.2)
	}

}

.delay-0 {
	animation-delay: 0ms
}

.delay-140 {
	animation-delay: 140ms
}

.delay-280 {
	animation-delay: 280ms
}

.delay-420 {
	animation-delay: 420ms
}

.delay-560 {
	animation-delay: 560ms
}

#banner-cookies .cookies-wrapper {
	opacity: 1;
	transform: none;
}


/* CARD */

#card #logo {
	margin-top: 40px;	
}

#card #logo img {
	width: 120px;
}

#card h1 {
	font-size: 30px;
	font-weight: 600;
	margin-top: 20px;
	margin-bottom: 0;
}

#card h2 {
	font-size: 16px;
	font-weight: normal;
	font-style: italic;
	color: var(--grey);
	margin: 0;
	margin-bottom: 10px;
}

#card figure {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;

}

#card figure img{
	width: 200px;
	height: 200px;
	object-fit: cover;
	border-radius: 100%;
	overflow: hidden;
}

#card .info a{
	width: fit-content;
	color: black;
}

#card a:hover:not(.wp-block-button__link) {
	background: none;
}

#card .info .contact a:last-child::before {
	content: '/';
	display: inline-block;
	margin-right: 10px;
	position: absolute;
	left: -18px;
}

#card .home {
	position: relative;
}

#card .home::after {
	content: '';
    width: 18px;
    height: 16px;
    background-image: url(images/heart.svg);
    background-size: cover;
    display: block;
    margin: auto;
    margin-top: 5px;
}

