/* Ludlow Arts: Classical - grid-page style sheet*/

body {
    max-width: 1200px;
    min-width: 300px;
}

.package {
    max-width: 1500px;
    min-width: 300px;
    margin: 0 0.5% 0 0.5%;
}

.title {
    font-size: xx-large;
    font-weight: bold;
    text-align: center;
    line-height: 20px;
}

.container-page-heading {
    width: 100%;
    height: 43px;
    display: block;
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    line-height: 1.5;
    padding-top: 2px;
    padding-bottom: 6px;
    margin-bottom: 0;
    z-index: 0;
    color: white;
    background-image: linear-gradient(to right, #000000, #909090, #000000);
}

.container {
    /*main content*/
    display: grid;
    grid-column-gap: 3px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 4fr));
    grid-template-rows: auto;
    margin-top: 3px;
}

.content-box {
    min-height: 400px;
    display: flex;
    flex-direction: column;
    border-style: none none solid none;
    font-size: 12pt;
    padding: 0px, 15px, 0px, 15px;
    line-height: 1.0;
    margin-bottom: 20px;
    border-color: #009535;
    padding-bottom: -1px;
}

.fade {
    opacity: 1;
    transition: opacity .25s ease-in-out;
    -moz-transition: opacity .25s ease-in-out;
    -webkit-transition: opacity .25s ease-in-out;
}

.fade:hover {
    opacity: 0.75;
}

.align-center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}

.footer {
    padding-left: 15px;
    color: #dd0101;
    font-weight: bold;
    margin-top: auto;
}

