@media (min-width : 992px) {
  	.offcanvas {
		visibility      : visible;
		position        : relative;
		background      : none;
		border          : none;
		justify-content : end;
		color           : #293241;
  	}
	.navbar-nav li a {
		color: #293241 !important;
		text-decoration: none;
		background-image: linear-gradient(currentColor, currentColor);
		background-position: 0% 100%;
		background-repeat: no-repeat;
		background-size: 0% 2px;
		transition: background-size .3s;
	}

	.navbar-nav li a:hover, a:focus{
		background-size: 100% 2px;
	}

	.navbar-nav li a.activo{
		color: #1BB4F1 !important;
	}
}

@media (max-width : 992px) {
	.offcanvas {
		width : 250px !important;
	}

  	.offcanvas-start-lg {
		top          : 0;
		left         : 0;
		border-right : 1px solid rgba(0, 0, 0, .2);
		transform    : translateX(-100%);
  	}

  	.navbar-nav li a {
		color: #fff !important;
	}
	a.nav-link.active {
		color: #fff !important;
	}
}

/* 1 - dropdown menu item start
---------------------------------------------------------------------- */
	.navbar-expand-md .navbar-nav {
		overflow: visible !important;
	}

	.dropdown-menu {
		margin-top: 0;
		-webkit-box-shadow: 0px 0px 20px 10px rgba(0,0,0,0.1);
		-moz-box-shadow: 0px 0px 20px 10px rgba(0,0,0,0.1);
		box-shadow: 0px 0px 20px 10px rgba(0,0,0,0.1);
	}
	
	a.dropdown-item {
		color: #293241;
	}
	a#navbarDropdown.nav-link.dropdown-toggle {
		color: #fff;
	}

	.dropdown-item {
		display: block;
		width: 100%;
		padding: .25rem 1.5rem;
		clear: both;
		font-weight: 400;
		text-align: inherit;
		white-space: nowrap;
		background-color: transparent;
		border: 0;
	}

	.dropdown-item:focus, .dropdown-item:hover {
		text-decoration: none;
	}
	.dropdown-item.active, .dropdown-item:active {
		text-decoration: none;
	}

	.navbar .nav-item:not(:last-child) {
		/*margin-right: 35px;*/
	}

	.dropdown-toggle::after {
		transition: transform 0.15s linear; 
	}

	.show.dropdown .dropdown-toggle::after {
		/*transform: translateX(3px);*/
		transform: rotate(90deg);
	}
/* 1 - dropdown menu item End
---------------------------------------------------------------------- */
