.grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    margin-left: auto;
    margin-right: auto;
}

.grid > .grid__col--12 {
    grid-column: auto/span 12;
}

.card--wrap {
    background-color: #EAE8E1;
    padding: 0 16px;
}

.card--wrap .card {
    border-bottom: 1px solid #D6D2C4;
    padding: 24px;
    padding: 1.25em 1.25em;
}

.card--wrap .card:last-child {
    border: none;
}

.card--wrap .card p {
    margin-bottom: 0;
}

.hr--secondary {
    margin-top: 48px;
    margin-bottom: 48px;
}

.margin-btm--24 {
    margin-bottom: 24px;    
}

.margin-btm--48 {
    margin-bottom: 48px;
}

.container--sand {
    background-color: #EAE8E1;
    padding: 1.6em 1.8em .5em;
}

.search__container--bar {
    position: relative;
    max-width: 100%;
}

.search__container--bar > input[type="text"] {
    border-radius: 2px;
}

.search__container--bar > input[type="submit"]:hover {
    background: #;
}

.autocomplete__list {
    z-index: 1;
    transition: all 150ms ease-in-out;
    position: absolute;
    width: 100% !important;
    background-color: white;
    padding: 0px 12px;
    border-radius: 2px;
    box-shadow: 0px 10px 10px -10px #9B9C9A;
    max-height: 345px;
    overflow-y: scroll;
    overflow-x: hidden;
}

.autocomplete__item {
    cursor: pointer;
    padding: 12px 6px;
    border-bottom: 1px solid #D6D2C4;
    transition: all 100ms ease-in-out;
}

.autocomplete__item a {
    text-decoration: none;
    color: #373A36;
}

.autocomplete__item:last-child {
    border-bottom: none;
}

.autocomplete__item:hover {
    background-color: #F7F6F3;
}

.search__container--tool-tip {
    border-top: 1px solid #D6D2C4;
    padding-top: 24px;
}

p.secondary {
    font-size: 16px;
    margin-bottom: 8px;
}

ol.secondary li {
    font-size: 16px;
}

ul.list li {
    margin-bottom: 8px;
}

.contact-us p {
    margin-bottom: 8px;
}

.text--alpha {
    color: #A6192E;
}

@media only screen and (min-width: 768px){
    .grid > .grid__col-md--2 {
        grid-column: auto/span 2;
    }
    .grid > .grid__col-md--3 {
        grid-column: auto/span 3;
    }
    .grid > .grid__col-md--4 {
        grid-column: auto/span 4;
    }
    .grid > .grid__col-md--6 {
        grid-column: auto/span 6;
    }
    .grid > .grid__col-md--9 {
        grid-column: auto/span 9;
    }
    .grid > .grid__col-md--10 {
        grid-column: auto/span 10;
    }
    .card--wrap {
        padding: 24px 0;
    }
    .card--wrap .card {
        border-bottom: none;
        border-right: 1px solid #D6D2C4;
        padding: 0 24px;
    }
}

@media only screen and (min-width: 544px){
    grid-column-gap: 30px;
}
