section.individual_button_module {
 width: 100%;
  padding: 0;
}
/* .individual_button_module {
 width: 100%; 
} */
.individual_button_module .buttons_wrapper {
 display: flex;
  align-items: center;
  gap: 10px;
}

/* *** Button 1 *** */
.individual_button_module .buttons_wrapper .btn, .individual_button_module .buttons_wrapper .btn2  {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  /* width: calc(50% - 50px);  /* 50px derived from 40px total of side padding on <a> elements, plus the gap */
  max-width: 100%; 
}
.individual_button_module .buttons_wrapper .btn a, .individual_button_module .buttons_wrapper .btn2 a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: center;
  padding: 20px 40px;
  border-radius: 100px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 700;
}
.individual_button_module .buttons_wrapper .btn a .btn-icon, .individual_button_module .buttons_wrapper .btn2 a .btn-icon {
  width: 24px;
  height: 24px;
}
.individual_button_module .buttons_wrapper .btn a:active, .individual_button_module .buttons_wrapper .btn2 a:active {
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
/* the below is a hardcoded value to get this element to sit properly in the Donors page "text + button" section. 
 * this is super bad practice and should be changed as soon as possible */
@media(max-width: 1254px) {
  .individual_button_module .buttons_wrapper {
    flex-wrap: wrap;
  }
}
@media(max-width: 991px) {
 .individual_button_module .buttons_wrapper {
   flex-wrap: wrap;
  }
}

@media(max-width: 776px) {

}