header {
  width: 100%;
  display: flex;
  justify-content: center;
  height: 60px;
  display: flex;
  align-items: center;
  background-color: #379ce9;
  padding: 0 20px;
}

.header-wrap {
  width: 960px;
  height: 100%;
  display: flex;
  align-items: center;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-right: 20px;
}
.logo-wrap .logo-text {
  color: white;
  font-size: 22px;
}
.logo-wrap .logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.nav-link-wrap {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 20px;
}
.nav-link-wrap .nav-link-item {
  display: inline-block;
  width: 80px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  padding: 4px;
  color: white;
}
.nav-link-wrap .nav-link-item.active {
  background-color: #0062ff;
}
.nav-link-wrap .nav-link-item.active:hover {
  color: white;
}
.nav-link-wrap .nav-link-item:hover {
  color: #0062ff;
}

main {
  min-height: calc(100vh - 60px);
}

.container {
  width: 960px;
  margin: 0 auto;
}

.section-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0;
  padding: 0;
}
.section-header h2 {
  font-size: 24px;
  font-weight: 500;
}
.section-header p {
  font-size: 14px;
  font-weight: 400;
  color: #858585;
  cursor: pointer;
}

footer {
  width: 100%;
  height: 360px;
  background-color: #2c323b;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
footer .footer-content .footer-content-item .footer-content-item-links {
  display: flex;
  align-items: center;
}
footer .footer-content .footer-content-item .footer-content-item-links .footer-content-item-link {
  display: flex;
  align-items: center;
  height: 12px;
  margin-bottom: 12px;
}
footer .footer-content .footer-content-item .footer-content-item-links .footer-content-item-link.has-right-border .right-border {
  display: block;
}
footer .footer-content .footer-content-item .footer-content-item-links .footer-content-item-link .text {
  font-size: 12px;
  color: #b1b3b9;
  margin-bottom: 2px;
  margin: 0 4px;
}
footer .footer-content .footer-content-item .footer-content-item-links .footer-content-item-link .text:hover {
  color: white;
}
footer .footer-content .footer-content-item .footer-content-item-links .footer-content-item-link .right-border {
  width: 1px;
  height: 100%;
  background-color: #b1b3b9;
  display: none;
}

.classifies {
  display: flex;
  gap: 40px;
}
.classifies .tag {
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  padding: 0 8px 0 12px;
  border-radius: 15px;
  width: 64px;
  height: 24px;
}
.classifies .tag:hover {
  color: #0062ff;
  background-color: rgba(0, 169, 255, 0.1);
}
.classifies .tag:hover .icon {
  display: inline;
}
.classifies .tag.active {
  color: #0062ff;
  background-color: rgba(0, 169, 255, 0.1);
}
.classifies .tag.active .icon {
  display: inline;
}
.classifies .tag .name {
  width: 46px;
}
.classifies .tag .icon {
  width: 14px;
  height: 14px;
  background: url("../../assets/play_blue_icon.png") no-repeat;
  background-size: 100%;
  display: none;
  margin-top: 6px;
  margin-left: 2px;
}/*# sourceMappingURL=common.css.map */