/* ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- */
#calendar main#layout-content section.layout-section#front {
    padding-top: 120px;
    padding-bottom: 120px;
}

    #calendar main#layout-content section.layout-section#front > .section-center {}

        #calendar main#layout-content section.layout-section#front > .section-center > h1 {
            position: relative;
            float: left;
            width: 100.0%;
            margin: 0;
            font-size: 40px;
            text-align: center;
            text-transform: uppercase;
        }

        @media (max-width: 768px) {
            #calendar main#layout-content section.layout-section#front > .section-center > h1 {
                position: relative;
                float: left;
                width: 100.0%;
                margin: 0;
                font-size: 45px;
                font-weight: 500;
                text-align: center;
                text-transform: uppercase;

            }
        }

        #calendar main#layout-content section.layout-section#front > .section-center > h2 {
            position: relative;
            float: left;
            width: 100.0%;
            margin: 50px 0 0;
            font-size: 20px;
            font-weight: 400;
            text-align: center;
        }

#calendar input[type="search"] {
    position: relative;
    float: left;
    left: 50.0%;
    width: 300px;
    max-width: 100.0%;
    height: 36px;
    padding: 8px 16px;
    border: 0;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    margin-bottom: 64px;
    font-size: 13px;
    font-weight: 400;
    text-align: center;
    background-color: #ffffff;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-box-shadow: var(--shadow-elevation-3);
    -moz-box-shadow: var(--shadow-elevation-3);
    box-shadow: var(--shadow-elevation-3);
    -webkit-transform: translateX(-50.0%);
    -moz-transform: translateX(-50.0%);
    -ms-transform: translateX(-50.0%);
    -o-transform: translateX(-50.0%);
    transform: translateX(-50.0%);
}

/* ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- */

#calendar .card {
    position: relative;
    float: left;
    padding: 0 10px;
    margin-bottom: 4.0%;
    overflow: hidden;
}
@media (max-width: 768px) {
    #calendar .card {
        width: 100.0%;
    }

    #calendar .card:not(:nth-child(1n+1)) {
        margin-left: 0.0%;
    }

    #calendar .card:nth-child(1n+1) {
        clear: both;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    #calendar .card {
        width: 49.0%;
    }

    #calendar .card:not(:nth-child(2n+1)) {
        margin-left: 2.0%;
    }

    #calendar .card:nth-child(2n+1) {
        clear: both;
    }
}

@media (min-width: 1025px) and (max-width: 1280px) {
    #calendar .card {
        width: 32.0%;
    }

    #calendar .card:not(:nth-child(3n+1)) {
        margin-left: 2.0%;
    }

    #calendar .card:nth-child(3n+1) {
        clear: both;
    }
}

@media (min-width: 1281px) {
    #calendar .card {
        width: 32.0%;
    }

    #calendar .card:not(:nth-child(3n+1)) {
        margin-left: 2.0%;
    }

    #calendar .card:nth-child(3n+1) {
        clear: both;
    }
}

#calendar .card:target {
    width: 100.0%;
}

    #calendar .card > .card-header {
        position: relative;
        float: left;
        width: 100.0%;
        padding: 30.0% 0;
    }

        #calendar .card > .card-header > .card-image {
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            right: 0;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }

    #calendar .card > .card-content {
        position: relative;
        float: left;
        left: 50.0%;
        width: 100.0%;
        padding: 20px;
        -webkit-transform: translateX(-50.0%);
        -moz-transform: translateX(-50.0%);
        -ms-transform: translateX(-50.0%);
        -o-transform: translateX(-50.0%);
        transform: translateX(-50.0%);
        background-color: rgba(255, 255, 255, 1);
    }

    #calendar .card.card_featured > .card-content {
        border: 3px solid #808686;
        padding: 17px;
    }

        #calendar .card > .card-content > .card-datetime {
            position: relative;
            float: left;
            padding: 6px;
            margin-top: -30px;
            font-size: 16px;
            color: rgba(255, 255, 255, 1);
            background-color: #004f70;
        }

        #calendar .card > .card-content > .card-title {
            position: relative;
            float: left;
            width: 100.0%;
            height: 38px;
            margin: 15px 0 0;
            font-size: 16px;
            color: #004f70;
            display: -webkit-box;
            display: -moz-box;
            display: box;
            -webkit-box-orient: vertical;
            -moz-box-orient: vertical;
            -ms-box-orient: vertical;
            -o-box-orient: vertical;
            box-orient: vertical;
            -webkit-line-clamp: 2;
            -moz-line-clamp: 2;
            -ms-line-clamp: 2;
            -o-line-clamp: 2;
            line-clamp: 2;
            overflow: hidden;
        }

        #calendar .card > .card-content > .card-description {
            position: relative;
            float: left;
            width: 100.0%;
            height: 120px;
            margin: 10px 0 10px;
            line-height: 17px;
            font-size: 12px;
            color: rgba(0, 0, 0, 1);
            display: -webkit-box;
            display: -moz-box;
            display: box;
            -webkit-box-orient: vertical;
            -moz-box-orient: vertical;
            -ms-box-orient: vertical;
            -o-box-orient: vertical;
            box-orient: vertical;
            -webkit-line-clamp: 7;
            -moz-line-clamp: 7;
            -ms-line-clamp: 7;
            -o-line-clamp: 7;
            line-clamp: 7;
            overflow: hidden;
        }

        #calendar .card > .card-content > .attribute {
            margin: 10px 0 0;
        }

            #calendar .card > .card-content > .attribute > i {
                color: #004f70;
            }

            #calendar .card > .card-content > .attribute > span {
                font-size: 10px;
                color: rgba(0, 0, 0, 1);
            }

                #calendar .card > .card-content > .attribute > span > a {
                    text-decoration: none;
                    color: #004f70;
                }

        .card-featured {
            position: absolute;
            top: 8px;
            right: 8px;
            width: 20px;
            height: 20px;
            line-height: 20px;
            font-size: 20px;
            color: #808686;
        }