﻿.dropdown li{
    list-style: none;
}
.dropdown{
    display: none !important;
    left: 0;
    width: 100%;
    justify-content: space-between;
    background: #F8F7F7;
    transition: .3s ease-in-out;
}
.drop-down-menu:hover .dropdown{
    display: flex !important;
}

.drop-down-menu:hover img{
    transform: rotate(180deg);
    transition: .2s ease-in-out;

}
.dropdown li a::after{

border-image-slice: 1;
background: linear-gradient(to left, #f15b40 0%, #fdb913 100%);
content: "";
position: absolute;
bottom: 0px;
left: 0px;
width: 0%;
height: 2px;

}

.dropdown li a:hover::after{
    width: 100%;
    transition: 0.3s;
}
