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

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

    @media (min-width: 1124px) {
        padding: 0 60px
    }
}

.navbar__contact {
    margin: 0 0 0 8px;
    padding: 10px 16px;
    background-color: var(--green);
    font-weight: 700;
    font-size: 12px;
    color: var(--white);
    text-decoration: none;
    transition: background-color 0.3s ease-in-out;

    @media (min-width: 1124px) {
        margin: 0 0 0 16px;
        padding: 16px 32px;
        font-size: 14px;
    }
}

.navbar__contact:hover {
    background-color: rgba(30, 44, 48, 1);
}

.navbar__container-left {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

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

    @media (min-width: 1124px) {
        font-size: 24px;
        width: auto;
    }
}

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

.navbar__container-right {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;

    @media (min-width: 1124px) {
        gap: 40px;
    }
}

.navbar__nav {
    margin: 0;
    padding: 0;
}

.navbar__ul {
    display: flex;
    gap: 16px;
    margin: 0;
    padding: 0;

    @media (min-width: 1124px) {
        gap: 20px;
    }
}

.navbar__link {
    color: rgba(85, 85, 85, 1);
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.3s ease-in-out;

    @media (min-width: 1124px) {
        font-size: 18px;
    }
}

.navbar__link:hover {
    color: rgba(30, 44, 48, 1);
}