.eb-header {
	width: 100%;
	height: 100px;
	background-color: #05232c;
	-webkit-box-sizing: content-box;
	        box-sizing: content-box;
	z-index: 2;
}

.eb-header-container {
	width: 100%;
	height: 100%;
	padding: 0 100px;
	margin: 0 auto;
}

.eb-header-content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	width: 100%;
	height: 100%;
}

.eb-header-transparent {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 100;
	background: var(--bases-white-trans-15);
	border: 1px solid var(--bases-white-trans-20);
}

body.home .eb-header-transparent {
		background: var(--bases-white-trans-80);
		border: 1px solid var(--bases-white);
	}

.eb-header-white {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 100;
	background: var(--bases-white-trans-80);
	border: 1px solid var(--bases-white);
}

.eb-header__logo-img {
	max-width: unset;
	width: 249.032px;
	height: 47.393px;
}

.eb-header__logo-img.logo_color {
	display: block;
}

.eb-header-end {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.eb-header-nav-burger {
	display: none;
}

.eb-header-nav-burger:before {
	content: '';
	width: 40px;
	height: 40px;
	display: inline-block;
	background: url('../img/burger-bw.svg');
}

.eb-header-nav-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 40px;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.eb-header-nav-wrapper .eb-header-nav-wrapper-header {
		display: none;
	}

.eb-header-nav-switch {
	display: none;
}

.eb-header-menu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 40px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.eb-header-menu > .menu-item {
		position: relative;
	}

.eb-header-menu > .menu-item > a {
			color: var(--dark-color-01);
			font-size: 16px;
			font-style: normal;
			font-weight: 600;
			line-height: normal;
		}

.eb-header-menu > .menu-item:hover > a {
				text-decoration: underline;
			}

.eb-header-menu > .menu-item:hover .sub-menu {
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
			}

.eb-header-menu > .menu-item .sub-menu {
			display: none;
			position: absolute;
			width: 248px;
			top: 24px;
			left: 0;
			-webkit-box-orient: vertical;
			-webkit-box-direction: normal;
			    -ms-flex-direction: column;
			        flex-direction: column;
			padding: 48px 0 24px 0;
			-webkit-box-align: start;
			    -ms-flex-align: start;
			        align-items: flex-start;
			-ms-flex-item-align: stretch;
			    align-self: stretch;
			margin: 0;
			list-style: none;
		}

.eb-header-menu > .menu-item .sub-menu:before {
				content: '';
				position: absolute;
				width: 100%;
				height: calc(100% - 24px);
				top: 24px;
				left: 0;
				border-radius: 8px;
				background: var(--bases-white);
				-webkit-box-shadow: 0px 4px 20px 0px rgba(110, 125, 128, 0.08);
				        box-shadow: 0px 4px 20px 0px rgba(110, 125, 128, 0.08);
				z-index: -1;
			}

.eb-header-menu > .menu-item .sub-menu > .menu-item {
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				-webkit-box-orient: vertical;
				-webkit-box-direction: normal;
				    -ms-flex-direction: column;
				        flex-direction: column;
				-webkit-box-align: start;
				    -ms-flex-align: start;
				        align-items: flex-start;
				-ms-flex-item-align: stretch;
				    align-self: stretch;
			}

.eb-header-menu > .menu-item .sub-menu > .menu-item > a {
					padding: 8px 24px;
					color: var(--bases-gray);
					font-family: "Titillium Web";
					font-size: 16px;
					font-style: normal;
					font-weight: 400;
					line-height: normal;
					white-space: nowrap;
					-ms-flex-item-align: stretch;
					    align-self: stretch;
				}

.eb-header-menu > .menu-item .sub-menu > .menu-item > a:hover {
						background: var(--secondary-color-03);
					}

.eb-header-menu > .menu-item .sub-menu > .menu-item.eb-menu-item-title > a {
					color: var(--secondary-color-01);
					font-weight: 600;
					pointer-events: none;
				}

.eb-header-menu .eb-contact {
	display: none;
}

/* Tablet breakpoint */

@media (max-width: 1439px) and (min-width: 1000px) {
	
	.eb-header .eb-boxed {
		max-width: unset !important;
	}
	
}
	
@media (max-width: 999px) {
	
	.eb-header-container {
		padding: 0 64px;
		position: relative;
	}
	
	.eb-header-nav-burger {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}

	.eb-header-nav-wrapper {
		position: absolute;
		right: 0;
		top: 0;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		-webkit-box-align: start;
		    -ms-flex-align: start;
		        align-items: start;
		height: auto;
		background: white;
		width: 100%;
		padding: 24px;
		border-radius: 8px;
		background: var(--bases-white);
		-webkit-box-shadow: 0px 4px 20px 0px rgba(110, 125, 128, 0.08);
		        box-shadow: 0px 4px 20px 0px rgba(110, 125, 128, 0.08);
		gap: 24px;
	}
		
		.eb-header-nav-wrapper .eb-header-nav-wrapper-header {
			display: -webkit-box;
			display: -ms-flexbox;
			display: flex;
			height: 80px;
			-webkit-box-pack: justify;
			    -ms-flex-pack: justify;
			        justify-content: space-between;
			-webkit-box-align: center;
			    -ms-flex-align: center;
			        align-items: center;
			-ms-flex-negative: 0;
			    flex-shrink: 0;
			-ms-flex-item-align: stretch;
			    align-self: stretch;
		}
			
			.eb-header-nav-wrapper .eb-header-nav-wrapper-header .eb-header__logo-img {
				width: 169.792px;
				height: 32.6px;
			}
			
			.eb-header-nav-wrapper .eb-header-nav-wrapper-header .eb-header-nav-close {
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				width: 32px;
				height: 32px;
				background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" fill="none"><path d="M8 23.9998L23.9998 8" stroke="%23094253" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M23.9998 23.9998L8 8" stroke="%23094253" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
			}
		
		.eb-header-nav-wrapper .eb-header-cta-btn {
			display: none;
		}
	
	.eb-header-nav-switch:not(:checked) ~ .eb-header-nav-wrapper {
		display: none;
	}
	
	.eb-header-menu {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		-webkit-box-align: start;
		    -ms-flex-align: start;
		        align-items: start;
		gap: 24px;
	}

			.eb-header-menu > .menu-item > a {
				display: none;
			}
			
			.eb-header-menu > .menu-item .sub-menu {
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				position: static;
				width: 100%;
				padding: 0;
				gap: 8px;
			}
				
				.eb-header-menu > .menu-item .sub-menu:before {
					content: none;
				}
					
					.eb-header-menu > .menu-item .sub-menu > .menu-item > a {
						padding: 8px 0;
					}
						
						.eb-header-menu > .menu-item .sub-menu > .menu-item > a:hover {
							background: none;
						}
					
					.eb-header-menu > .menu-item .sub-menu > .menu-item.eb-menu-item-title > a {
					}
	
	.eb-header-white {
		background: var(--bases-white-trans-15);
		border: 1px solid var(--bases-white-trans-20);
	}
}

/* Mobile breakpoint */

@media (max-width: 833px) {

	.eb-header {
		margin-top: 32px;
	}
	
	.eb-header-container {
		padding: 0 24px;
	}
	
	.eb-header__logo-img {
		width: 169.792px;
	}
	
	.eb-header-nav-burger:before {
		width: 24px;
		height: 24px;
		background-size: contain;
	}
	
	.eb-header-nav-wrapper {
		margin-top: -32px;
	}

}