@font-face {
  font-family: "Open-Sans";
  src: url("fonts/OpenSans-Regular.ttf");
font-weight: normal;
font-display: swap;}
@font-face {
  font-family: "Open-Sans";
  src: url("fonts/OpenSans-Bold.ttf");
font-weight: bold;
font-display: swap;}
body {
    font-family: "Open-Sans";
overflow-x: hidden;
  -webkit-text-size-adjust: none;
}
/* Base structure */
.bci-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* --- STORY SECTION --- */
.bci-story-section {
  background: linear-gradient(135deg, #fff8ef, #fdf2e2);
  padding: 80px 0;
  display: flex;
  align-items: center;
  margin-bottom: 0;
  margin-top: 2.5em;
}

.bci-story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.bci-story-text {
  max-width: 600px;
}

.bci-title {
  font-size: 2rem;
  color: #3a2c18;
  font-weight: 700;
  margin-bottom: 20px;
}

.bci-description {
  color: #5c4a33;
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 1rem;
}

.bci-btn {
  display: inline-block;
  background-color: #b87333;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.bci-btn:hover {
  background-color: #8a5523;
  transform: translateY(-2px);
}

.bci-story-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
}

.bci-story-image img:hover {
  transform: scale(1.03);
}

/* --- FEATURED SECTION --- */
.bci-featured-section {
  padding: 100px 0;
  background-color: #fffdf9;
  text-align: center;
}

.bci-featured-header {
  margin-bottom: 50px;
}

.bci-featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.bci-featured-item {
  background-color: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 12px;
}

.bci-featured-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.bci-featured-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
    border-radius: 8px;

}

.bci-featured-item h3 {
  margin: 20px 0 10px;
  font-size: 1.25rem;
  color: #3b2d19;
}

.bci-featured-item p {
  font-size: 1rem;
  color: #5a4631;
  margin-bottom: 20px;
  padding: 0 20px;
}

.bci-featured-footer {
  margin-top: 40px;
  font-size: 0.95rem;
  color: #6b5b45;
  background: transparent;
}

.bci-featured-item p strong {
  font-weight: bold;
  background: #cda34f;
  border-radius: 5px;
  padding: 10px;
  color: #fff;
}

@media (max-width: 768px) {
  .bci-story-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .bci-story-image {
    order: -1;
  }

  .bci-story-text {
    margin: 0 auto;
  }
}


:root {
  --bci-bg: rgba(255, 255, 255, 0.86);
  --bci-ink: #222;
  --bci-brass: #a8742a; /* primary accent */
  --bci-copper: #b25b2a; /* secondary accent */
  --bci-shadow: 0 6px 18px rgba(28, 28, 28, 0.08);
  --bci-radius: 10px;
  --bci-gap: 20px;
  --bci-max-width: 1200px;
}

/* Reset-ish for header area */
.bci-header {
  position: fixed;
  inset: 0 0 auto 0;
  top: 0;
  width: 100%;
  background: var(--bci-bg);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: var(--bci-shadow);
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
    Arial;
}

/* inner wrapper */
.bci-inner {
  max-width: var(--bci-max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  gap: var(--bci-gap);
}

/* logo */
.bci-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.bci-brand {
  color: var(--bci-brass);
  font-weight: 700;
  letter-spacing: 0.2px;
  font-size: 1.05rem;
}
a {
  transition: all 0.23s ease-in-out;
}
.bci-brand:hover {
  opacity: 0.6;
}

/* desktop nav */
.bci-nav {
  display: none; /* shown on wider screens */
  gap: 22px;
}
.bci-nav-link {
  color: var(--bci-ink);
  text-decoration: none;
  font-weight: 500;
  padding: 8px 10px;
  border-radius: 8px;
  transition: color 0.18s ease, background 0.18s ease, transform 0.12s ease;
}
.bci-nav-link:hover,
.bci-nav-link:focus {
  color: white;
  background: linear-gradient(90deg, var(--bci-brass), var(--bci-copper));
  transform: translateY(-1px);
  outline: none;
}

/* actions */

/* mobile menu button (hamburger) */

/* mobile menu panel */

/* mobile inner links */

/* ===== responsive rules ===== */
.bci-nav {
  display: flex;
  align-items: center;
}

/* when mobile menu is open (via JS we add class bci-mobile-open to header) */

.bc-footer {
  background-color: #2c2c2c;
  color: #f1f1f1;
  padding: 40px 20px;
}

.bc-footer__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.bc-footer__col {
  flex: 1 1 250px;
  margin-bottom: 20px;
}

.bc-footer__col h3 a{
  text-decoration: none;
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #cda34f;
}
.bc-footer__col h3 a:hover {
  opacity: 0.65;
}
.bc-footer__col h3 + p,
.bc-footer__col h4 + p {
  line-height: 1.6;
}
.bc-footer__col h4 {
  font-size: 1.2em;
  margin-bottom: 10px;
  color: #cda34f;
}

.bc-footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 2;
}

.bc-footer__col .flex-box-bc {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 10px;
}

.bc-footer__col img {
  width: 50px;
  margin: 5px;
  object-fit: cover;
  aspect-ratio: 3/2;
}

.copyright-bc {
  text-align: center;
  border-top: 1px solid #444;
  padding-top: 20px;
  margin-top: 20px;
  font-size: 0.9em;
  color: #bbb;
}

.bc-footer__col ul a {
  color: #f1f1f1;
  text-decoration: none;
}
.bc-footer__col ul a:hover {
  text-decoration: underline;
}

/* small refinements */
@media (max-width: 420px) {
  .bci-inner {
    padding: 12px;
    gap: 12px;
  }
  .bci-brand {
    font-size: 0.98rem;
  }
}

* {
  scroll-behavior: smooth;
}

html,
body,
div,
span,
h1,
h2,
h3,
h4,
p,
a,
img,
strong,
ul,
li,
article,
footer,
header,
nav,
section {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
footer,
header,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ul {
  list-style: none;
}

 
 
html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  background: #fff;
}

.ljdNMYYZkmwGLKa .LCwNQafPAYjpsID {
  position: relative;
  top: 0;
  text-align: center;
  transition: all 0.3s linear;
}

.ljdNMYYZkmwGLKa .LCwNQafPAYjpsID:hover {
  top: -10px;
  transition: all 0.3s linear;
}

body {
  
  font-weight: 300;
  color: #5d5d5d;
  font-size: 14pt;
  line-height: 1.75em;
}

strong {
  color: #252122;
  font-weight: 400;
}

h1,
h2,
h3,
h4 {
  color: #252122;
  font-weight: 700;
}

h2 {
  font-size: 1.5em;
}

h3 {
  font-size: 1.35em;
}

a {
  color: var(--bci-copper);
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

p,
ul {
  margin-bottom: 2em;
}
.LgkdjwYlvnuhYAM {
  margin: 0 auto;
  max-width: 100%;
  width: 70em;
}

@media screen and (max-width: 1680px) {
  .LgkdjwYlvnuhYAM {
    width: 70em;
  }
}

@media screen and (max-width: 1280px) {
  .LgkdjwYlvnuhYAM {
    width: calc(100% - 60px);
  }
}

@media screen and (max-width: 980px) {
  .LgkdjwYlvnuhYAM {
    width: calc(100% - 80px);
  }
}

@media screen and (max-width: 736px) {
  .LgkdjwYlvnuhYAM {
    width: calc(100% - 40px);
  }
}
.SdOBAXRihPsUqeI {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  align-items: stretch;
}

.SdOBAXRihPsUqeI > * {
  box-sizing: border-box;
}

.SdOBAXRihPsUqeI > .EnJcvpRVkSyZFbU {
  width: 33.33333%;
}

.SdOBAXRihPsUqeI > .QLfWOPYkcpyOsQw {
  width: 100%;
}

.SdOBAXRihPsUqeI {
  margin-top: -50px;
  margin-left: -50px;
}

.SdOBAXRihPsUqeI > * {
  padding: 50px 0 0 50px;
}

@media screen and (max-width: 1680px) {
  .SdOBAXRihPsUqeI {
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    align-items: stretch;
  }

  .SdOBAXRihPsUqeI > * {
    box-sizing: border-box;
  }

  .SdOBAXRihPsUqeI {
    margin-top: -50px;
    margin-left: -50px;
  }

  .SdOBAXRihPsUqeI > * {
    padding: 50px 0 0 50px;
  }
}

@media screen and (max-width: 1280px) {
  .SdOBAXRihPsUqeI {
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    align-items: stretch;
  }

  .SdOBAXRihPsUqeI > * {
    box-sizing: border-box;
  }

  .SdOBAXRihPsUqeI {
    margin-top: -30px;
    margin-left: -30px;
  }

  .SdOBAXRihPsUqeI > * {
    padding: 30px 0 0 30px;
  }
}

@media screen and (max-width: 980px) {
  .SdOBAXRihPsUqeI {
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    align-items: stretch;
  }

  .SdOBAXRihPsUqeI > * {
    box-sizing: border-box;
  }

  .SdOBAXRihPsUqeI > .nIXxDyjhAFdSzJn {
    width: 50%;
  }

  .SdOBAXRihPsUqeI > .VsDGFORNrlqZXie {
    width: 100%;
  }

  .SdOBAXRihPsUqeI {
    margin-top: -40px;
    margin-left: -40px;
  }

  .SdOBAXRihPsUqeI > * {
    padding: 40px 0 0 40px;
  }
}

@media screen and (max-width: 736px) {
  .SdOBAXRihPsUqeI {
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    align-items: stretch;
  }

  .SdOBAXRihPsUqeI > * {
    box-sizing: border-box;
  }

  .SdOBAXRihPsUqeI > .KuTLbKxqLmaozod {
    width: 100%;
  }

  .SdOBAXRihPsUqeI {
    margin-top: -20px;
    margin-left: -20px;
  }
}

section,
article {
  margin-bottom: 2.5em;
}

section > :last-child,
section:last-child,
article > :last-child,
article:last-child {
  margin-bottom: 0;
}

header > p {
  display: block;
  font-style: italic;
  margin: 0.5em 0 0 0;
  padding-bottom: 0.5em;
}

header.fZqTxLEkMTqusZt {
  position: relative;
  text-align: center;
  border-top: solid 1px #cda34f;
  top: 1em;
  margin: 0 0 3em 0;
}

header.fZqTxLEkMTqusZt h2 {
  background: #cda34f;
  color: #fff;
  position: relative;
  top: -0.65em;
  display: inline;
  margin: 0;
  padding: 10px 30px;
  border-radius: 15px;
}

footer {
  background-color: #474444;
}

.fQMNmgOzmEQOtjL {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ljdNMYYZkmwGLKa {
  background: #e8e7e7;
  padding: 50px 0;
}

.ljdNMYYZkmwGLKa .ObPvlNwmidpUVgf {
  min-height: 300px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border: 5px solid #fff;
  background-color: #fff;
  border-radius: 15px;
}

.ljdNMYYZkmwGLKa .LCwNQafPAYjpsID:first-child .ObPvlNwmidpUVgf {
  background-image: url(assets/Hand-Hammered-Brass-Bowl.webp);
}

.ljdNMYYZkmwGLKa .LCwNQafPAYjpsID:nth-child(2) .ObPvlNwmidpUVgf {
  background-image: url(assets/Copper-Tea-Set.jpg);
}

.ljdNMYYZkmwGLKa .LCwNQafPAYjpsID:nth-child(3) .ObPvlNwmidpUVgf {
  background-image: url(assets/Decorative-Wall-Plate-Set.jpg);
}

.ljdNMYYZkmwGLKa .LCwNQafPAYjpsID:nth-child(4) .ObPvlNwmidpUVgf {
  background-image: url(assets/Copper-Serving-Bowl.jpg);
}

.ljdNMYYZkmwGLKa .LCwNQafPAYjpsID:nth-child(5) .ObPvlNwmidpUVgf {
  background-image: url(assets/Crafted-by-Hand.jpg);
}

.ljdNMYYZkmwGLKa .LCwNQafPAYjpsID:nth-child(6) .ObPvlNwmidpUVgf {
  background-image: url(assets/decorative-image.jpg);
}

.aUcwpVxmFUEtPYE p {
  margin: 0 auto;
}

.aUcwpVxmFUEtPYE {
  background: #fff8ef;
   border-bottom: solid 1px #ccc;
  padding: 2.75em 1.75em 2.75em 1.75em;
 overflow: hidden;
  gap: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 15px;
}

.aUcwpVxmFUEtPYE .ObPvlNwmidpUVgf.BhKUKEvYAmlbTOY {
  position: relative;
  width: auto;
  left: 1.75em;
  top: 1.75em;
  margin: -4.5em 0 4.25em -3.5em;
}

.aUcwpVxmFUEtPYE.HAYmtlDBMaFsLni header {
  padding-top: 1em;
  margin: 0 0 2em 0;
}

.aUcwpVxmFUEtPYE.HAYmtlDBMaFsLni h2 {
  font-size: 2.5em;
  letter-spacing: -0.015em;
}
.ywgPMmXXEQKbXcv {
  border-radius: 10px!important;
  overflow: hidden;
  -webkit-appearance: none;
  display: inline-block;
  text-decoration: none;
   border: 0;
  background: var(--bci-copper);
  color: #fff !important;
  font-weight: 700;
  outline: 0;
  font-size: 1.1em;
  padding: 0.65em 1.5em 0.65em 1.5em;
  text-align: center;
  -moz-transition: background-color 0.25s ease-in-out;
  -webkit-transition: background-color 0.25s ease-in-out;
  -ms-transition: background-color 0.25s ease-in-out;
  transition: background-color 0.25s ease-in-out;
}
.aUcwpVxmFUEtPYE footer {
  background: transparent;
}
.ywgPMmXXEQKbXcv:hover {
  background: #cda34f;
}

.ywgPMmXXEQKbXcv:active {
  background: #c51349;
}

.ywgPMmXXEQKbXcv.nmqrXxGEeyeWXiq {
  background: #252122;
  width: 100%;
  
}

.ywgPMmXXEQKbXcv.nmqrXxGEeyeWXiq:hover {
  background: #cda34f;
}

.ywgPMmXXEQKbXcv.nmqrXxGEeyeWXiq:active {
  background: #151112;
}
.ObPvlNwmidpUVgf {
  display: inline-block;
  outline: 0;
}

.ObPvlNwmidpUVgf.BhKUKEvYAmlbTOY {
  display: block;
  width: 100%;
  margin: 0 0 2em 0;
}
ul {
  list-style: disc;
  padding-left: 1em;
}

ul li {
  padding-left: 0.5em;
}
ul.IjRwIgaFSegDNAH {
  list-style: none;
  padding-left: 0;
}

ul.IjRwIgaFSegDNAH li {
  position: relative;
  border-top: solid 1px #ddd;
  padding: 1.3em 0 1.3em 7em;
}

ul.IjRwIgaFSegDNAH li h3 {
  position: absolute;
  left: 0;
  top: 1.3em;
  font-size: 1.1em;
}

ul.IjRwIgaFSegDNAH li:first-child {
  padding-top: 0;
  border-top: 0;
}

ul.IjRwIgaFSegDNAH li:first-child h3 {
  top: 0;
}
ul.zNYQmyvIsYgAyvs {
  list-style: none;
  padding-left: 0;
}

ul.zNYQmyvIsYgAyvs li {
  position: relative;
  border-top: solid 1px #ddd;
  padding: 1.3em 0 1.3em  ;
  display: grid;
  grid-template-columns: 1fr 2fr 10fr;
  gap: 30px;
  align-items: center;
}

ul.zNYQmyvIsYgAyvs h3 {
  font-size: 1.1em;
}

ul.zNYQmyvIsYgAyvs p {
  margin: 0;
}

ul.zNYQmyvIsYgAyvs li:first-child {
  border-top: 0;
 }

 ul.zNYQmyvIsYgAyvs li h2 {
  text-align: center;
  color: #cda34f;
  font-size: 2.5em;
  font-weight: bold;
  background: whitesmoke;
  border-radius: 5px;
  padding: 20px 10px;
 }

.LgkdjwYlvnuhYAM {
  margin: 65px auto!important;
}
.kcusLJRdWVMLrKT {
  text-align: center;
  padding: 8em 0;
margin-bottom: 0;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin-top: 70px;
}

.kcusLJRdWVMLrKT::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
}

#DOEKyWCapauLctQ::before {
  background-image: url(assets/bc-banner.jpg);
}

#CBhthaCAmiCLaZE::before {
  background-image: url(assets/Brass-Water-Jug.webp);
}

#CBhthaCAmiCLaZE {
  margin-bottom: 65px;
}
 

.kcusLJRdWVMLrKT header {
  background-color: rgba(68, 70, 55, 0.8);
  display: inline-block;
  padding: 2.5em 5em;
  border-radius: 5px;
  position: relative;
  z-index: 10;
}

.kcusLJRdWVMLrKT header h1 {
  color: #fff;
  line-height: 130%;
  font-weight: 700;
  font-size: 2.5em;
}

.ssnVAsTQPtHMDWc .LgkdjwYlvnuhYAM {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.ssnVAsTQPtHMDWc .ObPvlNwmidpUVgf {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  animation: shadow 1s ease-in-out infinite alternate;
}

@keyframes shadow {
  0% {
    box-shadow: 0 0 15px #32323340;
  }

  100% {
    box-shadow: 0 0 50px #20202d40;
  }
}
/* ===== Brass & Copper India - About Section Styles ===== */

.bci-about-section {
  background: linear-gradient(135deg, #fffdf8 0%, #f4efe7 100%);
  padding: 80px 0;
  color: #3b2f1d;
  font-family: "Inter", sans-serif;
}

.bci-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.bc-header {
  text-align: center;
  margin-bottom: 50px;
}

.bc-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #a6782d;
  margin-bottom: 15px;
    line-height: 1.6;

}

.bci-intro {
  font-size: 1.1rem;
  color: #4a3c29;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.bci-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.bci-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.bci-text h3 {
  font-size: 1.8rem;
  color: #7b5b2b;
  margin-bottom: 15px;
}

.bci-text p {
  line-height: 1.7;
  margin-bottom: 20px;
  color: #3e3221;
}

.bci-highlights {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.bci-highlights li {
  margin: 10px 0;
  font-weight: 500;
  display: flex;
  align-items: center;
  font-size: 1rem;
}

.bci-btn {
  display: inline-block;
  background-color: #a6782d;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
}

.bci-btn:hover {
  background-color: #8b6523;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 900px) {
  .bci-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .bci-image {
    order: -1;
  }

  .bci-text h3 {
    margin-top: 30px;
  }
}

#VScGOmQLxrMxeim {
  background: url(assets/decorative-image.jpg) no-repeat center center/cover;
  min-height: 400px;
}

#timeless-image {
  background: url(assets/bc-banner.jpg) no-repeat center center/cover;
  min-height: 400px;
}


#YMiMrxrVSweBRbm {
  background: url(assets/Crafted-by-Hand.jpg) no-repeat center center/cover;
  min-height: 400px;
}

#gTJWEmfjFnOKHST {
  margin: 65px auto;
}

#MzLVGnWABfQfwfr {
  text-align: center;
  overflow: hidden;
}

#MzLVGnWABfQfwfr h2 {
  font-size: 1.75em;
  margin-bottom: 65px;
}

#MzLVGnWABfQfwfr h3 {
  color: var(--bci-copper);
  text-transform: uppercase;
}

#MzLVGnWABfQfwfr p {
  margin-top: 30px;
}

#MzLVGnWABfQfwfr .kNArNjlQsxxUqAG {
  position: relative;
  z-index: 1;
}

#MzLVGnWABfQfwfr .kNArNjlQsxxUqAG:before {
  content: "";
  width: 32px;
  height: 100%;
  position: absolute;
  left: -24px;
  top: 0;
  display: block;
  z-index: -1;
  box-shadow: 32px 0 0 0 #fff, 0 -32px 0 0 #fff, 0 32px 0 0 #fff,
    32px 32px 0 0 #fff, 32px -32px 0 0 #fff, 0 0 32px 0 rgba(0, 0, 0, 0.15);
}

#MzLVGnWABfQfwfr .kNArNjlQsxxUqAG:after {
  content: "";
  width: 32px;
  height: 100%;
  position: absolute;
  right: -24px;
  top: 0;
  display: block;
  z-index: -1;
  box-shadow: -32px 0 0 0 #fff, 0 -32px 0 0 #fff, 0 32px 0 0 #fff,
    -32px 32px 0 0 #fff, -32px -32px 0 0 #fff, 0 0 32px 0 rgba(0, 0, 0, 0.15);
}

#pEQnuvbpfZCGkri {
   padding: 50px 0;
  background-image: linear-gradient(45deg, #f4e6cc, rgb(229, 215, 135));
  margin-bottom: 0;
}

#pEQnuvbpfZCGkri h1 {
  font-size: 2em;
  line-height: 130%;
  text-transform: uppercase;
  color: #323233;
  margin-bottom:15px;
}

#awiiIaiqEzNSEnp {
  min-height: 300px;
  background-image: url(assets/Brass-Thali-Set.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

#EDREEMEzmXkMajR {
  min-height: 300px;
  background-image: url(assets/Copper-Tea-Set.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

#pEQnuvbpfZCGkri p {
  background-color: #ffffff91;
  padding: 15px;
  border-radius: 8px;
}
 

.txBXbzbbtYlHxWY .EnJcvpRVkSyZFbU  .HzrebIOwkxXgRpi {
  animation: scale 1s ease-in-out infinite alternate;
  width: 100px;
  margin: 0 auto 30px;
  border-radius: 50%;
  box-shadow: 0 0 15px #cda34f;
  height: 100px;
  background: url(assets/Brass-Water-Jug.webp) no-repeat center center/cover;
}

.txBXbzbbtYlHxWY .EnJcvpRVkSyZFbU:nth-child(2)  .HzrebIOwkxXgRpi { 
  background: url(assets/Copper-Serving-Bowl.jpg) no-repeat center center/cover;
}

.txBXbzbbtYlHxWY .EnJcvpRVkSyZFbU:nth-child(3)  .HzrebIOwkxXgRpi { 
  background: url(assets/Copper-Tea-Set.jpg) no-repeat center center/cover;
}

#BMgliJTDsuyxQhS .LCwNQafPAYjpsID .aUcwpVxmFUEtPYE {
  color: #2c2929;
  border-radius: 8px;
  background-image: linear-gradient(45deg, rgb(238, 236, 130), rgb(255, 136, 0));
}

#BMgliJTDsuyxQhS .LCwNQafPAYjpsID .aUcwpVxmFUEtPYE h3 {
  color: #fff;
  text-shadow: 1px 1px #000;
}

@keyframes scale {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}

.WThqbjuVJawDcUe {
  background: #fff;
  width: fit-content;
  padding: 3px;
  border-radius: 5px;
  text-align: center;
  margin: 0 auto;
}

.xSTQVKVvSHIUKGc {
  padding: 50px 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.xSTQVKVvSHIUKGc .LgkdjwYlvnuhYAM {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 30px;
}

#zFBQokqwMYCEote {
  margin: 0 auto;
  background-image: linear-gradient(45deg, #cce8f4, rgb(255, 170, 0));
}

.xSTQVKVvSHIUKGc h2 {
  font-size: 36px;
}

.xSTQVKVvSHIUKGc p {
  color: #222;
  font-size: 20px;
   line-height: 130%;
  margin: 0;
}

@media screen and (max-width: 1680px) {
  body {
    font-size: 12pt;
  }
}
@media screen and (max-width: 1280px) {
  body {
    font-size: 11pt;
  }
  header.fZqTxLEkMTqusZt {
    margin: 0.75em 0 2.5em 0;
  }

  header.fZqTxLEkMTqusZt h2 {
    padding: 0 1em 0 1em;
  }
  #MzLVGnWABfQfwfr {
    padding: 0;
  }

  #MzLVGnWABfQfwfr .kNArNjlQsxxUqAG:before {
    left: -12px;
  }

  #MzLVGnWABfQfwfr .kNArNjlQsxxUqAG:after {
    right: -12px;
  }
}
@media screen and (max-width: 980px) {
  html,
  body {
    overflow-x: hidden;
  }

  #MzLVGnWABfQfwfr {
    padding: 3em 0 0 0;
  }

  #MzLVGnWABfQfwfr .kNArNjlQsxxUqAG:before,
  #MzLVGnWABfQfwfr .kNArNjlQsxxUqAG:after {
    display: none;
  }
}
@media (max-width: 736px) {
  body {
    font-size: 11pt;
  }

  .ssnVAsTQPtHMDWc .LgkdjwYlvnuhYAM {
    grid-template-columns: 1fr;
  }

  h2,
  h3,
  h4 {
    font-size: 1.25em;
  }
  section,
  article {
    margin-bottom: 20px;
  }

  .aUcwpVxmFUEtPYE {
    padding: 25px 15px 20px 15px;
  }

  .aUcwpVxmFUEtPYE .ObPvlNwmidpUVgf.BhKUKEvYAmlbTOY {
    left: 15px;
    top: 15px;
    margin: -40px 0 40px -30px;
  }

  .aUcwpVxmFUEtPYE.HAYmtlDBMaFsLni header {
    padding-top: 0;
    margin: 0 0 1em 0;
  }

  .aUcwpVxmFUEtPYE.HAYmtlDBMaFsLni h2 {
    font-size: 1.5em;
    line-height: 1.5em;
  }

  ul.IjRwIgaFSegDNAH li {
    padding: 0.8em 0 0.8em 7em;
  }

  ul.IjRwIgaFSegDNAH li h3 {
    top: 0.8em;
  }
  

  ul.zNYQmyvIsYgAyvs h3 {
    margin: 0 0 0.5em 0;
  }
  #MzLVGnWABfQfwfr {
    padding: 2em 0 0 0;
  }

  #MzLVGnWABfQfwfr h2 {
    font-size: 1.25em;
  }
}

@media (max-width: 600px) {

  .ljdNMYYZkmwGLKa .ObPvlNwmidpUVgf,
  #awiiIaiqEzNSEnp {
    min-height: 250px;
  }

  .LCwNQafPAYjpsID {
    padding: 15px;
  }

  .LCwNQafPAYjpsID p {
    font-size: 0.9em;
  }

  .xSTQVKVvSHIUKGc h2 {
    font-size: 24px;
  }

  .xSTQVKVvSHIUKGc .fQMNmgOzmEQOtjL {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .bci-inner {
    flex-direction: column;
  }

  ul.zNYQmyvIsYgAyvs li {
    grid-template-columns: 1fr 2fr;
  }
    ul.zNYQmyvIsYgAyvs li p {
      grid-column: span 3 ;
    }

    .kcusLJRdWVMLrKT header {
      padding: 2.5em 15px;
      font-size: 0.8em;
    }

    header.fZqTxLEkMTqusZt h2 {
      font-size: 1em;
          top: -0.85em;

    }
}
