.page__container {
    max-width: 1240px;
    margin: 0 auto;
}

/* Grid */

.grid {
    display: block;
    list-style: none;
    padding: 0;
    margin: 0;
    margin-left: -8px;
    font-size: 0rem;
}

.grid--center {
    text-align: center;
}

.grid--flush {
    margin-left: 0;
}

.grid__cell {
    box-sizing: border-box;
    display: inline-block;
    width: auto;
    padding: 0;
    padding-left: 0;
    margin: 0;
    vertical-align: middle;
    font-size: 1rem;
    text-align: center;
}

/* Card */

.card {
    box-shadow: 0 0 2px 0 #d1d2d4;
    margin: 0 12px 24px;
    width: 350px;
    background: #ffffff;
    overflow: hidden;
    -webkit-transition: box-shadow 0.2s ease-out;
    transition: box-shadow 0.2s ease-out;
}

.card:hover {
    box-shadow: 0 0 2px 0 gray; 
}

.card__header {
    display: block;
    height: 280px;
    background-color: #d1d2d4;
}

.card__header-heading {
    width: calc(100% - 16px);
    float: left;
    color: #303541;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    padding: 16px 16px 4px;
}

.card__header-subheading {
    width: calc(100% - 16px);
    float: left;
    color: #303541;
    line-height: 1.25;
    text-overflow: ellipsis;
    /* white-space: nowrap; */
    overflow: hidden;
    padding: 0px 16px 16px;
    text-align: left;
    text-transform: uppercase;
}

.card__body {
    position: relative;
    padding: 16px;
    width: 350px;
    /* temporarily changed height from 345 to 500 for Holiday Hours*/
    height: 345px;
    font-size: 14px;
    background-color: white;
    overflow: hidden;
    text-align: left;
}

.card__button {
    opacity: 0;
    transition: opacity 0.2s ease-out;
}

.card_button--primary {
    margin:  0;
    padding: 0;
    color: inherit;
    font: inherit;
    line-height: normal;
    background: none;
    border: 0;
    border-radius: 0;
    overflow: visible;
    user-select: none;
    display: inline-block;
    padding: 8px 12px;
    color: white !important;
    background: #c8102e;
    cursor: pointer;
    border-radius: 4px;
    height: auto;
    font-weight: bold;
    white-space: nowrap;
}

.card:hover .card__button {
    opacity: 1;
}

.card__button:before {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(light-gray, 0.4);
    content: '';
}

.card__button-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Subscribe Button */

.subscribe-button {
    padding: 9px 25px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    background-color: white; 
    color: #c8102e; 
    border: 2px solid #c8102e;
}

hr.new1 {
    border: 1px solid #c8102e;
    width: 85%
}

/* Typography */

.page__heading-h1 {
    text-align: center;
    color: #c8102e;
    text-transform: uppercase;
    font-size: 29px;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 16px;
}

.page__heading-h2 {
    color: white;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 28px;
    margin: 0;
}

.page__heading-h3 {
    font-size: 14px;
    text-transform: uppercase;
    color: #c8102e;
    font-weight: bold;
}

.page__heading-h3--no-margin {
    font-size: 14px;
    text-transform: uppercase;
    color: #c8102e;
    font-weight: bold;
    margin: 0;
}

.page__heading-h3--center {
    font-size: 14px;
    text-transform: uppercase;
    color: #c8102e;
    font-weight: bold;
    text-align: center;
}

.page__heading-h4 {
    color: white;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 12px;
    margin: 0;
}

.page__heading-h5 {
    color: white;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 19px;
    margin: 0;
    line-height: 1.4;
}

.page__heading-h5--black {
    color: black;
    text-align: left;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 19px;
    margin: 0;
    line-height: 1.4;
}

.page__body-p {
    font-size: 12px;
    line-height: 1.8;
}

.page__body-p--bold {
    font-size: 12px;
    line-height: 1.8;
    font-weight: bold;
}

.page__body-p--center {
    text-align: center;
    font-size: 12px;
    line-height: 1.8;
    padding: 0 16px;
}


/* Forms */

.form--condensed {
    width: 50%;
    margin: 0 auto;
}

.form-label {
    font-weight: bold;
}

.form-label span{
    color: #c8102e;
}

.form-hidden-field {
    display: none;
}

.form-select {
    width: 100%;
    height: 45px;
}

.error {
  color: #ff0000;
  font-style: italic;
  font-size: 11px;
}


/* Header */

.page__header {
    position: relative
}

.page__banner--no-image {
    background-color: #c8102e;
    color: white;
    text-align: center;
    font-weight: bold;
    padding: 40px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 32px;
}

.page__header-image {
    width: 100%;
}

.page__sub-header-image {
    width: 100%;
    margin-bottom: 16px
}

.page__header-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #c8102e;
    padding: 18px;
    width: 380px;
}


/* Footer */

.page__footer {
    position: relative;
    height: 120px;
}

.page__footer-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #c8102e;
    padding: 12px;
    width: 360px;
}


/* Content Sections */

.page__text-section {
    width: 75%;
    display: block;
    margin: 24px auto;
}

.page__columns-section {
    display: table;
    width: 100%;
    border-spacing: 16px 0px;
    margin-bottom: 16px;
}

.page__column--50 {
    width: 50%;
    display: table-cell;
}

.page__column--40 {
    width: 40%;
    display: table-cell;
}

/* Content */

.page__content-image {
    width: 100%;
    margin-bottom: 14px;
}

.page__content--mobile {
    display: none;
    margin-bottom: 14px;
}

/* Table */

.table--100 {
    width: 100%;
}

.table-cell {
    font-size: 12px;
    padding-bottom: 8px;
}

.table-cell--right {
   text-align: right;
}

.table-cell--bold {
    font-weight: bold;
}

.table-cell--link {
    color: #007bff;
}

.table-cell--link:hover {
    text-decoration: underline;
}

@media screen and (max-width: 640px) {
    
    .page__heading-h1 { 
        font-size: 18px;
    }

    .page__heading-h2 {
        font-size: 16px;
    }

    .page__heading-h4 {
        font-size: 8px;
    }

    .page__heading-h5 {
        font-size: 12px;
    }

    /* Header */

    .page__header-caption {
        width: 235px;
        padding: 12px 8px;
    }

    .page__footer-caption {
        width: 235px;
        padding: 12px 8px;
    }


    /* Section */

    .page__columns-section {
        display: block;
    }

    .page__text-section {
        width: 100%;
    }

    .page__column--50 {
        width: 100%;
        display: block;
        margin-bottom: 16px;
    }

    .page__column--margin {
      padding: 0 16px;
    }


    /* Content */

    .page__content--desktop {
        display: none;  
    }

    .page__content--mobile {
        display: block;
    }

    /* Content */
    
    .form--condensed {
      width: 90%;
      margin: 0 auto;
    }
}