@media (min-width: 577px) {
    .area {
        position: static;
        height: calc(100vh - 4.1rem);
        overflow-y: auto;
        overflow-x: hidden;
        display: block;
    }
}

.area {
    margin: 0;
    padding: 15px;
}

@media (min-width: 48em) {
    .cms-title {
        font-size: calc(1rem + (1vw - .4rem));
    }

    .cms-right {
        font-size: calc(.3rem + (1vw - .4rem));
        margin: 7px 10px 0 0;
    }

    .cms-logo {
        max-width: calc(4rem + (1vw - .4rem));
        width: 100%;
        height: auto;
    }
}

@media (max-width: 48em) {
    .cms-title {
        font-size: calc(1rem + (1vw - .4rem));
    }

    .cms-right {
        font-size: calc(1rem + (1vw - .4rem));
        margin: 1px 2px 0 0;
    }

    .cms-logo {
        max-width: calc(4rem + (1vw - .4rem));
        width: 100%;
        height: auto;
    }
}

.bg-teal-uni {
    background: rgba(12, 106, 128, .99);
}

.vertical-text {
    display: inline-block;
    transform: rotate(180deg);
    writing-mode: vertical-rl;
    color: #6c757d;
}

.MY table, .MY td, .MY th {
    border: 1px solid #ddd;
    text-align: left;
    padding: 10px;
}

.MY table {
    border-collapse: collapse;
    width: 100%;
}


.MY tr:nth-child(even) {
    background-color: #f2f2f2;
}

.MY p {
    display: block;
    margin: 1em 0;
}

.MY ol {
    list-style: none;
    counter-reset: cupcake;
    padding-left: 5px;
}

.MY ol li {
    counter-increment: cupcake;
}

.MY ol li:before {
    content: counters(cupcake, ".") ". ";
}

.MY dl {
    display: grid;
    grid-template-columns: max-content auto;
}

.MY dt {
    grid-column-start: 1;
    font-weight: bold;
    margin: 3px 5px 3px 0;
}

.MY dd {
    grid-column-start: 2;
    margin: 3px 5px 3px 0;
}

.inside {
    padding-left: 1em;
    line-height: 1.9em;
    list-style-type: none;
    font-size: 0.9rem;
}

.plus:before {
    content: "\002B";
    margin: 0 5px 0 3px;
}

.minus:before {
    content: "\2212";
    margin: 0 5px 0 3px;
}

/* *****  GALLERIES ***** */

.gallery-wrapper {
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
    grid-gap: .3rem;
    grid-auto-flow: dense;
}

.gallery-item {
    width: 100%;
    height: 100%;
    position: relative;
    filter: drop-shadow(2px 2px 3px #333);
}

.gallery-item .image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-item .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    cursor: pointer;
    transition: all 400ms ease-in;
    transform: scale(1);
}

.gallery-item .image img:hover {
    transform: scale(1.1);
}

@media only screen and (max-width: 800px) {
    .gallery-wrapper {
        grid-template-columns: repeat(2, 2fr);
        grid-template-rows: 1fr;
        grid-gap: 1px;
        grid-auto-flow: dense;
    }

    .gallery-container:nth-child(3n+2) {
        grid-column: 1 / span 2;
        grid-row-end: span 2;
    }

    .gallery-container:nth-child(4n+3) {
        grid-column: 2 / span 1;
        grid-row-end: span 2;
    }
}

.responsive-embed {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    margin-bottom: 10px;
}

.responsive-embed iframe {
    position: absolute;
    width: 100% !important;
    height: 100% !important;
}

.bg-my-grad {
    background-image: linear-gradient(rgb(241, 186, 64), white);
}

input[type=radio] {
    width: 30px !important;
}

input[type=checkbox] {
    width: 30px !important;
}

.scale-image {
    transform: scale(1) perspective(960px) rotateY(-11deg) rotateX(2deg) rotate(2deg) translateY(-50%);
    width: 210px;
}

a {
    text-decoration: none;
}
.academic-info{
    margin-left: 110px;
}

.heading-1{
    position:relative;
    text-align: left;
    font-size:1.3rem;
    font-weight: 700;
}
.heading-1:before {
    content: "";
    display: block;
    border-top: solid 2px;
    width: 100%;
    height: 2px;
    position: absolute;
    top: 50%;
    z-index: 0;
}
.heading-1 span {
    padding: 0 10px 0 0;
    position: relative;
    z-index: 1;
}

.bg-g {
    background: linear-gradient(-45deg, #334F70, #6E98BA, #79a1b7, #35648C);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}

.bg-g1 {
    background: linear-gradient(-45deg, #484d51, #8facc0, #d2e4f1, #818d97);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}

.bg-g2 {
    background: linear-gradient(-45deg, #346598, #4B8FB9, #7795A4, #307BAC);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}

@keyframes gradient {
    0% {
        background-position: 0 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0 50%;
    }
}

.section-team .single-person {
    margin-top: 10px;
    padding: 10px;
    border-radius: 1%;
}

.section-team .single-person:hover {
    background: linear-gradient(to right, #8facc0, #d2e4f1);
}

.section-team .single-person .person-image {
    position: relative;
    margin-bottom: 5px;
    border-radius: 1%;
    transition: padding .3s;
    padding: 5px;
    border: 1px dashed #6c757d;
}

.section-team .single-person:hover .person-image {
    padding: 5px;
    border: 1px dashed #fff;
}

.section-team .single-person .person-image img {
    width: 100%;
    border-radius: 1%;
}