/*
 * -- BASE STYLES --
 * Most of these are inherited from Base, but I want to change a few.
 */
body {
    color: #526066;
}

h2, h3 {
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 600;
    text-align:center;
}

h4 {
padding-left: 1em;
}
li>a>h4 {
margin:.3em;
}
p {
    line-height: 1.6em;
    padding: 0 1em;
}

a:hover, a:focus {
    text-decoration: underline;
}
a:active, a:hover {
    outline:0;
}
a {
    text-decoration: none;
}
h2.linked:hover {
    background-color: #000;
}

/*
 * -- Layout Styles --
 */
.l-content {
    margin: 0 auto;
}

.l-box {
    padding: 0.5em 2em;
}

/*
 * -- MENU STYLES --
 * Make the menu have a very faint box-shadow.
 */
.pure-menu {
    box-shadow: 0 1px 1px rgba(0,0,0, 0.10);
}

.pure-menu-link {
    padding: .5em .7em;
}


/*
 * -- BANNER --
 * The top banner with the headings. By using a combination
 * of `display: table;` and `display: table-cell;`, we can
 * vertically center the text.
 */

.banner {
    background: transparent url('../../assets/img/banner.jpg') 0 0 no-repeat;
    text-align: center;
    background-size: contain;
    background-position: center center;
    filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../img/banner.jpg', sizingMethod='scale');

    height: 200px;
    width: 100%;
    margin-bottom: .3em;
    display: table;
}

    .banner-head {
        display: table-cell;
        vertical-align: middle;
        margin-bottom: 0;
        font-size: 2em;
        color: white;
        font-weight: 500;
        text-shadow: 0 1px 1px black;
    }

.footer {
    background-size:     contain;   
    background-color: #2c4985;
    background-position: center center;
    /*height: 12em;*/
    color: #fff;
    text-align: center;

}
    .footer a {
        color: #ddd;
    }



/*
 * -- PRICING TABLE WRAPPER --
 * This element wraps up all the info table elements
 */
 .info-center {
    /*max-width: 70em;*/
    margin: 0 auto;
 }
 .info-tables,
 .information {
    /*max-width: 980px;*/
    margin: 0 auto;
 }
.info-tables {
    margin-bottom: 3.125em;
    text-align: left;
}

/*
 * -- PRICING TABLE  --
 * Every info table has the .info-table class
 */
.info-table {
    border: 1px solid #ddd;
    margin: 0 .5em;
    /*padding: 0 0 3em;*/
}

/*
 * -- PRICING TABLE HEADER COLORS --
 * Choose a different color based on the type of info table.
 */
.info-table-left .info-table-header {
    background: #2c4985;
}
.info-table-center .info-table-header {
    background: #2c4985;
}
.info-table-right .info-table-header {
    background: #2c4985;
}

/*
 * -- PRICING TABLE HEADER --
 * By default, a header is black/white, and has some styles for its <h2> name.
 */
.info-table-header {
    background: #01923f;
    color: #fff;
}
    .info-table-header h2 {
        margin: 0;
        padding: .5em .5em;
        font-size: 1em;
        font-weight: normal;

    }


/*
 * -- PRICING TABLE PRICE --
 * Styles for the price and the corresponding <span>per month</span>
 */
.info-table-price {
    font-size: 6em;
    margin: 0.2em 0 0;
    font-weight: 100;
}
    .info-table-price span {
        display: block;
        text-transform: uppercase;
        font-size: 0.2em;
        padding-bottom: 2em;
        font-weight: 400;
        color: rgba(255, 255, 255, 0.5);
        *color: #fff;
    }



/*
 * -- PRICING TABLE LIST --
 * Each info table has a <ul> which is denoted by the .table-list class
 */
.table-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: left;
}


/*
 * -- PRICING TABLE LIST ELEMENTS --
 * Styles for the individual list elements within each info table
 */
.table-list>li {
    padding: 0.8em 0.4em;
    background: #f7f7f7;
    border-bottom: 1px solid #e7e7e7;
}


/*
 * -- PRICING TABLE BUTTON --
 * Styles for the "Choose" button at the bottom of a info table.
 * This inherits from Pure Button.
 */
.button-choose {
    border: 1px solid #ccc;
    background: #fff;
    color: #333;
    border-radius: 2em;
    font-weight: bold;
    position: relative;
    bottom: -1.5em;
}

.information-head {
    color: black;
    font-weight: 500;
}

/* NEWS */
.news-date {
    font-size: 0.8em;
    color: #00a300;
}
.news-title {
    font-size: 1.2em;
}

/*
 * -- TABLET MEDIA QUERIES --
 * On tablets, we want to slightly adjust the size of the banner
 * text and add some vertical space between the various info tables
 */
@media(min-width: 767px) {

    .banner-head {
        font-size: 4em;
    }

    .info-table {
        margin-bottom: 0;
    }

}

/*
 * -- PHONE MEDIA QUERIES --
 * On phones, we want to reduce the height and font-size of the banner further
 */
@media (min-width: 480px) {
    .banner {
        height: 17em;
    }
    .banner-head {
        font-size: 3em;
    }
}

/* Customize Buttons */
.button-success,
.button-error,
.button-warning,
.button-secondary {
    color: white;
    border-radius: 4px;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

.button-success {
    background: rgb(28, 184, 65); /* this is a green */
}

.button-error {
    background: rgb(202, 60, 60); /* this is a maroon */
}

.button-warning {
    background: rgb(223, 117, 20); /* this is an orange */
}

.button-secondary {
    background: rgb(66, 184, 221); /* this is a light blue */
}

/* marquee */

.marquee {
    font-weight: bold;
    text-align:center;
    color:white;
}

.bold {
    font-weight: bold;
    text-align: right;
}
