#quicknav-holder {
    width: 100%;
    padding: 0;
    align-content: center;
    justify-content: space-between;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 100px;
}
@media screen and (max-width: 768px) {
    #quicknav-holder {
        width: 100%;
   }
}
#quicknav-holder:after {
    content: '';
    flex: auto;
    max-width: 24%;
}
#quicknav-holder *:not(i) {
    transition: 300ms ease-out;
    color: magenta;
    text-decoration: none;
    font-family: 'FrutigerLTPro-Bold';
}
#quicknav-holder i {
    color: white;
    font-size: 24px;
}
.quicknav-item i:first-child {
    margin-right: 10px;
}
.quicknav-item {
    font-size: 12px;
    list-style-type: none;
    width: 24%;
    margin-bottom: 10px;
    box-sizing: border-box;
    background: white;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, .2);
    border-radius: 10px;
    overflow: hidden;
    height: 50px;
    position: relative;
}
@media screen and (max-width: 1400px) {
    .quicknav-item {
        width: 32%;
   }
}
@media screen and (max-width: 990px) {
    .quicknav-item {
        width: 49%;
   }
}
.quicknav-primary {
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding: 10px;
    position: absolute;
    z-index: 3;
    background: white;
    width: 101%;
    height: 100%;
    line-height: 1.2rem;
}
.quicknav-item:hover .quicknav-tertiary, .quicknav-initialize .quicknav-tertiary {
    background: green;
}
.quicknav-item:hover .quicknav-secondary, .quicknav-initialize .quicknav-secondary {
    background: blue;
}
@media screen and (max-width: 1200px) {
    .quicknav-item:hover .quicknav-secondary, .quicknav-initialize .quicknav-secondary {
        width: 85%;
   }
}
.quicknav-item:hover:not(:last-child) .quicknav-item-large-text li, .quicknav-initialize:not(:last-child) .quicknav-item-large-text li {
    font-size: 0.9rem !important;
}
.quicknav-item:hover .quicknav-primary, .quicknav-initialize .quicknav-primary {
    width: 60%;
    background: magenta;
    color: white !important;
}
@media screen and (max-width: 1200px) {
    .quicknav-item:hover .quicknav-primary, .quicknav-initialize .quicknav-primary {
        width: 72%;
   }
}
.quicknav-item:hover .quicknav-primary path {
    color: white !important;
}
.quicknav-item li {
    border-radius: 0 10px 10px 0;
}
.quicknav-item li:hover {
    box-shadow: inset 2px 2px 10px rgba(0, 0, 0, 0.5);
}
.quicknav-secondary {
    position: absolute;
    width: 80%;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: white !important;
    padding: 10px 20px;
    box-sizing: border-box;
    transform: translateX(1px);
}
@media screen and (max-width: 1200px) {
    .quicknav-secondary {
        width: 85%;
        padding: 10px 3px;
   }
}
.quicknav-tertiary {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: white !important;
    padding: 10px 15px;
    box-sizing: border-box;
}
@media screen and (max-width: 1200px) {
    .quicknav-tertiary {
        padding: 10px 0;
   }
}
.quicknav-item:last-child .quicknav-primary {
    background: blue;
    width: 100% !important;
}
.quicknav-item:last-child * {
    color: white !important;
}
.quicknav-item:last-child li:hover {
    background: #0096d6;
}
