header {
	display: flex;
	flex-direction: column;
	position: fixed;
	width: 100%;
	z-index: 100000;
	top: 0;
}

header a {
	font-size: 13px;
}

.subs-w-arrow a{
	display: flex;
	gap: 5px;
}

.subs-w-arrow > a::after{
	content: '';
	border-right: 1px solid white;
	border-bottom: 1px solid white;
	transform: rotate(45deg);
	width: 5px;
    height: 5px;
    margin-top: 2.5px;
}

.header-top {
    display: flex;
    justify-content: flex-end;
    padding: 17px 62px 3px 47px;
    align-items: center;
	background: var(--sky-v2);
}

.header-bottom a{
	padding: 5px 7px;
	border-radius: 5px;
	transition: 0.3s;
}

.header-bottom a:hover, .header-bottom .current-menu-item a, .header-bottom li:has(.current-menu-item) a{
	background: rgba(255, 255, 255, 0.2);
}

.contact-phone a:hover{
	background: none;
}

.header-bottom {
    display: flex;
    justify-content: flex-start;
    padding: 5px 55px 15px 40px;
    align-items: center;
	transition: 0.3s;
	text-transform: uppercase;
}

.header-top .legal-link{
	position: absolute;
	transition: 0.3s;
    right: 85px;
    top: 0;
}

.header-top .legal-link a{
	padding: 0px 10px;
    height: 52px;
    display: flex;
    align-items: center;
}

.header-top .legal-link a i{
	padding-right: 5px;
	padding-bottom: 2px;
}

.header-top .legal-link:hover, .header-top .legal-link.current-menu-item {
	background: rgba(255, 255, 255, 0.2);
}

.header-bottom.scrolled{
	background: var(--sky-v2);
}

.header-top .custom-logo-link {
	margin-right: auto;
}

.main-menu.desktop {
	list-style: none;
    display: flex;
    gap: 15px;
}

.main-menu.desktop a {
	color: white;
	text-decoration: none;
}

.pll-parent-menu-item ul {
	list-style: none;
}

.pll-parent-menu-item {
	position: relative;
	padding-bottom: 10px;
}

.pll-parent-menu-item::after {
	content: '';
	position: absolute;
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 7px solid white;
	top: 50%;
    right: -15px;
    transform: translateY(-7.5px);
	cursor: pointer;
}

.pll-parent-menu-item ul {
	opacity: 0;
	pointer-events: none;
	transition: 0.3s;
	position: absolute;
    background: var(--sky-v2);
    padding: 5px 15px;
	left: -15px;
    top: 100%;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.has-vertical-line{
	position: relative;
	padding-right: 15px;
}

.has-vertical-line::after{
	content: '';
	position: absolute;
	right: 0;
    height: 15px;
    width: 1px;
    background: rgba(255, 255, 255, 0.5);
    top: 3px;

}

.pll-parent-menu-item:hover ul{
	opacity: 1;
	pointer-events: unset;
}

.mobile-menu {
	display: none;
	text-transform: uppercase;
}

.menu-toggler{
	display: none !important;
	
}

.no-bg a{
	background-color: unset !important;
}