﻿/* Bootstrap sets 'vertical-align' for svg to 'middle', which was was making the images in our headers and footers social media buttons too low in their circles */
header svg, footer svg {
    vertical-align: initial;
}

/* Bootstrap sets 'display' for .row to 'flex', which was making the Contact button in the Main footer appear on the right rather than the left
   (because the empty <div> above it had height) */
footer .row {
    display: block;
}
