.submenu-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.submenu-item {
    background-color: rgb(var(--gt-blue));
        background-image: url(/img/contentFolder-bcg-global.png);
    background-repeat: no-repeat;
    background-position: right top;
    color: white;
    box-sizing: border-box;
    height: 190px;
    display: flex;
    flex-direction: column;
    min-width: calc(33% - 40px);
    position: relative;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.contentfolderin {
    padding: 15px 19px;
}

.contentfolderin .excerpts {
    padding-right: 100px;
}

.contentfolderin .title a {
    height: 46px;
    padding-right: 100px;
    font-size: 21px;
    color: var(--e-global-color-ed8f8ef);
    text-decoration: none;
    font-weight: bold;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    line-height: 110%;
    max-height: 4.2em;
}

a.linkmore {
position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    color: white;
    text-decoration: none;
    padding: 0 95px 12px 0;
    background-image: url(/img/buttorRightArrow.png);
    background-repeat: no-repeat;
    background-position: right 15px bottom;

    text-transform: uppercase;
}

a.linkmore:hover {
    color: white;
}

.submenu-cards .submenu-item {
   
        transition: all 0.5s ease;
}

.submenu-cards .submenu-item:hover {
    background-color: rgb(var(--gt-red));
        transition: all 0.5s ease;
}

.submenu-cards {
    opacity: 0;
}

.submenu-cards.animated {
    opacity: 1;
     transition: all 0.5s ease;
}