/*-----------------header----------------*/

.header {
 width: 100%; 
  position: fixed;
  z-index: 2;  
}

.header__container {
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0em 3em;
  background: var(--primary-color);
  color: var(--text-color);
  box-shadow: var(--box-shadow);
}

.header__img {
  width: 6em;
}

.header__nav {
  position: absolute;
  top: 73px;
  left: -9px;
  width: 100%;
  width: 98%;
  height: 200px;
  transition: all 0.2s;
  transform: translateX(-100%);
}

.header__a {
  display: block;
  color: var(--text-color);
  height: 50px;
  padding: 1em 1em;
  font-size: 1rem;
  font-weight: bold;
  border-bottom: 1px solid rgb(73, 15, 15);
  text-align: right;
  background: var(--primary-color);

}

.header__a:hover {
  background: var(--six-color);
  background: var(--second-color);

  font-size: 1.03rem;
}

.header__span {
  cursor: pointer;
}

.header__spanimg {
  width: 2.5em;
}

@media (min-width: 800px) {
  .header__span {
    display: none;
  }

  .header__nav {
    position: relative;
    display: flex;
    top: 0px;
    height: auto;
    width: auto;
    background: none;
    transform: none;
  }

  .header__a {
    background: none;
    font-size: 0.90rem;
    border-bottom: none;
    height: auto;
    padding: 25px 17px;
    margin-bottom: 0px;

    /* background-color: aqua; */
  }

  .header__a:hover {
    background: var(--six-color);
    background: var(--second-color);
  
    /* font-size: 1.03rem; */
  }

}