@media only screen and (min-width: 930px) {
  .custom-min-height {
    min-height: 55px; } }
@media only screen and (min-width: 750px) and (max-width: 930px) {
  .custom-min-height {
    min-height: 72px; } }

/* Styles for FAQ */
.faq > h2 {
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 20px; }
.faq .accordion {
  margin-top: 10px; }
  .faq .accordion button {
    text-transform: uppercase; }

.faq-social-icons {
  margin-top: 20px; }
  .faq-social-icons a {
    border: none !important;
    display: block;
    float: left; }
  .faq-social-icons svg {
    width: 40px;
    height: 40px;
    margin-right: 15px; }

/* Social ICON Styling */
.contact-social-icons {
  margin: auto;
  height: 40px;
  width: 120px;
  margin-bottom: 55px; }
  .contact-social-icons a {
    border: none !important;
    display: block;
    float: left; }
  .contact-social-icons svg {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    margin-left: 10px; }

/* Accordion Styles */
.accordion {
  /* I've added this for dev purposes only */
  margin-top: -60px; }
  .accordion button {
    display: block;
    font-size: 16px;
    text-transform: uppercase;
    text-align: left;
    letter-spacing: 1px;
    width: 100%;
    border-top: 0 !important;
    border-left: 0 !important;
    border-right: 0 !important;
    border-style: solid;
    border-width: thin;
    padding: 10px 0 10px 0;
    background: none; }
  .accordion > div {
    max-height: 0px;
    overflow: hidden;
    margin-top: 15px; }
    .accordion > div.active {
      max-height: 700px;
      overflow: auto;
      transition: max-height 0.4s ease;
      padding-bottom: 20px; }
