body{
	margin: 0;
	color: black!important;
	font-family: 'Nunito', sans-serif!important;
}
p{
	margin: 0!important;
}
::selection{
    color: white;
    background-color: #079992;
}
.text_justify{
	text-align: justify;
}
.bold{
	font-weight: bold;
}
.links{
	color: #079992;
	text-decoration: underline;
	font-weight: bold;
}
/* BTN CTA */
.cta-button{
	display: block;
	position: relative;
	text-decoration: none;
	font-weight: 600;
    border-radius: 18px;
    box-shadow: 2px 4px 12px #00000014;
    padding: 0.5rem 1rem;
	background: transparent;
	overflow: hidden;
}
.cta-button span{
	z-index: 1;
	position: relative;
	transition: color 350ms ease;
}
.cta-button:hover span{
	color: white;
}
.cta-button::after, .cta-button::before{
	content: " ";
	display: block;
	position: absolute;
	width: 100%;
	top: 0;
	bottom: 0;
	right: 0;
	z-index: -1;
}
.cta-button::before{
	transform: translateX(-100%);
	z-index: 1;
}
.cta-button:hover:before{
	transform: translateX(0);
	transition: transform 350ms ease;
}
.cta-button::after {
	z-index: 0;
	transform: translateX(100%);
	transition: none;
	transition: transform 350ms ease;
}
.cta-button:hover:after{
	opacity: 1;
	transform: translateX(0);
	transition: transform 350ms 360ms ease;
}
/* CTA DEVIS */
#btn_rdv{
	border: 2px solid #079992;
}
#btn_rdv::after, #btn_rdv::before{
	background: #079992;
}
.fa-hand-point-right{
	margin-right: 15px;
}
/* container_news */
#container_news{
	width: 71vw;
	padding-left: 1vw;
	margin: 3rem auto 3rem auto;
	border-left: 2px solid #079992;
}
.titre_h1{
	color: #079992;
    text-align: center;
    font-size: 1.5rem;
    padding-bottom: 50px; 
}
.titre_h2{
	text-decoration: underline;
	color: #fa983a;
    font-size: 1rem;
	font-weight: 600;
	padding-top: 5vh;
}
.news_p2{
	padding-top: 3rem;
	display: flex;
}
#container_affiche_salon{
	display: flex;
    justify-content: center;
	width: 25vw;
}
.affiche_salon{
    height: 50vh;
    margin-bottom: 5vh;
	border-radius: 18px;
    box-shadow: 2px 4px 12px #00000014;
    overflow: hidden;
    border: 2px solid #fdfcfc;
}
.affiche_salon img{
	display: block;
    height: 100%;
    object-fit: cover;
    width: auto;
}
#container_infos_pratiques{
	width: 45vw;
	padding-left: 1vw;
}
#container_btn_return{
	display: flex;
	justify-content: center;
	width: 25vw;
	margin: auto;
	padding-bottom: 6rem;
}
.btn_return{
    margin: 0 10px;
    text-decoration: none;
    color: #333;
}
#btn_return{
    background-color: #079992; 
    color: #ffffff;
    font-weight: 600;
    border: 2px solid #079992;
    border-radius: 18px;
    box-shadow: 2px 4px 12px #00000014;
    padding: 0.5rem 2rem;
    transition: all .3s cubic-bezier(0,0,.5,1);
}
@media screen and (max-width: 1250px){
	.titre_h1{
		font-size: 1.4rem;
		padding-bottom: 3rem; 
	}
	.titre_h2{
		font-size: 1rem;
		padding-top: 1rem;
		padding-bottom: 0rem;
	}
	p{
		font-size: 0.75rem;
	}
	.news_rs{
		width: 15vw;
	}
	.news_p2{
		display: block;
	}
	#container_infos_pratiques{
		width: 100%;
	}
	ol, ul{
		padding-left: 1rem;
	}
	li{
		font-size: 0.75rem;
	}
	#container_affiche_salon{
		width: 100%;
	}
	.affiche_salon{
		height: 35vh;
		overflow: visible;
	}
	#container_btn_return{
		padding-bottom: 3rem;
	}
}