.grid {
    display: grid;
}

.gap-x-8 {
    -moz-column-gap: 2rem;
    column-gap: 2rem;
}

@media (min-width: 640px) {
    .sm\:gap-y-16 {
        row-gap: 4rem;
    }
}

@media (min-width: 1024px) {
    .lg\:mt-28 {
        margin-top: 5rem;
    }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-4 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.flex {
    display: flex;
}

.flex-col-reverse {
    flex-direction: column-reverse;
}

.gap-y-3 {
    row-gap: .75rem;
}

.border-l {
    border-left-width: 2px;
    border-left-style: solid;
}

.border-white\/20 {
    border-color: black;
}

.pl-6 {
    padding-left: 1.5rem;
}

.text-base {
    font-size: 1rem;
    line-height: 1.5rem;
}

.leading-7 {
    line-height: 1.75rem;
}

.text-gray-300 {
    --tw-text-opacity: 1;
    color: rgb(0 0 0);
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.font-semibold {
    font-weight: 600;
}

.tracking-tight {
    letter-spacing: -.025em;
}

.text-\[\#bf9b30\] {
    --tw-text-opacity: 1;
    color: rgb(2 119 188);
}

