.header {
	height: 80px;
	line-height: 80px;
	position: sticky;
	top: 0px;
	z-index: 6;
	background: #ffffff00;
	color: white;
	transition: 0.4s;
	opacity: 0;
}

.header_logo>svg {
	width: 100px;
}

.header_nav {
	display: flex;
	width: max-content;
	overflow: hidden;
	max-width: 100%;
	margin: 0 auto;
	line-height: inherit;
}

.nav_box>a {
	line-height: inherit;
	padding: 0 26px;
	transition: 0.6s;
	white-space: nowrap;
	cursor: pointer;
}
.nav_box {
	width: max-content;
	display: flex;
	float: right;
	direction: rtl;
	position: relative;
	font-size: 23px;
	font-family: 'Open Sans';
	font-weight: 400;
	line-height: inherit;
}

.header_logo {
	width: max-content;
	/* background: red; */
	margin: 0 20px;
	position: relative;
	display: block;
	opacity: 0;
	width: 0;
	margin: 0;
	transition: 0;
}

.nav_box_r {
	direction: ltr;
}

.nav_box>a:hover {
	color: #ffffff94;
}
.header.white_head {
	background: white;
	color: black;
}
.header.white_head>.header_nav>.nav_box>a:hover {
	color: #b1b1b1;
}
.change_lang.btn {
	position: absolute;
	right: 0;
	top: 0;
	font-size: 16px;
	padding: 10px 10px;
	line-height: normal;
	border-radius: 66px;
	top: 18px;
	right: 15px;
	transition: 0.6s;
	overflow: hidden;
	height: 22px;
	text-align: center;
	cursor: pointer;
}

.header.white_head>.change_lang.btn {
	background: #d6d6d6;
	color: black;
}

.header.white_head>.change_lang.btn:hover, .change_lang.btn.active {
	background: black !important;
	color: white !important;
}
.ch_lang_box {
	height: 0;
	opacity: 0;
	border-top: 1px solid;
	padding-top: 0;
	margin-top: 11px;
	font-size: 20px;
	line-height: 32px;
}

.change_lang.btn.active {
	height: 108px;
	border-radius: 10px;
	padding: 10px 0;
	text-align: center;
}

.change_lang.btn.active>.ch_lang_box {
	opacity: 1;
}

.change_lang_line:hover {
	background: white;
	color: black;
	transition: 0.6s;
}

.change_lang_line {
	padding: 5px 40px;
	transition: 0.6s;
}
.change_lang>i {
	height: auto;
	min-height: 22px;
	position: relative;
	display: block;
}

.open_image_back {
	position: fixed;
	right: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
	z-index: -1;
	backdrop-filter: blur(9.4px) brightness(0.2);
	transition: 0.6s;
	opacity: 0;
}
.open_image_back>img {
	width: auto;
	max-width: 100vw;
	height: 100vh;
	left: 0;
	right: 0;
	margin: 0 auto;
	position: absolute;
	object-fit: contain;
	transition: 0.6s;
}
i.close_image_back.fa-duotone.fa-x {
	position: absolute;
	right: 0;
	top: 0;
	z-index: 99999;
	color: #a2a1a1;
	padding: 20px;
	font-size: 40px;
	cursor: pointer;
	transition: 0.4s;
}

.open_image_back.show {
	z-index: 99;
	opacity: 1;
}

i.close_image_back.fa-duotone.fa-x:hover {
	color: white;
}
.photo_nav {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 333;
	color: white;
	font-size: 100px;
	/* margin: auto; */
}
.photo_nav.show {
	display: block;
}
.photo_nav>.fa-chevron-left, .photo_nav>.fa-chevron-right {
	position: fixed;
	background: transparent;
	color: #adadad59;
	height: 100vh;
	line-height: 100vh;
	width: 3.5vw;
	padding: 0 10px;
	transition: 0.4s;
	cursor: pointer;
	background-size: 400%;
	background-position: right;
	background-image: linear-gradient(272deg, transparent,  #ffffff00, #00000000, #00000066);
}

.photo_nav>.fa-chevron-left {
	left: 0;
	right: auto;
}

.photo_nav>.fa-chevron-right {
	right: 0;
	left: auto;
	direction: rtl;
}

.photo_nav>.fa-chevron-left:hover {background-position: left;color: white;}

.photo_nav>.fa-chevron-right {
	background-image: linear-gradient(93deg, transparent,  #ffffff00, #00000000, #00000066);
	background-position: left;
}

.photo_nav>.fa-chevron-right:hover {
	background-position: right;
	color: white;
}




.min_header_nav {
	transition: 0.6s;
	position: fixed;
	background: linear-gradient(85deg, white, #efefef);
	box-shadow: 11px 0px 20px #959595;
	color: black;
	padding-left: 10px;
	left: -100%;
	width: 80vw;
	height: calc(100vh + 41px);
	z-index: 9;
	top: -1px;
	font-size: 28px;
	font-family: 'Open Sans';
	font-weight: 900;
	color: #535353;
	line-height: 55px;
	display: none;
	overflow: hidden;
}

i.fa-regular.fa-bars-staggered.open_min_nav {
	position: fixed;
	top: 0;
	left: 0;
	font-size: 65px;
	z-index: 9;
	cursor: pointer;
	padding: 0 10px 10px 0;
	transition: 0.6s;
	line-height: normal;
}

.nav_box_min {
	display: block;
	border-top: 1px solid #c5c5c5;
}

.nav_box_min>a {
	display: block;
	padding-left: 9vw;
}
.min_header_nav.open_nav {
	left: 0;
}

.min_header_nav.open_nav>i.fa-regular.fa-bars-staggered.open_min_nav {
	left: 81vw;
}


.min_header_nav>.header_logo>#logo_layer_id {
	width: 100%;
	margin: 0 auto 60px;
}


.min_header_nav>.header_logo {
	margin: unset;
	opacity: 1;
	height: max-content;
	width: max-content;
	left: 9vw;
	margin-bottom: 25px;
	margin-top: 50;
}
.header_logo>a {
	width: 100%;
	height: 100%;
	display: block;
	position: relative;
}

.header_logo>a>svg {
	width: auto;
	height: 65px;
}
.header_logo_home>a>svg>g>path.logo_layer_3 {
	/* display: none; */
	fill: white;
	filter: drop-shadow( 0 0 4px #4d4d4d);
}
.header_logo_home {
	position: relative;
}

.header_logo_home>a>svg {
	width: 670px;
	margin-left: -6px;
	opacity: 0;
	/* transition: 0.8s; */
	/* transition-delay: 0.5s; */
	transition: 1s;
	transition-delay: 0.4s;
}
.header.white_head>.header_nav>.header_logo {width: max-content;margin: 0 20px;opacity: 1;transition: 0.5s;}

/*loader>*/
.lds-dual-ring {
 display: inline-block;
 width: 80px;
 height: 80px;
 z-index: 2282;
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 margin: auto;
 opacity: 0;
}
.lds-dual-ring:after {
 content: " ";
 display: block;
 width: 64px;
 height: 64px;
 margin: 8px;
 border-radius: 50%;
 border: 6px solid #fff;
 border-color: #fff transparent #fff transparent;
 animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
 0% {
	transform: rotate(0deg);
 }
 100% {
	transform: rotate(360deg);
 }
}
/*loader<*/
.popup_background {
	background: #ff000000;
	position: fixed;
	z-index: 77;
	width: 95%;
	max-width: 100vw;
	height: 0;
	margin: auto;
	right: 0;
	left: 0;
	top: 0;
	bottom: 0;
	-webkit-transition: 0.8s;
	-o-transition: 0.8s;
	transition: 0.8s;
	overflow: hidden;
	-webkit-box-sizing: border-box;
			  box-sizing: border-box;
}

.popup_back {
	z-index: 6;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	max-width: 100%;
	-webkit-box-sizing: border-box;
			  box-sizing: border-box;
	height: -webkit-max-content;
	height: -moz-max-content;
	height: max-content;
	margin: auto;
	right: 0;
	left: 0;
	top: 0;
	bottom: 0;
	padding: 60px 200px;
	-webkit-backdrop-filter: blur(10.9px) brightness(0.2);
			  backdrop-filter: blur(10.9px) brightness(0.2);
	position: absolute;
}

.popup_body {
	margin: auto;
	position: relative;
	left: 0;
	right: 0;
	display: block;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	max-width: 100%;
	height: -webkit-max-content;
	height: -moz-max-content;
	height: max-content;
	color: white;
	font-family: 'Open Sans';
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	max-width: 100%;
}

.pop_head_text {
	font-size: 46px;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	margin: 0 auto 40px;
}

.pop_head>a {
	width: 380px;
	display: flex;
	max-width: 100%;
}
.pop_line {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.pop_contact {
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	-webkit-box-flex: 1;
		 -ms-flex: 1;
			  flex: 1;
}

.phone {
	display: block;
	margin: 0 auto;
	position: relative;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	font-size: 45px;
	font-weight: 800;
	color: #0c8f07;
}

.mail {
	position: relative;
	margin: 0 auto;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	margin-top: 19px;
	color: #8ea073;
}
.web_site {
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	margin: 0 auto 20px;
	font-weight: 900;
	color: #ffffff;
	font-size: 25px;
}
.pop_head>a>img {
    width: inherit;
}

.pop_head {
    display: block;
    max-width: 100%;
}

