.header {
  padding: 10px 0;
  background: #231f20;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.5;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 110;
}

.header a {
  color: #ffffff;
  font-size: 14px !important;
  line-height: 1.5;
  text-decoration: none;
}

.header p {
  font-size: 14px !important;
  margin-bottom: 0 !important;
}

.header ul, .header ol {
  margin: 0 !important;
}

.header-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.header-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.header-center {
  padding: 50px 10px 10px 10px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background: #231f20;
  position: fixed;
  top: 0;
  right: calc(0.1% - 425px);
  z-index: 10;
  overflow-y: auto;
  transition: 0.5s;
}

@media (min-width: 425px) {
  .header-center {
    width: 425px;
  }
}

@media (min-width: 1200px) {
  .header-center {
    width: auto;
    padding: 0;
    flex-direction: row;
    align-items: center;
    flex-grow: 1;
    position: static;
    overflow-y: unset;
  }
}

.header-right {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 5px;
  display: none;
}

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

.header-active {
  right: 0;
}

.header .brand {
  display: block;
  width: 150px;
}

.header .brand__img {
  width: 100%;
  aspect-ratio: 150 / 29;
}

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

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

.header .social__img {
  width: 20px;
  height: 20px;
}

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

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

.header .menu__item {
  position: relative;
}

.header .menu__link {
  padding: 10px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
}

.header .menu__link:hover {
  background: rgba(255, 255, 255, 0.1);
}

.header .menu__arrow {
  width: 12px;
  height: 12px;
  object-fit: contain;
}

.header .menu__megamenu {
  position: unset;
}

.header .menu__active>.submenu,
.header .menu__active>.megamenu {
  display: block;
}

.header .menu__active>.menu__link .menu__arrow {
  transform: rotate(180deg);
}

.header .menu__active>.megamenu-second {
  display: block;
}

.header .submenu {
  display: none;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 5px;
}

@media (min-width: 1200px) {
  .header .submenu {
    width: 200px;
    background: #231f20;
    border-radius: 0;
    position: absolute;
    top: calc(100% + 17px);
    left: 0;
  }
}

.header .megamenu {
  display: none;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 5px;
}

@media (min-width: 1200px) {
  .header .megamenu {
    width: 100vw;
    padding: 20px 0;
    background: #231f20;
    border-radius: 0;
    position: absolute;
    top: 100%;
    left: 0;
  }
}

.header .megamenu-first {
  display: flex;
  flex-direction: column;
}

@media (min-width: 1200px) {
  .header .megamenu-first {
    flex-direction: row;
    gap: 10px;
    flex-wrap: wrap;
  }
}

.header .megamenu-second {
  display: none;
}

@media (min-width: 1200px) {
  .header .megamenu-second {
    width: 100vw;
    padding: 0 0 20px 0;
    background: #231f20;
    position: absolute;
    top: 100%;
    left: 0;
  }
}

.header .megamenu-third {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 5px;
}

@media (min-width: 1200px) {
  .header .megamenu-third {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    background: none;
    border-radius: 0;
  }
}

.header .megamenu__link {
  display: inline-block;
  padding: 10px;
}

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

.header .megamenu__container {
  width: auto;
  padding: 0;
}

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

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

.header .phone__url {
  font-size: 12px;
}

.header .phone__btn {
  padding: 5px 10px;
  font-size: 10px;
  border-radius: 20px;
  border: 2px solid #5226fd;
}

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

.header .search {
  display: none;
}

.header .search__input {
  padding: 7px;
  margin: 0;
  border: none;
  border-bottom: 2px solid #5226fd;
  border-radius: 0;
  color: #ffffff;
}

.header .hamburger {
  z-index: 20;
}

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

.header .container {
  width: 100%;
  max-width: none;
  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-call-back-btn {
  cursor: pointer;
}