/* MENU NAVIGATION TOP */
/* background */
.menuwrap {
    position: relative;
    display: flex;
    align-items: center;
}

/* ---overlay ---*/
.overlay {
    display:none;
}
.overlay.content {
    display:flex;
    flex-direction:column;
    font-family:'Noto Sans Malayalam',sans-serif;
}
.overlay h1 {
    margin-top:3rem;
    color:white;
}
.overlay p {
    color:white;
}
.overlay ul {
    color:white;
}
.overlay .welcomevid {
    display:flex;
    justify-content: center;
    position:relative;
    height:100%;
    width:100%;
}
.overlay.active {
    display: flex;
    margin-top: 5rem;
    height: 100%;
    width: 100%;
    background-color: rgb(0,0,0,0.8);
    z-index: 999;
    position: absolute;
    animation: fadeIn .3s;
    flex-direction: column;
    align-items: center;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
  }

.mobile-menu {
    display: flex;
    flex-direction: row;
    background-color: rgb(46 46 57);
    padding: 20px;
    justify-content: space-around;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin: 0 3rem;
    animation: fadeIn .3s;
}

.bar {
    background-color: white;
    height: 3px;
    width: 25px;
    margin: 3px 0;
}

.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

.menu-list li {
    padding: 15px;
    text-align: center;
    position: relative;
    width: 7rem;
}

.menu-list li ul li {
    width: 16rem;
    text-align: left;
    font-weight: bold;
}

.menu-list li:hover,
.dropdown.active {
    background-color: var(--zr-blue);
    color: white;
}

.menu-list li ul li:hover {
    background-color: #747373;
}

.menu-list li a {
    text-decoration: none;
    color: white;
    font-size: 18px;
}

.menu-list li a:hover {
    text-decoration: none;
    font-size: 18px;
}

.mobile-menu button,
.dropdown button {
    background-color: transparent;
    font-size: 18px;
    border: none;
    color: white;
    cursor: pointer;
}

.dropdown-menu {
    display: block;
    background-color: #444;
    position: absolute;
    top: 100%;
    left: 0rem;
    width: fit-content;
    min-width: 10rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .5s ease, visibility .5s ease, transform .5s ease;
    z-index: 1000;
}

.dropdown-menu.active {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* LOGO */
.small-logo img {
    width: 5rem;
    height: 4.5rem;
    cursor:pointer;
}

.circle-small {
    width: 5rem;
    height: 5rem;
    border-style: solid;
    border-top-color: var(--zr-darkblue);
    border-right-color: #0087de;
    border-bottom-color: var(--zr-darkblue);
    border-left-color: var(--zr-blue);
    border-top-left-radius: 50% 50%;
    border-top-right-radius: 50% 50%;
    border-bottom-right-radius: 50% 50%;
    border-bottom-left-radius: 50% 50%;
    border-left-width: .5rem;
    border-right-width: .5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
}

.left-small,
.right-small,
.title-major-small,
.title-minor-small {
    font-family: "Libre Baskerville", serif;
    color: var(--zr-blue);
}

.left-small {
    font-size: 1rem;
    display: inline-block;
    position: relative;
    top: 0rem;
    left: 0.2rem;
    height: 3rem;
}

.left-small:before {
    content: "";
    display: block;
    height: 1rem;
    width: 1.1rem;
    position: relative;
    top: -0.3rem;
    left: -0.2rem;
    border-bottom: .2rem solid var(--zr-blue);
    border-right: .2rem solid var(--zr-blue);
}

.left-small:after {
    content: "";
    display: block;
    height: 2rem;
    width: 1.1rem;
    position: relative;
    top: -1.5rem;
    left: -0.2rem;
    border-top: .2rem solid var(--zr-blue);
    border-right: .2rem solid var(--zr-blue);
}

.right-small {
    font-size: 1rem;
    display: inline-block;
    position: relative;
    top: 0rem;
    left: 0.2rem;
    height: 1rem;
}

.right-small:before {
    content: "";
    display: block;
    height: 1rem;
    width: 1rem;
    position: relative;
    top: -0.3rem;
    left: -.3rem;
    border-bottom: .2rem solid var(--zr-blue);
    border-left: .2rem solid var(--zr-blue);
}

.right-small:after {
    content: "";
    display: block;
    height: 2rem;
    width: 1rem;
    position: relative;
    top: -1.5rem;
    left: -0.3rem;
    border-top: .2rem solid var(--zr-blue);
    border-left: .2rem solid var(--zr-blue);
}

