.education-page{
    background:#ffffff;
}

.education-hero img{
    width:100%;
    height:420px;
    object-fit:cover;
    display:block;
}

.education-intro{
    padding:70px 0 40px;
    text-align:center;
}

.container{
    width:100%;
    max-width:1400px;
    margin:auto;
    padding:0 15px;
}

.education-title{
    font-size:32px;
    font-weight:700;
    color:#000000;
    margin-bottom:15px;
}

.education-line{
    width:70px;
    height:4px;
    background:#c40018;
    margin:0 auto 30px;
}

.education-desc{
    margin:auto;
    line-height:1.9;
    color:#444;
    font-size:16px;
}

.education-feature-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
    margin-top:60px;
}

.education-feature-item{
    text-align:center;
}

.education-feature-item img{
    width:110px;
    margin-bottom:20px;
}

.education-feature-item h3{
    font-size:16px;
    line-height:1.5;
    color:#111;
    font-weight:400;
}

.education-solution{
    padding:40px 0 70px;
}

.section-title{
    text-align: center;
    font-size: 32px;
    color: #000000;
    margin: 0 0 1%;
}

.education-map img{
    width:75%;
    display:block;
	margin:0 auto;
}

.education-case-study {
    padding: 3% 0;
    background: #ededed;
}

.case-study-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

.case-study-item img{
    width:100%;
    height:240px;
    object-fit:cover;
    margin-bottom:20px;
}

.case-study-item h3{
    font-size: 16px;
    line-height: 1.5;
    color: #222;
    font-weight: 300;
}

@media(max-width:991px){
	.education-intro {
		padding: 40px 0 40px;
	}
    .education-feature-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .case-study-grid{
        grid-template-columns:1fr;
    }
	
	.education-feature-item img {
		width: 80px;
		margin-bottom: 5px;
	}
	.education-map img {
		width: 100%;
		display: block;
		margin: 0 auto;
	}
    .section-title {
        font-size: 24px;
        margin: 0 0 5%;
    }
    .education-title{
        font-size:24px;
    }
	.education-case-study {
		padding: 10% 0;
	}
	
	.case-study-item img {
		margin-bottom: 15px;
	}

}

@media(max-width:767px){

    .education-hero img{
        height:250px;
    }

}