.reassurances {
    position: relative;
    z-index: 2;
    padding-top: 3vh;
    padding-bottom: 3vh;
    background-color: var(--wp--preset--color--color-4);
}
.reassurances .reassurance-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
    padding-top: 1vh;
    padding-bottom: 1vh;
}
.reassurances .reassurance-item img {
    width: 45px;
    height: auto;
}
.reassurances .reassurance-item h3 {
    color: var(--wp--preset--color--color-1);
    font-family: "Arlette";
    font-size: 1.25rem;
    margin-bottom: 0;
}
@media screen and (min-width: 768px) {
    .reassurances .reassurance-item {
        padding-top: 3vh;
        padding-bottom: 3vh;
    }
    .reassurances .reassurance-item:not(:last-child) {
        border-right: 1px solid var(--wp--preset--color--color-2);
    }
}
@media screen and (min-width: 991px) {
    .reassurances {
        padding-top: 10vh;
        padding-bottom: 10vh;
    }
}


footer {
    position: relative;
    padding-top: 5vh;
    padding-bottom: 2vh;
    color: #fff;
    background-color: var(--wp--preset--color--color-7);
    text-align: center;
    font-size: 1rem;
}
footer a {
    color: #fff;
}
footer a:hover {
    color: var(--wp--preset--color--color-3);
}
footer .logo-footer {
    margin-bottom: 3vh;
    margin-left: auto;
    margin-right: auto;
}
footer .socials {
    margin-bottom: 0;
}
footer .socials li a {
    color: var(--wp--preset--color--color-2);
    background-color: #fff;
    padding: 5px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
footer .socials li:hover a {
    background-color: var(--wp--preset--color--color-3);
}
footer .socials li svg {
    color: var(--wp--preset--color--color-2);
    height: 20px;
}
footer .copyright {
    margin-top: 3vh;
    color: #fff;
    font-size: 0.875rem;
    text-align: center;
}
footer .certifications p {
    font-family: "Arlette";
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 25px;
}
footer .certifications .image {
    width: 120px;
    padding: 10px;
    background-color: #fff;
}
footer .certifications .image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
@media screen and (min-width: 991px) {
    footer {
        text-align: left;
    }
    footer .logo-footer {
        margin-bottom: 3vh;
        margin-left: 0;
    }
    footer .copyright {
        text-align: right;
    }
}