.button-links-container {
    border-radius: 0.5rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1607843137);
    background: white;
    position: relative;
    padding: 1.5rem;
    font-family: "Nunito Sans", sans-serif;
}
.button-links-container strong {
    font-weight: 700;
    font-family: "Nunito Sans", sans-serif;
    color: black;
}
.button-links-container .buttons .button-link {
    color: black;
    font-weight: 700;
    font-size: 1.2rem;
}
.button-links-container .buttons .button-link:hover {
    color: #df3226;
}
.button-links-container .buttons .button-link:hover .hover\:hidden {
    display: none;
}
.button-links-container .buttons .button-link:hover .hover\:block {
    display: block;
}
.button-links-container .buttons .button-link .images {
    position: relative;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.button-links-container .buttons .button-link .images img {
    position: absolute;
    width: 70px;
    height: 70px;
    border: 10px solid white;
    border-radius: 50%;
    box-shadow: 0 5px 16px 0 rgba(0, 0, 0, 0.1411764706);
}
.button-links-container .buttons .button-link .images img:first-child {
    z-index: 5;
}
.button-links-container .buttons .button-link .images img:nth-child(2) {
    z-index: 4;
}
.button-links-container .buttons .button-link:not(:first-child) {
    margin-left: 2rem;
}

.button-links-container::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1rem;
    background: #df3226;
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
}

@media screen and (min-width: 1025px) {
    .button-links-container .buttons .button-link:not(:first-child) {
        margin-left: 2rem;
    }
}