/* HEADER */

.el__nav-bar-middle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.el__nav-bar-middle .menu {
   padding: 0;
}

.navbar {
    color: white;
    justify-content: space-between;
    align-items: center;
    z-index: 99;
    padding: 88px 100px;
}

.navbar.right {
    flex-direction: row-reverse;
}

.navbar a {
	font-family: var(--main-font);
	font-style: normal;
	font-weight: 400;
	font-size: 18px;
	line-height: 22px;
	text-align: center;
	text-transform: capitalize;
	color: #21466F;
	padding: 0;
}

.menu-item {
	margin: 0 50px;
}

.menu-item:hover {
	border-bottom: 1px solid var(--text-color);
}

.navbar .custom-logo-link img {
    width: 200px;
    height: 100%;
}

.navbar-light .navbar-nav .nav-link {
    padding: 0 20px;
}

.menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.burger-mobile {
    display: none;
}


/* SUBMENU */

.dropdown-toggle::after {
    content: none;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    float: left;
    min-width: auto;
    padding: 0;
    margin: 0;
    font-size: 1rem;
    text-align: left;
    list-style: none;
    height: 0;
    background-color: black;
    color: #efefef;
    background-clip: padding-box;
    border: none;
    border-radius: 0;
    opacity: 0;
    visibility: visible;
    transition: all 500ms ease;
    display: unset;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    height: auto;
}


.dropdown-menu .dropdown-item {
    padding: 20px;
    color: #efefef;
}

.dropdown-item:hover {
    transition: all 500ms ease;
    color: black;
}

.navbar .blue-btn {
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	width: 200px;
	background: var(--text-color);
	text-align: center;
	padding: 10px 5px;
	position: absolute;
	top: 0;
	right: 9%;
}

.navbar .blue-btn img {
	width: auto;
	height: 20px;
}
