.edc_mission_item {
	background-color: white;
	-webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.15); 
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.15);
	margin-bottom: 15px;
	border-radius: 10px;
	position: relative;
}

.edc_mission_container {
    display: flex;
}

.edc_mission_container .left_sidebar {
	width: 50%;
	margin-right: 40px;
	padding-left: calc(((100vw - 1300px)/2) + 20px);
	padding-top: 100px;
	padding-right: 150px;
}

.edc_mission_steps {
	width: 50%;
	background-image: url(/wp-content/uploads/2023/05/pattern_lines_vert.svg);
	background-size: 100px auto;
    background-repeat: repeat;
	padding-right: calc(((100vw - 1300px)/2) + 20px);
	padding-top: 100px;
    padding-bottom: 100px;

}

.edc_mission_steps_wrapper {
    width: calc(100% + 150px );
	transform: translate(-150px);
}

.edc_mission_container h2.section_title {
    /*font-size: 2.1rem;*/
    text-align: left;
    hyphens: auto;
}

.accordeon_text {
	max-height: 0;
    overflow: hidden;
	transition: 0.3s;
	/*padding-left: 76px;*/
	
}
.mission_open .accordeon_text{
	max-height: 300px;
	position: relative;
	padding: 0 30px 30px 102px;
}

.mission_open .accordeon_text li{
	margin-bottom: 6px;
}

.edc_mission_item.mission_open::before {
	content:'';
	display: block;
	width: 10px;
	height: 100%;
	position: absolute;
	background-color: var(--color_vert1);
	left: 0;
	top: 0;
}

.edc_mission_item.mission_open {
	overflow: hidden;
}

.accordeon_title > span {
	border: 2px solid var(--color_orange1);
    padding: 0;
    margin-right: 20px;
    border-radius: 50%;
    line-height: 1.1;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 4px;
}

.accordeon_title {
	font-weight: bold;
	display: flex;
	align-items: center;
	cursor: pointer;
	font-size: 1.3rem;
	line-height: 1.1;
	padding: 30px 90px 30px 30px;
	position: relative;
	flex-wrap: wrap;
}

.accordeon_title h3 {
	font-family: 'Gilroy' !important;
	font-size: 1.3rem;
	flex: 1;
	padding-top: 3px;
}

.edc_mission_item.accordeon_active .accordeon_title::after {
	content:'';
	display: block;
	width: 50px;
	height: 50px;
	position: absolute;
	background-color: var(--color_orange1);
	-webkit-mask : url(/wp-content/uploads/2023/04/arrow-right.svg) no-repeat center ;
	mask: url(/wp-content/uploads/2023/04/arrow-right.svg) no-repeat center ;
	right: 0;
	top: 50%;
	transform: rotate(0.25turn) translate(-50%,50%);
}

.mission_open .accordeon_title::after {
	transform: rotate(-0.25turn) translate(50%,-50%);

}

.mission_open .accordeon_title {
	padding-bottom: 0px;
}


/* MEDIA QUERIES */

@media screen and (max-width: 1299px) {

	.edc_mission_steps {
		padding-right: 20px;
	}

}

@media screen and (max-width: 991px) {

	.edc_mission_container{
		flex-direction: column;
	}
	.edc_mission_container .left_sidebar {
		width: 100%;
		padding: 100px 30px 50px 100px;
	}
	.edc_mission_container .edc_mission_steps {
		width: 80%;
		align-self: end;
	}
	.edc_mission_steps_wrapper {
		width: calc(100% + 100px );
		transform: translate(-100px);
	}
	.edc_mission_steps {
		padding-top: 50px;
	}
}

@media screen and (max-width: 767px) {

	.edc_mission_container .left_sidebar {
		padding-left: 20px;
		margin-right: 0;
	}

}

@media screen and (max-width: 479px) {

	.accordeon_title h3 {
		font-size: 1.2rem;
	}
	.edc_mission_steps_wrapper {
		width: calc(100% + 80px );
		transform: translate(-80px);
	}
	.accordeon_title {
		padding: 24px 60px 24px 20px;
	}
	.accordeon_title::after {
		right: -14px;
	}
	.mission_open .accordeon_text{
		padding: 15px 30px 30px 35px;
	}
	

}