.navbar-container {
    position: fixed;
    z-index: 1000;
    width: 100%;
    transition: 0.5s;
}


.navbar-alternate {
    background:white;
    border-bottom: 1px solid grey;
}

.navbar-alternate  li , .navbar-alternate a {
    color:black !important;
    
}

.image {
    transition: all .4s ease-in; 
}

.navbar-alternate .image {
    height:60px !important;
    width: 91px !important;
    top:-6px;
    background-position-x: 100% !important;
}

.logo-phone {
    transition: all 0.4s ease-in ;
}

.navbar-alternate .logo-phone {
    margin-top:10px;
    height:40px !important;
    width: 61px !important;
    top:-6px;
    background-position-x: 100% !important;
}

.cbc-nav ul {
    list-style: none;
    margin-top:10px;
    margin-bottom:10px;
    padding: 0px;
    display: table;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}

 

.cbc-nav li {
    font-family: 'Raleway', sans-serif;
    display: table-cell;
    font-weight: 600;
    color:white;
    font-size:13px;
    letter-spacing: 1.65px;
    line-height: 16.5px;
    font-style: normal;
    text-transform: uppercase;
    margin:7px;
    padding-bottom:10px;
    position: relative;
    width:100px;
    vertical-align: middle;
}

.cbc-nav a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: -10px;
    left: 0;
    background-color: #f00;
    visibility: hidden;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    /* -webkit-transition: all 0.7s cubic-bezier(1, 0.25, 0, 0.75) 0s;
    transition: all 0.7s cubic-bezier(1, 0.25, 0, 0.75) 0s; */
    transition: all 0.3s ease-in;
}

.cbc-nav a:hover:before {
    visibility: visible;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}
