* {
	touch-action: manipulation;
}

.testy {
	position: relative;
}

/*
.header {
  width: 100vw;
  background-color: #f6fafd3b !important;
  border-bottom: 1px solid #edeeee28;
  z-index: 9999 !important;
}

.nav-container {
  background-color: #fff;
  position: relative;
  height: 100px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
*/

.header {
	width: 100vw;
	background-color: #f6fafd;
	border-bottom: 1px solid #edeeee;
	z-index: 9999 !important;
}

.nav-container {
	position: relative;
	height: 100px;
	width: 90%;
	margin: 0 auto;
	display: flex;
	align-items: center;
}

.navigation-list {
	display: flex;
	margin-left: 50px;
	justify-content: space-between;
}

[dir='rtl'] .navigation-list {
	margin-left: 0;
	margin-right: 50px;
}

.img {
	width: 140px;
}

.navigation-list li {
	position: relative;
	height: 52px;
	margin: 0 5px;
	padding: 1em 1.2em;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	white-space: nowrap;
}

.header-logo-image {
	flex-shrink: 0;
}

.navigation-list li a {
	font-size: 15px !important;
}

.btns-container {
	position: absolute;
	top: 50%;
	right: 0;
	min-width: max-content;
	display: flex;
	transform: translateY(-50%);
}

[dir='rtl'] .btns-container {
	right: inherit;
	left: 0;
}

.sign-up-btn:hover {
	cursor: pointer;
	background-color: #0051ca;
}

.sign-in-btn:hover {
	cursor: pointer;
	background-color: #edf5fc;
}

.sign-in-btn,
.sign-up-btn {
	width: auto;
	height: 48px;
	border-radius: 16px;
	-webkit-border-radius: 16px;
	-moz-border-radius: 16px;
	-ms-border-radius: 16px;
	-webkit-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
	-o-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
	transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
	box-shadow: rgba(0, 0, 0, 0.14) 0px 3px 8px;
	font-family: inherit;
	font-size: 16px;
	padding: 0 25px;
}

.sign-in-btn {
	background-color: #fff;
	color: #3171fe;
}

.sign-up-btn {
	background-color: #3171fe;
	color: #fff;
}

.mobile-big-logo {
	display: none;
}

.hamburger-btn {
	display: none;
	width: 70px;
	height: 63px;
	position: fixed;
	left: 100%;
	transform: translate(-100%, -0%);
	top: 0;
	margin: 0;
	z-index: 12;
	background-color: #253858;
	cursor: pointer;
	z-index: 9999999;
	-webkit-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
	-o-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
	transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}

[dir='rtl'] .hamburger-btn {
	right: 100%;
	left: inherit;
	-webkit-transform: translate(100%, -0%);
	-ms-transform: translate(100%, -0%);
	transform: translate(100%, -0%);
}

.active {
	left: 0% !important;
}

[dir='rtl'] .active {
	left: inherit !important;
	right: 10% !important;
}

.menu-btn_burger {
	position: absolute;
	top: 49%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 35px;
	height: 3px;
	background-color: #fff;
	-webkit-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
	-o-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
	transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
	z-index: 13;
}

.menu-btn_burger::after,
.menu-btn_burger::before {
	content: '';
	position: absolute;
	width: 35px;
	height: 3px;
	background-color: #fff;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-webkit-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
	-o-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
	transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.menu-btn_burger::after {
	-webkit-transform: translateY(10px);
	-ms-transform: translateY(10px);
	transform: translateY(10px);
	-webkit-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
	-o-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
	transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.menu-btn_burger::before {
	-webkit-transform: translateY(-10px);
	-ms-transform: translateY(-10px);
	transform: translateY(-10px);
	-webkit-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
	-o-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
	transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.open {
	width: 0;
	-webkit-transform: translate(-68px);
	-ms-transform: translate(-68px);
	transform: translate(-68px);
	background: transparent;
	-webkit-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
	-o-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
	transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}

[dir='rtl'] .open {
	-webkit-transform: translate(-34px);
	-ms-transform: translate(-34px);
	transform: translate(-34px);
	-webkit-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
	-o-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
	transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.open::before {
	-webkit-transform: rotate(45deg) translate(35px, -35px);
	-ms-transform: rotate(45deg) translate(35px, -35px);
	transform: rotate(45deg) translate(35px, -35px);
	-webkit-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
	-o-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
	transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.open::after {
	-webkit-transform: rotate(-45deg) translate(35px, 35px);
	-ms-transform: rotate(-45deg) translate(35px, 35px);
	transform: rotate(-45deg) translate(35px, 35px);
	-webkit-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
	-o-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
	transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.anim_fade_up.ready {
	transition: 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	transition-property: transform, opacity;
}

.anim_fade_up.show {
	opacity: 1;
	transform: translateZ(0);
}

.anim_fade_up {
	opacity: 0;
	transform: translate3d(0, 45px, 0);
}

@media screen and (min-width: 768px) {
	.sign-in-btn,
	.sign-up-btn {
		margin: 0 10px;
	}

	.anim_fade_up {
		transform: translate3d(0, 90px, 0);
	}
}

.active-page {
	background-color: #fff;
	border-radius: 30px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	-ms-border-radius: 30px;
	color: #253858;
}

.li-dropdown ul {
	display: none;
	background-color: #fff;
	top: 0;
	position: absolute;
	z-index: 999;
	margin-top: 50px;
	border-radius: 10px;
	padding: 0 40px 10px 0;
	left: 0;
}

.li-dropdown ul.active {
	display: block;
}

.li-dropdown ul li {
	display: block;
}
.li-dropdown ul li a {
	text-decoration: none;
	color: #4f4d4d;
}

.li-dropdown a {
	display: flex;
	align-items: center;
}

.li-dropdown ul li a img {
	width: 32px;
	height: 32px;
	margin-right: 10px;
}

.li-dropdown:hover ul {
	display: block;
}

.li-dropdown div > svg {
	transition: transform 0.3s ease;
}

.li-dropdown:hover div > svg {
	transform: scaleY(-1);
}

@media (max-width: 1350px) {
	.btns-container {
		right: -1%;
	}

	[dir='rtl'] .btns-container {
		right: inherit;
		left: -1%;
	}

	.navigation-list {
		width: auto;
		margin-left: 30px;
	}

	[dir='rtl'] .navigation-list {
		margin-left: 0;
		margin-right: 30px;
	}

	.nav-container {
		width: 93%;
	}

	.navigation-list li {
		height: 48px;
		margin: 0 4px;
		padding: 0.8em 1em;
	}
}

@media (max-width: 1100px) {
	
.li-dropdown ul li a img {
	margin-left: -25px;
}
	.hamburger-btn {
		display: block;
	}

	.nav-mobile-container {
		width: 100%;
		height: 100%;
		justify-content: space-between;
		display: flex;
		flex-direction: column;
		overflow-x: hidden;
		overflow-y: scroll;
	}

	.header {
		position: fixed;
		top: 0%;
		left: 100%;
		z-index: 11;
		background-color: #ffffff;
		transition: 0.3s;
		height: 100%;
		border-bottom: 0;
	}

	.nav-container {
		width: 100% !important;
		height: 100%;
		flex-direction: column;
		align-items: flex-start;
	}

	[dir='rtl'] .header {
		left: inherit;
		right: 100%;
	}

	.mobile-big-logo {
		width: 130px;
		margin: 15px;
		display: block;
	}

	.sign-in-btn,
	.sign-up-btn {
		height: 62px;
		box-shadow: none;
	}

	.sign-in-btn {
		box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 2px;
	}

	.img {
		margin: 17px 17px 17px 24px;
		width: 120px;
	}

	.header.active .nav-container {
		width: 100%;
		height: 100%;
		margin: 0;
		flex-direction: column;
		align-items: flex-start;
	}

	.navigation-list li {
		margin: 0 12px;
		border-radius: 40px;
	}

	.main-navigation {
		width: 100%;

		padding-bottom: 20px;
	}

	.sign-in-btn {
		margin: 10px 10px 20px 10px;
		width: calc(100% - 20px) !important;
	}

	.sign-up-btn {
		margin: 10px 10px 0 10px;
		width: calc(100% - 20px) !important;
	}

	.navigation-list {
		margin: 0;
		width: 100%;
		flex-direction: column;
		text-align: left;
		justify-content: baseline;
	}

	[dir='rtl'] .navigation-list {
		margin: 0;
		text-align: right;
	}

	.btns-container {
		width: 100%;
		flex-direction: column-reverse;
		display: flex;
		box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 5px;
		position: relative;
		transform: unset;
		top: unset;
		right: unset;
	}

	.sign-in-btn,
	.sign-up-btn {
		width: 100%;
		border-radius: 8px;
		-webkit-border-radius: 8px;
		-moz-border-radius: 8px;
		-ms-border-radius: 8px;
		font-weight: 500;
	}

	.navigation-list li {
		width: 100%;
		padding: 0;
		height: 58px;
	}

	.navigation-list li a {
		width: 100%;
		padding-left: 20px;
		text-align: left;
		padding: 1em 2em;
		border-radius: 8px;
		-webkit-border-radius: 8px;
		-moz-border-radius: 8px;
		-ms-border-radius: 8px;
	}

	.active-page {
		background-color: #f0f7fb;
		border-radius: 0;
		-webkit-border-radius: 0px;
		-moz-border-radius: 0px;
		-ms-border-radius: 0px;
	}

	.li-dropdown {
		height: auto !important;
		flex-wrap: wrap;
	}

	.li-dropdown ul {
		background-color: unset;
		position: relative;
		margin: 0 0 0 30px;
		border-radius: 0px;
		width: 100%;
		z-index: unset;
	}

	.li-dropdown ul li {
		display: block;
	}
	.li-dropdown ul li a {
		text-decoration: none;
		color: #4f4d4d;
	}
}

@media (max-width: 770px) {
	@media screen and (-webkit-min-device-pixel-ratio: 0) {
		.pw_contact_ambassador_cont select,
		.pw_contact_ambassador_cont textarea,
		.pw_contact_ambassador_cont input,
		.__z_contact_main_cont select,
		.__z_contact_main_cont textarea,
		.__z_contact_main_cont input {
			font-size: 16px !important;
		}
	}
}
