* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter.ttf") format("woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/InterBold.ttf") format("woff2");
  font-weight: 600;
  font-style: normal;
}
.page_wrapper {
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  z-index: 10;
}
.navbar .left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #4b2324;
  width: 322px;
  height: 66px;
  border-radius: 55px;
  color: white;

  font-weight: 700;
  font-size: 30px;

  position: relative;
  cursor: pointer;
}
.navbar .btn .text {
  text-decoration: none;
}
.navbar .left .avatar {
  cursor: pointer;
  border-radius: 55%;
}
.navbar .btn .dropdown {
  top: 112px;
  left: 31px;
  border-radius: 30px;
  background: #ebc5d0;

  position: absolute;
  top: 66px;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: end;

  gap: 10px;
  color: #4b2324;
  font-size: 22px;

  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  z-index: 2;
}

.navbar .btn.active .dropdown {
  max-height: 500px;
  opacity: 1;
  text-decoration: none;
}

.navbar .btn .dropdown a {
  color: #4b2324;
  text-decoration: none;
  font-size: 35px;
  font-weight: 500;
}
.navbar .btn .dropdown a:hover {
  color: #794040;
}
.navbar .btn.menu .dropdown {
  padding-left: 60px;
  padding-bottom: 15px;
  padding-top: 30px;
}
.navbar .btn.contact .dropdown {
  padding: 30px 10px;
}
