/* 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);
*/
.fixed_background_section {
  position: relative;
  padding: 95px 0; }
  .fixed_background_section .overlay_color {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    background: transparent linear-gradient(180deg, rgba(255, 255, 255, 0.65) 0%, #ffffff 100%) 0% 0% no-repeat padding-box; }
  .fixed_background_section .fixed_bg_imgs {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden; }
    .fixed_background_section .fixed_bg_imgs .fixed_bg {
      height: 100%;
      width: 100%;
      -webkit-clip-path: inset(0);
      clip-path: inset(0);
      position: relative; }
      .fixed_background_section .fixed_bg_imgs .fixed_bg img {
        object-fit: cover;
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        width: 100%;
        height: 100%; }
