/* || COMPANY PAGES STYLES */
.page-subtitle,
.page-h3-title {
  margin-left: 1rem;
  color: #351c75;
}

.page-h3-title {
  font-size: 1.1rem;
  font-style: italic;
}

.card-text {
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
  margin-bottom: 0.8rem;
}

.faq-list {
  list-style-type: none;
  padding-inline-end: 0;
  padding-inline-start: 0;
}

.faq-list-item {
  margin-bottom: 0.8rem;
}

.mailto-anchor {
  color: #351c75 !important;
  text-decoration: none;
}

.remove-list-style {
  list-style-type: none;
}

/* FAQs Vertical Accordion credited to Monica Wheeler on CodePen  */
#faqs-section {
  width: 100%;
  display: block;
  margin-bottom: 4rem;
}

details {
  width: 75%;
  min-height: 2.5rem;
  max-width: 50rem;
  margin: 0 auto;
  padding: 1rem;
  position: relative;
  border: 0.1rem solid #ccc;
  box-sizing: border-box;
  transition: all 0.4s;
}

details+details {
  margin-top: 1.5rem;
}

details[open] {
  min-height: 2.5rem;
  background-color: #fff;
  box-shadow: 0.35rem 0.35rem 0.35rem #ccc;
}

summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  cursor: pointer;
}

summary:focus {
  outline: none;
}

summary:focus::after {
  content: "";
  height: 100%;
  width: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  box-shadow: 0 0 0 0.15rem #674ea780;
}

summary::-webkit-details-marker {
  display: none;
}

.control-icon {
  fill: #674ea7;
  transition: 0.4s;
  pointer-events: none;
}

.control-icon-close {
  display: none;
}

details[open] .control-icon-close {
  display: initial;
  transition: 0.4s;
}

details[open] .control-icon-expand {
  display: none;
}

/* Our Story Page */
.lorenzo-ferodo-img {
  max-height: 28.125rem;
  margin-top: 2rem;
}

.coffee-shop-img {
  max-height: 31.8rem;
  margin-top: 2rem;
}

.sign-up-h2 {
  margin-top: 3rem !important
}


/* Sustainability Page */
.icon {
  margin-left: 0.875rem;
  color: #351c75;
  font-size: 1.25rem;
}

/****************************************************************/

/* |||| MEDIA QUERIES  */

/* // Extra Small devices (iPhone 5, Galaxy Fold, 280px and up) */
@media (min-width: 280px) {

  .card-text {
    margin-top: 0.8rem;
  }

  .control-icon,
  .control-icon-close,
  .details[open] .control-icon-close,
  .details[open] .control-icon-expand {
    height: 1.5rem !important;
    width: 1.5rem !important;
  }

  .col-md-6 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  details {
    width: 96%;
  }

  .remove-list-style{
    padding-inline-start: 0;
  }
}

/* // Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .card-text {
    margin-top: 0.8rem;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {

  .control-icon,
  .control-icon-close,
  .details[open] .control-icon-close,
  .details[open] .control-icon-expand {
    height: 3rem;
    width: 3rem;
  }

  .col-md-6 {
    padding-left: 0.9375rem !important;
    padding-right: 0.9375rem !important;
  }

  .remove-list-style{
    padding-inline-start: 1.25rem;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  
  details {
    width: 75%;
  }

  .remove-list-style{
    padding-inline-start: 2.5rem;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container-fluid {
    max-width: 80%;
  }
}

/* Extra extra large devices (large desktops, 2560px and up) */
@media (min-width: 2560px) {

  /* Sustainability Page */
  .icon {
    margin-left: 1.15rem;
    font-size: 1.75rem;
  }

  /* Our Story Page */
  .lorenzo-ferodo-img {
    max-height: 37.125rem
  }

  .coffee-shop-img {
    max-height: 41.8rem
  }

  .sign-up-h2 {
    margin-top: 5rem !important
  }

  /* FAQs Vertical Accordion credited to Monica Wheeler on CodePen  */
  #faqs-section {
    margin-bottom: 7rem;
  }

  details {
    width: 75%;
    max-width: 80rem;
  }

  details+details {
    margin-top: 3rem;
  }
}