.header {
  background-color: #f4e5d8;
}
.header.fixed{
	position: fixed;
	top:0;
	width:100%;
	z-index:20;
}
.header.fixed._open{
	height:100%;
}
.header-line {
  border-bottom: 1px solid rgba(163, 90, 81, 0.2);
  position: relative;
  z-index: 3;
}
.header-line-container {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}
.header__block {
  display: -webkit-flex;
  display: flex;
}
.header__block-el h4:first-child {
  margin-bottom: 8px;
}
.header__block-el h4 {
  font-family: "Involve", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
  color: #371211;
}
.header__block-el h4 span {
  font-weight: 500;
}

.header__block-el h4._address {
	display:-webkit-flex;
	display:flex;
	-webkit-align-items:center;
	align-items:center;
	gap:4px;
}
.header__block-el h4._address span{
	width: 24px;
	height: 20px;
}
.header__block-el h4._small{
padding-left:28px;
}
.header__block-el h4._address span:after {
  	content:"";
	background-image: url('../images/svg/address.svg');
	width:100%;
	height:100%;
	background-size:cover;
	background-position:center;
	display: inline-block;
	
}

.header__block-el h4 a {
  color: #371211;
}
@media (hover: hover), (pointer: coarse) {
  .header__block-el h4 a:hover, .header__block-el h4 a:active {
    color: #a35a51;
  }
}
.header__burger {
  background-image: url("../images/svg/burger.svg");
  width: 30px;
  height: 30px;
}
.header__burger._active {
  background-image: url("../images/svg/close.svg");
}
.header-menu {
  border-bottom: 1px solid rgba(163, 90, 81, 0.2);
}
.header-menu-container {
  padding: 29px 0;
}
.header-menu__menu {
  -webkit-align-items: center;
  align-items: center;
}
.header .header__menu._pc .menu__list > li._active .menu__sub-list {
  opacity: 1;
  visibility: visible;
  transform: translate(0px, 32px);
  pointer-events: all;
  z-index: 2;
}
.header .menu {
  display: -webkit-flex;
  display: flex;
  gap: 80px;
}
.header .menu._hide {
  display: none;
}
.header .menu > li {
  position: relative;
}
.header .menu > li > a {
  padding-bottom: 34px;
  font-family: "Involve", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 120%;
  color: #371211;
}
.header .menu > li > a.sub-link {
  padding-right: 26px;
  position: relative;
}
.header .menu > li > a.sub-link:after {
  content: url("../images/svg/arrow_down.svg");
  width: 20px;
  height: 20px;
  position: absolute;
  top: 2px;
  right: 0px;
}
@media (hover: hover), (pointer: coarse) {
  .header .menu > li > a:hover, .header .menu > li > a:active {
    color: #a35a51;
  }
}
.header .menu > li._active > a {
  color: #a35a51;
}
.header .menu > li._active > a.sub-link:after {
  content: url("../images/svg/arrow_up_marsala.svg");
  top: 5px;
}
.header .sub-list._first {
  display: -webkit-flex;
  display: flex;
  column-gap: 40px;
}
.header .sub-list {
  cursor: pointer;
  position: absolute;
  left: -30px;
  z-index: 1;
  padding: 30px 30px;
  background-color: #fef7f1;
  border: 1px solid #f4e5d8;
}
.header .sub-list .line {
  height: 1px;
  margin-top: 24px;
  margin-bottom: 24px;
  background-color: rgba(163, 90, 81, 0.2);
}
.header .sub-list div {
  max-width: 340px;
}
.header .sub-list li {
  list-style-type: none;
}
.header .sub-list li:nth-last-child(n+2) {
  margin-bottom: 20px;
}
.header .sub-list li a {
  text-decoration: none;
  font-family: "Involve", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 120%;
  color: #371211;
}
.header .sub-list li a:focus {
  outline: none;
}
.header .sub-list li:hover > a, .header .sub-list li:active > a {
  color: #a35a51;
}
.header .sub-list ul > ul li {
  display: -webkit-flex;
  display: flex;
  gap: 12px;
  -webkit-align-items: center;
  align-items: center;
}
.header .sub-list ul > ul li:before {
  content: url("../images/svg/marker.svg");
  display: block;
  width: 20px;
  height: 20px;
}
.header .sub-list ul > ul li a {
  font-family: "Involve", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 120%;
  color: #371211;
}
.header .submenu {
  display: none;
}
.header .submenu._show {
  display: block;
}
.header__nav {
  display: none;
}
.header__nav .menu li a {
  padding: 0;
  font-size: 16px;
  font-weight: 500;
}

/*menu*/
@media (max-width: 1279px) {
  .header-line._active {
    background-color: #fef7f1;
  }
  .header__nav._active {
    scrollbar-color: #a35a51 #fef7f1;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 60px;
    overflow: scroll;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #fef7f1;
    padding: 40px 20px;
    z-index: 2;
    padding-top: 112px;
  }
  .header__nav._active .header__nav-block {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
  }
  .header__nav._active .header__menu {
    padding: 0;
  }
  .header__nav._active .menu__list {
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
  .header__nav._active .menu__list li .menu__link {
    color: #371211;
    font-weight: 500;
  }
  .header__nav._active .menu__list > li.menu__link-category .menu__link::after {
    content: url("../imgs/svg/icons/arrow_down_black.svg");
  }
  .header__nav._active .menu__list > li._active .menu__sub-list {
    display: block;
  }
  .header__nav._active .menu__list > li._active .menu__link::after {
    content: url("../imgs/svg/icons/arrow_down_hover.svg");
  }
  .header__nav._active .menu__sub-list {
    display: none;
    position: static;
    padding: 20px 0 0px 16px;
    border: none;
  }
  .header__nav._active .menu__sub-list li:nth-last-child(n+2) {
    margin-bottom: 16px;
  }
  .header__nav._active .menu li {
    padding: 8px 0;
    position: relative;
  }
  .header__nav._active .menu li a {
    font-size: 18px;
  }
  .header__nav._active .menu li.sub-link:after {
    content: url("../images/svg/arrow_left.svg");
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
  }
  .header__nav._active .submenu > li {
    padding: 8px 0;
    font-family: "Involve", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 120%;
    color: #371211;
    margin-bottom: 16px;
  }
  .header__nav._active .submenu > li.sub-link {
    padding-left: 26px;
    position: relative;
  }
  .header__nav._active .submenu > li.sub-link:before {
    content: url("../images/svg/arrow_left.svg");
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0%, -50%) scale(-1);
  }
  .header__nav._active .submenu ul li {
    padding: 7.5px 0;
  }
  .header__nav._active .submenu ul li:nth-last-child(n+2) {
    margin-bottom: 8px;
  }
  .header__nav._active .submenu ul li a {
    font-family: "Involve", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 120%;
    color: #371211;
  }
  .header__nav._active .submenu ul li.sub-link {
    position: relative;
  }
  .header__nav._active .submenu ul li.sub-link:after {
    content: url("../images/svg/arrow_left.svg");
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0%, -50%);
  }
  .header__nav._active .button {
    margin-top: 30px;
    text-align: center;
  }
}
@media (min-width: 1280px) {
  .header .menu_wide ul {
    min-width: 350px;
  }
  .header .menu__list {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .header .menu__sub-list {
    min-width: max-content;
    transform: translate(0px, 10%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.2s ease 0s;
  }
  .header__nav-container {
    display: none;
  }
}
@media (min-width: 320px) {
  .header-line .header__logo {
    width: 210px;
    height: 44px;
  }
  .header-line .header__block {
    display: none;
  }
  .header-menu {
    display: none;
  }
  .header__nav .header__block {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .header__nav .header__block-el {
    margin-bottom: 8px;
  }
  .header__nav .header__block-el h4 {
    font-size: 12px;
  }
}
@media (min-width: 1280px) {
  .header-line .header__logo {
    width: 220px;
    height: 48px;
  }
  .header-line .header__block {
    gap: 20px;
    display: -webkit-flex;
    display: flex;
	-webkit-align-items: center;
	align-items: center;
  }
	 .header-line .header__block .socials .social {
		width:40px;
	    height:40px;
	}
  .header-line .header__burger {
    display: none;
  }
  .header-menu {
    display: block;
  }
  .header-menu .menu {
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
}
@media (min-width: 1440px) {
  .header-line .header__logo {
    width: 240px;
    height: 50px;
  }
  .header-line .header__block {
    gap: 16px;
  }
  .header-line .header__block-el h4 {
    font-size: 16px;
  }
  .header-menu .menu {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
@media (min-width: 1800px) {
  .header-line .header__block {
    gap: 80px;
  }
	 .header-line .header__block .socials .social {
		width:50px;
	    height:50px;
	}
}/*# sourceMappingURL=header.css.map */