.serviceBox3 {
    background: #fff;
    text-align: center;
    padding: 0px 25px 40px;
    margin: 20px 0 0;
    border-radius: 20px;
    position: relative;
    transition: all 0.3s ease;
    min-height: 300px;
    box-shadow: 0 0px 10px var(--lightColor1);
    border: solid 1px #dfdfdf;
}

    .serviceBox3:hover {
        box-shadow: 0 0px 10px rgba(0,0,0,0.5);
        cursor: pointer;
    }

    .serviceBox3:before,
    .serviceBox3:after {
        content: "";
        background: var(--darkColor1);
        width: 10px;
        border-radius: 0 100px 100px 0;
        position: absolute;
        top: 110px;
        bottom: 35px;
        left: 0;
    }

    .serviceBox3:after {
        border-radius: 100px 0 0 100px;
        left: auto;
        right: 0;
    }

    .serviceBox3 .service-icon {
        color: #fff;
        font-size: 45px;
        line-height: 92px;
        width: 120px;
        height: 120px;
        margin: 0 auto;
        border-radius: 100px;
        border: 15px solid #fff;
        box-shadow: 0 0 10px rgba(0,0,0,0.2);
        transform: translateY(-20px);
        transition: all 0.3s ease;
    }

    .serviceBox3:hover .service-icon i {
        transform: rotateX(360deg);
        transition: all 0.3s;
    }

    .serviceBox3:hover .service-icon {
        border-color: var(--darkColor1);
        transition: all 0.6s;
    }

    .serviceBox3 .title {
        color: #008d86;
        font-size: 17px;
        font-weight: 600;
        text-transform: uppercase;
        margin: 0 0 10px;
    }

    .serviceBox3 .description {
        color: #444;
        font-size: 14px;
        line-height: 24px;
        margin: 0;
        margin-bottom: 10px;
    }

    .serviceBox3.pink:before,
    .serviceBox3.pink:after {
        background: var(--darkColor1);
    }

    .serviceBox3.pink .service-icon {
        background: linear-gradient(-45deg,#f53985 49%,#fd47a4 50%);
    }

    .serviceBox3.pink .title {
        color: #f53985;
    }

    .serviceBox3.purple:before,
    .serviceBox3.purple:after {
        background: linear-gradient(to top,#8b33cc 49%,#a23adc);
    }

    .serviceBox3.purple .service-icon {
        background: linear-gradient(-45deg,#8b33cc 49%,#a23adc 50%);
    }

    .serviceBox3.purple .title {
        color: #8b33cc;
    }

    .serviceBox3.blue:before,
    .serviceBox3.blue:after {
        background: linear-gradient(to top,#038bec 49%,#01aeee);
    }

    .serviceBox3.blue .service-icon {
        background: linear-gradient(-45deg,#038bec 49%,#01aeee 50%);
    }

    .serviceBox3.blue .title {
        color: #038bec;
    }

    .serviceBox3 .image-wrapper {
        width: 90px;
        height:90px;
        border-radius: 50%;
        display: block;
        border: solid 2px var(--darkColor1);
    }

.courseType3 .features {
    display: inline-block;
    font-size: 12px;
    padding: 0 10px;
    line-height: 24px;
    border-radius: 12px;
    margin-left: 8px;
    color: #8d80d0;
    background-color: #f6f4ff;
    margin-bottom: 10px;
}

.courseType3 .btn-new {
    color: #fff;
    background-color: transparent;
    background-image: linear-gradient(to right, #03a9f4, #2196f3);
    box-shadow: 0 0 25px 3px rgb(111 187 222 / 35%);
    border: 0;
    font-size: 13px;
    padding: 5px 10px 5px 10px;
    border-radius: .25rem;
    cursor: pointer;
    position: absolute;
    bottom: 15px;
}


.courseType3 .btn-container {
    display: flex;
    justify-content: center;
}

.courseType3 .h-wrapper a {
    float: left;
    border-radius: 50px;
    font-size: 11px;
    min-width: 130px;
    font-weight: 700;
    margin-top: 12px;
}

.courseType3 .h-wrapper .border-title {
    border-right: solid 10px var(--darkColor1);
}

.courseType3 .h-wrapper .title {
    position: relative;
    float: right;
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 0;
    padding: 12px 73px 12px 0;
}

@media only screen and (max-width:990px) {
    .serviceBox3 {
        margin: 20px 0 50px;
    }
}
