#header-main{
    display: flex;
    justify-content: center;
    font-weight: 500;
    width: 100%;
    position: absolute;
}
.menu-list {
    align-items: center;
    display: flex;
    list-style: none;
}
.menu-nav{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
}
.menu {
    display: flex;
    height: 100%;
    min-width: min-content;
    width: 75%;
    background-color: #ffffff;
}
.menu-item {
    margin: 0 20px;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding: 25px 0;
}

.link {
    color: #111111;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 13px;
    font-weight: 100;
}

.link:hover {
    color: #666;
}

.hamburger-icon {
    width: 35px;
    height: 6px;
    background-color: #dcdcdc;
    margin: 7px 0;
}

.hamburger-menu{
    display: none;
    cursor: pointer;
}

nav .btn{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    cursor: pointer;
    font-weight: 300;
    padding: 0 20px;
    text-align: center;
    text-transform: uppercase;
    color: #000;
    font-size: 14px;
    text-decoration: none;
    transition: background .35s ease;
    background-color: #fdd340;
}

nav .btn:hover {
  background-color: #fcf5dc;
}


#call{
    display: flex;
}
.call-icon{
    filter: invert(73%) sepia(56%) saturate(679%) hue-rotate(37deg) brightness(97%) contrast(83%);
}
.number{
    margin-left: 10px;
}

@media only screen and (max-width: 1400px) {
    .menu {
      width: 100%;
    } 

    .menu-item {
        margin: 0 10px;
        min-width: 110px;
    }
}

@media only screen and (max-width: 1200px) {
    .hamburger-menu{
        display: block;
        margin-right: 10px;
    }

    .hamburger-icon {
        width: 40px;
        height: 5px;
        background-color: #dcdcdc;
        margin: 10px 0;
    }

    .menu-nav {
      display: none;
    }

    .menu {
      justify-content: flex-end;
      background-color: transparent;
    }
}
