/* stylelint-disable max-line-length */
/* stylelint-enable max-line-length */
/*
--- Animations!!! ---
-- Slider
-- Squeeze
-- Arrow Left
-- Arrow Right

How to use:

Have this in it's own file e.g. _hamburger.scss
@include h('cross', 25px, 20px, #fff, 2px, 2px, 0.3s);

Parameters:
@include h(AnimationType, Width, Height, Colour, Border Radius, Thickness, Transition Speed);

*/
.single-market-insight .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding-bottom: 140px;
}
@media only screen and (max-width: 1023px) {
  .single-market-insight .grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 100px;
  }
  .single-market-insight .grid > div:last-child {
    grid-row: 1;
  }
}
.single-market-insight img {
  display: block;
  max-width: 100%;
}

/*# sourceMappingURL=single-market-insight.css.map*/