.education {
    padding: 20px 0;

    .section_header {
        padding-bottom: 20px;

        h4 {
            font-size: 26px;
            font-weight: 500;
            color: $black;
            border-bottom: 2px solid $primaryColor;
            display: inline-block;
            padding: 10px 0;
        }
    }

    .education_wrapper {
        .education_wrap {
            .edu_wrap_content {
                margin-bottom: 50px;
                h4 {
                    font-size: 18px;
                    font-weight: 400;
                    color: $primaryColor;
                }

                h5 {
                    font-size: 15px;
                    font-weight: 400;
                    color: $black;
                    position: relative;

                    &::after {
                        position: absolute;
                        content: '';
                        bottom: -5px;
                        left: 0;
                        height: 2px;
                        width: 60px;
                        background-color: $primaryColor;
                    }
                }

                h6 {
                    font-size: 24px;
                    font-weight: 500;
                    color: $black;
                    line-height: 34px;
                }
            }

        }

        .education_img {
            height: 400px;
            width: 400px;
            background: linear-gradient(to top, #5f0a9c 0%, #d33df1 100%);
            border-radius: 50%;
            position: relative;
            z-index: 1;

            &::after {
                position: absolute;
                content: '';
                top: -15px;
                left: -15px;
                height: 100%;
                width: 100%;
                transform: scale(1.1);
                border-radius: 50%;
                background-color: #d91aff7e;
                z-index: -1;
            }

            img {
                width: 100%;
            }

        }
    }
}