.fixed-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 180px;
    height: 100vh;
    z-index: 99;
    /* background-color: #FFFFFF20; */
}

.fixed-menu ul {
    display: -ms-grid;
    display: grid;
    height: 100%;
    -ms-flex-line-pack: center;
    align-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.fixed-menu ul li {
    margin: 0;
}

.fixed-menu ul li a::before {
    position: absolute;
    content: "";
    width: 20px;
    height: 3px;
    left: 0;
    top: 0;
    /* top: calc(50% - 3px) ; */
    background-color: #f2c04a;

}

.fixed-menu ul li a.active::before {
    width: 50px;
    background-color: #dd1f21;
}

.fixed-menu ul li a {
    position: relative;
    display: block;
    padding: 15px;
    padding-right: 0px;
    font-size: 14px;
    /* color: black; */
    text-decoration: none;
    height: 60px;
    color: #f2c04a;
}

.fixed-menu ul li a.active {
    color: #dd1f21;
    padding: 15px 0px 15px 10px;
    font-weight: 600;

}

.fixed-menu ul li a .fl-text {
    position: relative;
    /* opacity: 0;  */
    left: -200px;
    -webkit-transition: left 0.4s linear;
    -o-transition: left 0.4s linear;
    transition: left 0.4s linear;
}

.fixed-menu ul li:hover a .fl-text,
.fixed-menu ul li a.active .fl-text {
    left: 0px;
}

/* section {
    position: relative;
    /* min-height: 100vh; *
    height: auto;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
} */

@media all and (max-width:991px) {
    .fixed-menu {
        display: none;
    }
    
}

@media all and (min-width:1200px) {
    .fixed-menu ul li a {
        font-size: 16px;
        color: #f2c04a;
        font-weight: 600;
    }
}