.d-desk {
  display: block;
}

.d-mob {
  display: none;
}

a {
  text-decoration: none;
}

header {
  background: #ffffff;
  z-index: 1000;
  position: fixed;
  width: 100%;
  top: 0;
  align-items: center;
  padding: 10px 0px;
}
header ul {
  text-align: right;
  list-style: none;
  margin-bottom: 0;
  padding: 3px 0;
}
header ul li {
  display: inline-block;
  padding: 0;
}
header ul li a {
  text-decoration: none;
  color: black;
  font-size: 16px;
  padding: 20px 10px;
  display: inline-block;
}
header ul li a .active {
  color: black;
}
header ul li a.blue-t {
  font-weight: 600;
  color: #000;
}
header ul li.drop-menu {
  position: relative;
}
header ul li.drop-menu a {
  padding-right: 20px;
}
header ul li.drop-menu ul {
  display: none;
  position: absolute;
  background-color: #fff;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  text-align: left;
  padding: 10px 2px;
  min-width: 245px;
}
header ul li.drop-menu ul li {
  display: block;
}
header ul li.drop-menu ul li a {
  padding: 5px 10px;
}
header ul li.drop-menu:hover ul {
  display: block;
}
header ul li.drop-menu:hover::after {
  rotate: 135deg;
  top: 30px;
}
header ul li.drop-menu::after {
  content: "";
  position: absolute;
  top: 26px;
  right: 6px;
  width: 8px;
  height: 8px;
  border-bottom: 1px solid #e31a66;
  border-left: 1px solid #e31a66;
  background-color: transparent;
  rotate: -45deg;
  transition: all 0.3s ease;
}
header ul li.drop-menu.c-black::after {
  border-color: #000;
}
header ul li.drop-menu.c-black:hover::after {
  border-color: #0a58ca;
}
header .logo {
  margin-bottom: -2px;
}
header .logo a {
  display: block;
}
header .logo img {
  height: 70px;
}

footer {
  padding: 32px 0;
  background: #f8f8f8;
}
footer ul {
  text-align: center;
  margin: 0;
  list-style: none;
  padding-left: 0;
}
footer ul li {
  display: inline-block;
}
footer ul li a {
  padding: 10px 16px;
  font-weight: 500;
}

.toggle-menu-cont {
  position: absolute;
  right: 20px;
  top: 13px;
}
.toggle-menu-cont .toggle-menu {
  width: 42px;
  height: 42px;
  display: inline-block;
  position: relative;
  text-align: center;
}
.toggle-menu-cont .toggle-menu i {
  position: absolute;
  display: block;
  height: 2px;
  background: black;
  opacity: 0.8;
  width: 20px;
  left: 15px;
  transition: all 0.3s;
}
.toggle-menu-cont .toggle-menu i:nth-child(1) {
  top: 28px;
}
.toggle-menu-cont .toggle-menu i:nth-child(2) {
  top: 22px;
}
.toggle-menu-cont .toggle-menu i:nth-child(3) {
  top: 16px;
}
.toggle-menu-cont .toggle-menu.open-menu i:nth-child(1) {
  top: 20px;
  transform: rotateZ(45deg);
}
.toggle-menu-cont .toggle-menu.open-menu i:nth-child(2) {
  background: transparent;
}
.toggle-menu-cont .toggle-menu.open-menu i:nth-child(3) {
  top: 20px;
  transform: rotateZ(-45deg);
}

@media screen and (max-width: 767px) {
  header .menu {
    display: none;
  }
  header ul {
    text-align: left;
    padding-top: 16px;
  }
  header ul li {
    display: inherit;
  }
  header ul li:not(:last-child) {
    border-bottom: 1px solid rgba(142, 142, 142, 0.168627451);
    font-size: 14px;
  }
  header ul li a {
    display: block;
    padding: 6px 0;
  }
  header ul li.drop-menu ul {
    min-width: 100%;
    position: relative;
  }
  header ul li.drop-menu::after {
    top: 12px;
  }
  header ul li.drop-menu:hover::after {
    top: 16px;
  }
  header .logo {
    margin-bottom: -2px;
  }
  header .logo img {
    height: 50px;
  }
  footer ul li {
    display: block;
    padding: 5px 0;
  }
  .d-desk {
    display: none;
  }
  .d-mob {
    display: block;
  }
}/*# sourceMappingURL=header.css.map */