//  ==========================================================================
// IMAGES BACKGROUND
//  ==========================================================================
.img-bg-cover {
  background-position: center;
  background-size: cover;
}

.img-bg-fluid {
  background-position: center;
  background-size: 100% 100%;
}

.img-bg-fixed,
.img-parallax {
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
}

.bg-no-repeat,
.img-bg-cover,
.img-bg-fluid,
.img-bg-fixed,
.img-parallax {
  background-repeat: no-repeat;
}

.bg-position-c {
  background-position: center;
}

.bg-position-c-c {
  background-position: center center;
}