/* ========================================================================
   Component: Section
 ========================================================================== */

 .has-overlay {
    position: relative;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
  }
  
  .background-video {
    position: absolute;
    display: none;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    opacity: 1;
    overflow: hidden;
    transition: opacity 0.4s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
  }
  
  .background-image {
    position: absolute;
    bottom: 0;
    right: 0;
    opacity: 1;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    transition: opacity 0.4s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
  }
  
  .spw-background-video {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: auto;
    width: 100%;
    transition: opacity 1s ease 0s;
  }
  
  @media (min-width: 960px) {
    .background-video {
      display: block;
    }
  
    .background-image {
      display: none;
    }
  }
  
  .spw-background-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, 
      rgba(22, 38, 46, 0), 
      rgba(22, 38, 46, .35), 
      rgba(22, 38, 46, 0.55), 
      rgba(22, 38, 46, .85));
  }
  
  .sm-height {
      padding-bottom: 50px;
      padding-top: 50px;
  }
  
  .me-height {
      padding-bottom: 100px;
      padding-top: 100px;
  }
  
  .la-height {
      padding-bottom: 150px;
      padding-top: 150px;
  }
  
  .vl-height {
      padding-bottom: 200px;
      padding-top: 200px;
  }
  
  .xl-height {
      padding-bottom: 250px;
      padding-top: 250px;
  }
  