.gf-pricing-table {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin: 0;
    border-left: 1px solid #B9B9B9;
}

.gf-pricing-card {
    font-family: 'Bulmer MT Std';
    position: relative;
    display: flex;
    flex-direction: column;
    border-width: 1px 1px 1px 0;
    border-style: solid;
    border-color: #B9B9B9;
    cursor: pointer;
    transition: border-color 0.3s, box-shadow 0.3s;
    text-align: center;
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
    .gf-pricing-table {
        grid-template-columns: repeat(2, 1fr);
    }
    .gf-pricing-card:nth-child(3),
    .gf-pricing-card:nth-child(4) {
        border-top: 0;
    }
}
@media screen and (max-width: 768px) {
    .gf-pricing-table {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
        border-left: none;
    }
    .gf-pricing-card {
        border-width: 1px 1px 1px 1px;
    }
    /*.tier,*/
    /*.title {*/
    /*    padding: 0 20px;*/
    /*}*/
}

.gf-pricing-card:before {
    border: 1px solid transparent;
    content: "";
    display: block;
    height: 100%;
    left: -1px;
    position: absolute;
    top: -1px;
    transition: border-color .2s cubic-bezier(.25,.46,.45,.94), visibility .2s cubic-bezier(.25,.46,.45,.94);
    visibility: hidden;
    width: 100%;
}

@media screen and (min-width: 1025px) {
    .gf-pricing-card:hover:before {
        border-color: #AF851F;
        visibility: visible;
    }
}

.gf-pricing-card .dot {
    position: relative;
    width: 20px;
    height: 20px;
    border: 1px solid #212121;
    border-radius: 50%;
    background-color: white;
    margin-bottom: 10px;
    display: inline-block;
}

.gf-pricing-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    pointer-events: none;
}

.gf-pricing-card.selected {
    border-color: #AF851F;
}

.gf-pricing-card.selected:before {
    border-color: #AF851F;
    visibility: visible;
}

.gf-pricing-card.selected .dot {
    border-color: #AF851F;
}

.gf-pricing-card.selected .dot:before {
    position: absolute;
    display: block;
    width: 12px;
    height: 12px;
    background-color: #AF851F;
    content: "";
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.gf-pricing-card__inner {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.gf-pricing-card .tier {
    font-family: 'Bulmer MT Std';
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 116%;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #B9B9B9;
    padding-top: 40px;
    padding-bottom: 10px;
}

.gf-pricing-card .title {
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 116%;
    color: #212121;
    padding-bottom: 30px;
}

.gf-pricing-card ul.features {
    font-family: hypatia-sans-pro, sans-serif;
    list-style: none !important;
    margin: 0;
    padding: 0 0 30px 0;
}

.gf-pricing-card .features li {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    padding-left: 20px;
    padding-right: 20px;
}

.gf-pricing-card .features li + li {
    padding-top: 10px;
    margin-top: 10px;
    border-top: 1px dotted #B9B9B9;
}

.gf-pricing-card .price {
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 116%;
    color: #212121;
    padding-bottom: 40px;
}

@media (max-width: 600px) {
    .gf-pricing-table {
        grid-template-columns: 1fr;
    }
}