/*********************
BASE (MOBILE) SIZE
This are the mobile styles. It's what people see on their phones. If
you set a great foundation, you won't need to add too many styles in
the other stylesheets. Remember, keep it light: Speed is Important.
*********************/

.blue-text * {
    color: #1f4961;
}
#upcoming h2 {
    color: #081538 !important;
    
    padding-bottom: 0.5em;
    position: relative;
}

#upcoming h2:after {
    border-bottom: 1px solid #fff;
    content: "";
    height: 1px;
    background-color: #fff;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
}
#upcoming ul {
    color: #b7b7b7;
    font-size: 2em;
    text-transform: uppercase;
    font-weight: 500;
    width: auto;
    margin: 0;
    letter-spacing: .09em;
}
#upcoming li {
    list-style: none;
}
    
/*********************
LARGER MOBILE DEVICES
This is for devices like the Galaxy Note or something that's
larger than an iPhone but smaller than a tablet. Let's call them
tweeners.
*********************/
@media only screen and (min-width: 481px) {



} 

/*********************
TABLET & SMALLER LAPTOPS
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/
@media only screen and (min-width: 768px) {

    .extra-top { margin-top: 6em; }
    #upcoming h2:after {
        width: 130%;
    }
} 

/*********************
DESKTOP
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/
@media only screen and (min-width: 1030px) {
    .b-section_simple-cta { /*margin-top: 6em;*/ }
    .extra-top { margin-top: 6em; }

    #upcoming h2 {
        font-size: 2.875em;
    }
    
    #upcoming ul {
        font-size: 2.815em;;
    }
    

} 

/*********************
LARGE VIEWING SIZE
This is for the larger monitors and possibly full screen viewers.
*********************/
@media only screen and (min-width: 1240px) {

    #upcoming h2:after {
        width: 145%;
    }

}
