/* OSNOVA */
.mod-menu__separator {
    position: relative;
    padding-bottom: 10px;
    display: inline-block;
}

/* underline uvijek vidljiv */
.mod-menu__separator::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 100%;
}

.menu-naslovna::after {
    background: #f4d03f;
}
/* VIJESTI */
.menu-vijesti::after {
    background: #c84b43;
}

/* HKS */
.menu-hks::after {
    background: #3c5a99;
}

/* PASMINE */
.menu-pasmine::after {
    background: #c84b43;
}

/* KINOLOGIJA */
.menu-kinologija::after {
    background: #e67e22;
}

/* PAS I ČOVJEK */
.menu-pas-covjek::after {
    background: #6f8f2f;
}

/* ZDRAV PAS */
.menu-zdrav-pas::after {
    background: #7a63b6;
}

/* ŽIVOT SA PSOM */
.menu-zivot-sa-psom::after {
    background: #4f6fb3;
}

a[class*="menu-"] {
    position: relative;
    padding-bottom: 10px;
    display: inline-block;
}

a[class*="menu-"]::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 100%;
    transition: height 0.2s ease;
}

a[class*="menu-"]:hover::after {
    height: 5px;
}

