.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    height: 80px;
    background-color: var(--white);
    width: 100%;
    z-index: 3;

    @media (min-width: 768px) {
        height: 100px;
        padding: 0 60px
    }
}

.navbar__mobile-nav-button {
    border: none;
    padding: 0;
    margin: 0;
    background: none;
    cursor: pointer;
    margin: 0 30px 0 0;

    @media (min-width: 768px) {
        display: none;
    }
}

.navbar__contact {
    margin: 0 0 0 16px;
    padding: 16px 33px;
    background-color: var(--green);
    font-weight: 700;
    font-size: 14px;
    color: var(--white);
    text-decoration: none;
}

.navbar__contact--mobile {
    @media (min-width: 768px) {
        display: none;
    }
}

.navbar__contact--desktop {
    display: none;
    @media (min-width: 768px) {
        display: block;
    }
}

.navbar_desktop-container {
    display: none;
    @media (min-width: 768px) {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }
}

.navbar__title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 24px;
    color: var(--black);
}

.navbar__logo {
    width: 67px;
    height: 67px;
}