.overlay {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background: url("/images/nav-bg.webp") no-repeat;
    background-size: cover;
    overflow-x: hidden;
    transition: 0.5s;
}

.overlay-content {
    position: relative;
    top: 101px;
    width: 100%;
    /*margin-top: 30px;*/
}

.overlay a {
    font-family: 'BalooChettan2ExtraBold', Arial, sans-serif;
    text-decoration: none;
    font-size: 40px;
    color: #e5112f;
    display: block;
    transition: 0.3s;
    text-transform: uppercase
}

.overlay .title {
    font-family: 'BalooChettan2ExtraBold', Arial, sans-serif;
    transition: 0.3s;
    font-size: 26px;
}

.overlay img {
    transition: 0.3s;
}

.overlay a:hover,
.overlay a:focus {
    color: #f1f1f1;
}

.overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
}

@media screen and (max-height: 450px) {
    .overlay a {
        font-size: 25px
    }
    .overlay .closebtn {
        font-size: 40px;
        top: 15px;
        right: 35px;
    }
}

@media(max-width:800px) {
    .public-nav {
        background: #111111;
        padding: 0rem 0.5rem 1rem 0.5rem;
    }
}

@media(min-width:801px) {
    .public-nav {
        background: #111111;
        padding: 3rem 0.5rem;
    }
}

.public-nav .logo {
    max-width: 140px;
}

.lang-menu {
    background: none;
    border: 1px solid #fff;
    color: #fff;
    text-transform: capitalize;
    padding: 0px 12px;
    border-radius: 2px;
}

.lang-menu:hover,
.lang-menu:focus {
    background: none;
    border: 1px solid #fff;
    color: #fff;
    text-transform: capitalize;
}

.dropdown-menu {
    background: none;
    border: 1px solid #fff;
    color: #fff;
}

.dropdown-menu a {
    color: #fff;
}

.dropdown-menu a:hover {
    background: none;
    color: #fff;
    text-decoration: underline;
}

.social-links {
    padding-top: 2rem;
}

.dropdown-menu-links {
    padding-top: 1rem;
}


/*End header*/


/*Left side menu*/

@media(max-width:800px) {
    .left-side-menu li {
        background: #fff;
        background: linear-gradient(to left, #fff 50%, #e5112f 50%) right;
        background-size: 220%;
        transition: .5s ease-out;
        border-radius: 10px;
        margin-bottom: 1rem;
        border: 1px solid rgba(119, 119, 119, 0.3);
        box-shadow: 6px 6px 10px -5px rgba(119, 119, 119, 0.5);
        cursor: pointer;
        padding: 0.6rem 0.9rem;
    }
    .left-side-menu li:hover {
        background-position: left;
        color: #fff!important;
    }
    .left-side-menu li:hover a {
        color: #fff!important;
    }
    .left-side-menu:first-child {
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }
    .left-side-menu:last-child {
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }
    .left-side-menu li a {
        color: #777777;
        text-decoration: none;
        font-size: 14px;
        font-family: 'Baloo2bold', Arial, sans-serif;
        width: 100%;
    }
}

@media(min-width:801px) {
    .left-side-menu li {
        background: #fff;
        transition: .5s ease-out;
        border-radius: 10px;
        margin-bottom: 1rem;
        border: 1px solid rgba(119, 119, 119, 0.3);
        box-shadow: 6px 6px 10px -5px rgba(119, 119, 119, 0.5);
        cursor: pointer;
        padding: 0.6rem 0.9rem;
    }
    .left-side-menu li.active {
        background: #e5112f;
        border: 1px #e5112f;
        z-index: 0;
    }
    .left-side-menu li:hover {
        background: #e5112f;
        color: #fff!important;
    }
    .left-side-menu li:hover a,
    .left-side-menu li.active a {
        color: #fff!important;
    }
    .left-side-menu:first-child {
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }
    .left-side-menu:last-child {
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }
    .left-side-menu li a {
        color: #777777;
        text-decoration: none;
        font-size: 14px;
        font-family: 'Baloo2bold', Arial, sans-serif;
        width: 100%;
    }
}
