.safety-signs{
    display: grid;
    grid-template-columns: repeat(4, auto);
    justify-content: space-between;
    align-items: center;
}

.safety-signs>div{
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    row-gap: 10px;
    justify-content: center;
    align-items: center;
}

.safety-signs>div img{
    margin: auto;
}

.safety-signs p{
    text-align: center;
}

#footer-wrapper .safety-signs{
    column-gap: 10%;
    justify-content: center;
}

#footer-wrapper .safety-signs p{
    color: #FFFFFF;
}

.footer-wrapper-line{
    width: 100%;
    height: 1px;
    border-bottom: 1px solid #454B56;
    margin: 30px auto;
}

@media (max-width: 750px) {
    #footer-wrapper .safety-signs{
        column-gap: 0;
        justify-content: space-between;
    }
}