/* Выпадающее меню при наведении в пк версии */
.topmenu:after {
  content: "";
  display: table;
  clear: both;
}

.topmenu>li {
  position: relative;
}

.topmenu>li>a {}

.topmenu li a:hover {
  color: #D5B45B;
}

.submenu li:hover {
  color: blue;
}

.submenu-link:after {
  content: "";
  font-family: inherit;
  color: inherit;
  display: inline-block;
  width: 13px;
  height: 13px;
  background-image: url("data:image/svg+xml,%3Csvg width='13' height='13' viewBox='0 0 13 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.5025 4.56117L10.1489 4.20762C10.5013 3.85527 11.0779 3.85527 11.4302 4.20762M10.5025 4.56117L11.4302 4.20762M10.5025 4.56117L10.1489 4.20762L6.61728 7.73928C6.55254 7.80402 6.44662 7.80402 6.38189 7.73929L2.85022 4.20762C2.49787 3.85527 1.92129 3.85527 1.56895 4.20762C1.2166 4.55996 1.2166 5.13655 1.56895 5.48889L5.10061 9.02056C5.48466 9.4046 5.99239 9.60034 6.49958 9.60034M10.5025 4.56117L6.49958 9.60034M11.4302 4.20762C11.7826 4.55996 11.7826 5.13655 11.4302 5.48889L7.89855 9.02056C7.51451 9.4046 7.00677 9.60034 6.49958 9.60034M11.4302 4.20762L6.49958 9.60034' fill='%2338963A' stroke='%2338963A'/%3E%3C/svg%3E");
  margin-left: 10px;
  position: relative;
  top: 2px;
}

.submenu {
  background: white;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 5;
  width: 235px;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: 0 0;
  transition: .5s ease-in-out;
  border-radius: 0 0 10px 10px;
  overflow: hidden;
}

.submenu a {
  display: block;
  text-align: left;
  padding: 12px 15px;
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;

  color: #000000;
}

.submenu a:hover {
  background-color: #E9E9E9;
  color: #000 !important;
}
.submenu a.active{
	background-color: #E9E9E9;
  color: #000 !important;
}
.submenu li:last-child a {
  border-bottom: none;
}

.topmenu>li:hover .submenu {
  opacity: 1;
  transform: scaleY(1);
}

/* Мобильное меню */
.linkHidden {}