.title-hero{
	position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
	margin-bottom: 41px;
}

.title-hero__p { 
    font-weight: 400;
    line-height: 140%;
    text-align: center;
    color: #FFF;
    margin-bottom: -49px;
	font-size: clamp(64px, 8vw, 160px);
}
.title-hero__h1 { 
    font-weight: 300;
    font-size: clamp(40px, 8vw, 110px);
    line-height: 140%;
    text-align: center;
    color: #FFF;
}

@media (max-width: 768px){
	.title-hero__p{
		margin-bottom: 12px;
        line-height: 100%;
	}
	
	.title-hero__h1 { 
		text-transform: uppercase;
		line-height: 100%;
	}
}