.iti-subnav {
    position: absolute;
    top: 0px;
    left: 16%;
    width: 80%;
    z-index: 1000;
    padding: 0px !important;
    background-color: transparent;
    max-width: 1320px;

    .iti-subnav-row {
        width: 100%;

        ul.iti-subnav-menu {
            list-style: none;
            padding: 0px;
            margin: 0px;
            display: flex;
            flex-direction: row;
            gap: 2rem;
            justify-content: start;
            align-items: start;

            li.iti-subnav-item {
                a {
                    font-family: "Apercu Pro Medium", Arial, Helvetica, sans-serif;
                    &:after {
                        content: "";
                        height: 1px;
                        left: 0;
                        position: absolute;
                        top: 104%;
                        transition: background .3s ease-in-out;
                        width: 100%;
                    }
                }

                a:link, a:visited {
                    color: grey;
                    font-size: 14px;
                    letter-spacing: -.5px;
                    line-height: 24px;
                    position: relative;
                }

                a:hover, a:active {
                    &:after {
                        background: #100adb;
                    }
                }
            }
        }
    }
}
