@charset "utf-8";
/* for different dividers and Backgrounds of site */
/* ================= dividers=====background colours  and images============ */
.divider-line {
  border: none;
  height: 1px;
  width: 70%;
  margin: 4rem auto;
  background: linear-gradient(
    to right,
    transparent,
    #c9b26a,
    transparent
  );
}

.divider-mantra {
  text-align: center;
  font-size: 1rem;
  letter-spacing: 0.25em;
  margin: 5rem 0;
  color: #b89b45;
  opacity: 0.9;
}

.image-divider {
  text-align: center;
  padding: 4rem 0;
}

.image-divider img {
  max-width: 220px;
  opacity: 0.8;
}

.content-section {
  padding: 5rem 2rem;
}

.section-light {
  background: #ffffff;
}

.section-ivory {
  background: #faf8f2;
}

.section-gold {
  background: linear-gradient(
    180deg,
    #fff8e1,
    #f6e7b8
  );
}

.section-bg {
  background: url("images/divider-texture.jpg") center/cover no-repeat;
}

.section-overlay {
  background: rgba(255, 255, 255, 0.88);
  padding: 6rem 2rem;
}

.divider-symbol {
  position: relative;
  text-align: center;
  margin: 5rem 0;
}

.divider-symbol::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  height: 1px;
  background: #d4c27a;
}

.divider-symbol span {
  background: #fff;
  padding: 0 1rem;
  color: #b89b45;
  position: relative;
}


