.header .header-wrap {
	align-items: center;
	background-color: rgba(7, 55, 118, .8);
	border-radius: 20px;
	display: flex;
	justify-content: space-between;
	padding: 15px 40px;

}

.header {
	position: absolute;
	right: 0;
	top: 40px;
	width: 100%;
	z-index: 10;
	background: transparent;
}

.header .hs-menu-item.hs-menu-depth-1.active.active-branch a {
	color: #fff;
	text-decoration: underline;
}

.header .hs-menu-wrapper ul {
	gap: 30px;
}

.header .hs-menu-item.hs-menu-depth-1 a {
	color: #98A2B3;
	font-size: 18px;
	text-decoration: none;
}

.header .logo-container {
	display: flex;
	align-items: center;
	gap: 10px;
}

.header.logo-text {
	font-weight: 700;
	font-size: 20px;
	letter-spacing: 1px;
	`
}

.header .header-cta .btn-outline {
	padding: 12px 24px;
	border: 1px solid #fff;
	border-radius: 5px;
	color: #fff;
	text-decoration: none;
	font-size: 18px;
	font-weight: 600;
	line-height: 110%;
	transition: all 0.3s ease;
}

.header .header-cta .btn-outline:hover {
	background: #fff;
	color: #000;
}


.header .hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
}

.header .hamburger span {
	width: 25px;
	height: 3px;
	background: #fff;
	display: block;
	border-radius: 2px;
}


@media (max-width: 900px) {
	.header .hamburger {
		display: flex;
	}

	.header .main-nav,
	.header .header-cta {
		display: none;
		width: 100%;
	}

	.header .main-nav.active,
	.header .header-cta.active {
		display: block;
		margin-top: 40px;
	}

	.header .main-nav {
		order: 2;
		margin-top: 20px;
	}

	.header .header-cta {
		order: 3;
		margin-top: 15px;
		text-align: center;
	}

	.header .logo-container {
		order: 1;
	}

	.header .main-nav ul {
		flex-direction: column;
		gap: 15px;
		text-align: center;
	}

	.header .header-wrap {
		flex-wrap: wrap;
		flex-direction: row-reverse;

	}

	.header.active .header-wrap {
		flex-direction: row-reverse;
		background-color: rgb(7 55 118);
     padding: 15px 40px 60px 40px;
	}
}