.gc-helper-links {
    margin-top: 2rem;
}
.gc-helper-links__row {
    row-gap: calc( .5* var( --bs-gutter-x ) );
    justify-content: center;
}
.gc-helper-links__body {
    padding: 1.5rem;
    background: var(--white-back-texts, #FFF);
    box-shadow: 1px 1px 16px 0px rgba(26, 20, 35, 0.10);
    height: 100%;
}
.gc-helper-links__col {
    width: fit-content;
    max-width: 100%;
}
.gc-helper-links__col-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
}
.gc-helper-links__col-wrapp {
    gap: calc(var(--bs-gutter-x)* .5);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.gc-helper-links__col-item {
    width: 150px;
    max-width: 100%;
    text-align: center;
}
.gc-helper-links__col-item a {
    display: inline-block;
    width: fit-content;
    max-width: 100%;
    text-decoration: none;
    cursor: pointer;
    color: var(--Black_titles, #191A26);
    font-weight: 500;
    font-size: 1.125rem;
    transition: color 0.35s ease-in-out;
    position: relative;
}
.gc-helper-links__col-item a::after{
    content: "";
    height: 2px;
    transform: translateY(0);
    z-index: 2;
    position: absolute;
    left: 0.75rem;
    right: 0.75rem;
    opacity: 0;
    bottom: 0;
    -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -ms-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out;
}
.gc-helper-links__col-item a:hover::after {
    background-color: currentColor;
    left: 0;
    right: 0;
    opacity: 1;
}
@media screen and ( min-width: 768px ) {
    .simple .gc-helper-links__col.fuels,
    .simple .gc-helper-links__col.bodies {
        max-width: 50%;
    }
    .brend_only .gc-helper-links__col.fuels,
    .brend_only .gc-helper-links__col.bodies {
        max-width: 50%;
    }
    .brend-model .gc-helper-links__col {
        width: 33%;
    }
}