.header {
  position: relative;
  box-shadow: 0 10px 40px 0 rgba(109, 141, 173, 0.25);
  z-index: 10;
}

.top-header {
  position: relative;
  max-width: 1170px;
  width: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  border-bottom: 1px solid #f5f6fa;
}

.search {
  position: absolute;
  right: 0;
  width: 22px;
  height: 22px;
  cursor: pointer;
}
.search img {
  width: 100%;
}

.nav {
  display: flex;
  justify-content: center;
  align-items: center;
}

.drop-links {
  position: relative;
}

.prefix {
  position: absolute;
  width: 30px;
  height: 14px;
  font-size: 10px;
  top: 10px;
  right: 10px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.prefix.red {
  color: #d63031;
  background: #fec3c4;
}

.prefix.gray {
  color: #636e72;
  background: #dfe6e9;
}

.nav-link {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #151515;
  text-decoration: none;
  height: 70px;
  transition: 0.3s ease-in-out;
  border-bottom: 2px solid #fff;
  padding: 0 25px;
}
.nav-link:hover {
  border-bottom: 2px solid #d63031;
  color: #d63031;
}

.drop-links {
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 2px solid #fff;
  transition: 0.3s ease-in-out;
  padding: 0 25px;
}
.drop-links:hover {
  border-bottom: 2px solid #d63031;
}
.drop-links:hover .drop-title {
  color: #d63031;
}
.drop-links:hover .arrow:after {
  border-top: 3px solid #d63031;
}
.drop-links:hover .drop-list {
  opacity: 1;
  transform: translateY(0);
  user-select: auto;
  pointer-events: auto;
}

.arrow {
  position: absolute;
  bottom: 20px;
}
.arrow:after {
  content: "";
  position: absolute;
  border: 3px solid transparent;
  border-top: 3px solid #151515;
  transition: 0.3s ease-in-out;
}

.drop-title {
  display: flex;
  align-items: center;
  height: 70px;
  font-size: 16px;
  color: #151515;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}

.drop-list {
  position: absolute;
  top: 72px;
  left: 0;
  background: #fff;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  padding: 15px 0;
  width: 230px;
  z-index: 10;
  opacity: 0;
  transform: translateY(10px);
  user-select: none;
  pointer-events: none;
  transition: 0.3s ease-in-out;
}

.drop-link {
  display: block;
  font-size: 16px;
  color: #34495e;
  text-decoration: none;
  padding: 6px 30px;
  transition: 0.3s ease-in-out;
}
.drop-link:hover {
  color: #b2bec3;
}

.burger-btn {
  display: none;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(45, 52, 54, 0.95);
  z-index: 1000;
  height: 100%;
  width: 100%;
}

.mobile-menu {
  max-width: 320px;
  width: 100%;
  height: 100%;
  background: #fff;
  margin-left: auto;
  box-sizing: border-box;
  padding: 45px 30px 0 30px;
}
.mobile-menu .close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 20px;
  height: 20px;
}
.mobile-menu .close img {
  width: 100%;
}
.mobile-menu .logo {
  text-align: center;
  margin-bottom: 45px;
}

.menu-info {
  font-size: 12px;
  text-align: center;
  color: #7f8c8d;
  border-top: 1px solid rgba(127, 140, 141, 0.3);
  padding-top: 20px;
  margin-top: 60px;
}

.mobile-drop-list {
  margin-top: 10px;
}

.mobile-drop-wrapper {
  position: relative;
  padding: 10px 0;
}
.mobile-drop-wrapper .drop-mobile-title {
  font-size: 16px;
  font-weight: 700;
  color: #151515;
  text-decoration: none;
}
.mobile-drop-wrapper .arrow {
  position: absolute;
  right: 0;
  top: 15px;
  transition: 0.3s ease-in-out;
}
.mobile-drop-wrapper .arrow:after {
  content: "";
  border: 5px solid transparent;
  border-top: 5px solid #151515;
  transition: 0.3s ease-in-out;
  transform-origin: top;
}
.mobile-drop-wrapper .arrow.open {
  top: 20px;
}
.mobile-drop-wrapper .arrow.open:after {
  transform: rotate(180deg);
}

.mobile-nav-link {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #151515;
  text-decoration: none;
  padding: 10px 0;
}

.mobile-drop-link {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #151515;
  text-decoration: none;
  padding: 5px 0 5px 20px;
}

footer {
  background: #111;
  padding: 30px 0;
}
footer p, footer a {
  color: #777777;
  font-size: 12px;
  margin: 5px 0;
}
footer a {
  text-decoration: underline;
}

.footer-wrapper {
  display: flex;
  justify-content: space-between;
}
.footer-wrapper .left-side {
  max-width: 585px;
}
.footer-wrapper .right-side {
  display: flex;
  gap: 30px;
}

@media screen and (max-width: 1200px) {
  .top-header {
    max-width: 90%;
  }
}
@media screen and (max-width: 768px) {
  .desktop {
    display: none;
  }
  .top-header {
    max-width: 95%;
    height: 60px;
    border-bottom: none;
  }
  .burger-btn {
    position: absolute;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 20px;
    cursor: pointer;
  }
  .burger-btn span {
    width: 100%;
    background: #7f8c8d;
    border-radius: 3px;
    height: 4px;
  }
  .burger-btn span:nth-child(2) {
    width: 10px;
  }
  .footer-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .footer-wrapper .right-side {
    justify-content: center;
  }
}/*# sourceMappingURL=header.css.map */