/* * {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
.header-container {
  background-color: #7d4932;
  width: 100%;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
} */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* font-family: 'UTM Avo' ; */
    font-family: "Montserrat", serif;
}

.navbar {
    background-color: #7d4932;
    padding: 2px 20px;
    display: flex;
    justify-content: center;
    align-items: center;

}

.navbar.fixed-mb {
    visibility: visible;
    position: fixed;
    top: 0;
    z-index: 999;
    top: 0;
    transform: translateY(145px);
    transition: 0.8s;
}

.menu {
    list-style-type: none;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 20px;
}

.menu-item {
    position: relative;
    margin: auto;
}

.menu-item:first-child {
    margin-left: 0;
}

.menu-item:last-child {
    margin-right: 0;
}

.menu-item a {
    text-decoration: none;
    color: white;
    padding: 10px 4px;
    /* display: block; */
    transition: background-color 0.3s ease;
    font-size: 16px;
    font-weight: bold;
}

.main-item {
    border-bottom: 2px solid transparent;
    display: flex;
    align-items: center;
    gap: 2px;
}

.menu-item .main-item:hover {
    border-bottom: 2px solid white;
}

.submenu {
    position: absolute;
    top: 120%;
    left: 0;
    background-color: #6778a3;
    display: none;
    flex-direction: column;
    gap: 8px;
    min-width: 160px;
    border: 1px solid #555;
    z-index: 1000;
    padding: 16px 0px;
    border-radius: 10px;
    border: none;
}

.submenu::after {
    content: '';
    width: 150px;
    height: 20px;
    position: absolute;
    top: -10px;
    left: 0;

}

.submenu a {
    color: white;
    padding: 6px 16px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.submenu a:hover {
    background-color: #14152c;
    border-radius: 8px;
}

.menu-item:hover .submenu {
    display: flex;
}

.menu-mobile {
    display: none;
}

@media screen and (max-width: 767px) {

    .menu-item:first-child {
        margin-left: auto;
    }

    .menu-item:last-child {
        margin-right: auto;
    }

    .navbar {
        visibility: hidden;
        z-index: -5;
        position: absolute;
    }
}
