

.header{
  width: 100%;
  position: fixed;
  z-index: 1000;
  
}


.logo{
  display: block;
  text-align: center;
 
}
.logo img{
  display: block;
  width: 30px;
 
}
.logo p{
  display: block;
  color: #fff;
 
}

.container-flu {
    
  /* position: fixed; */
  display: flex;
  justify-content: center;
  background-color: #7A855F;
  border-radius: 25px;
  color: #C9A779;
  gap: 10px;
  padding: 0px 10px; 
  /* margin: 15px 50px 0px 50px; */
  z-index: 1000;
  margin-top: 15px;
  
}


.logo, 
.nav__list a {
  display: block;
  text-decoration: none;
  
}

.logo {
  
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.logo img {
  display: block;
  width: 30px;
  height: 30px;
  padding-top: 7px;
  
}
.desc-logo{
  display: none;
  padding-top: 7px;
}
.nav {
  
  margin: auto;
  background-color: #7A855F;
  border-radius: 25px;
  color: #C9A779;
}

.nav__list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  
}

.nav__list a {
  padding: 9px;
  font-size: 16px;
  color: inherit;
  transition: opacity 0.25s ease-in-out;
}

.nav__list a:hover {
  opacity: 0.7;
}

.nav__list a:active {
  opacity: 0.4;
}

.btn-top{
display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
 width: 220px;
 
  border-radius: 50px;
  margin-bottom: 3px;

}
.btn-top li{
  text-align: center;
}
.btn-zac{
  display: flex;
  justify-content: space-around;
 width: 170px;
 height: 35px;
 margin-top: 3px;
 padding: 0 0;
  background-color: #C9A779;
  color: #fff;
  border-radius: 50px;

  
}
.btn-zac li{
  text-align: center;
}
.btn-zac span{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px;
  color: #EEDCC3;
  background-color: #fff;
  border-radius: 50%;
  margin-top: 5px;
  margin-bottom: 3px;
  transform: rotate(-45deg);
 
}
/* ---------------------------------------- btn-two */
.btn-two{
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
 width: 220px;
 border: 1px solid #7A855F;
  border-radius: 50px;
  margin-top: 50px;
} 
.btn-two li{
  list-style: none;
  
 
}
.btn-two a{
  font-size: 18px;
  padding-right: 10px;
 
}
.btn-two span{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  color: #EEDCC3;
  background-color: #7A855F;
  border-radius: 50%;
  margin-top: 3px;
  margin-bottom: 3px;
  transform: rotate(-45deg);
  
  
}





@media only screen and (max-width : 1123px){
  .desc-logo{
  display: none;
}
}
@media (min-width:600px) {
  .nav__toggle {
    display: none;
  }

  .nav__list {
    display: flex;
    flex-wrap: wrap;
    /* gap: 5px; */
  }
  
}


@media (max-width: 992px) {

.container-flu{
  background-color: transparent;
}

.nav__list a {
  padding: 9px;
  font-size: 14px;
  color: inherit;
  transition: opacity 0.25s ease-in-out;
}
  .nav__toggle {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    padding: 0;
    /* background-color: #EEDCC3; */
    border: 0;
    cursor: pointer;
    transition: opacity .25s ease-in-out;
    -webkit-appearance: none;
    appearance: none;
  }

  .nav__toggle:hover {
    opacity: 0.7;
  }

  .nav__toggle:active {
    opacity: 0.4;
  }

  .nav__toggle::after,
  .nav__toggle::before {
    content: "";
    position: absolute;
    left: 50%;
    width: 30px;
    height: 2px;
    background-color: #000000;
    transform: translateX(-50%);
    transform-origin: center;
    transition: top 0.25s ease-in-out, transform 0.25s ease-in-out, box-shadow 0.25s ease-in-out;
  }

  .nav__toggle::before {
    top: 7px;
    box-shadow: 0 12px 0 #000000;
  }

  .nav__toggle::after {
    bottom: 7px;
  }

  .nav__list {
    position: absolute;
    top: calc(100% + 15px);
    left: 8%;
    z-index: 1;
    display: grid;
    box-sizing: border-box;
    width: 320px;
    padding: 15px;
    background-color: #EEDCC3;
    border-radius: 25px;
    /* transform: translate(-50%); */
    gap: 5px;
    visibility: hidden;
    opacity: 0;
  }

  .nav--no-js:focus-within .nav__list,
  .nav--open .nav__list {
    visibility: visible;
    opacity: 1;
    transition: visibility 0.25s ease-in-out, opacity 0.25s ease-in-out;
  }

  .nav--open .nav__toggle::after,
  .nav--open .nav__toggle::before {
    top: 50%;
  }

  .nav--open .nav__toggle::before {
    box-shadow: 0 0 0 transparent;
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .nav--open .nav__toggle::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
}