/* Mixins
--------------------------------------------------------------- */
/*
  This mixin can be used to set the object-fit:
  @include object-fit(contain);
  or object-fit and object-position:
  @include object-fit(cover, top);
*/
.polaroid-section {
  position: relative;
  padding: 10vw 0; }
  .polaroid-section .bg_imgs {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 0;
    pointer-events: none; }
    .polaroid-section .bg_imgs img {
      height: 100%;
      width: 100%;
      object-fit: cover; }
    .polaroid-section .bg_imgs:before {
      content: "";
      z-index: 2;
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
      background: rgba(233, 235, 240, 0.85);
      display: block; }
  .polaroid-section .polaroid {
    padding: 15px 15px 80px;
    background: #fff;
    margin-bottom: auto; }
    .polaroid-section .polaroid img {
      width: 100%;
      border-radius: 5px; }
