.navbar {
    flex-wrap: wrap;
    padding: 0 !important;
}

.navbar-container {
    width: 100%;
    height: 50px;
    background-color: #086BC8;
}

.navbar-container .wrapper {
    height: 100%;
}

.navbar-list {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    text-align: center;
    font-size: 16px;
}

.navbar-item {
    height: 100%;
    line-height: 36px;
    position: relative;
}

.navbar-item-active {
    background-color: #063C84;
}

.navbar-link {
    color: #FFF !important;
}

.navbar-item>.navbar-link {
    font-size: 16px !important;
}

.navbar-item:hover {
    background-color: #063C84;
}

.navbar-child-list {
    width: 100%;
    display: none;
    position: absolute;
    top: 50px;
    left: 0;
    z-index: 100;
    background: rgba(48, 74, 131, 0.9);
    font-size: 14px;
}

.navbar-child-item {
    font-weight: normal;
    height: 42px;
    line-height: 42px;
    border-bottom: 1px solid #FFF;
}

.navbar-child-item:last-child {
    border-bottom: none;
}

.navbar-child-item:hover {
    background-color: #34D5DA;
}

.head-sm-height {
    height: 170px;
}