.general__header{
  position: sticky;
  top: 0;
  width: 100%;
  background: #F1F2F4;
  box-shadow: 0 0 30px 0 #3c41442b;
  
}

.header__container{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 16px;
}

.header__logo-svg{
  display: block;
}

.header__nav-links{
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 60px;
}


.header__nav-links a:hover{
  color: #FF99C4;
  -webkit-text-fill-color: #FF99C4;
  text-decoration: underline;
}


/* BURGER ICON */

.burger
{
  display: none;
  cursor: pointer;
  z-index: 9999;
}

.burger div
{
  width: 40px;
  height: 2px;
  background-color: #3C4144;
  margin: 8px;
  transition: all 0.3s ease;
}

.toggle .line1{
  transform: rotate(-45deg) translate(-4px,10px);
}

.toggle .line2{
  opacity: 0;
}

.toggle .line3{
  transform: rotate(45deg) translate(-4px,-10px);
}

.header__nav-links-mobile{
  display: none;
}

.resize-animation-stopper * {
  transition: none !important;
  animation: none !important;
}






@media (max-width: 670px){

  /* WEB MENU */

  .header__nav-links{
    display: none;
  }

  /* MOBILE MENU */

  .burger
  {
    display: block;
    cursor: pointer;
  }

  body
  {
    overflow-x: hidden;
  }

  .header__nav-links-mobile
  {
    display: flex;
    z-index: 9000;

    position: fixed;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 7rem;

    font-family: 'Lora', serif;
    font-size: 3.3rem;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
    background-color: #F1F2F4;

    transform: translatex(100%);
    transition: transform 0.3s ease-out;
  }

  .header__nav-active
  {
    transform: translatex(0%);
  }
 
}