.menu-cat {
  position: relative;
  z-index: 1000;
  -ms-flex: 0 0 210px;
  flex: 0 0 21rem;
  margin: 0 2rem 0 0;
}
a.menu-cat__btn-container {
  text-decoration: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.menu-cat__btn-container {
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: var(--text-md, 1.4rem);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #000;
  background: #d9d9d9;
  border: 1px solid rgba(255, 255, 255, 0.267);
  border-radius: 5px;
  padding: 0 1.6rem;
  height: 50px;
  min-height: 50px;
  -webkit-box-shadow: 0px 1px 3px 0px rgb(0, 0, 0);
  -moz-box-shadow: 0px 1px 3px 0px rgb(0, 0, 0);
  box-shadow: 0px 1px 3px 0px rgb(0, 0, 0);
  transition:
    color 0.25s,
    background 0.25s,
    border-color 0.25s,
    box-shadow 0.25s;
  white-space: nowrap;
  overflow: hidden;
}

.menu-cat__title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  display: inline-block;
}

.menu-cat__btn-container .menu-cat__title {
  color: inherit;
  text-decoration: none;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  line-height: inherit;
}

@media (max-width: 1260px) {
  .menu-cat__btn-container {
    font-size: clamp(1rem, 1.2vw + 0.5rem, 1.3rem);
  }
}

@media (max-width: 1259px) {
  .menu-cat__btn-container {
    font-size: clamp(0.95rem, 1.15vw + 0.45rem, 1.25rem);
  }
}

.menu-cat:hover .menu-cat__btn-container {
  background: var(--color-bg);
  border-color: var(--color-text-inverse);
  color: var(--color-text);
  -webkit-box-shadow: 0px 1px 3px 0px rgb(0, 0, 0);
  -moz-box-shadow: 0px 1px 3px 0px rgb(0, 0, 0);
  box-shadow: 0px 1px 3px 0px rgb(0, 0, 0);
}

.menu-cat__btn-container svg {
  width: 1.1rem;
  height: 1.1rem;
  display: block;
  margin: 0 0.8rem 0 0;
  flex-shrink: 0;
  color: inherit;
  fill: currentColor;
}

.menu-cat__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  margin: 0.5rem 0 0 0;
  background: var(--color-bg);
  box-shadow: 0px 0px 20px rgba(170, 189, 206, 0.25);
  border-radius: 5px;
  width: 27.8rem;
  padding: 1rem 0;
  transition:
    opacity 0.25s,
    visibility 0.25s,
    transform 0.25s;
  opacity: 0;
  visibility: hidden;
  width: auto;
  display: -ms-flexbox;
  display: flex;
  z-index: 1001;
  -webkit-box-shadow: 0px 5px 10px 5px rgba(34, 60, 80, 0.21);
  -moz-box-shadow: 0px 5px 10px 5px rgba(34, 60, 80, 0.21);
  box-shadow: 0px 5px 10px 5px rgba(34, 60, 80, 0.21);
}
.menu-cat__dropdown::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 0.5rem;
}

.menu-cat:hover .menu-cat__dropdown {
  opacity: 1;
  visibility: visible;
}

.menu-cat__dropdown-container {
  display: flex;
}

.menu-cat__list {
  padding: 0;
  list-style: none;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 400;
  flex: 0 0 auto;
  width: 27.8rem;
}
.menu-cat__item {
  position: relative;
  margin: 0 0 0.5rem;
}

.menu-cat__icon {
  width: 2rem;
  height: 2rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 1rem 0 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.menu-cat__text-container {
  display: block;
  -ms-flex: 1;
  flex: 1;
}

.menu-cat__link {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.5rem 3rem 0.5rem 2rem;
  text-decoration: none;
  color: var(--color-text);
  transition: color 0.25s;
}

.menu-cat__item:hover > .menu-cat__link,
.menu-cat__item.active > .menu-cat__link,
.menu-cat__link:hover {
  color: var(--color-accent);
}

.menu-cat__arrow {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  right: 2rem;
  height: 2rem;
  margin: -1rem 0 0 0;
}
.menu-cat__arrow svg {
  display: block;
  width: 0.6rem;
  height: 1.1rem;
  position: relative;
  fill: currentColor;
  fill-rule: evenodd;
}
