.top-menu-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 79px;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 15px;
    box-shadow:  0 7px 10px -13px rgba(0, 0, 0, 1);
}

.top-menu{
    width: 920px;
    display: inherit;
    justify-content: space-between;
    align-items: inherit;
}

.special {
    width: 234px;
    height: 54px;
    background: #fff;
    border-radius: 15px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-decoration: none;
}

.special svg{
    margin-left: 10px;
}

.special span{
    margin-left: 15px;
    width: 152px;
    color: #026298;
    font-size: 12px;
}

ul.topNavigation {
    width: 100%;
    height: 79px;
    display: flex;
    align-items: center;
    list-style: none;
    -moz-box-sizing:border-box;
    -webkit-box-sizing:border-box;
    box-sizing:border-box;
}

ul.topNavigation li {
    position: relative;
    height: 50px;
    -moz-box-sizing:border-box;
    -webkit-box-sizing:border-box;
    box-sizing:border-box;
}
ul.topNavigation li:first-child {
    width: 35%;
}
ul.topNavigation li:nth-child(2) {
    width: 17%;
}
ul.topNavigation li:nth-child(3) {
    width: 23%;
}
ul.topNavigation li:nth-child(4) {
    width: 15%;
}
ul.topNavigation li:last-child {
    width: 15%;
}

ul.topNavigation li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    color: #006fad;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    -webkit-border-top-left-radius: 15px;
    -webkit-border-top-right-radius: 15px;
    -moz-border-radius-topleft: 15px;
    -moz-border-radius-topright: 15px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    -moz-box-sizing:border-box;
    -webkit-box-sizing:border-box;
    box-sizing:border-box;

}
ul.topNavigation li a:hover {
    background: #bfe8ff;

}

ul.topNavigation li ul.secondLevel {
    display: none;
    position: absolute;
    top:50px;
    left: 0;
    width: 400px;
    height: auto;
    padding: 0 0 15px 0;
    background: #bfe8ff;
    -webkit-border-radius: 10px;
    -webkit-border-top-left-radius: 0;
    -moz-border-radius: 10px;
    -moz-border-radius-topleft: 0;
    border-radius: 10px;
    border-top-left-radius: 0;
    z-index: 100;
    -moz-box-sizing:border-box;
    -webkit-box-sizing:border-box;
    box-sizing:border-box;

}

ul.topNavigation li a.st {
    background: #bfe8ff;
    text-decoration: none;
}

ul.topNavigation li:hover ul.secondLevel {
    position: absolute;
    top:50px;
    left: 0;
    display: block;
    width: 400px;
    height: auto;
    padding: 0 0 15px 0;
    background: #bfe8ff;
    -webkit-border-radius: 10px;
    -webkit-border-top-left-radius: 0;
    -moz-border-radius: 10px;
    -moz-border-radius-topleft: 0;
    border-radius: 10px;
    border-top-left-radius: 0;
    z-index: 100;
}

ul.topNavigation li ul.secondLevel.last {
    right: 0!important;
    left: auto;
    width: 250px!important;
    -webkit-border-radius: 10px;
    -webkit-border-top-right-radius: 0;
    -moz-border-radius: 10px;
    -moz-border-radius-topright: 0;
    border-radius: 10px;
    border-top-right-radius: 0;
}
ul.topNavigation li ul.secondLevel li {
    float: none;
    display: block;
    width: 100%;
    height: auto;
    padding: 3px 0 3px 10px;
}
ul.topNavigation li ul.secondLevel li a {
    display: block;
    width: 100%;
    height: auto;
    color: #004165;
    font-size: 1em;
    font-weight: normal;
    text-align: left;
    text-decoration: underline;
    line-height: 15px;
}
ul.topNavigation li ul.secondLevel li a:hover {
    background: 0;
    text-decoration: none;
}