/*-----------------header----------------*/
.header {
  width: 100%;
  position: fixed;
  z-index: 2;
}

.header__container {
  background: rgb(250, 250, 250);
  color: rgb(0, 0, 0);
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0em 3em;
}

.header__img {
  width: 4em;
}

.header__nav {
  position: absolute;
  top: 75px;
  left: -9px;
  width: 100%;
  height: 200px;
  transition: all 0.2s;
  transform: translateX(-100%);
}

.header__a {
  display: block;
  color: #0f0f0f;
  height: 50px;
  padding: 1em 1em;
  font-size: 1rem;
  font-weight: bold;
  border-bottom: 1px solid rgba(110, 0, 0, 0.808);
  text-align: right;
  background: rgb(243, 243, 243);
}

.header__a:hover {
  background: rgb(232, 232, 236);
  font-size: 1.03rem;
}

.header__span {
  cursor: pointer;
}

.header__spanimg {
  width: 2.5em;
}

.divlinea {
  width: 100%;
  height: 4px;
  /* background: #3f4061; */
  /* background: #bb1212; */
  background: #bb1212;
}

#lineahead {
  position: fixed;
  top: 61px;
  z-index: 12;
}

@media (min-width: 750px) {
  .header__span {
    display: none;
  }

  .header__nav {
    position: relative;
    display: flex;
    top: 0px;
    height: auto;
    width: auto;
    background: none;
    transform: none;
  }

  .header__a {
    color: #1f1f1f;
    background: none;
    font-size: 0.90rem;
    border-bottom: none;
    height: auto;
    padding: 25px 17px;
    margin-bottom: 0px;
  }

}