﻿.customnavbar {
    /*display: flex;*/
    width: 100%;
    padding: 20px 30px;
    /*justify-content: space-between;*/
    align-items: center;
    background: rgba(255, 255, 255, 0.31);
    backdrop-filter: blur(10px);
    position: absolute;
}

.customcon {
    display: flex;
    align-items: flex-start;
    gap: 50px;
    margin-left: 50px;
}

.menutext {
    color: black;
    font-family: Switzer;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
}

.phone {
    color: black;
    font-family: Switzer;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    float: right;
    margin-left: 50px;
    z-index: 2;
}

.header-button {
    display: flex;
    padding: 10px 14px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 4px;
    background-color: black;
    color: white;
    border: none;
    font-family: Switzer;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

@media (max-width: 700px) {
    .customnavbar {
        display: flex;
        width: 100%;
        height: 109px;
        padding: 15px;
        justify-content: space-between;
        align-items: flex-end;
        flex-shrink: 0;
    }

    .phone {
        display: none;
    }
}
