/**
 * 	Header styles
 */
.header {
	width: 100%;
	height: var(--fm-header-height);
   background-color: #fff;
	border-bottom: 1px solid #d2d2d2;
   --fm-logo-height: 42px;
}
.header--container {
   display: flex;
   flex-wrap: nowrap;
	height: 100%;
   position: relative;
}
.header--container.section--wrap {
	padding-right: 0;
}
.header--logo {
   display: block;
	padding: calc( ( var(--fm-header-height) - var(--fm-logo-height) ) / 2 ) 0;
   margin-right: 130px;
   flex: 0 0 auto;
}
.header--logo img {
	display: block;
	height: var(--fm-logo-height);
	width: auto;
}


.menu--container {
   flex: 1 1 auto;
}
.menu--root_item {
   display: inline-block;
	height: var(--fm-header-height);
	float: left;
	padding-right: 50px;
}
.menu--root_item.menu--align_right {
	padding-right: 30px;
	float: right;
}
.menu--root_item > a {
	display: block;
	height: 100%;
	
   font-size: 15px;
   font-weight: 600;
   text-transform: uppercase;
   letter-spacing: 2.8px;
   color: #5c696f;
	line-height: var(--fm-header-height);
}
.menu--root_item.current-menu-ancestor > a,
.menu--root_item.current-menu-item > a {
	 color: #fa5c19;
}
@media (hover: hover) {
   .menu--root_item > a:hover {
      color: #fa5c19;
   }
}
.menu--container .menu--mobile_only_item {
	display: none;
}



.menu--drop_container {
	display: none;
	position: absolute;
	left: 0;
	right: 0;
	top: var(--fm-header-height);
	background: #f6f6f6;
	border-bottom: 1px solid #d2d2d2;
}
.menu--drop_scroll {
	Xoverflow-x: hidden;
	overflow-y: auto;
}
.menu--childs_container {
	display: flex;
	column-gap: 70px;
	padding: 20px 40px 30px;
}
.menu--childs_group {
	display: block;
}

.menu--items_group > a, .menu--items_group > p {
	display: block;
	padding: 5px 0 7px;
	text-transform: uppercase;
	color: #5c696f;
	font-weight: 500;
	letter-spacing: 1px;
}
.menu--combined_group_title {
	margin-top: 25px;
}
.menu--items_group.menu--hide_title .menu--item_group_title {
	display: none;
}
.menu--container .menu--items_group.current-menu-item > .menu--item_group_title,
.menu--container .menu--combined_group_title.current-menu-item {
	color: #fa5c19;
}
@media (hover: hover) {
   .menu--items_group > a:hover {
      color: #fa5c19;
   }
}

.menu--items_block .menu-item a {
	display: block;
	padding: 5px 0;
	line-height: 1.2em;
	color: #5c696f;
}
.menu--items_block .current-menu-item a {
	color: #fa5c19;
}
@media (hover: hover) {
   .menu--items_block .menu-item a:hover {
      color: #fa5c19;
   }
}


.menu--search {
	width: var(--fm-header-height);
	height: var(--fm-header-height);
	border-left: 1px solid #d2d2d2;
}
.menu--search .menu--search_handler {
	display: block;
	height: 100%;
	background: url("../images/menu-icon-search-grey.svg") no-repeat center;
}
@media (hover: hover) {
	.menu--search .menu--search_handler:hover {
		background-image: url("../images/menu-icon-search-orange.svg");
	}
}



.menu--burger {
   display: none;
   width: var(--fm-header-height);
   height: var(--fm-header-height);
   border-left: 1px solid #d6d6d6;
}
.menu--burger_toggler {
	display: block;
	height: 100%;
	position: relative;
}
.menu--burger_toggler span {
   position: absolute;
   top: 50%;
   left: 50%;
   width: 22px;
   height: 2px;
	background: #fa5c19;
   transform: translateX(-50%) translateY(-50%);
}
.menu--burger_toggler span:before,
.menu--burger_toggler span:after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	height: 2px;
	background: #fa5c19;
	opacity: 1;
	transition: all 0.2s ease-in-out 0s;
}
.menu--burger_toggler span:before {
  top: -8px;
}
.menu--burger_toggler span:after {
  bottom: -8px;
}
.menu--burger.menu--droped .menu--burger_toggler span {
	background-color: transparent;
}
.menu--burger.menu--droped .menu--burger_toggler span:before {
	transform: rotate(-45deg);
	top: 0;
}
.menu--burger.menu--droped .menu--burger_toggler span:after {
	transform: rotate(45deg);
	bottom: 0;
}



@media (max-width: 1200px) {
   .header--logo {
      margin-right: 100px;
    }
	.menu--root_item {
	  padding-right: 38px;
	}
}
@media (max-width: 1100px) {
	.menu--childs_container {
		column-gap: 50px;
	}
}
@media (max-width: 1050px) {
	.menu--childs_container {
		column-gap: 70px;
	}
	.menu--root_item.menu--hide1050 {
		display: none;
	}
	.menu--burger {
		display: block;
	}
}
@media (max-width: 900px) {
   .header {
      --fm-logo-height: 38px;
   }
   .header--logo {
      margin-right: 80px;
    }
	.menu--root_item {
	  padding-right: 30px;
	}
}
@media (max-width: 786px) {
   .menu--root_item {
      display: none;
   }
}
@media (max-width: 576px) {
   .header {
      --fm-logo-height: 35px;
   }
   .header--logo {
      margin-right: 40px;
    }
}
@media (max-width: 420px) {
}


/**
 * 	Burger styles
 */
.menu--burger_container {
	padding-top: 0;
	padding-bottom: 40px;
}
.menu--burger_container a {
	display: block;
	padding: 12px 30px 12px 80px;
	line-height: 20px;
   color: #5c696f;
	border-bottom: 1px solid #d6d6d6;
}
@media (hover: hover) {
	.menu--burger_container a:hover {
		color: #fa5c19;
	}
}
.burger--block_lvl0 > a {
	position: relative;
	padding-left: 55px;
   font-size: 14px;
   font-weight: 600;
   text-transform: uppercase;
   letter-spacing: 2px;
	background-color: #e9eced;
}
.burger--block_lvl1 > a {
	position: relative;
   font-size: 14px;
   font-weight: 500;
   text-transform: uppercase;
   letter-spacing: 1px;
}
.burger--handler.menu-item-has-children > a::before {
  position: absolute;
  content: "";
  top: 0;
  width: 12px;
  height: 20px;
  padding: 9px 0 15px;
  background-image: url("../images/pointer-down-grey.svg");
  background-position: center;
  background-repeat: no-repeat;
}
.burger--block_lvl0.menu-item-has-children > a::before {
  left: 30px;
}
.burger--block_lvl1.menu-item-has-children > a::before {
  left: 55px;
}
.burger--handler.burger--droped > a::before {
	background-image: url("../images/pointer-down-orange.svg");
	transform: rotate(180deg);
}
.menu--burger_container .current-menu-item > a {
	 color: #fa5c19;
}
.burger--drop_lvl0 {
	display: none;
}
.burger--drop_lvl1 {
	display: none;
}
.burger--block_lvl1.menu--hide_title .menu--item_group_title {
	display: none;
}
.burger--block_lvl1.menu--hide_title .burger--drop_lvl1 {
	display: block;
}
.menu--hide_title .burger--block_lvl2 a {
	padding-left: 55px;
}
.menu--burger_container .menu--burger_all_products > a {
	text-transform: none;
}

@media (max-width: 1050px) and (min-width: 787px) {
	.burger--block_lvl0:not(.menu--hide1050) {
		display: none;
	}
}
@media (max-width: 1050px) and (min-width: 576px) {
	.menu--burger .menu--drop_container {
		width: 450px;
		right: 0;
		left: auto;
		border-left: 1px solid #d6d6d6;
	}
}



/**
 * 	Header dynamic scroll
 */
body.hd-fixed {
	padding-top: var(--fm-header-height);
}
.hd-fixed .header {
	height: var(--fm-header-height);
	top: 0;
	transition: top 0.3s ease-in-out;
	z-index: 1500;
	display: block;
	position: fixed;
}
.hd-fixed.hd-up .header {
	top: calc( -1 * var(--fm-header-height) );
}
.hd-dynamic .header {
	position: absolute;
}
.hd-static .header {
	position: relative;
	z-index: 1500;
}



/**
 * 	Footer styles
 */
.footer {
	width: 100%;
}
.footer div {
   transition: all ease 0.2s;
}	

.footer--menu {
	background: #f0f0f0;
	border-top: 1px solid #d2d2d2;
}
.footer--container {
	padding-top: 40px;
	padding-bottom: 0;
	font-size: 15px;
	line-height: 24px;
   display: flex;
}	
.footer--menu .menu--items_group {
	margin-bottom: 40px;
}
.footer--menu .menu--mobile_only_item {
	display: none;
}
.footer--menu .menu--burger_all_products {
	display: none !important;
}
.footer--section_1 {
   width: 40%;
	padding-right: 40px;
}
.footer--section_2 {
   width: 60%;
}
.footer--section_2_child {
   width: 100%;
	display: flex;
}
.footer--section_2_child .menu--items_group {
	flex: 0 0 auto;
}
.footer--section_2_child .menu--items_group:first-child {
	width: 35%;
	padding-right: 40px;
}
.footer--section_2_child .menu--items_group:nth-child(2) {
   width: 35%;
	padding-right: 40px;
}
.footer--section_2_child .menu--items_group:last-child {
	width: 30%;
}
.footer--menu .current-menu-item a,
.footer--menu .current-menu-ancestor a {
	color: #5c696f;
}
@media (hover: hover) {
   .footer--menu .menu--items_group > a:hover {
      color: #fa5c19;
   }
}

.footer--button {
	margin-left: -5px;
}
.footer--social {
	padding-top: 25px;
}
.footer--social a {
	margin-right: 10px;
}
.footer--social img {
	width: 28px;
	height: auto;
}

.footer--bottom {
	padding-top: 15px;
	padding-bottom: 14px;
}
.footer--logo {
   padding-right: 25px;
 }
.footer--logo a {
   display: block;
 }
.footer--logo img {
	display: block;
   height: 28px;
   width: auto;
}
.footer--copyright {
	font-size: 15px;
	line-height: 28px;
}



@media (max-width: 1200px) {
}
@media (max-width: 1100px) {
	.footer--section_1 {
		width: 32%;
	}
	.footer--section_2 {
		width: 68%;
	}
	.footer--section_2_child .menu--items_group:first-child {
		width: 35%;
		padding-right: 40px;
	}
	.footer--section_2_child .menu--items_group:nth-child(2) {
		width: 35%;
		padding-right: 40px;
	}
	.footer--section_2_child .menu--items_group:last-child {
		width: 30%;
	}
}
@media (max-width: 1050px) {
}
@media (max-width: 900px) {
	.footer--container {
		display: block;
	}	
	.footer--section_1 {
		width: 100%;
		padding-right: 0;
		display: flex;
	}
	.footer--section_1 .menu--items_group {
		width: 50%;
	}
	.footer--section_2 {
		width: 100%;
	}
	.footer--section_1 .menu--items_group:nth-child(2),
	.footer--section_2_child .menu--items_group:first-child {
		width: 35%;
		padding-right: 40px;
	}
	.footer--section_1 .menu--items_group:nth-child(3),
	.footer--section_2_child .menu--items_group:nth-child(2) {
		width: 35%;
		padding-right: 40px;
	}
	.footer--section_1 .menu--items_group:last-child,
	.footer--section_2_child .menu--items_group:last-child {
		width: 30%;
	}
	
}
@media (max-width: 786px) {
	.footer--container {
		font-size: 14px;
		line-height: 20px;
		padding-top: 30px;
	}
	.footer--menu .menu--items_group {
	  margin-bottom: 30px;
	}
   .footer--section_1 .menu--items_group:nth-child(2),
	.footer--section_2_child .menu--items_group:first-child {
		width: 33%;
		padding-right: 40px;
	}
   .footer--section_1 .menu--items_group:nth-child(3),
	.footer--section_2_child .menu--items_group:nth-child(2) {
		width: 35%;
		padding-right: 40px;
	}
   .footer--section_1 .menu--items_group:last-child,
	.footer--section_2_child .menu--items_group:last-child {
		width: 32%;
	}
	.footer--copyright {
		font-size: 14px;
	}
}
@media (max-width: 576px) {
	.footer--bottom {
		padding-top: 12px;
		padding-bottom: 10px;
	}
	.footer--container {
		padding-top: 0;
		padding-bottom: 20px;
	}
	.footer--menu .menu--items_group {
	  margin-bottom: 0;
	}
	.footer--section_1 {
		display: block;
	}
	.footer--section_1 .menu--items_group {
		width: 100%;
	}
	.footer--section_2_child {
		display: block;
	}
   .footer--menu .footer--section_1 .menu--items_group,
	.footer--menu .footer--section_2_child .menu--items_group {
		width: 100%;
		padding-right: 0;
	}
	.footer--menu .menu--items_block {
		display: none;
	}
	.footer--menu .menu--items_block.menu--block_active {
		display: block;
	}
	.footer--menu .menu--items_block .menu-item a {
		padding-left: 40px !important;
	}
	.footer--menu .menu--mobile_only_item {
		display: block;
	}
	.footer--menu .menu--combined_group_title {
		margin-top: 0;
	}
	.footer--menu .footer--buttons {
		margin-top: 30px;
	}
	.footer--menu .menu--items_group.menu-item a {
		padding: 12px 45px 12px 20px;
		border-bottom: 1px solid #d2d2d2;
		margin-left: -20px;
		margin-right: -20px;
	}
	.footer--menu .menu--items_group.menu-item-has-children {
		position: relative;
	}
	.footer--menu .menu--items_group.menu-item-has-children::after {
		position: absolute;
		content: "";
		top: 0;
		right: 0;
		width: 12px;
		height: 20px;
		padding: 9px 0 15px;
		background-image: url("../images/pointer-down-grey.svg");
		background-position: center;
		background-repeat: no-repeat;
	}
	.footer--menu a.menu--group_link {
		font-size: 13px;
	}
}


/**
 * 	Search form
 */
.menu--search_container {
	padding-bottom: 30px;
}
.menu--search_container .search--form {
	max-width: none;
}

.search--form {
	margin: 15px 0;
	max-width: 500px;
}
.search--form h4 {
	padding: 5px 0 10px;
	font-weight: 500;
	font-size: 16px;
}
.search--label span {
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}
.search--input_container {
	display: flex;
}
.search--input {
	display: block;
	width: 100%;
	height: 44px;
	padding: 5px 36px 5px 14px;
	font-family: 'Montserrat',sans-serif;
	font-size: 16px;
	font-weight: 400;
	color: #5C696F;
	background-color: #fff;
	border-radius: 2px;
	border: 1px solid #ddd;
	transition: all 0.2s ease;
	outline: none;
	margin-bottom: 5px;
}
.search--input::placeholder {
	opacity: 0.5;
	font-size: 14px;
}
.search--button {
	display: block;
	flex: 0 0 auto;
	height: 44px;
	width: 44px;
	margin: 0 0 0 -22px;
	background-color: #FA5C19;
	border: 1px solid #FA5C19;
	border-radius: 25px;
	cursor: pointer;
	outline: none;
}
.search--button span {
	display: block;
	width: 100%;
	height: 100%;
	background: url("../images/search-icon-white.svg") no-repeat center;
}
@media (hover: hover) {
	.search--button:hover {
		background-color: #FFF;
	}
	.search--button:hover span {
		background: url("../images/search-icon-orange.svg") no-repeat center;
	}
}


/**
 * 	Custom scroller
 */
.simplebar-scrollbar::before {
  background: #adb4b7;
}

