.commit {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.commit-image {
    padding-right: 0;
}

.commit-content {
    padding-left: 0;
}

.commit-image img {
    /* max-width: 100%; */
    width: 100%;
    max-height: 600px;
    height: auto;
    object-fit: cover;
}

.commit-content .main-content {
    margin-bottom: 1.5rem;
}

.commit-content .main-content .header-title {
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.commit-content .main-content p {
    font-size: 14px;
    line-height: 26px;
    color: #626262;
    text-align: justify;
}

.commit .collapse-header {
    cursor: pointer;
    margin-bottom: 1.5rem;
}

.commit .collapse-header .sub-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.commit .collapse-header.collapsed .sub-title:after {
    content: "\f067";
    font: normal normal normal 14px / 1 FontAwesome;
    text-align: center;
    font-size: 14px;
    color: #ffffff;
}

.commit .collapse-header:not(.collapsed) .sub-title:after {
    content: "\f068";
    font: normal normal normal 14px / 1 FontAwesome;
    text-align: center;
    font-size: 14px;
    color: #ffffff;
}

.commit .collapse-header .sub-title:after {
    background: #0560FD;
    border-radius: 100%;
    width: 28px;
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.commit .collapse-header h5 {
    margin: 0;
    font-size: 24px;
    font-weight: 600 !important;
    text-transform: capitalize;
}

.commit .collapse-content, .our-commitment {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: #626262;
    text-align: justify;
}

.icon-toggle {
    font-size: 24px;
    transition: transform 0.3s;
}

.icon-toggle.collapsed {
    transform: rotate(0);
}

.icon-toggle:not(.collapsed) {
    transform: rotate(180deg);
}

.education-orientation-content {
    width: 100%;
    /* overflow-x: auto; */
}

.education-orientation-content * {
    width: 100%;
    text-wrap: wrap;
}

.education-orientation-content img {
    max-width: 100%;
    height: auto;
}

@media screen and (max-width: 769px) {
    .header-title {
        font-size: 32px !important;
        line-height: 39px;
    }

    .sub-title {
        font-size: 18px !important;
    }

    .commit {
        display: block;
    }

    .commit-image {
        margin-top: 1rem;
    }

    .commit-image, .commit-content {
        padding-right: 0;
        padding-left: 0;
    }
}