/* Made with love by Mohammad Hussain */


/* ----------------------
# Default Style For All
------------------------- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* ------------------------------------
# NAVBAR HANDLING 
--------------------------------------- */

.ulist {
    justify-content: center;
    align-items: center;
    margin: 0;
}

.ulist li {
    /* padding: 0; */
}

@media only screen and (max-width: 1143px) {
    .ulist {
        width: 950px;
    }
    ul#slides {
        height: 200px;
        width: 100%;
    }
}


/* -------------------------------
# Academic wrapper
-----------------------------------*/

.acad-container {
    display: flex;
    /* height: 1000px; */
    flex-direction: column;
    align-items: center;
}


/* -------------------------------
# Table Of Content 
-----------------------------------*/

.toc {
    margin-top: 30px;
    display: table;
    padding: 0.625rem;
    border: solid gray 2px;
    background-color: lightgray;
    width: 500px;
    border-radius: 10% 5% 20% 10%/10% 5% 50% 10%;
    box-shadow: 2px 3px 12px 2px rgb(211 211 211);
    height: 30px;
}

.toc-heading {
    display: inline-block;
    font-size: 1.25rem;
}

.toggle-toc-label::before {
    content: "[";
}

.toggle-toc-label::after {
    content: "]";
}

.toggle-toc-label {
    cursor: pointer;
    color: blue;
    font-size: 11px;
}

.toc-nav-list {
    display: none;
}

.toc-level1 {
    margin-left: 1.25rem;
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: 600;
}

.toc-level1 a {
    text-decoration: none;
    color: black;
    border-bottom: 1px dotted black;
}

.toc-level2 {
    margin-left: 0.625rem;
    margin-top: 5px;
    margin-bottom: 5px;
}


/* --------------------------------
# Academic Heading
----------------------------------- */

#aa-head {
    margin: 30px 0;
    border-bottom: 3px dashed black;
}


/* ------------------------------
# Animations
--------------------------------- */


/* --------------------------------
# Mobile view
----------------------------------- */

@media screen and (max-width:525px) {
    .toc {
        margin: 0.625rem;
        width: 90%;
    }
    .karya,
    .fdp {
        width: 90% !important;
    }
}


/* ---------------------------------------
# KaryaShala Section 
---------------------------------------- */

.karya {
    width: 50%;
    margin: 50px 0;
}

.k-head {
    color: grey;
    font-weight: bolder;
    text-align: center;
    text-shadow: 3px 2px 0px #000000;
    text-decoration: underline;
}

.karya div {
    margin: 50px 0;
}

.about-content {
    font-size: 26px;
}

.prof-img {
    width: 170px;
    height: 200px;
    box-shadow: inset -10px -10px 0px 0px #6df2ff;
    background-image: url(../dr_manu.png);
    background-size: cover;
    border-radius: 100%;
}

.karya h3,
.fdp h3 {
    background-color: lightgrey;
    padding: 8px;
}


/* ---------------------------------------
# FDP Section 
---------------------------------------- */

.fdp {
    width: 50%;
}

.fdp div {
    margin: 50px 0;
    ;
}


/* ------------------------
# Photo Gallery
-------------------------- */


/*
essential styles:
these make the slideshow work
*/

#slides {
    position: relative;
    height: 400px;
    padding: 0px;
    margin: 0px;
    list-style-type: none;
    width: 800px;
}

.slide {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    -webkit-transition: opacity 1s;
    -moz-transition: opacity 1s;
    -o-transition: opacity 1s;
    transition: opacity 1s;
    border-radius: 20px;
}

.showing {
    opacity: 1;
    z-index: 2;
}

.controls {
    display: none;
}


/*
non-essential styles:
just for appearance; change whatever you want
*/

.slide {
    font-size: 40px;
    padding: 40px;
    box-sizing: border-box;
    background: #333;
    color: #fff;
    background-size: cover;
    position: absolute;
    z-index: -1;
}

.slide:nth-of-type(1) {
    background-color: red;
    background-image: url("../1.png");
}

.slide:nth-of-type(2) {
    background-color: orange;
    background-image: url('../Screenshot-1.png');
}

.slide:nth-of-type(3) {
    background-color: green;
    background-image: url('../Screenshot-2.png');
}

.controls {
    background: #333;
    color: #fff;
    border: none;
    padding: 0 0;
    font-size: 20px;
    cursor: pointer;
    border: 2px solid #fff;
    margin: 10px 0px 0px 10px;
    width: 40px;
}

.controls:hover,
.controls:focus {
    background: #eee;
    color: #333;
}

.aa-container-pg {
    position: relative;
}

.buttons {
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 0;
    font-size: 0px;
}