:root {
    --color-1: black;
    --color-2: black;
    --color-3: #8d989e;
    --color-4: #C17e40;
    --color-5: #D6ae92;
    --color-6: #E6d7c4;
  }




h3 {
    font-family: 'Gilroy-light', sans-serif;
    font-size: 1.25rem;
}

.wrapper { 
    overflow:hidden;
    text-align: center;
  }

.wrapper h2 {
    color: var(--color-2);
    font-size: 1.5rem;
}
  .wrapper div {
     min-height: 200px;
     padding: 10px;
  }
  #one {
    float:left; 
    margin-right:20px;
    width:45%;
    border-top: 3px solid #C17e40;
  }
  
  #two { 
    background-color: white;
    overflow:hidden;
    margin:10px;
    min-height:170px;
  }

  .card_content {
      text-align: center;
  }

.card-prod p {
    padding: 5%;
    padding-top:0;
    line-height: 1.5rem;
}

#headshots {
    border-top: 1px solid var(--color-4);
}

#about h2 {
    font-size: 2rem;
    color: var(--color-2);
}

.cards_item {
    width: 400px!important;
}
/* Style the buttons that are used to open and close the accordion panel */
.accordion {
    background-color: white;
    color: var(--color-2);
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
    box-shadow: 0 20px 40px -14px rgba(0, 0, 0, 0.25);
    margin-bottom: 5%;

  }
  
  /* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
  .active, .accordion:hover {
    background-color: var(--color-6);
  }
  
  /* Style the accordion panel. Note: hidden by default */
  .panel {
    padding: 0 18px;
    background-color: white;
    display: none;
    overflow: hidden;
  }

  .accordion:after {
    content: '\02795'; /* Unicode character for "plus" sign (+) */
    font-size: 13px;
    float: right;
    margin-left: 5px;
  }
  
  .active:after {
    content: "\2796"; /* Unicode character for "minus" sign (-) */
  }

#faq {
    margin-bottom: 5%;
}
  
  @media screen and (max-width: 1000px) {
     #one { 
      float: none;
      margin-right:0;
      width:auto;      
    }
  }