* {
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    margin: 0%;
}

.nav-primary-container {
    position: fixed;
    top: -122px; 
    width: 100%;
    transition: top 0.3s ease-in-out; 
    z-index: 1000;
    background-color: #cbdcd3;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.top-nav-flex-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: max-content;
    padding: 15px 0px 15px 0px;
    z-index: 0;
    position: relative;
    width: 100%;
}
.top-nav-login-wrapper {
    display: flex;
    justify-content: space-between;
}
.search-box-container {
    width: 245px;
    align-items: center;
}
.search-box-container form {
    display: flex; 
    justify-content: center; 
    align-items: center; 
}
.search-box-container form img {
    padding: 0px 8px 0px 8px;
}
.search-box-container form input {
    padding: 0px 8px 0px 8px;
    width: 200px;
    border: rgba(255, 255, 255, 5.0);
    border-radius: 5px;
    font-size: 16px;
    background-color: transparent;
    color: white;    
    outline: none;
}
.search-box-container form input[type="text"]:focus {
    background-color: transparent;
    border: transparent; 
    outline: none; 
}
.search-box-container form input[type="text"]::placeholder {
    color: white;
    opacity: 1;
}
.logo-container {
    width: 245px;
}
.login-section-wrapper {
    width: 300px;
    display: flex;
    justify-content: center;
    justify-content: space-between;
    align-items: center;
}
.login-phone-box {
    width: max-content;
    height: 40px;
    border-radius: 50px;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 10px 5px 10px;
}
.login-phone-box a {
    text-decoration: none;
    color: black;
    font-weight: bold;
}
.navigation-bar {
    background-color: transparent;
    display: flex;
    justify-content: center;
    z-index: 10;
    position: relative;
    width: 42%;
}
  
.navigation-bar a {
    float: left;
    font-size: 0.9rem;
    color: #2b5648;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-weight: 600;
}

.nav-dropdown-wrapper {
    float: left;
    overflow: hidden;
}

.nav-dropdown-button {
    font-size: 0.9rem;
    border: none;
    outline: none;
    color: #2b5648;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
    font-weight: 600;
    border-radius: 10px 10px 0px 0px;
}
.nav-dropdown-button:hover .dropdown-menu-content{
        display: block;
}

.navigation-bar a:hover, .nav-dropdown-wrapper:hover .nav-dropdown-button {
    background-color: #00ac4e;
    color: white;
}
.dropdown-rounded-top {
    border-radius: 10px 10px 0px 0px;
}
.dropdown-fully-rounded {
    border-radius: 10px;
}
.nav-dropdown-wrapper:hover .dropdown-menu-content{
    display: block;
}

.dropdown-menu-content {
    display: none;
    position: absolute;
    background-color: #00ac4e;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 0;
    text-transform: uppercase;
}

.dropdown-menu-content a {
    float: none;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    color: white;
    font-size: 0.9rem;
}
.color-content{
    color: white;
}

.dropdown-menu-content a:hover {
    background-color: rgba(0, 0, 0, 0.244);
}

@media (max-width: 992px){
    .nav-primary-container {
        display: none;
    }
    .color-content{
        color: white;
    }
    .navigation-bar a{
        color: white;
    }
} 

@media (max-width: 768px){
    .nav-primary-container {
        display: none;
    }  
    .color-content {
        color: white !important;
    }
    .navigation-bar a{
        color: white;
    }
}

@media (max-width: 480px){
    .navigation-bar a{
        color: white;
    }
    .color-content{
        color: white;
    }
}

