.education_opportunities .container{
    max-width: 875px;
}
.education_opportunities .education_wrapper{
    display: flex;
    justify-content: space-between;
	gap:30px;
}
.education_opportunities h2{
    text-align: center;
    margin-bottom: 50px;
}
.education_opportunities .education_wrapper .left_column_img{
    max-width: 100%;
    width: 100%;
}
.education_opportunities .education_wrapper .left_column_img img{
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
.education_opportunities .education_wrapper .right_column_content{
    max-width: 437px;
    width: 100%;
    display: flex;
    align-items: center;
}
.education_opportunities ul li {
    color: #5B5B5B;
    margin-bottom: 12px;
    font-weight: 500;
    position: relative;
    padding-left: 30px;
}
.education_opportunities ul li:before {
    content: "";
    display: flex;
    height: 20px;
    width: 20px;
    background-image: url(../images/list-icon.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    top: 5px;
    left: 0px;
}
@media(max-width:991px){
    .education_opportunities .container{
        max-width: 720px;
    }
    .education_opportunities .education_wrapper{
        gap: 30px;
    }
    .education_opportunities h3{
        margin-bottom: 40px;
    }
}
@media(max-width:767px){
    .education_opportunities .container{
        max-width: 540px;
    }
    .education_opportunities .education_wrapper .left_column_img,
    .education_opportunities .education_wrapper .right_column_content{   
        max-width: 100%;
        width: 100%;
    }
    .education_opportunities .education_wrapper{
        flex-wrap: wrap;
    }
}
@media(max-width:767px){
    .education_opportunities h3{
        margin-bottom: 30px;
        line-height: 30px;
    }
}