.header ul, .header ol {
  margin: 0;
  list-style-type: none;
}

.header a {
  text-decoration: none;
}

.header {
  padding: 10px 0;
  background: #231F20;
  color: #ffffff;
  font-size: 13px;
  font-family: Manrope;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

@media (min-width: 1200px) {
  .header {
    padding: 0;
  }
}

.header .container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header .container {
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

@media (min-width: 320px) {
  .header .container {
    width: 320px;
  }
}

@media (min-width: 640px) {
  .header .container {
    width: 640px;
  }
}

@media (min-width: 1024px) {
  .header .container {
    width: 960px;
  }
}

@media (min-width: 1200px) {
  .header .container {
    width: 1200px;
  }
}

.header-logo {
  width: 150px;
}

.header-logo-wrap {
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.header-logo__img {
  width: 100%;
}

.header-menu {
  display: flex;
  flex-direction: column;
}

@media (min-width: 1200px) {
  .header-menu {
    align-items: center;
    flex-direction: row;
  }
}

.header-menu-wrap {
  width: 100%;
  padding: 70px 20px 20px 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  background: #231f20;
  transform: translateX(100%);
  transition: .5s;
}

@media (min-width: 640px) {
  .header-menu-wrap {
    width: 400px;
  }
}

@media (min-width: 1200px) {
  .header-menu-wrap {
    width: auto;
    padding: 0;
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    transform: translateX(0);
  }
}

@media (max-width: 1199px) {
  .header-menu-wrap {
    overflow-y: auto;
  }
}

@media (max-width: 1190px) {
  .header-menu__item {
    position: relative;
  }
}

.header-menu__link {
  display: inline-block;
  width: 100%;
  box-sizing: border-box;
  padding: 10px 10px;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-menu__link:hover {
  color: #d29df9;
}

@media (min-width: 1200px) {
  .header-menu__link {
    width: auto;
    padding: 32px 10px;
    border-bottom: none;
  }
}

.header-menu__arrow {
  width: 13px;
  height: 13px;
  position: absolute;
  top: 15px;
  right: 0;
}

@media (min-width: 1200px) {
  .header-menu__arrow {
    margin-right: 10px;
    position: static;
  }
}

@media (min-width: 1200px) {
  .header-menu-haschild {
    display: flex;
    align-items: center;
  }
}

.header-menu-active {
  transform: translateX(0);
}

.header-menu-show .header-subnav {
  display: block;
}

@media (min-width: 1200px) {
  .header-menu-show .header-subnav {
    display: flex;
  }
}

.header-menu-show .header-menu__arrow {
  transform: rotate(180deg);
}

.header-subnav,
.header-submenu {
  display: none;
}

.header-subnav__link,
.header-submenu__link {
  display: inline-block;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  color: #ffffff;
  font-size: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-subnav__link:hover {
  color: #d29df9;
}

.header-submenu__link:hover {
  color: #000000;
  background: #fdb6fa;
}

@media (min-width: 1200px) {

  .header-subnav__link,
  .header-submenu__link {
    border-bottom: none;
  }
}

@media (min-width: 1200px) {
  .header-subnav {
    width: 1200px;
    padding: 20px;
    box-sizing: border-box;
    position: absolute;
    top: 100%;
    right: 0;
    gap: 20px;
    justify-content: space-around;
    background: #231f20;
  }
}

@media (min-width: 1200px) {
  .header-subnav::before {
    content: '';
    display: block;
    width: 150vw;
    height: 101%;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
    transform: translate(-50%, -50%);
    background: #231f20;
  }
}

@media (min-width: 1200px) {
  .header-subnav__item {
    display: flex;
    align-items: center;
  }
}

@media (max-width: 1190px) {
  .header-subnav__item {
    position: relative;
  }
}

.header-subnav__link {
  padding: 10px 10px 10px 20px;
}

@media (min-width: 1200px) {
  .header-subnav__link {
    padding: 10px;
    text-align: center;
  }
}

.header-subnav__arrow {
  width: 13px;
  height: 13px;
  position: absolute;
  top: 15px;
  right: 0;
}

@media (min-width: 1200px) {
  .header-subnav__arrow {
    position: static;
  }
}

.header-subnav-show .header-submenu {
  display: block;
}

@media (min-width: 1200px) {
  .header-subnav-show .header-submenu {
    display: flex;
  }
}

.header-subnav-show .header-subnav__arrow {
  transform: rotate(180deg);
}

@media (min-width: 1200px) {
  .header-submenu {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    position: absolute;
    top: 100%;
    left: 0;
    background: #231f20;
    gap: 10px;
    flex-wrap: wrap;
  }
}

@media (min-width: 1200px) {
  .header-submenu::before {
    content: '';
    display: block;
    width: 150vw;
    height: 101%;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
    transform: translate(-50%, -50%);
    background: #231f20;
  }
}

.header-submenu__link {
  padding: 10px 10px 10px 30px;
}

@media (min-width: 1200px) {
  .header-submenu__link {
    padding: 10px 20px;
    background: #f9c2f7;
    color: #000000;
    border-radius: 20px;
  }
}

.header-search-mobile {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 1200px) {
  .header-search-mobile {
    display: none;
  }
}

.header-search-mobile__icon {
  width: 20px;
  height: 20px;
}

.header-search-mobile input {
  width: 100%;
  margin: 0;
  border: none;
  color: #ffffff;
  background: none;
  border: none;
  outline: none;
}

.header-search-desktop {
  display: none;
}

.header-search-desktop input {
  width: 205px;
  padding: 10px;
  margin-bottom: 0;
  border: none;
  color: #ffffff;
  background: none;
  border: none;
  outline: none;
}

.header-search-desktop-wrap {
  display: none;
}

@media (min-width: 1200px) {
  .header-search-desktop-wrap {
    padding-bottom: 5px;
    display: flex;
    align-items: center;
  }
}

.header-search-desktop-wrap-active {
  border-bottom: 2px solid #f9c2f7;
}

.header-info {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

@media (min-width: 1200px) {
  .header-info {
    margin-top: 0;
    align-items: end;
    gap: 5px;
  }
}

.header-info-bottom {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}

.header-phone {
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-phone__link {
  color: #ffffff;
}

.header-phone__btn {
  padding: 5px 9px;
  color: #ffffff;
  border: 2px solid #5226FD;
  border-radius: 20px;
  font-size: 10px;
  white-space: nowrap;
}

.header-social {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-social__img {
  width: 25px;
  height: 25px;
}

@media (min-width: 1200px) {
  .header-social-mobile {
    display: none;
  }
}

.header-social-desktop {
  display: none;
}

@media (min-width: 1200px) {
  .header-social-desktop {
    display: flex;
    justify-content: center;
  }
}

.header-address {
  font-size: 13px;
}

.header-icon {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

@media (min-width: 1200px) {
  .header-icon {
    margin-top: 0;
    flex-direction: column;
    justify-content: start;
    gap: 5px;
  }
}

.header-icon__img {
  width: 30px;
  height: 30px;
}

.header-hamburger {
  display: block;
  position: relative;
  z-index: 10;
}

@media (min-width: 1200px) {
  .header-hamburger {
    display: none;
  }
}