/*<<< header1 component */
._header1{
  background-color: #f7f7f7;
}

._header1-content{
  display: flex;
  justify-content: end;
  height: 8.4rem;
  align-items: center; 
  background-color: f7f7f7;
  gap: 2.4rem;
}

._header1-logo{
  margin-right: auto;
}

._header1-logo img{
  max-height: 7.2rem;
}

._header1-nav ul{
  list-style-type: none;
  display: flex;
}

._header1-nav ul li a{
  padding: 0 1.6rem;
  font-weight: 600;
  display: flex;
  height: 48px; 
  align-items: center;
  color: var(--color-primary);
  transition: .2s all ease-in-out;
}

._header1-nav ul li a:hover{
  color: var(--color-light);
}

._header1-social{
  display: flex;
  gap: .8rem;
}

._header1-social a{
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-secondary-dark);
  border-radius: 50%;
  color: #fff;
  transition: .25s all ease-in-out;
}

._header1-social a i{
  font-size: 2.4rem;
}

._header1-social a:hover{
  background-color: var(--color-secondary);
}

._header1-toggle{
  display: none;
  flex-direction: column;
  background-color: transparent;
  outline: none;
  border: none;
  cursor: pointer;
}

._header1-toggle span{
  width: 3rem;
  height: .3rem;
  background-color: var(--color-primary);
  margin-top: .3rem;
  margin-bottom: .3rem;
  transition: .3s all ease-in-out;
}

@media(max-width:768px){

  ._header1{
    position: fixed;
    width: 100%;
    z-index: 9999;
  }

  ._header1-toggle{
    display: flex;
  }
  ._header1-nav{
    display: flex;
    position: fixed;
    background-color: var(--color-darker);
    top: 0;
    right: 0;
    height: 100dvh; 
    padding: 0 2.4rem;
    align-items: center;
    border-radius: 4.8rem 0 0 4.8rem;
    transform: translateX(100%);
    transition: .3s all ease-in-out;
    z-index: 99;
  }
  ._header1-nav.active{
    transform: translateX(0);
    height: 100%; 
  }
  ._header1-nav ul{
    flex-direction: column;
  }
  ._header1-nav ul li a{
    font-size: 2rem;
    color: #fff;
  }
  ._header1-toggle{
    z-index: 9999;
  }

  ._header1-toggle.active span:nth-child(1){
    rotate: -45deg;
    transform: translate(-5px, 5px);
  }
  ._header1-toggle.active span:nth-child(2){
    opacity: 0;
  }
  ._header1-toggle.active span:nth-child(3){
    rotate: 45deg;
    transform: translate(-7px, -7px);
  }

}
/* header1 >>>*/