/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Dec 23 2022 | 17:14:39 */
.custom-menu .sub-menu li a:before{
	content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    background: #F23510;
    width: 3px;
	border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    margin: auto;
    height: 0%;
}
.custom-menu .sub-menu li:hover a:before {
    height: 45%;
    visibility: visible;
    opacity: 1;
	animation: talha .1s;
}
@keyframes talha {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

.custom-menu li:after {
    content: "";
    position: absolute;
    background: #F23510;
    width: 0%;
    height: 2px;
    top: 35px;
    z-index: 2;
    bottom: 2px;
    left: 25%;
	opacity: 0;
	visibility: hidden;
}
.custom-menu .sub-menu li:after, .custom-menu .sub-menu li:hover:after {
    visibility: hidden;
    opacity: 0;
}
.custom-menu li:hover:after {
    visibility: visible;
    opacity: 1;
	width: 50%;
	animation: salman 0.5s;
}
@keyframes salman {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}