.hero {
	position: relative;
	overflow: initial;
	margin-inline: 15px;
	    z-index: 99;

	margin-top: 0px;
}
.hero__content.wide {
    max-width: 100%;
}
.hero__background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.hero__background-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
		border-radius: 10px;

	object-position: center;
}


.hero__container {
	position: relative;
	padding-top: clamp(1.5625rem, 0.7639rem + 2.5556vw, 3rem);
/* 	overflow: hidden; */
	padding-bottom: 124px;
	padding-left: clamp(1.1875rem, 0.4583rem + 2.3333vw, 2.5rem);
	
		max-width: 1160px;

}
.TVSearchResults {
    position: absolute;
    background: #fff;
    z-index: 99;
    padding: 20px;
    max-width: calc(100% - 40px);
    margin-top: 20px;
/*     max-height: 600px; */
/*     overflow: scroll; */
}


.hero__content {
	color: var(--white);
	max-width: 630px;
	position: relative;
	z-index: 1;
}

.hero__title {
	font-size: clamp(1.5rem, 0.8049rem + 2.9268vw, 3rem);
	;
	line-height: 1.2;
	letter-spacing: -0.01em;
	text-transform: uppercase;
	margin-bottom: 30px;
	font-weight: 700;
}

.hero__text {
	line-height: 1.3;
	margin-bottom: 40px;
	font-weight: 700;
}

.hero__text b {
	color: var(--whatsapp);
}

.hero__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

@media (max-width: 576px) {
	.hero {
		margin-inline: 0px;
	}

	.hero__container {
		padding-bottom: 20px;
	}

	.hero__buttons {
		flex-direction: column;
		align-items: center;
		gap: 10px;
	}

	.hero__button {
		width: 100%;
		max-width: 300px;
	}

	.buttons__detail--hero {
		order: -1;
		position: static;
		flex-direction: column;
		transform: inherit;
		align-items: center;
		margin-left: auto;
		margin-bottom: 20px;
	}

	.buttons__detail--hero .buttons__arrow {
		transform: rotate(-60deg);
		margin-top: 30px;
	}

	.buttons__detail--hero .buttons__detail-text {
		max-width: 222px;
	}
}