.hero{
	position: relative;
	max-width: 100vw;
	max-height: 100vh;
	max-height: 100vh;
	background-size: cover;
	background-repeat: no-repeat;
	background-position-y: center;
	display: flex;
	justify-content: center;
	background-color: white;
	margin: 0 auto;
}

@media (min-aspect-ratio: 16 / 9) {
	.hero {
		height: 100vh;
		max-height: 1200px;
		aspect-ratio: auto;
	}
}

/* Maximum aspect ratio */
@media (max-aspect-ratio: 16 / 9) {
	.hero {
		aspect-ratio: 16 / 9;
	}
}

.hero * {
	color: white;
}

.hero .suptitle {
	font-size: 32px;
	line-height: 32px;
	margin-bottom: 0.5rem;
}

.hero .title {
	font-size: 50px;
	line-height: 45px;
	margin-bottom: 1rem;
}

.hero .suptitle strong{
	font-weight: bolder;
}

.hero .subtitle {
	font-size: 26px;
	line-height: 26px;
	opacity: 0.9;
	font-weight: 400;
	letter-spacing: 0.05rem;
}

.hero .content {
	position: absolute;
	width: var(--wrapperWidth);
	max-width: var(--wrapperMaxWidth);
	margin-top: 180px;
	margin-bottom: 90px;
	height: calc(100% - 270px);
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: flex-start;
}

.hero .content .bg-color-mobil {
	background-color: transparent;
	/* border-radius: 1rem; */
}

.hero .content .bg-color-mobil.show {
	background-color: rgba(0,0,0,0.3);
	padding: 2rem;
	text-shadow: 1px 1px 8px rgba(0,0,0,0.2);
}

.hero .logo {
	max-height: 40px;
	margin-bottom: 1.5rem;
}

.btnModalContacto {
  background-color: white;
	color: var(--color-base);
	/* background-color: rgba(255,255,255,0.1); */
	/* border: 1px solid white; */
  border-radius: 31px;
  padding: 0.8rem 3rem;
  width: fit-content;
  font-weight: normal;
  font-size: 18px;
  margin-top: 1.5rem;
}


@media all and (max-width: 946px) {
	.hero .content {
		height: calc(100% - 190px);
		margin-top: 100px;
		margin-bottom: 90px;
	}

	.hero .content .bg-color-mobil {
		background-color: rgba(0,0,0,0.3);
		padding: 2rem;
		text-shadow: 1px 1px 8px rgba(0,0,0,0.2);
	}

	.hero .title {
		/* font-size: 38px;
		line-height: 34px; */
		font-size: 34px;
    line-height: 32px;
	}
	
	.hero .subtitle {
		font-size: 20px;
		line-height: 20px;
	}

	.hero .logo {
		max-height: 30px;
		margin-bottom: 1rem;
	}

	.btnModalContacto {
		padding: 0.6rem 3rem;
	}
}

.btnModalContacto:hover { 
	background-color: var(--bs-gray-200);  
	/* border: none; */
}
.btnModalContacto:focus { 
	background-color: var(--bs-gray-400); 
	/* border: none; */
}


.hero .overlay {
	display: none;
	width: 100%;
	height: 150%;
	position: absolute;
	bottom: 0;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(-8.38%, rgba(250, 250, 250, 0.5)), color-stop(91.62%, rgba(0, 0, 0, 0.5)));
	background: linear-gradient(180deg, rgba(250, 250, 250, 0.5) -8.38%, rgba(0, 0, 0, 0.5) 91.62%);
}