﻿.header-kumara {
    display: flex;
    width: 100%;
    height: 84px;
    padding: 0 225px;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--Medium-Grey, #CECECE);
    background: var(--Off-White, #FDFBF8);
}



.logo-kumara {
    width: 75px;
    height: 64px;
}

.nav-options {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    color: black;
}

.hamburger{
    display: none;
}

.nav-sm {
    display: none;
}

@media (min-width: 320px) and (max-width: 720px) {
    .header-kumara {
        display: flex;
        width: 100%;
        height: 56px;
        padding: 0 16px;
        justify-content: space-between;
        align-items: center;
      
        background: var(--Off-White, #FDFBF8);
    }

    .hamburger {
        display: flex;
    }

    .nav-sm {
        display: flex;
    }

    .nav-options{
        display: none;
    }
}
