
@font-face {
  font-family: 'Ubuntu-Regular';
  src: url('../assets/fonts/Ubuntu-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'PublicSans-Bold';
  src: url('../assets/fonts/PublicSans-Bold.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins-Regular';
  src: url('../assets/fonts/Poppins-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Nunito-Regular';
  src: url('../assets/fonts/Nunito-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

.menu-open {
  bottom: 0;
}

.burger-line {
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.burger-open .burger-line:nth-child(1) {
  transform: translateY(10px) rotate(51deg);
}

.burger-open .burger-line:nth-child(2) {
  opacity: 0;
}

.burger-open .burger-line:nth-child(3) {
  transform: translateY(-15px) rotate(-49deg);
}

