.Trigger {
	position: relative;
	height: 0.888889rem;
	width: 2rem;
	margin-left: auto;
	z-index: 1000;
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.Trigger.is-active {
	position: fixed;
	right: 0.888889rem;
	top: 1.174518rem;
}

.Trigger-top {
	height: 2px;
	width: 100%;
	position: absolute;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	top: 0;
	-webkit-animation-name: topreverse;
	-moz-animation-name: topreverse;
	animation-name: topreverse;
	-webkit-animation-duration: 0.65s;
	-moz-animation-duration: 0.65s;
	animation-duration: 0.65s;
	-webkit-animation-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
	-moz-animation-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
	animation-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
	-webkit-animation-fill-mode: forwards;
	-moz-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}

.Trigger-bottom {
	height: 2px;
	width: 100%;
	position: absolute;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	bottom: 0;
	-webkit-animation-name: bottomreverse;
	-moz-animation-name: bottomreverse;
	animation-name: bottomreverse;
	-webkit-animation-duration: 0.65s;
	-moz-animation-duration: 0.65s;
	animation-duration: 0.65s;
	-webkit-animation-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
	-moz-animation-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
	animation-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
	-webkit-animation-fill-mode: forwards;
	-moz-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}

.Trigger.is-active .Trigger-top {
	top: 45.8333333333%;
	-webkit-animation-name: top;
	-moz-animation-name: top;
	animation-name: top;
	-webkit-animation-duration: 0.65s;
	-moz-animation-duration: 0.65s;
	animation-duration: 0.65s;
	-webkit-animation-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
	-moz-animation-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
	animation-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
	-webkit-animation-fill-mode: forwards;
	-moz-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}

.Trigger.is-active .Trigger-bottom {
	bottom: 45.8333333333%;
	-webkit-animation-name: bottom;
	-moz-animation-name: bottom;
	animation-name: bottom;
	-webkit-animation-duration: 0.65s;
	-moz-animation-duration: 0.65s;
	animation-duration: 0.65s;
	-webkit-animation-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
	-moz-animation-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
	animation-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
	-webkit-animation-fill-mode: forwards;
	-moz-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}


.Trigger > * {
	right: 0;
	background: var(--mobile_nav_button_color, #fff);
	transition: 1.7s cubic-bezier(0.77, 0, 0.175, 1);
}

.Trigger.is-active > * {
	background: var(--mobile_nav_active_button_color, #000);
	transition: .75s cubic-bezier(0.77, 0, 0.175, 1);
}

/* mobile menu css */

.nav {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	width: 0px;
	transition: 0.0001s;
	background-color: var(--mobile_nav_background, #fff);
	/* 	transition: 1s cubic-bezier(0.645, 0.045, 0.355, 1); */
	will-change: width;
	z-index: 100;
}

.nav.is-active {
	width: 100%;
}

.nav__content {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	max-width: 1200px;
	padding: 1rem 3.75rem 1rem 2.75rem;
	opacity: 0;
	visibility: hidden;
	transform: translate(-50%, -50%);
	transition: 0s linear 0.25s;
}

.nav__content.is-active {
	visibility: visible;
	opacity: 1;
	transition: 0s linear;
}

.nav__content.is-active .nav__item > * {
	opacity: 1;
	transform: translateY(0);
	transition-property: transform, opacity, color;
	transition-duration: 0.55s, 0.55s, 0.3s;
	transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1), ease-in-out,
		ease-in-out;
}

.nav__content.is-active .nav__list .nav__item:nth-of-type(1) > * {
	transition-delay: 0s, 0s, 0s;
}

.nav__content.is-active .nav__list .nav__item:nth-of-type(2) > * {
	transition-delay: 0.05s, 0.05s, 0s;
}

.nav__content.is-active .nav__list .nav__item:nth-of-type(3) > * {
	transition-delay: 0.1s, 0.1s, 0s;
}

.nav__content.is-active .nav__list .nav__item:nth-of-type(4) > * {
	transition-delay: 0.15s, 0.15s, 0s;
}

.nav__content.is-active .nav__list .nav__item:nth-of-type(5) > * {
	transition-delay: 0.2s, 0.2s, 0s;
}

.nav__content.is-active .nav__list .nav__item:nth-of-type(6) > * {
	transition-delay: 0.25s, 0.25s, 0s;
}

.nav__content.is-active .nav__list .nav__item:nth-of-type(7) > * {
	transition-delay: 0.3s, 0.3s, 0s;
}

.nav__content.is-active .nav__list .nav__item:nth-of-type(8) > * {
	transition-delay: 0.35s, 0.35s, 0s;
}

.nav__content.is-active .nav__list .nav__item:nth-of-type(9) > * {
	transition-delay: 0.4s, 0.4s, 0s;
}

.nav__list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav__item {
	overflow: hidden;
	position: relative;
}

.nav__item:has(.bd_visible) {
	overflow: visible;
}

.nav__item  a {
	font-family: inherit;
}

.nav__item > * {
	display: inline-block;
	padding: 0.5rem 1rem;
	color: var(--mobile_nav_item_color, #000);
	text-decoration: none;
	font-size: 1rem;
	opacity: 0;
	text-transform: none;
	transform: translateY(100%);
	transition: 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
	will-change: transform, opacity;
}

.nav__item > a {
	font-family: var(--acumin);
	font-weight: 600;
}

.nav__item i {
	color: var(--mobile_nav_item_color, #000);
	line-height: 150%;
}

.bd_no_scroll {
	height: 1px !important;
	padding: 0px !important;
	margin: 0px !important;
	overflow: hidden !important;
}

@-webkit-keyframes top {
	0% {
		top: 0%;
	}
	60% {
		top: 45.8333333333%;
		-webkit-transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(45deg);
	}
}
@-moz-keyframes top {
	0% {
		top: 0%;
	}
	60% {
		top: 45.8333333333%;
		-moz-transform: rotate(0deg);
	}
	100% {
		-moz-transform: rotate(45deg);
	}
}
@keyframes top {
	0% {
		top: 0%;
	}
	60% {
		top: 45.8333333333%;
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(45deg);
		-moz-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		-o-transform: rotate(45deg);
		transform: rotate(45deg);
	}
}
@-webkit-keyframes bottom {
	0% {
		bottom: 0%;
	}
	60% {
		bottom: 45.8333333333%;
		-webkit-transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(-45deg);
	}
}
@-moz-keyframes bottom {
	0% {
		bottom: 0%;
	}
	60% {
		bottom: 45.8333333333%;
		-moz-transform: rotate(0deg);
	}
	100% {
		-moz-transform: rotate(-45deg);
	}
}
@keyframes bottom {
	0% {
		bottom: 0%;
	}
	60% {
		bottom: 45.8333333333%;
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(-45deg);
		-moz-transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
		-o-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
}
@-webkit-keyframes topreverse {
	0% {
		-webkit-transform: rotate(45deg);
		top: 45.8333333333%;
	}
	60% {
		-webkit-transform: rotate(0deg);
		top: 45.8333333333%;
	}
	100% {
		top: 0%;
	}
}
@-moz-keyframes topreverse {
	0% {
		-moz-transform: rotate(45deg);
		top: 45.8333333333%;
	}
	60% {
		-moz-transform: rotate(0deg);
		top: 45.8333333333%;
	}
	100% {
		top: 0%;
	}
}
@keyframes topreverse {
	0% {
		-webkit-transform: rotate(45deg);
		-moz-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		-o-transform: rotate(45deg);
		transform: rotate(45deg);
		top: 45.8333333333%;
	}
	60% {
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
		top: 45.8333333333%;
	}
	100% {
		top: 0%;
	}
}
@-webkit-keyframes bottomreverse {
	0% {
		-webkit-transform: rotate(-45deg);
		bottom: 45.8333333333%;
	}
	60% {
		-webkit-transform: rotate(0deg);
		bottom: 45.8333333333%;
	}
	100% {
		bottom: 0%;
	}
}
@-moz-keyframes bottomreverse {
	0% {
		-moz-transform: rotate(-45deg);
		bottom: 45.8333333333%;
	}
	60% {
		-moz-transform: rotate(0deg);
		bottom: 45.8333333333%;
	}
	100% {
		bottom: 0%;
	}
}
@keyframes bottomreverse {
	0% {
		-webkit-transform: rotate(-45deg);
		-moz-transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
		-o-transform: rotate(-45deg);
		transform: rotate(-45deg);
		bottom: 45.8333333333%;
	}
	60% {
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
		bottom: 45.8333333333%;
	}
	100% {
		bottom: 0%;
	}
}
.no-animation {
	-webkit-animation: none;
	-moz-animation: none;
	animation: none;
}

@media (min-width: 1020px) {
	.Trigger {
		display: none;
	}
}

.nav .sub-menu {
	background-color: var(--mobile_nav_dropdown_background, #fff);
}

.nav .sub-menu.bd_visible {
	display: flex;
	margin-top: 0;
	opacity: 1;
	visibility: visible;
}

.nav .sub-menu li a {
	color: var(--mobile_nav_dropdown_item_color, #000) !important;
}

.nav__content {
	height: calc(100% - 4.833333rem);
	display: flex;
	align-items: start;
	flex-direction: column;
	padding: 2.222222rem 2.777778rem 1rem 1.944444rem;
	transform: translate(-50%, -50%);
}

.nav__content > * {
	height: auto;
	width: 100%;
}

.nav__item > * {
	padding: 0.5rem 0.833333rem;
}

.nav__item .sub-menu {
	display: none;
	position: relative;
	top: 0;
	left: 0;
	margin-left: 1.333333rem;
	background-color: transparent;
	box-shadow: none;
}

.nav__item .sub-menu li a {
	padding: 0.5rem 0;
	color: var(--mobile_nav_item_color, #000) !important;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
}

@media (max-width: 991px){

	.page-id-46 .register_btn {
		display: none;
	}

	.register_btn {
		list-style: none;
		margin: 0;
		padding: 0 0.833333rem;
		margin-top: 1.5rem;
		width: 100%;
	}
	.register_btn a {
		display: inline-flex;
		align-items: center;
		justify-content: center;

		min-width: 10rem;    
		width: fit-content;    
		padding: 0 1rem;       

		height: 2.75rem;
		margin: 0 auto;

		background-color: #f2ab1d;
		border-radius: 2px;

		font-family: var(--oswald);
		font-weight: 500;
		line-height: 100%;
		text-transform: uppercase;
		color: #003966;
		text-decoration: none;
	}
}

.nav__list > ul > li:last-child > a:not( .sub-menu li a) {
	margin-left: 0;
	margin-top: 0;
}

/* .nav__list > ul > li:last-child > a:not( .sub-menu li a) {
margin-top: 1.666667rem;
} */

.staticHeader .bd_header_white_logo {
	display: block;
}

.staticHeader .bd_header_logo {
	display: none;
}

@media (max-width: 1019px) {
	.bd_main_menu_warpper {
		display: none;
	}
}