@import url('./_config.css');

/* navbar */

.navbar-logo, .navbar-logo-image {
	transition: all var(--fastSpeed) var(--easeOutCubic);
}

.navbar-logo {
	margin: 50px 0;
}

.navbar-logo-image {
	display: block;
	height: 29px;
}

.navbar {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 999;
	transition: all var(--fastSpeed) var(--easeOutCubic);
	border-bottom: 1px solid hsla(0, 0%, 100%, .2);
	background: linear-gradient(black, transparent);
}


.container {
	max-width: 90%;
	width: var(--containerWidth);
}


/* navbar-nav */

.navbar-nav {
	margin: 0;
	padding: 0;
	list-style: none;
	align-items: center;
}

.navbar-nav li {
	list-style: none;
	display: block;
	position: relative;
	margin: 0;
	padding: 0;
}

.navbar-nav > li:not(:first-child) {
	margin-left: 40px;
}

.navbar-nav > li > a {
	color: white;
	font-size: 0.75rem;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	font-weight: 700;
	display: inline-flex;
	text-decoration: none;
	padding: 54px 0;
	transition: all .2s;
}

.nav-dropdown > a::after {
	filter: invert(1);
}


.navbar-nav a::before {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--primary);
	transition: all .2s var(--easeOutCubic);
}

.navbar-nav li:hover > a::before,
.navbar-nav a:hover::before,
.navbar-nav .nav-active::before {
	width: 100%;
}

.navbar-nav ul {
	position: absolute;
	display: none;
	top: 100%;
	left: 0;
	margin: 0;
	padding: 0;
	min-width: 250px;
	background-color: hsl(0, 0%, 100%);
	box-shadow: 0 10px 30px hsla(0, 0%, 0%, .2);
}

.navbar-nav ul a {
	padding: 10px 15px;
	display: flex;
	font-size: 0.875rem;
	color: var(--textColor);
	justify-content: space-between;
	text-decoration: none;
}

.navbar-nav ul a::after {
	transform: rotate(-90deg);
	filter: invert(0);
}

@keyframes showDropdown {
	0% {opacity: 0; transform: translateY(-10px);}
	100% {opacity: 1; transform: translateY(0);}
}

@keyframes showNextDropdown {
	0% {opacity: 0; transform: translateX(-10px);}
	100% {opacity: 1; transform: translateX(0);}
}

.navbar-nav > li > .open,
.navbar-nav .nav-dropdown:hover > ul {
	display: block;
	animation: showDropdown .3s 1 forwards;
}

.navbar-nav .open .open,
.navbar-nav ul .nav-dropdown:hover > ul {
	display: block;
	animation: showNextDropdown .3s 1 forwards;
}

.navbar-nav ul ul {
	top: 0; left: 100%;
}

.affix {
	background-color: hsla(0, 0%, 0%, .8);
	backdrop-filter: blur(5px);
}

.affix .navbar-logo {
	margin: 15px 0;
}

.affix .navbar-nav > li > a {
	padding: 18.5px 0;
}


/* mobile menu */

.mobile-menu-toggler {
	width: 32px;
	height: 24px;
	padding: 0;
	border: 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-end;
	position: relative;
	background: none;
	transition: all var(--fastSpeed) var(--easeOutBack);
	outline: none;
}

.mobile-menu-toggler span {
	display: block;
	height: 2px;
	width: 100%;
	background-color: var(--primary);
	transition: all var(--fastSpeed) var(--easeOutBack);
	transform-origin: right;
}

.mobile-menu-toggler span:last-child {
	width: 70%;
}

.mobile-menu-toggler.active-toggler span:first-of-type {
	transform: rotate(-45deg);
}

.mobile-menu-toggler.active-toggler span:last-child {
	transform: rotate(45deg);
	width: 100%;
}

.mobile-menu-toggler.active-toggler span:nth-of-type(2) {
	display: none;
}

.mobile-nav {
	transition: transform var(--fastSpeed) var(--easeOutQuart);
	transform: translateX(-100%);
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
	max-width: 80vw;
	width: 300px;
	background-color: var(--primary);
	margin: 0;
	padding: 0;
	z-index: 99999;
	overflow-y: auto;
}

.mobile-nav.show {
	transform: translateX(0);
}

.mobile-nav ul,
.mobile-nav li {
	list-style: none;
	margin: 0;
	padding: 0;
}

.mobile-nav ul {
	background-color: hsla(0, 0%, 0%, .3);
}

.mobile-nav a {
	display: block;
	font-size: 1rem;
	text-decoration: none;
	font-weight: 700;
	color: white;
	box-sizing: border-box;
	padding: 10px 15px;
	border-bottom: 1px solid hsla(0, 0%, 100%, .2);
	transition: all .3s ease;
}

.mobile-nav ul a {
	font-size: 0.875rem;
	font-weight: normal;
	padding-left: 30px;
}

.mobile-nav ul ul a {
	padding-left: 45px;
}

.mobile-nav a:hover,
.mobile-nav a.active {
	color: var(--primary);
	background-color: var(--secondary);
}

a {text-decoration: none;}




h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
}

b, strong {
	font-weight: 700;
}


.header-top h1 {
	color: white;
	margin: 120px 0 0 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.header-top h1 span {
	display: block;
	margin-bottom: 5px;
	line-height: 1;
	padding: 12px 20px;
	background: var(--primary);
}


.box {
	display: flex;
	align-items: center;
	position: relative;
	background: linear-gradient(90deg, white, hsl(0, 0%, 95%));
	box-shadow: 0 0 30px hsla(0, 0%, 0%, .1);
}

.box::after {
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 15;
	content: '';
	display: block;
	width: 50px;
	height: 50px;
	background: url(/assets/img/plus.svg) center no-repeat;
}

.box img {
	mix-blend-mode: darken;
	flex-shrink: 0;
	margin-right: 15px;
	position: relative;
	z-index: 1;
}

.box .caption {
	position: absolute;
	z-index: 20;
	right: 0;
	width: 50%;
	color: var(--titleColor);
	transition: all .6s ease;
}

.box:hover .caption {
	width: 48%;
}

.box .caption small {
	font-size: 0.75rem;
	display: block;
	margin-bottom: 10px;
}

.box .caption strong {
	font-size: 1.75rem;
	display: block;
	line-height: 1.2;
	transition: color .2s;
}

.box:hover .caption strong {
	color: var(--primary);
}


#firma {
	padding: var(--sectionPadding) 0;
}

#firma h2 {
	margin-top: 0;
	margin-bottom: 20px;
}

#firma p:last-child {margin-bottom: 0;}

#firma h3 {
	margin: 15px 0;
}



















.madeby {
	color: white;
	text-decoration: none;
	line-height: 1;
	display: inline-block;
}

.madeby small {
	float: left;
	margin: 4px 4px 0 0;
	font-size: 0.6875rem;
}


footer {
	background-color: black;
	color: white;
}

address {font-style: normal;}

footer hr {
	opacity: .2;
	background-color: #fff;
	margin: 0;
}

footer ul {
	margin: 0;
	padding: 0;
}

footer h6 {
	font-size: var(--h5);
	margin-top: 0;
	margin-bottom: 20px;
}

footer li {
	margin: 0 0 10px 0;
	padding: 0;
	list-style: none;
}

footer a {
	color: white;
	transition: opacity .2s;
}

footer a:hover {
	opacity: .8;
}


#mapa iframe {
	width: 100%;
	display: block;
	filter: grayscale(1);
}

.pt-sp {padding-top: var(--sectionPadding);}
.pb-sp {padding-bottom: var(--sectionPadding);}
.gap-0 {gap: 0}
.gap-10 {gap: 10px}
.gap-15 {gap: 15px}




@media screen and (max-width: 1536px) {
	.box img {
		max-width: 50%;
		height: 250px;
		object-fit: cover;
		object-position: right;
	}
}

@media screen and (max-width: 1336px) {
	.box .caption {width: 55%;}
	.box:hover .caption {
		width: 53%;
	}

	.box img {
		max-width: 44%;
		height: 210px;
	}
}

@media screen and (max-width: 1024px) {
	header h1 {
		font-size: var(--h3);
	}

	.box::after {
		display: none;
	}

	.box .caption strong {font-size: 1.25rem;}

	.box .caption {
		width: 52%;
	}

	.box:hover .caption {
		width: 51%;
	}

	#firma h3 {font-size: var(--h4);}
}



@media screen and (max-width: 1023px) {
	.header-top h1 {
		align-items: center;
		justify-content: center;
		width: 100%;
	}

	header .swiper-slide img {
		height: 400px;
		object-fit: cover;
		object-position: center;
	}

	#firma {
		text-align: center;
	}

	#firma img {
		display: block;
		margin: 30px auto;
	}

	#firma .md\:w-4-12 {
		margin-bottom: 30px;
	}

	footer {
		text-align: center;
	}

	footer .w-full {
		margin-bottom: 30px;
	}

	.copy {
		display: block;
		width: 100%;
		text-align: center;
	}

	body > .social-media {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		position: fixed;
		bottom: 10px;
		right: 10px;
	}

	.social-media a.mr-10 {
		margin-right: 0;
		margin-bottom: 5px;
	}
}


@media screen and (max-width: 640px) {
	.navbar-logo {
		margin: 20px 0;
	}

	header .swiper-slide img {
		height: 300px;
	}
	.header-top h1 span {padding: 8px 13px;}

	.header-top h1 {margin-top: 75px;}
}


@media screen and (max-width: 480px) {


}