.container-grid-rates {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem 2rem;
}
.card_group {
  grid-column: 1 / -1;
  display: contents; /* allows cards to still participate in the grid */
}
.card_divider {
  grid-column: 1 / -1;
  border-bottom: 1px solid rgba(45, 39, 39, 0.3);
  padding-bottom: .5rem;
  margin-top: 1rem;
}
.rate-tabs-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 250px;
    flex: 0 0 250px;
    background: rgba(255, 255, 255, 0);
    border-style: solid;
    gap: 0px;
    width: 100%;
    flex-wrap: wrap;
}
.rate-tab {
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease-in-out;
    border-radius: 4px;
    overflow: hidden;
    border-bottom-width: 1px;
    padding: 1rem 1.2rem 1rem 1.2rem;
    border-style: solid;
    border-bottom-color: rgba(45, 39, 39, 0.2);
}
.rate-tab.active {
    border-bottom-color: rgba(255, 255, 255, 0);
    background: rgba(138, 36, 46, 0.1);
}
.rate-title {
    text-align: left;
    color: #2d2727;
    font-weight: 700;
}
.rate-tab.active .rate-title {
    color: #2d2727;
}