.topinfo-bar {
    background-color: var(--brown);
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.topinfo-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    color: #fff;
}

.topinfo-email, .topinfo-phone {
    cursor: pointer;
    transition: all ease 0.2s;
}

.topinfo-email:hover,
.topinfo-phone:hover {
    color: var(--white-hover);
}

@media (max-width: 768px) {
    .topinfo-bar {
        display: none;
    }
}