.convocation-inner {
    display: flex;
    justify-content: center;
    margin-left: -20px;
    align-items: center;
    min-height: 600px;
}

.convocation-container {
    margin: 10px;
    max-width: 100%;
    width: 100%;
    position: relative;
    justify-content: space-around;
    flex-wrap: wrap;
    transition: 0.5s;
}

.convocation-container:hover .convocation-card {
    filter: blur(5px);
    transform: scale(0.7);
}

.convocation-container .convocation-card {
    position: relative;
    width: 250px;
    height: 300px;
    margin-bottom: 50px;
    /* Changes the spacing between cards */
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
}

.convocation-container .convocation-card:hover {
    filter: blur(0px);
    transform: scale(1);
}

.convocation-container .convocation-card:before {
    content: "";
    position: absolute;
    margin-top: 50px;
    /* Changes the spacing between cards */
    width: 100%;
    height: 100%;
    background: #5ea1d3;
    /* #5ea1d3 Changes */
    z-index: 1;
    transition: 0.5s;
}

.convocation-container .convocation-card:hover:before {
    background: #6b57ae;
    transform: scaleY(1.15);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.convocation-container .convocation-card:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    transition: 0.5s;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.convocation-container .convocation-card:hover:after {
    transform: scaleY(1.15);
    color: #fff;
}

.convocation-card:hover p.convocation-para {
    z-index: 1;
    color: #fff;
}

.convocation-container .convocation-card .convocation-content {
    text-align: center;
    z-index: 2;
    padding: 0 20px;
    transition: 0.5s;
    color: #002417;
}

.convocation-container .convocation-card:hover .convocation-content {
    color: #fff;
}

.convocation-container .convocation-card .convocation-content .convocation-header {
    font-size: 3em;
}

.convocation-container .convocation-card .convocation-content .convocation-para {
    font-size: 0.9em;
}

.convocation-container .convocation-card .convocation-content .convocation-anchore {
    display: inline-block;
    margin-top: 15px;
    padding: 5px 10px;
    background: #262626;
    color: #fff;
    text-decoration: none;
}

.convocation-container .convocation-card:hover .convocation-content .convocation-anchore {
    background: #5025de;
}


/* Other Convocation Links CSS */

*,
*::after,
*::before {
    box-sizing: border-box;
}


/* changes */

.other-convocation-link-container {
    background-color: #375076;
    border-radius: 8px;
    color: #fff;
    width: 100%;
    text-align: center;
    margin: 30px auto 0;
    display: block;
}

.other-convocation-link-ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.other-convocation-link-li a {
    color: #fff;
    font-size: 1rem;
    text-decoration: none;
}

.other-convocation-link-li a:hover {
    text-decoration: underline;
    color: #00bcd4;
}

.other-convocation-link-li {
    margin: .5em 0
}


/* Inline links */

.other-convocation-link-anchore {
    position: relative;
    text-decoration: none;
    outline: 0 solid var(--lnk-bg-hvr);
    transition: outline 0s linear 0s, background-color 0s linear 0s;
}

.other-convocation-link-anchore:hover,
.other-convocation-link-anchore:focus {
    z-index: 1;
    color: var(--lnk-hvr);
    background-color: var(--lnk-bg-hvr);
    outline: .3em solid var(--lnk-bg-hvr);
    transition: outline 0.3s ease-out .2s, background-color 0.3s ease-out .2s;
}

.lnk-visited,
XXX.other-convocation-link-anchore:visited {
    /* brightest purple to AA against bg #eee */
    color: hsl(271, 68%, 42%);
}

.other-convocation-link-anchore::before,
.other-convocation-link-anchore::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: -1px;
    right: 0;
    border-bottom: 1px solid rgb(152, 65, 240);
}

.other-convocation-link-anchore::before {
    background-color: var(--lnk-bg-hvr);
    outline: .31em solid var(--lnk-bg-hvr);
    z-index: -1;
    transform: scale(0, 1);
    transition: transform .3s ease-out;
}

.other-convocation-link-anchore:hover::before,
.other-convocation-link-anchore:focus::before {
    transform: scale(1, 1);
}

.other-convocation-link-anchore::after {
    opacity: .25;
}