html {
	width: 100%;
	height: 100%;
	position:relative;
	overflow: hidden;
}
body {
	width: 100%;
	height: 100%;
	margin: 0;
	background: url('./assets/bg.png');
	background-size: cover;
    background-position-y: center;
}
.container {
    height: -webkit-fill-available;
    display: flex;
    align-items: center;
    padding:1.5rem;
    position: relative;
}
body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); /* Couleur d'arrière-plan semi-transparente */
}
h2.title.title_2 {
    font-size: 45px;
    margin: 0;
    font-weight: 900;
}
.text_lp {
	font-family: 'Montserrat', sans-serif;
}
a.cta:hover {
    background: #FFE235;
    color: #000;
    font-weight: 600;
}
.title {
    color: #fbfbfb;
    font-weight: bold;
    font-size: 1.15rem;
}
.percent_lp {
	font-size: 10rem;
    line-height: 100px;
    color: #FFE235;
    font-weight: bolder;
}
.p_ {
	font-size: 3rem;
	position: absolute;
	color: #FFE235;
	font-weight: bold;
}
a.cta {
    color: #FFE235;
    text-decoration: none;
    font-family: Montserrat;
    font-size: 1.3rem;
    padding: 1rem 3rem;
    border: 2px solid #FFE235;
    border-radius: 41px;
    margin: 0;
    position: relative;
    float: left;
    transition-duration: 0.2s;
}
.avis img {
	max-width: 300px;
}
.avis {
    position: absolute;
    bottom: 25px;
}
@media (max-width: 1025px) {
	body {
	    background-repeat: no-repeat;
	    background-size: cover;
	    background-position-x: center;
	    background-position-y: -200px;
	    background-color: #000000ad;
	}
	.container {
		justify-content: end;
    	flex-direction: column;
    	background: linear-gradient(180deg, rgba(244, 233, 243, 0) 10%, rgba(0, 0, 0, 1) 100%);
	}
	.title {
	    font-size: 1rem;
	    text-align: center;
	}
	.title_2 {
		font-size: 1.85rem !important;
	}
	.text_lp {
		display: flex;
    	justify-content: center;
    	align-items: center;
    	flex-direction: column;
	}
	.avis {
		position: relative;
		margin: 15px auto;
		bottom: unset;
	}
	.percent_lp {
		font-size: 9rem;
	    line-height: 100px;
	}
}