.education {
    min-height: 50vh;
}

.education .heading {
    color: #fff;
    font-size: 60px;
    text-align: center;
}

.education .heading span {
    color: orange;
    font-size: 60px;
}

.education .box-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 1rem 0;
    padding-left: 3rem;
}

.education .box-container .box {
    width: 27rem;
    margin: 4rem 1rem;
    padding-left: 4rem;
    border-left: .2rem solid #fff;
    position: relative;
}

.education .box-container .box span {
    font-size: 1.3rem;
    background: orangered;
    color: #fff;
    border-radius: 5rem;
    padding: .5rem 2.5rem;
}

.education .box-container .box h3 {
    font-size: 2rem;
    color: orange;
    padding-top: 1.5rem;
}

.education .box-container .box p {
    font-size: 1.4rem;
    color: #eee;
    padding: 1rem 0;
}

.education .box-container .box i {
    position: absolute;
    top: -1.5rem;
    left: -2.5rem;
    height: 5rem;
    width: 5rem;
    border-radius: 50%;
    line-height: 5rem;
    text-align: center;
    font-size: 2rem;
    color: orangered;
    background: var(--sky);
}



@media screen and (max-width: 768px) {

    .education {
        min-height: 30vh;
    }
    
    .education .heading {
        color: #fff;
        font-size: 40px;
        text-align: center;
    }
    
    .education .heading span {
        color: orange;
        font-size: 40px;
    }
    
    .education .box-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        padding: 1rem 0;
        padding-left: 2rem;
    }
    
    .education .box-container .box {
        width: 24rem;
        margin: 4rem 1rem;
        padding-left: 3rem;
        border-left: .2rem solid #fff;
        position: relative;
    }
    
    .education .box-container .box span {
        font-size: 1.3rem;
        background: orangered;
        color: #fff;
        border-radius: 5rem;
        padding: .5rem 2.5rem;
    }
    
    .education .box-container .box h3 {
        font-size: 1.5rem;
        color: orange;
        padding-top: 1.3rem;
    }
    
    .education .box-container .box p {
        font-size: 1.4rem;
        color: #eee;
        padding: 1rem 0;
    }
    
    .education .box-container .box i {
        position: absolute;
        top: -1.5rem;
        left: -2.5rem;
        height: 5rem;
        width: 5rem;
        border-radius: 50%;
        line-height: 5rem;
        text-align: center;
        font-size: 2rem;
        color: orangered;
        background: var(--sky);
    }
    
}