.footer_links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: clamp(15px, 1.5vw, 20px);
}

.footer_links a {
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    padding: 1.5rem 32px;
    background-color: #f4f4f4;
    -webkit-transition: background-color .2s;
    transition: background-color .2s;
    box-sizing: border-box;
}

.footer_links a  > p {
    font-size: 1.125rem;
    line-height: 2rem;
    margin: 0;
    color: #222;
    font-weight: 700;
}
.footer_links a:hover {
    background-color: #f6eaea;
}



.ft-Footer_Row-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
}

.ft-Footer_InfoImages {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 400px;
    align-items: center;
}

.ft-Footer_InfoImage:nth-child(2) {
    margin-left: 32px;
    padding-left: 32px;
    border-left: 1px solid #e5e5e5;
}

.ft-Footer_LinksUpper,
.ft-Footer_InfoText {
    font-size: .875rem;
    line-height: 1.5rem;
    margin-top: 1rem;
    color: rgb(99, 94, 94);
}

.ft-Footer_InfoText .title-small + p{
    margin-top: -15px ;
}

.ft-Footer_InfoText .title-small {
    font-size: 18px;
}

.ft-Footer_InfoText p:not(.title-small) {
    margin-bottom: 10px;
}

.ft-Footer_InfoImages + .ft-Footer_InfoText p {
    margin-top: -13px;
}
.ft-Footer_InfoArrow {
    -ms-flex-item-align: start;
    align-self: flex-start;
    border-top: 1rem solid transparent;
}
.ft-Footer_Info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
}

.ft-Footer_LinksUpper p {
    margin: 0;
}

.ft-Footer_LinksUpper {
    padding-bottom: 2rem;
}

.ft-Footer_LinksUpper a {
    text-decoration: underline;
    color: rgb(99, 94, 94);
}

@media (max-width: 768px ) {
    .footer_links + hr ,
    .footer_links {
        display: none;
    }
    .ft-Footer_Row-info {
        grid-template-columns: 1fr;
    }

}