
.edc_objectifs_container h2 {
    text-align: center;
}

.edc_objectifs_container {
	padding: 50px 100px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.2);
    opacity: 0;
    transform: scale(0.9);
    transition: 0.7s;
}

.edc_objectifs_container.animated {
    opacity: 1;
    transform: scale(1);
}

.edc_objectifs_content {
    text-align: justify;
}

.edc_objectifs_content blockquote {
    font-size: 2.2rem;
    color: var(--color_orange1);
    font-weight: normal;
    margin: 30px 0;
    line-height: 1.2;
}

.edc_objectifs_enjeux_title_img {
    max-width: 70px;
    align-self: center;
    margin-bottom: 20px;
}


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

	.edc_objectifs_content blockquote {
        font-size: 2rem;
    }

}

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

    .edc_objectifs_container {
        padding: 50px 60px;
    }
	.edc_objectifs_content blockquote {
        font-size: 1.6rem;
    }

}

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

    .edc_objectifs_container {
        padding: 40px 40px;
    }
    .edc_objectifs_content blockquote {
        font-size: 1.4rem;
    }

}