/* module_hero.css */
.module_hero {
    height: 512px;
	background-color: #000000;/* to clear WAVE contrast error */
}

.module_hero .image {
    height: 512px;
}

.module_hero .image {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

/*
    "focal-point" classes
    
    Use to anchor hero image to top or bottom of hero area 

    EX:
    <div class="image hero_support-group-meeting focal-point_top">
*/
.module_hero .focal-point_top {
    background-position: top;
}

.module_hero .focal-point_bottom {
    background-position: bottom;
}
/* END focal-point */

.module_hero .image .gradient {
    background: linear-gradient(90deg, rgba(30, 30, 30, 1), rgba(30, 30, 30, 0));
    height: 512px;
}

.module_hero.no-image .image .gradient {
    background: #6C9CA1;
}

.module_hero .text {
    position: relative;
    top: -512px;
    /*height: 352px;*/ /* 512 - 160 = 352 */
    margin-bottom: -512px;
    width: 640px;
    padding: 80px 0;
    margin-left: 60px;
}

.module_hero .text .breadcrumb {
    font-family: "Proxima Nova Bold", Arial, sans-serif;
    font-size: 14px;
    color: #ffffff;
    /*text-decoration: none;*/
    margin-bottom: 18px;
    display: inline-block;
}

.module_hero .text .breadcrumb i {
    margin-right: 6px;
    position: relative;
    top: 1px;
}

.module_hero .text h1 {
    font-size: 48px;
    font-family: "Proxima Nova Extra Bold", Arial, sans-serif;
    color: #ffffff;
    margin: 0 0 34px 0;
    text-align: left;
}

.module_hero .text .blurb {
    font-family: "Proxima Nova Semi Bold", Arial, sans-serif;
    color: #ffffff;
    font-size: 18px;
    margin: 0 0 46px 0;
}

.module_hero .text .blurb a,
.module_hero .text .blurb a:focus,
.module_hero .text .blurb a:visited {
    color: #ffffff;
}

.module_hero .text .button {
    font-family: "Proxima Nova Bold", Arial, sans-serif;
    text-transform: uppercase;
    color: #ffffff;
    border: 1px solid #ffffff;
    background-color: #007481;
    padding: 18px 20px;
    text-decoration: none;
    letter-spacing: 2px;
    font-size: 13px;
    /*line-height: 16px;*/
    /*margin: 0;*/
    margin: 0 1em 1em 0;
    display: inline-block;
    text-align: center;
    width: auto;
    transition: none;
}

.module_hero .text .button:last-child {
    margin: 0 1em 0 0;
}

.module_hero .text .button:hover,
.module_hero .text .button:focus {
    background-color: #000000;
}

.module_hero .text .button i {
    color: #ffffff;
}


@media only screen and (max-width: 1280px) {
    /*.module_hero .text {
        width: 60%;
    }*/
}

@media only screen and (max-width: 767px) {
    .module_hero {
        height: auto;
    }
    
    .module_hero .image {
        height: 306px;
    }

    .module_hero .image .gradient {
        background: linear-gradient(90deg, rgba(30, 30, 30, 0), rgba(30, 30, 30, 0));
        height: 306px;
    }

    .module_hero .text {
        top: 0;
        height: auto; /* 306 - 80 = 226 */
        margin-bottom: 0;
        width: 100%;
        padding: 40px 35px;
        margin-left: 0;
        background-color: #000000;
    }

    .module_hero .text h1 {
        font-size: 36px;
        margin: 0 0 24px 0;
    }
    
    .module_hero .text .blurb {
        margin: 0 0 36px 0;
    }
    
    .module_hero .text .button {
        border-color: rgba(255, 255, 255, 0.5);
    }
    
    .module_hero .text .button:hover {
        border-color: rgba(255, 255, 255, 1);
    }
}

@media only screen and (max-width: 480px) {
    .module_hero .text {
        padding: 40px 20px;
    }
    
    .module_hero .text h1 {
        font-size: 28px;
        margin: 0 0 18px 0;
    }
    
    .module_hero .text .blurb {
        font-family: "Proxima Nova Semi Bold", Arial, sans-serif;
        font-size: 18px;
        margin: 0 0 26px 0;
    }
    
    .module_hero .text .button {
        display: block;
        padding: 25px;
        margin: 0 0 1em 0;
    }
    
    .module_hero .text .button:last-child {
        margin: 0;
    }
}
