.education_section {
    display: flex;
    flex-direction: row;
    /* max-height: calc(100vh - 130px); */
}

.education_section .sec_1 {
    flex-basis: 50%;
    width: 50%;
}

.education_section .sec_2 {
    flex-basis: 50%;
    width: 50%;
    max-height: 100vh;
}


.education_section .sec_1 .education_content {
    max-width: 700px;
    min-height: calc(100vh - 175px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.education_section .sec_1 .education_content .para_text p:first-child{
    margin-top: 0px;
}

.education_section .sec_1 .education_content .para_text p{
    margin-top: 22px;
}

.education_section .sec_2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


@media (max-width: 768px) {
   .page-template-Template-education-php .breadcrumb-item+.breadcrumb-item::before {
        color: var(--color-white);
        content: "/";
        padding-left: 3px !important;
    }
    .education_section {
        flex-direction: column;
        max-height: max-content;
        gap: 36px;
        position: relative;
    }

    .education_section .breadcrumb {
        position: absolute;
        top: 0;
        z-index: 3;
    }
     
    .education_section .breadcrumb .breadcrumb-item, .education_section .breadcrumb .breadcrumb-item a{
        color: var(--color-white);
    }
    .education_section .sec_1 .education_content {
        max-width: auto;
        height: auto;
    }

    .education_section .sec_1 {
        order: 2;
        padding-bottom: 64px;
    }

    .education_section .sec_2 {
        order: 1;
        position: relative;
    }

    .education_section .sec_2::after {
        content: '';
        z-index: 2;
        height: 100%;
        position: absolute;
        width: 100%;
        background: linear-gradient(180deg, rgba(16, 16, 16, 0.70) 0%, rgba(16, 16, 16, 0.00) 54.44%);
        top: 0;
    }
    .education_section .sec_2 img {
        aspect-ratio: 390/365;
        z-index: 1;
        display: block;
    }

    .education_section .sec_1,
    .education_section .sec_2 {
        width: 100%;
        flex-basis: 100%;
    }
}