.mod-stisupportmenu {
    position: absolute;
    width: 100%;
    padding-top: 100px;
    top: -300px;
    opacity: 0;
    background: white;
    z-index: 50;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15);
    transition: top .3s, opacity .3s;
}

.mod-stisupportmenu.active {
    top: 0;
    opacity: 1;
}

.mod-stisupportmenu .article {
    display: flex;
    gap: 60px;
}

.mod-stisupportmenu .article div:first-child {
    flex: 2;
}

.mod-stisupportmenu .article div:last-child {
    flex: 1;
}

.mod-stisupportmenu .article h2 {
    margin-bottom: 30px;
}

.mod-stisupportmenu .article a {
    display: block;
    margin-bottom: 10px;
}

.mod-stisupportmenu .article div:first-child a {
    text-decoration: none;
    margin-bottom: 20px;
}

.mod-stisupportmenu .article a:hover strong {
    text-decoration: underline;
}

.mod-stisupportmenu .article a strong {
    display: block;
    font-weight: 600;
}

.mod-stisupportmenu .article a span {
    color: #3e3e3e;
    font-weight: 400;
    font-size: 14px;
}