/************************************************************************
// Table of Background CSS

1. Blog Header
2. Custom Front Page
3. Blog Single
4. Features Section
5. Counter Section
6. Card Section

*************************************************************************/

/* 1. Blog Header */
.blog-header {
  background: url('../img/header.jpg') repeat-y center top;
  max-width: 100%;
  height: 400px;
  position: relative;
}
.blog-header:before {
  background-color: #715e49;
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  opacity: .7;
}

/* 2. Custom Front Page */
.front-header {
  background: url('../img/header.jpg') repeat-y center bottom;
  max-width: 100%;
  min-height: 730px;
  position: relative;
  overflow-y: hidden;
}
.front-header:before {
  background-color: #715e49;
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  opacity: .7;
}

/* 3. Blog Single */
.blog-single-header {
  background: url('../img/counter.jpg') repeat-y center center;
  max-width: 100%;
  height: 768px;
  position: relative;
}
.blog-single-header:before {
  background-color: #715e49;
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  opacity: .7;
}

/* 4. Features Section */
.section-features {
  background: url('../img/background.jpg') repeat-y center center;
}

/* 5. Counter Section */
.section-counter {
  background: url('../img/counter.jpg') repeat-y center top;
  max-width: 100%;
  height: auto;
  position: relative;
}
.section-counter:before {
  background-color: #362a1d;
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  opacity: .8;
}

/* 6. Card Section */
.section-card {
  background: url('../img/vcard.png') repeat-y center center;
}

.section-review {
  background: url('../img/background-review.jpg') repeat-y center center;
}