export const HalfWidthCol = ({ children, ...rest }) => (
  <Col lg={6} md={6} sm={12} {...rest}>
    {children}
  </Col>
);