/*================HEADER==================*/
nav .nav-elems li.mob-menu-back{
	display: none;
}
header .header-content{
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	background-color: var(--lightgrey-color);
	padding: 30px 70px;
}
header .top-menu{
	display: flex;
	align-items: center;
	margin: 5px 20px;
}
header .menu_item a{
	margin: 0 5px;
	padding: 5px 5px;
	transition: all ease .25s;
	font-weight: 800;
}
header .menu_item a:hover{
	background-color: #ccc;
}
header .menu_item a.active{
	background-color: #ccc;
}
header .header_pages-links .pages-links_items{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
.pages-links_items li{
	margin: 0 5px;
	transition: all 0.3s ease;
}
.pages-links_items li:hover{
	background-color: #fff;
}
.pages-links_items li a{
	padding: 3px 7px 3px 7px; 
	text-transform: uppercase;
	font-size: 13px;
	font-weight: 700;
	color: #131212;
	white-space: nowrap;
}
header .header_logo .header_logo-wrapper > img{
	width: 300px;
}
.header_logo-text{
	margin-top: 5px;
	color: #341f16;
	text-align: center;
	font-weight: 700;
	white-space: nowrap;
}
header .header_info{
	display: flex;
	align-items: center;
}
header .header_info .header_info-icon_wrapper{
	margin-right: 5px;
}
header .header_info .header_info-icon_wrapper img{
	width: 25px;
}
header .header_search-box{
	min-width: 200px;
	width: 23%;
	background-color: #fff;
	border-radius: 50px;
	padding-left: 10px;
	box-shadow: 0px 0px 15px 1px #f0f0f0;
}
header .header_search-box form{
	width: 100%;
	display: flex;
}
header .header_search-box input{
	border: none;
	border-radius: 50%;
	padding: 18px 0px 18px 10px;
	font-size: 12px;
	width: calc(100% - 45px);
}
header .header_search-box .search{
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	width: 40px;
}
header .header_search-box button{
	width: 100%;
	height: 100%;
	background-color: transparent;
	outline: none;
	border: none;
	cursor: pointer;
}
header .header_search-box img{
	margin: auto;
}
header .language{
	display: flex;
}
header .language img{
	width: 25px;
}
header .language span{
	color: var(--brown-color);
	display: flex;
	align-items: center;
	font-size: 18px;
	text-transform: uppercase;
}
header .language span::before{
	content: "";
	display: block;
	width: 2px;
	height: 18px;
	margin: 0 8px;
	background-color: var(--brown-color);
}
header aside{
	width: 80px;
	height: 100%;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 9;
	background-color: var(--lightgrey-color);
}
header .aside-elems{
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 10px 0;
}
header .aside-element{
	width: 100%;
	border-bottom: 1px solid #ccc;
	transition: all ease .3s;
}
header .aside-element.burger{
	border-bottom: 1px solid var(--green-color);
}
header .aside-element:hover{
	background-color: #ccc;
}
header .aside-element .burger-line{
	display: block;
	width: 30px;
	height: 4px;
	background-color: #555;
	margin: 2px 0;
}
header .aside-element .burger-line.green{
	background-color: var(--green-color);
}
header .aside-element a{
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 15px 15px;
}
header .aside-element img{
	width: 45px;
}
header .aside-element.phone img{
	width: 40px;
}
header .aside-element .element-val{
	display: block;
	font-size: 13px;
	margin-top: 10px;
	text-align: center;
}
header .aside-element.viber-mob{
	display: none;
}
nav{
	display: none;
	position: fixed;
	top: 0;
	left: 80px;
	width: 400px;
	height: 100%;
	background-color: var(--lightgrey-color);
	z-index: 999;
	box-shadow: 10px 0 10px 0px  rgb(209, 209, 209);
	border-left: 1px solid #ccc;
}
nav .nav-elems{
	display: flex;
	flex-direction: column;
	padding: 20px;
}
nav .submenu.lvl-2{
	display: none;
	position: fixed;
	top: 0;
	left: 480px;
	width: 400px;
	height: 100%;
	padding: 20px;
	background-color: var(--lightgrey-color);
	box-shadow: inset 10px 0px 10px rgb(209, 209, 209);
	box-shadow: 10px 0 10px 0px  rgb(209, 209, 209);
	border-left: 1px solid #ccc;
}
nav .nav-elems li{
	padding: 5px 10px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid #ccc ;
}
nav .nav-elems .nav-item:hover{
	background-color: var(--green-color);
}
nav .nav-elems .nav-item a{
	font-size: 18px;
	padding: 10px 10px;
	display: block;
	width: 90%;
}
nav .nav-elems .nav-item .icon{
	display: block;
	padding: 10px 20px;
	cursor: pointer;
}
nav .nav-elems .nav-item:hover a.cat-link.lvl-1{
	color: #fff;
}
.icon-arrow-right::before {
	content: "\e901";
	font-size: 18px;
	font-weight: 700;
}
nav .nav-elems .nav-item:hover .icon-arrow-right::before{
	color: #fff;
}
nav .submenu-item.lvl-2:hover{
	background-color: var(--green-color);
}
nav .submenu-item.lvl-2:hover a{
	color: #fff;
}
.hamburglar {
  	transform: scale(0.8);
  	margin: 0px auto;
  	position: relative;
  	display: block;
  	width: 68px;
  	height: 68px;
	-webkit-touch-callout: none;
	user-select: none;
}
aside .aside-elems .burger .element-val{
	margin: 0 auto 10px;
} 
.path-burger {
  	position: absolute;
  	top: 0;
  	left: 0;
  	height: 68px;
  	width: 68px;
  	mask: url(#mask);
  	-webkit-mask-box-image: url(https://raygun.io/upload/mask.svg);
}
.animate-path {
  	position: absolute;
  	top: 0;
  	left: 0;
  	width: 68px;
  	height: 68px;
}
.path {
  	stroke-dasharray: 240;
  	stroke-dashoffset: 240;
  	stroke-linejoin: round;
}
.path-rotation {
  	height: 34px;
  	width: 34px;
  	margin: 34px 34px 0 0;
  	transform: rotate(0deg);
  	transform-origin: 100% 0;
}
.path-rotation:before {
   content: '';
   display: block;
   width: 30px;
   height: 34px;
   margin: 0 4px 0 0;
   background: var(--green-color);
}
@keyframes rotate-out {
  0% {
    transform: rotate(0deg);
  }
  40% {
	 transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotate-in {
  0% {
    transform: rotate(360deg);
  }
  40% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.hamburglar.is-open .path{
   animation: dash-in 0.6s linear normal;
   animation-fill-mode:forwards;
}
.hamburglar.is-open .animate-path{
	animation: rotate-in 0.6s linear normal;
	animation-fill-mode:forwards;
}
.hamburglar.is-closed .path{
   animation: dash-out 0.6s linear normal;
   animation-fill-mode:forwards;
}
.hamburglar.is-closed .animate-path{
	animation: rotate-out 0.6s linear normal;
   animation-fill-mode:forwards;
}
@keyframes dash-in {
  0% {
    stroke-dashoffset: 240;
  }
  40% {
    stroke-dashoffset: 240;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes dash-out {
  0% {
    stroke-dashoffset: 0;
  }
  40% {
    stroke-dashoffset: 240;
  }
  100% {
    stroke-dashoffset: 240;
  }
}
.burger-icon {
  	position: absolute;
  	padding: 20px 16px;
  	height: 68px;
  	width: 68px;
}
.burger-container {
  	position: relative;
  	height: 28px;
  	width: 36px;
}
.burger-bun-top,
.burger-bun-bot,
.burger-filling {
  	position: absolute;
  	display: block;
  	height: 4px;
  	width: 34px;
  	border-radius: 2px;
  	background: var(--brown-color);
}
.burger-bun-top {
  	top: 0;
  	transform-origin: 34px 2px;
}
.burger-bun-bot {
  	bottom: 0;
  	transform-origin: 34px 2px;
}
.burger-filling {
  	top: 12px;
  	background: var(--green-color);
}
.burger-ring {
  	position: absolute;
  	top: 0;
  	left: 0;
  	width: 68px;
  	height: 68px;
}
.svg-ring {
  	width: 68px;
  	height: 68px;
}
.hamburglar.is-open .burger-bun-top{
   animation: bun-top-out 0.6s linear normal;
   animation-fill-mode:forwards;
}
.hamburglar.is-open .burger-bun-bot{
   animation: bun-bot-out 0.6s linear normal;
   animation-fill-mode:forwards;
}
.hamburglar.is-closed .burger-bun-top{
   animation: bun-top-in 0.6s linear normal;
   animation-fill-mode:forwards;
}
.hamburglar.is-closed .burger-bun-bot{
   animation: bun-bot-in 0.6s linear normal;
   animation-fill-mode:forwards;
}
@keyframes bun-top-out {
  0% {
    left: 0;
    top: 0;
    transform: rotate(0deg);
  }
  20% {
    left: 0;
    top: 0;
    transform: rotate(15deg);
  }
  80% {
    left: -5px;
    top: 0;
    transform: rotate(-60deg);
  }
  100% {
    left: -5px;
    top: 1px;
    transform: rotate(-45deg);
  }
}
@keyframes bun-bot-out {
  0% {
    left: 0;
    transform: rotate(0deg);
  }
  20% {
    left: 0;
    transform: rotate(-15deg);
  }
  80% {
    left: -5px;
    transform: rotate(60deg);
  }
  100% {
    left: -5px;
    transform: rotate(45deg);
  }
}
@keyframes bun-top-in {
  0% {
    left: -5px;
    bottom: 0;
    transform: rotate(-45deg);
  }
  20% {
    left: -5px;
    bottom: 0;
    transform: rotate(-60deg);
  }
  80% {
    left: 0;
    bottom: 0;
    transform: rotate(15deg);
  }
  100% {
    left: 0;
    bottom: 1px;
    transform: rotate(0deg);
  }
}
@keyframes bun-bot-in {
  0% {
    left: -5px;
    transform: rotate(45deg);
  }
  20% {
    left: -5px;
    bottom: 0;
    transform: rotate(60deg);
  }
  80% {
    left: 0;
    bottom: 0;
    transform: rotate(-15deg);
  }
  100% {
    left: 0;
    transform: rotate(0deg);
  }
}
.hamburglar.is-open .burger-filling{
   animation: burger-fill-out 0.6s linear normal;
   animation-fill-mode:forwards;
}
.hamburglar.is-closed .burger-filling {
   animation: burger-fill-in 0.6s linear normal;
   animation-fill-mode:forwards;
}
@keyframes burger-fill-in {
  0% {
    width: 0;
    left: 34px;
  }
  40% {
    width: 0;
    left: 40px;
  }
  80% {
    width: 34px;
    left: -6px;
  }
  100% {
    width: 34px;
    left: 0px;
  }
}

@keyframes burger-fill-out {
  0% {
    width: 34px;
    left: 0px;
  }
  20% {
    width: 42px;
    left: -6px;
  }
  40% {
    width: 0;
    left: 40px;
  }
  100% {
    width: 0;
    left: 34px;
  }
}