
/******************** Our Story ********************/
.section-about-bg {
  position: relative;
  background: url(../images/banner/about.jpg) center;
  background-size: cover;
  width: 100%;
  height: 500px;
}
.section-about-bg::before {
  content: '';
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
.about-header-text {
  position: relative;
  z-index: 2;
  margin: auto;
  max-width: 550px;
  color: rgb(255, 255, 255);
  font-size: 30px;
  font-weight: 700;
  text-align: center;
}
.about-cards {
  position: relative;
  z-index: 2;
  margin: -4rem auto 10rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.about-cards > i {
  position: absolute;
  top: -50px;
  left: 30px;
  font-size: 100px;
  color: var(--primary-text);
}
.about-cards > div {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  padding: 4rem 2rem 1rem;
  background: var(--secondary-color);
}
.about-cards > div:nth-child(3) { background:var(--primary-text); }
.about-cards > div > img { height: 150px; }
.about-cards > div > p { color: var(--secondary-text); }

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 10rem;
}

.about-belief > div {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px;
}
.about-belief > div > div { 
    background: var(--secondary-color);
    border-radius: 220px 220px 20px 20px;
}
.about-belief > div > div > img {
  width: 100%;
  border-radius: 50%;
  box-shadow: 0 15px 15px rgba(0, 0, 0, 0.3);
}
.about-belief > div > div > p {
  padding: 2rem;
  color: var(--primary-text);
  font-weight: 600;
  line-height: 25px;
}

.about-slider {
  margin: 10rem auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.section-about-bg1 {
  margin: 10rem auto 0;
  padding: 10rem 0;
  position: relative;
  background: url(../images/others/bean-2.jpg) fixed center;
  background-size: cover;
}
.section-about-bg1::before {
  content: '';
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.about-text {
  position: relative;
  z-index: 2;
  margin: auto;
  max-width: 700px;
} 
.about-text > h2, 
.about-text > p {
  color: white;
}

/******************** Brew Guide ********************/
.brew-guide-bg {
  position: relative;
  background: url(../images/banner/brew-guide-header.jpg) fixed center;
  background-size: cover;
  width: 100%;
  height: 100%;
}
.brew-guide-bg::before {
  content: '';
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}
.brew-guide-text {
  position: relative;
  z-index: 2;
  text-align: center;
  margin: auto auto 50px;
  padding: 3rem;
  backdrop-filter: blur(10px);
  background: rgba(37, 26, 19, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 10px 10px 20px rgba(75, 50, 25, 0.7);
}
.brew-guide-text > h3,
.brew-guide-text > p {
  color: var(--secondary-text);
}
.brew-guide-text > h3 {
  font-weight: bold;
}
.brew-guides-cards {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.brew-guides-cards > .guide-card {
  display: grid;
  grid-template-columns: 1fr 2fr; 
  backdrop-filter: blur(10px);
  background: rgba(37, 26, 19, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 10px 10px 20px rgba(75, 50, 25, 0.7);
  overflow: hidden;
}
.brew-guides-cards > .guide-card > img {
  margin: auto;
  width: 120px;
  filter: drop-shadow(2px 2px 0px rgb(255, 136, 0));
}
.brew-guides-cards > .guide-card > div {
  padding: 2rem 3rem 2rem 0;
}
.brew-guides-cards > .guide-card > div > h3 {
  color: var(--secondary-color);
  font-weight: 800;
}
.brew-guides-cards > .guide-card > div > p,
.brew-guides-cards > .guide-card > div > a {
  color: var(--secondary-text);
  line-height: 25px;
  font-weight: 500;
}
.brew-guides-cards > .guide-card > div > a:hover {
  color: var(--secondary-color);
}

/******************** Brew Guide Page ********************/
.page-banner-section.guide { background-image: url(../images/others/brew-guides-stripe.png); }
.page-banner-section.espresso { background-image: url(../images/others/espresso-machines-grinders-stripe.png); }
.page-banner-section.v60 { background-image: url(../images/others/espresso-machines-grinders-stripe.png); }
.page-banner-section.stovetop { background-image: url(../images/others/espresso-machines-grinders-stripe.png); }
.page-banner-section.french { background-image: url(../images/others/espresso-machines-grinders-stripe.png); }
.page-banner-section.aero { background-image: url(../images/others/espresso-machines-grinders-stripe.png); }
.page-banner-section.drip { background-image: url(../images/others/espresso-machines-grinders-stripe.png); }
.page-banner-section.cold { background-image: url(../images/others/espresso-machines-grinders-stripe.png); }

.guide-page-header {
  padding: 5rem;
  background: var(--primary-color);
}
.guide-page-header > .guide-page-title {
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  gap: 20px;
}
.guide-page-header > .guide-page-title > div > img {
  height: 200px;
  filter: drop-shadow(4px 4px 2px var(--secondary-color));
}
.guide-page-header > .guide-page-title > div > h1 {
  font-weight: 700;
  margin-bottom: 20px;
}
.guide-page-header > .guide-page-title > div > p {
  color: var(--secondary-text);
}
.guide-page-header > .guide-page-text {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  gap: 20px;
} 
.guide-page-header > .guide-page-text > div > ul {
  margin-top: 20px;
  list-style: none;
}
.guide-page-header > .guide-page-text > div > ul > li {
  position: relative;
  padding-left: 15px;
  color: var(--secondary-text);
}
.guide-page-header > .guide-page-text > div > ul > li::before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 3px solid  var(--secondary-color);
  position: absolute;
  left: -15px;
  top: 10px;
}
.guide-page-header > .guide-page-text > div > ul {
  padding-left: 20px;
}
.guide-page-header > .guide-page-text > .guide-page-video > iframe {
  width: 100%;
  height: 400px;
}
.guide-page-content {
  padding: 5rem;
  background: var(--secondary-color);
}
.guide-page-content > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 50px;
}
.guide-page-content > h4 {
  margin-bottom: 3rem;
  color: var(--primary-text);
}
.guide-page-content > div > p > span {
  display: block;
  margin-bottom: 15px;
  font-size: 40px;
  font-weight: bold;
  color: var(--primary-text);
  border-bottom: 3px solid var(--primary-text);
}
.guide-page-content > div > p {
  color: var(--primary-text);
  font-weight: 600;
}

/* Policy Pages */
.content > div { margin: 2rem auto; }
.content > div ul { list-style: none; }


@media only screen and (max-width: 767px) {

  .page-banner-section {
    padding: 30px 0;
  }

  /******************** Our Story ********************/
  .section-about-bg {
    height: auto;
  }
  .about-header-text {
    max-width: 90%;
    font-size: 25px;
  }
  .about-cards {
    margin: -2rem auto 5rem;
    grid-template-columns: 1fr;
  }
  .about-content {
    grid-template-columns: 1fr;
    margin-bottom: 5rem;
  }
  .about-belief > div {
    grid-template-columns: 1fr;
  }
  .about-slider {
    margin: 5rem auto;
    grid-template-columns: 1fr;
  }

  /******************** Brew Guide ********************/
  .brew-guides-cards {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .brew-guides-cards > .guide-card {
    padding: 2rem;
    grid-template-columns: 1fr; 
    gap: 20px;
  }
  .brew-guides-cards > .guide-card > img {
    margin-left: 0;
    width: 100px;
  }
  .brew-guides-cards > .guide-card > div {
    padding: 0;
  }

  /******************** Brew Guide Page ********************/
  .guide-page-header {
    padding: 2rem;
  }
  .guide-page-header > .guide-page-title {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .guide-page-header > .guide-page-title > div:first-child {
    text-align: left;
  }
  .guide-page-header > .guide-page-title > div > img {
    height: 100px;
  }
  .guide-page-header > .guide-page-text {
    margin-top: 2rem;
    grid-template-columns: 1fr;
    gap: 30px;
  } 
  .guide-page-header > .guide-page-text > div > ul {
    margin-top: 0px;
  }
  .guide-page-header > .guide-page-text > .guide-page-video > iframe {
    height: 200px;
  }
  .guide-page-content {
    padding: 2rem;
  }
  .guide-page-content > div {
    grid-template-columns: 1fr;
    gap: 10px;
  }

}