.offres_remonter{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	min-height: 100%;
	height: auto;
	margin-top: 80px;
}

.offres_country_container {
	width: 100%;
	margin-bottom: 50px;
	height: auto;
	min-height: 100%;
	padding: 0 20px;
}

.vignette{
	width: 100%;
	opacity: 1;
	transition: all 0.25s ease-out;
	border: 1px solid #b9b9b9;
	border-radius: 30px;
	padding: 30px;
	margin-bottom: 2rem;
	position: relative;
}


.vignette.active{
	opacity: 1;
}

.vignette p {
	margin-bottom: 50px;
}



.offres_country {
	width: 250px;
	height: 50px;
	background-color: #e4f2fa;
	color: #4ba5ca;
	border-radius: 15px;
	border: none;
	padding-left: 20px;
	cursor: pointer;
	-webkit-appearance: none;
	background-image: url("../../img/fleche_bluereg.png");
	background-repeat: no-repeat;
	background-position: 10em 1em;



}
.offres_country::after {
	background-image: url("../../img/fleche_bluereg.png");
	background-repeat: no-repeat;
	transform: rotate(180deg) translateY(-50%);
	transform-origin: center;
	background-repeat: no-repeat;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;

	}




.offres_title {
	color : #4ba5ca;
	font-size: 18px;
	font-weight: 400;
	display: flex;
	justify-content: flex-start;
}


.offres_country_select {
	color: #b9b9b9;
	font-style: italic;
	font-size: 16px;

}

.offres_country_select span {
	background-color: #4ba5ca;
	width: 40px;
	height: 2px;
	display: flex;
	content: '';
}
.offres_content {

	text-align: justify;
	margin-bottom: 30px;
	margin-top: 30px;

}

.offres_link {
	background: #00b6f2;
    -webkit-border-radius: 45px;
    border-radius: 45px;
    font-size: 16px;
    color: white;
    border: 1px solid transparent;
	text-align: center;
	width: 40%;
	padding: 5px 35px;
	position: absolute;
	bottom: 10px;
	left: 30%;



}

.offres_link:hover{
    background: transparent;
    padding: 5px 35px;
    -webkit-border-radius: 45px;
    border-radius: 45px;
    font-size: 16px;
    color: #00b6f2;
    border: 1px solid #00b6f2;
}

@media (min-width: 1024px) {

	.vignette{
		width: calc(50% - 15px);
		margin-bottom: 4rem;
	}

}