/*a {*/
/*line-height: inherit;*/
/*color: #C4161C;*/
/*text-decoration: none;*/
/*cursor: pointer;*/
/*}*/

/*a:hover, a:focus {*/
/*color: #C4161C;*/
/*}*/

a img {
    border: 0;
}

.fullWidth {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    max-width: initial;
}

.gap {
    margin: 1em 0em 1em 0em;
}

.top-bar, .top-bar ul {
    color: #C4161C;
    background-color: #C4161C;
    /*Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ed1c24+0,a10c11+44,8b0304+100 *!*/
    /*background: rgb(237,28,36); !* Old browsers *!*/
    /*background: -moz-radial-gradient(center, ellipse cover,  rgba(237,28,36,1) 0%, rgba(161,12,17,1) 44%, rgba(139,3,4,1) 100%); !* FF3.6-15 *!*/
    /*background: -webkit-radial-gradient(center, ellipse cover,  rgba(237,28,36,1) 0%,rgba(161,12,17,1) 44%,rgba(139,3,4,1) 100%); !* Chrome10-25,Safari5.1-6 *!*/
    /*background: radial-gradient(ellipse at center,  rgba(237,28,36,1) 0%,rgba(161,12,17,1) 44%,rgba(139,3,4,1) 100%); !* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ *!*/
    /*filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ed1c24', endColorstr='#8b0304',GradientType=1 ); !* IE6-9 fallback on horizontal gradient *!*/
    padding: 0 .5rem 0 .5rem;
}

.menu a {
    line-height: inherit;
    color: white;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
}

.dropdown.menu > li.is-dropdown-submenu-parent > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: white transparent transparent;
    right: 5px;
    margin-top: -1px;
}
/* arrow change for header menu */
.dropdown.menu > li.is-dropdown-submenu-parent a:hover:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: #c4161c transparent transparent;
    right: 5px;
    margin-top: -1px;
}



.menu a:hover {
    font-weight: bold;
    background-color: white;
    color: #c4161c;
}

.dbwrap {
    width: 100%;
    margin: 0 auto;
    background-color: #C4161C;
    color: #FFF;
    padding: 20px 0px 20px 0px;
}

.blkwrap {
    width: 100%;
    margin: 0 auto;
    background-color: #000;
    color: #FFF;

}

.lbwrap {
    width: 100%;
    margin: 0 auto;
    background-color: #C4161C;
    color: #000;
    padding: 20px 0px 20px 0px;
}

.title {
    font-family: Arial;
    font-size: 20px;
    font-weight: bold;
    color: #C4161C;
    text-align: left;
}

.bannertext {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 150%;
    font-weight: bold;
    color: white;
    text-align: center;
    margin: 0;
}
.news_header {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 200%;
    font-weight: bold;
    color: black;
     margin: 0;
}

.button.custom {
    background-color: #C4161C;
}

.button.custom:hover {
    background-color: white;
    color: #C4161C;
}

/***********************************Horizontal Accordion************************************/
.accordion--home {
    margin: 0;
    padding: 0;
    width: 100%;
}

.accordion--home::after {
    clear: both;
    content: "";
    display: table;
}

.accordion--home img {
    display: block;
    max-width: 100%;
}

.accordion--home li.slide {
    position: relative;
    width: calc(100% / 3);
    display: block;
    overflow: hidden;
    float: left;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    height: 75vh;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.accordion--home li.slide:after {
    content: "";
    display: none;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    left: 0;
    top: 0;
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
    z-index: 10;
    position: absolute;
}

.accordion--home:hover li.slide {
    width: calc(50% / 2);
}

.accordion--home:hover li.slide:after {
    opacity: 1;
    display: block;
}

.accordion--home li.slide img {
    display: block;
}

.accordion--home li.slide:hover {
    width: 50%;
}

.accordion--home li.slide:hover:after {
    opacity: 0;
    display: none;
}

.accordion--home .image--content {
    position: absolute;
    top: 80%;
    left: 0;
    text-align: center;
    width: 100%;
    display: block;

}

.accordion--home .image--content h2 {
    text-align: center;
    color: lime;
    text-transform: uppercase;
    font-weight: bold;
    display: inline-block;
    line-height: 1;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
    font-size: 90%;
}

.accordion--home .image--content h2:before, .accordion--home .image--content h2:after {
    content: "";
    display: block;
    height: 1px;
    width: 100%;
    background-color: lime;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

.accordion--home .image--content h2:before {
    margin-bottom: 15px;
}

.accordion--home .image--content h2:after {
    margin-top: 10px;
}

.accordion--home .image--content ul {
    margin: 0;
    padding: 0;
}

.accordion--home .image--content ul li {
    display: inline-block;
    clear: right;
}

/********************************************************Horizontal Accordion End**************************/

.topbanner {
    width: 100%;
    margin: 0 auto;
    background-color: #000;
    color: #FFF;
    font-weight: bold;
}

.topbanner .txt {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 100%;
    font-weight: bold;
    color: #C4161C;
    text-align: center;
    margin: 0;
}

/*********************************************************Footer Wrap*****************************/

.footerwrap {
    color: #C4161C;
    background-color: #00192C;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#3b556a+0,00192c+100 */
    /*background: rgb(59,85,106); !* Old browsers *!*/
    /*background: -moz-radial-gradient(center, ellipse cover,  rgba(59,85,106,1) 0%, rgba(0,25,44,1) 100%); !* FF3.6-15 *!*/
    /*background: -webkit-radial-gradient(center, ellipse cover,  rgba(59,85,106,1) 0%,rgba(0,25,44,1) 100%); !* Chrome10-25,Safari5.1-6 *!*/
    /*background: radial-gradient(ellipse at center,  rgba(59,85,106,1) 0%,rgba(0,25,44,1) 100%); !* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ *!*/
    /*filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3b556a', endColorstr='#00192c',GradientType=1 ); !* IE6-9 fallback on horizontal gradient *!*/
    /*border-top: 1rem #c4161c solid;*/
    /*border-bottom: 1rem #c4161c solid;*/
    width: 100%;
    margin: 0 auto;
    padding-bottom: 25px;

}

.link {
    color: white;
    padding: 5px;
}

.link:hover {
    padding: 5px;
    color: #C4161C;
}
.link2 {
    color: black;
    padding: 5px;
}

.link2:hover {
    padding: 5px;
    color: #C4161C;
}

.page-wrap:after {
    content: "";
    display: block;
}
.hsf_copyright{
    color: white;
    font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
    font-size: 75%;
}
.logowrap {
    color: #C4161C;
    background-color: #00192C;
    /*!* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#3b556a+0,00192c+100 *!*/
    /*background: rgb(59,85,106); !* Old browsers *!*/
    /*background: -moz-radial-gradient(center, ellipse cover,  rgba(59,85,106,1) 0%, rgba(0,25,44,1) 100%); !* FF3.6-15 *!*/
    /*background: -webkit-radial-gradient(center, ellipse cover,  rgba(59,85,106,1) 0%,rgba(0,25,44,1) 100%); !* Chrome10-25,Safari5.1-6 *!*/
    /*background: radial-gradient(ellipse at center,  rgba(59,85,106,1) 0%,rgba(0,25,44,1) 100%); !* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ *!*/
    /*filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3b556a', endColorstr='#00192c',GradientType=1 ); !* IE6-9 fallback on horizontal gradient *!*/
    /*border-top: 1rem #c4161c solid;*/

}

.redbars {
    background-color: #C4161C;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ed1c24+0,a10c11+44,8b0304+100 */
    /*background: rgb(237,28,36); !* Old browsers *!*/
    /*background: -moz-radial-gradient(center, ellipse cover,  rgba(237,28,36,1) 0%, rgba(161,12,17,1) 44%, rgba(139,3,4,1) 100%); !* FF3.6-15 *!*/
    /*background: -webkit-radial-gradient(center, ellipse cover,  rgba(237,28,36,1) 0%,rgba(161,12,17,1) 44%,rgba(139,3,4,1) 100%); !* Chrome10-25,Safari5.1-6 *!*/
    /*background: radial-gradient(ellipse at center,  rgba(237,28,36,1) 0%,rgba(161,12,17,1) 44%,rgba(139,3,4,1) 100%); !* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ *!*/
    /*filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ed1c24', endColorstr='#8b0304',GradientType=1 ); !* IE6-9 fallback on horizontal gradient *!*/
    height: 1rem;
}

.communities {
    background-color:  red;
    color: white;
    border-radius: 10px;
    margin: 1em;
    padding: 2em 1em 2em 1em;
}
.zones {
    background-color:  blue;
    color: white;
    border-radius: 10px;
    margin: 1em;
    padding: 2em 1em 2em 1em;
}
.schools {
    background-color:  purple;
    color: white;
    border-radius: 10px;
    margin: 1em;
    padding: 2em 1em 2em 1em;
}
.workplaces {
    background-color:  green;
    color: white;
    border-radius: 10px;
    margin: 1em;
    padding: 2em 1em 2em 1em;
}
.hospitals {
    background-color:  orange;
    color: white;
    border-radius: 10px;
    margin: 1em;
    padding: 2em 1em 2em 1em;
}

.box_text {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 125%;
    font-weight: bold;
    color: white;
}

.red_box_news {
    background-color:  red;
    color: white;
    border-radius: 10px;
    margin: 1em;
    padding-top: 2em;
    padding-bottom: 2em;
}
.blue_box_news {
    background-color:  blue;
    color: white;
    border-radius: 10px;
    margin: 1em;
    padding-top: 2em;
    padding-bottom: 2em;
}
.purple_box_news {
    background-color:  purple;
    color: white;
    border-radius: 10px;
    margin: 1em;
    padding-top: 2em;
    padding-bottom: 2em;
}
.green_box_news {
    background-color:  green;
    color: white;
    border-radius: 10px;
    margin: 1em;
    padding-top: 2em;
    padding-bottom: 2em;
}

.red_box_resources {
    background-color:  red;
    color: white;
    border-radius: 10px;
    margin: 1em;
    padding-top: 2em;
    padding-bottom: 2em;
}
.blue_box_resources {
    background-color:  blue;
    color: white;
    border-radius: 10px;
    margin: 1em;
    padding-top: 2em;
    padding-bottom: 2em;
}
.purple_box_resources {
    background-color:  purple;
    color: white;
    border-radius: 10px;
    margin: 1em;
    padding-top: 2em;
    padding-bottom: 2em;
}
.green_box_resources {
    background-color:  green;
    color: white;
    border-radius: 10px;
    margin: 1em;
    padding-top: 2em;
    padding-bottom: 2em;
}
.orange_box_resources {
    background-color:  orange;
    color: white;
    border-radius: 10px;
    margin: 1em;
    padding: 2em 1em 2em 1em;
}

.termstitle {
    font-family: Arial;
    font-size: 14px;
    font-style: normal;
    line-height: normal;
    font-weight: bold;
    font-variant: normal;
    color: #C4161C;
    text-align: left;
    padding: 0px;
}
.topper {
    font-family: Arial;
    font-size: 26px;
    font-weight: bold;
    color: #000;
    text-align: center;
}





