.brand-bar {
  width: 100%;
  height: 60px;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  background: #1D1D1D;
  z-index: 1000;
}
.brand-bar .brand-wrap {
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
  padding: 0px 25px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.brand-bar .brand-wrap .back {
  width: 45px;
  height: 45px;
  background: red;
  border-radius: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.brand-bar .brand-wrap .back span {
  color: #FFF;
  font-size: 2rem;
}
.brand-bar .brand-wrap .img-wrap {
  height: 100%;
  width: -moz-fit-content;
  width: fit-content;
}
.brand-bar .brand-wrap .img-wrap img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.brand-bar .pages-wrap {
  padding-right: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.brand-bar .pages-wrap a {
  padding: 2px 10px;
  text-decoration: none;
  background: transparent;
  color: #FFF;
  border: 1px solid #FFF;
  border-radius: 2px;
  transition: all 0.2s ease;
}
.brand-bar .pages-wrap a:hover, .brand-bar .pages-wrap a.active {
  background: #f2ecec;
  color: #000;
}/*# sourceMappingURL=interview.css.map */