.header {
  z-index: 9999;
  font-family: "EBGaramond";
}

.header-menu-container {
  display: flex;
  justify-items: center;
  align-items: center;
}

.header-desktop-menu-nav ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.header-desktop-menu-nav ul li {
  width: max-content;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-bottom: 5px;
}
.header-desktop-menu-nav ul li::after {
  content: "";
  position: absolute;
  top: 100%;
  background: var(--dark-pink);
  width: 20px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center center;
  transition: 0.2s ease;
}
.header-desktop-menu-nav ul li a {
  font-weight: 500;
  text-decoration: none;
  color: var(--black);
  font-size: 1rem;
  transition: 0.2s ease;
}
.header-desktop-menu-nav ul li:hover::after {
  transform: scaleX(1);
}
.header-desktop-menu-nav ul li:hover a {
  color: var(--dark-pink);
}
.header {
  position: sticky;
  top: -40px;
  left: 0;
  width: 100%;
  margin: 0 auto;
  background-color: var(--white);
}

.header-top {
  position: relative;
  display: flex;
  border-bottom: 1px solid var(--light-pink);
  padding: 0 10px;
}

.header-top-container {
  height: 40px;
}

.header-top-container,
.header-bottom-container {
  max-width: var(--box-width);
  width: 100%;
  margin: 0 auto;
}

.header-bottom {
  position: sticky;
  display: flex;
  border-bottom: 1px solid var(--light-pink);
  padding: 0 10px;
}

.header-bottom-container {
  padding: 10px 0;
  height: 60px;
}

.header-top-container {
  display: flex;
  justify-content: space-between;
}

.header-top-social-container {
  display: flex;
  gap: 5px;
  justify-items: center;
  align-items: center;
}

.header-top-social-item {
  transition: 0.2s ease;
  aspect-ratio: 1/1;
  width: 26px;
  border: 1px solid var(--dark-pink);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  align-content: center;
  font-weight: 500;
}
.header-top-social-item svg {
  max-width: 1.1rem;
  max-height: 1.1rem;
  width: 100%;
  height: 100%;
  fill: var(--dark-pink);
  transition: 0.2s ease;
}
.header-top-social-item:hover {
  background: var(--dark-pink);
}
.header-top-social-item:hover svg {
  fill: var(--white);
}

.header-top-contact-container {
  display: flex;
  margin-left: 0, auto;
  justify-items: center;
  align-items: center;
  gap: 25px;
}

.header-top-contact-item {
  text-decoration: none;
  color: var(--black);
  gap: 5px;
  font-size: 1rem;
  display: flex;
  justify-items: center;
  align-items: center;
  transition: 0.2s ease;
  font-weight: 500;
}
.header-top-contact-item svg {
  max-width: 1.1rem;
  max-height: 1.1rem;
  width: 100%;
  height: 100%;
  fill: var(--dark-pink);
}
.header-top-contact-item:hover {
  color: var(--dark-pink);
}

.header-bottom-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.header-logo-container {
  height: 100%;
  width: max-content;
  display: block;
}

.header-logo-link {
  height: 100%;
  text-decoration: none;
  color: var(--black);
  width: max-content;
  display: block;
  cursor: pointer;
}

.header-logo {
  display: block;
  height: 100%;
  width: max-content;
}

.header-menu-mobile {
  display: none;
}

.header-menu-mobile-button {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: 1px solid var(--dark-pink);
  padding: 5px;
  cursor: pointer;
  transition: 0.2s ease;
}
.header-menu-mobile-button .header-menu-mobile-button-bar {
  transform-origin: center;
  width: 20px;
  height: 2px;
  background: var(--black);
  transition: 0.2s ease;
}
.header-menu-mobile-button:hover {
  background: var(--dark-pink);
}
.header-menu-mobile-button:hover .header-menu-mobile-button-bar {
  background: var(--white);
}
.header-menu-mobile-button.is-opened .header-menu-mobile-button-bar-1 {
  transform: translateY(8px);
}
.header-menu-mobile-button.is-opened .header-menu-mobile-button-bar-2 {
  opacity: 0;
}
.header-menu-mobile-button.is-opened .header-menu-mobile-button-bar-3 {
  transform: translateY(-8px);
}
.header-menu-mobile-button.is-opened.is-opened-rotate .header-menu-mobile-button-bar-1 {
  transform: translateY(8px) rotate(45deg);
}
.header-menu-mobile-button.is-opened.is-opened-rotate .header-menu-mobile-button-bar-3 {
  transform: translateY(-8px) rotate(-45deg);
}

.header-mobile-menu-drawer {
  position: fixed;
  max-width: 350px;
  width: 100%;
  height: calc(100vh - 60px);
  top: 60px;
  right: 0;
  z-index: 9999;
  background: var(--light-pink);
  transition: 0.3s ease;
  transform: translateX(100%);
}
.header-mobile-menu-drawer.is-opened {
  transform: translateX(0);
}

.header-mobile-menu-nav {
  padding: 20px 20px;
  text-align: right;
}
.header-mobile-menu-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.header-mobile-menu-nav ul li {
  font-family: "EBGaramond";
}
.header-mobile-menu-nav ul li a {
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--black);
}/*# sourceMappingURL=header.css.map */