.supportBar {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: hsla(0, 0%, 28%, 1);
}
.supportBarContainer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 50%;
  padding: 0rem 1.25rem;
}
.supportBarContainer > h3 {
  color: var(--tertiary) !important;
  padding-top: 0rem;
}
.supportBarBtns {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}
.supportBarBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  background-color: var(--primary);
  color: var(--tertiary) !important;
  border: 0.2rem var(--primary);
  text-decoration: none;
  font-size: 1rem;
  cursor: pointer;
  margin: 1rem 1rem;
  padding: 0rem 0.5rem;
}
.supportBarBtn:hover {
  color: var(--primary) !important;
  background-color: var(--tertiary);
  border: 0.2rem solid red;
  transition: all 0.5s ease-out;
}
.supportBarBtn > a:visited {
  color: var(--tertiary) !important;
}
.supportBarBtn:hover > img {
  filter: none;
}
.supportBarBtn > img {
  filter: brightness(100);
  width: 2.75rem !important;
  margin: 0rem 1rem 0rem -0.1rem !important;
}
.supportBarBtn > span {
  margin: 1rem;
}
@media screen and (max-width: 1201px) {
  .supportBarContainer {
    width: 60%;
    flex-direction: column;
    align-items: left;
  }
  .supportBarBtns {
    justify-content: flex-end;
  }
}
@media screen and (max-width: 1023px) {
  .supportBarContainer {
    width: 90%;
    flex-direction: column;
    align-items: left;
  }
  .supportBarBtns {
    justify-content: flex-end;
  }
}
@media screen and (max-width: 767px) {
  .supportBarContainer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: left;
  }
  .supportBarBtns {
    justify-content: flex-end;
  }
  .supportBarBtn {
    min-width: 50%;
    margin: 1rem 1rem;
  }
}
@media screen and (max-width: 480px) {
  .supportBarContainer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: left;
  }
  .supportBarBtn {
    width: 100%;
    margin: 1rem 0rem;
  }
}
