/* Make it full width */
.mega-about {
  left: 0;
  right: 0;
  top: 100%;
  background: #fff;
  border-top: 2px solid #a10000;
}

/* Hover show effect on desktop */
.nav-item.dropdown:hover > .dropdown-menu {
  display: block;
}

/* Links style */
.about-links li {
  margin-bottom: 1rem;
}
.about-links a {
	color: #d12a2e;
	font-weight: 600;
	text-decoration: none;
	border-bottom: 1px solid #d12a2e;
	display: block;
	padding-bottom: 4px;
	font-size: 18px;
	transition: all 0.3s ease;
	display: flex;
	justify-content: space-between;
}

.about-links a i {
	opacity: 0;
	transform: translate(-190%, 0%);
	transition: all .5s;
}
.about-links a:hover i{
    opacity: 1;
    transform: translate(0%, 0%);
}
.lead {
	font-size: 19px;
	font-weight: 600;
	color: #000;
}
/* Responsive behavior */
@media (max-width: 991px) {
  .mega-about {
    position: static;
    border-top: none;
  }
  .about-links a {
    display: block;
    border: none;
    padding: 0.5rem 0;
  }
}
