/*
    Dark Blue #00275d;   0,39,93
    light blue ##5E90D4; 91,144,212
    Bright Green #80cd2f; rgba(128, 205, 47,1)
*/
.bulletin-item ul {
    list-style:none;
}
.bulletin-item ul li {
    padding:.7rem 0
}
.bulletin-item a {
    text-decoration: underline;
    color: #00275d !important
}

    .bulletin-item a:hover {
        color:#FFF;
    }

/*#region keyframes*/

@keyframes fadein {
    from {
        opacity: 0
    }

    to {
        opacity: 1;
    }
}

@-moz-keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-webkit-keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-ms-keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes toggle-up {
    100% {
        transform: rotate(180deg);
    }
}

@keyframes toggle-down {
    100% {
        transform: rotate(180deg);
    }
}

/*#endregion*/

/*#region hero image*/

#UpdatePanel1 {
    position:relative;
}

#hero-gradient {
    position: absolute;
    z-index: 20;
    height: 100%;
    width: 100%;
    background: -moz-linear-gradient(top, rgba(255,255,255,0.90) 100px, rgba(0,0,0,.35) 40%);
    background: -webkit-linear-gradient(top, rgba(255,255,255,0.90) 100px,rgba(0,0,0,.35) 40%);
    background: linear-gradient(to bottom, rgba(255,255,255,0.90) 100px,rgba(0,0,0,.35) 40%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FFF', endColorstr='#FFF',GradientType=0 );
}

#hero-image {
    height: 650px;
}

.imageHolder {
    width: 100%;
    height: 100%;
    background: #3a4568;
}

.slide-container {
    width: 100%;
    height: 650px;
    position:relative;
    top:0;
    z-index:0;
    background-position: center;
    background-size: cover;
    color: #fff;
    overflow: hidden;
    border-bottom:1px solid rgba(0,0,0,.35);
    -webkit-animation: fadein 1s; /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fadein 1s; /* Firefox < 16 */
    -ms-animation: fadein 1s; /* Internet Explorer */
    -o-animation: fadein 1s; /* Opera < 12.1 */
    animation: fadein 1s;
}

    .slide-container video {
        width: 100%;
        position: absolute;
        z-index: 10;
    }

    .slide-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    #btnPrevious {
        position: absolute;
        top: 40%;
        left: 1rem;
        z-index: 2;
        font-size: 6rem;
        color: #80cd2f;
        transition: all .25s;
    }

    #btnNext {
        position: absolute;
        top: 40%;
        right: 1rem;
        z-index: 2;
        font-size: 6rem;
        color: #80cd2f;
        transition: all .25s;
    }

    #btnPrevious:hover, #btnNext:hover {
        color: #5E90D4;
    }

    #pauseplay {
        z-index: 2;
        position: absolute;
        bottom: 2rem;
        right: 2rem;
        padding: 1rem;
        height: 50px;
        width: 50px;
        font-size: 2rem;
    }

    #pauseplay i {
        font-size: 2rem;
        position: absolute;
        top: 1rem;
        left: 1rem;
    }

    #pauseplay a {
        color: rgba(0,0,0,.35)
    }

        #pauseplay a:hover {
            color: #FFF
        }

    .thetext {
        line-height: 1
    }

    .hero-contentRight {
        top:30%;
        right: 10%;
        -webkit-animation: fadeIn 4s; /* Safari, Chrome and Opera > 12.1 */
        -moz-animation: fadeIn 4s; /* Firefox < 16 */
        -ms-animation: fadeIn 4s; /* Internet Explorer */
        -o-animation: fadeIn 4s; /* Opera < 12.1 */
        animation: fadeIn 4s;
    }

    .hero-contentLeft {
        top: 30%;
        left: 10%;
        -webkit-animation: fadeIn 4s; /* Safari, Chrome and Opera > 12.1 */
        -moz-animation: fadeIn 4s; /* Firefox < 16 */
        -ms-animation: fadeIn 4s; /* Internet Explorer */
        -o-animation: fadeIn 4s; /* Opera < 12.1 */
        animation: fadeIn 4s;
    }

    .hero-center-container {
        background: transparent;
        z-index: 200;
        position: absolute;
        bottom: 0;
        width: 100%;
        height: 100%;
        display: table;
        height: 100%;
    }

    .hero-center-container-inner {
        display: table-cell;
        vertical-align: middle;
    }

    .hero-center-container-inner > .hero-content {
        position: relative;
        text-align: center;
        width: 50%;
    }

    .hero-center-container-inner > .hero-content > .herotheButton {
        width: 100%;
        max-width: 600px;
        position: relative;
        margin: 1rem auto;
    }

    .hero-contentbox {
        position: absolute;
        z-index: 20;
        width: 30%;
    }

    .hero-contentNoBox {
        background: !important;
        border-left-style: none !important;
        border-left-color: inherit !important;
        border-left-width: medium;
        border-right-style: none !important;
        border-right-color: inherit !important;
        border-right-width: medium;
        border-top-style: none !important;
        border-top-color: inherit !important;
        border-top-width: medium;
        border-bottom-style: none !important;
        border-bottom-color: inherit !important;
        border-bottom-width: medium;
    }

    .hero-content {
        position: relative;
        top: -25px;
        background: transparent;
        z-index: 500;
        margin: auto;
        color: #FFF;
        font-weight: 400;
        font-size: 4.5rem;
        line-height: 1;
        text-shadow: 2px 4px 3px rgba(0,0,0,0.3);
        text-align: center;
        z-index: 60;
        max-width: 100%;
        -webkit-animation: fadein 4s; /* Safari, Chrome and Opera > 12.1 */
        -moz-animation: fadein 4s; /* Firefox < 16 */
        -ms-animation: fadein 4s; /* Internet Explorer */
        -o-animation: fadein 4s; /* Opera < 12.1 */
        animation: fadein 4s;
    }

    .herotheButton {
        font-size: 1.625rem;
        font-family: 'robotobold', sans-serif;
        color: #FFF;
        font-weight: bold;
        padding: .5rem;
        border: 2px solid #FFF;
        text-align: center;
        width: auto;
        transition: all .25s ease-in-out;
        cursor: pointer;
        margin-top: 1rem;
    }

    .herotheButton a, .herotheButton a:hover {
        color: #FFF;
    }

    .herotheButton, .hero-contentbox-gray .herotheButton {
        background-color: #00275d;
    }

    .herotheButton:hover {
        background: #5E90D4;
    }

    .herotheTitle {
        color: #FFF;
        font-weight: 400;
        font-size: 3.45rem;
        text-shadow: 2px 4px 3px rgba(0,0,0,0.1);
        font-family: 'Roboto Condensed', sans-serif;
        line-height:1;
    }

    .herotheTagLine {
        padding-top: .5rem;
        font-size: 1.75rem;
        color: #FFF;
        font-weight: normal;
        line-height: 1.15;
        text-shadow: 2px 4px 3px rgba(0,0,0,0.1);
    }

    .hero-center-container-inner .herotheTagLine {
        margin-top: 0;
    }

    .hero-contentbox-white, .hero-contentbox-blue, .hero-contentbox-gray, .hero-contentbox-green{
        position: absolute;
        padding: 2rem;
        background: transparent;
        text-align: left;
        z-index: 60;
        max-width: 100%;
        border: 1px solid rgba(255,255,255,.4);
        position: absolute;
        z-index: 20;
        width: 30%;
    }

    .hero-contentbox-white {
        background: rgba(255,255,255,.7);
    }

    .hero-contentbox-gray {
        background: rgba(0,0,0,.5);
    }

    .hero-contentbox-blue {
        background: rgba(0,39,93,.7);
    }

    .hero-contentbox-green {
        background: rgba(128, 205, 47,.7);
    }

    .hero-contentbox-white .herotheTitle {
        color: #00275d;        
    }

    .hero-contentbox-white .herotheTagLine {
        color: #00275d; 
    }

    .hero-contentbox-blue .herotheTitle {
        color: #FFF;       
    }

    .hero-contentbox-blue .herotheTagLine {
        color: #FFF;
    }

    .hero-contentbox-blue .herotheButton {
        background: #80cd2f;
    }

        .hero-contentbox-blue .herotheButton:hover {
            background: rgba(128,205,47,.7);
        }
/*#endregion*/


/*#region media breaks*/

/*Laptop*/
@media(max-width:1366px) {
    #UpdatePanel1 {
        position: relative;
        height: 460px;
        overflow: hidden;
        background: #4c83cf url(/img/bgpat.png) no-repeat -160px 50px;
        background-size: auto;
        background-size: cover
    }
    #hero-image {
        height: auto;
    }

    .slide-container img {
        height: 460px;
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
    }

    #btnPrevious, #btnNext {
        font-size: 4rem;        
    }
    .herotheTitle {
        font-size: 2.8rem;        
    }

    .herotheTagLine {
        font-size: 1.45rem;
    }

    .hero-contentRight {
        top: 5rem;
        right: 5.5rem;
    }

    .hero-contentLeft {
        top: 5rem;
        left: 5.5rem;
    }

    .herotheButton {
        font-size: 1.45rem;
    }
}

@media(max-width:1100px) {
    .hero-contentRight {
        top: 4rem;
        right: 5.5rem;
    }

    .hero-contentLeft {
        top: 4rem;
        left: 5.5rem;
    }
    
}

@media(max-width:950px) {
    #UpdatePanel1 {       
        height: 680px;       
    }
    #btnPrevious, #btnNext {
        font-size: 4rem;
        top: 50%
    }

    .herotheTitle {
        font-size: 2.75rem;
    }

    .slide-container {        
        position: relative;
        top: 130px;
        height:550px;
    }

    .slide-container img {
        height: 350px;        
    }

    #hero-gradient {
        background: -moz-linear-gradient(top, rgba(0,0,0,0.50) 0px, rgba(0,0,0,.35) 40%);
        background: -webkit-linear-gradient(top, rgba(0,0,0,0.50) 0px,rgba(0,0,0,.35) 40%);
        background: linear-gradient(to bottom, rgba(0,0,0,0.50) 0px,rgba(0,0,0,.35) 40%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000', endColorstr='#FFF',GradientType=0 );
    }

    .hero-content {
        position: relative;
        text-align: left !important;
        width: 50%;
        padding: 0;    
        top:0;
        margin:unset;
        width:100% !important;
    }

    .hero-center-container {
        height: 200px;
        left: 4rem;
        display: unset;
    }

    .hero-contentRight, .hero-contentLeft {
        top: auto;
        left: 4rem;
        width: 100%;
        text-align: left;
        right: unset;
        bottom: 0;
        height: 200px;
        padding-top:1rem;
    }
    .hero-contentbox-gray, .hero-contentbox-blue {
        background: transparent;
        border: none;        
        padding:1rem 0 0 0;
    }


    .herotheButton, .hero-center-container-inner > .hero-content > .herotheButton {
        width: auto;
        max-width: 600px;
        position: relative;
        margin: 1rem 0;
        font-size: 1.3rem;
        font-size: 18px !important;
        display: inline-block;
        bottom: -1rem;
        padding: .5rem !important;               
    }

    .herotheButton a {
        line-height: 1;
    }

    .herotheTagLine {
        font-size: 1.4rem;
        padding-top: .5rem;
    }

    
}

/*tablet*/
@media(max-width:768px) {
    #UpdatePanel1 {
        height: 580px;
    }
    .slide-container {
        position: relative;
        top: 130px;
        height: 450px;
    }

    .slide-container img {
        height: 260px;
    }


    .herotheTitle {
        font-size: 2.5rem;
        padding-top: 1rem;
    }
    .herotheTagLine {
        font-size: 1.25rem;
    }
    .herotheButton {
        font-size: 1.25rem;
    }

    .hero-center-container-inner > .hero-content > .herotheButton {
        width: 350px;
        max-width: 100%;
    }

    .hero-center-container {
        padding-top: 18rem;
    }

    #pauseplay i {
        left: 2rem;
    }

    .hero-contentRight, .hero-contentLeft {
        margin: auto;
        display: table-cell;
        vertical-align: middle;
        background: transparent;
        width: 90%;
        right: 0;
        left: 0;
        text-align: center;
        border: none;
    }

    .hero-contentRight .herotheButton, .hero-contentLeft .herotheButton {
        width: 250px;
        max-width: 100%;
        margin: 1rem auto;
    }
}

@media(max-width:590px) {
    #UpdatePanel1 {
        height: 480px;
    }
    .slide-container {
        position: relative;
        top: 120px;
        height: 370px;
    }
    .slide-container img {
        height: 190px;
    }
    .herotheTitle {
        font-size: 1.75rem;
        padding-top: 2rem;
    }
    .herotheTagLine {
        font-size: 1rem;
    }
    .herotheButton {
        font-size: 1rem !important;
    }
    #btnPrevious, #btnNext {
        font-size: 2rem;
        top: 55%;
    }
}

@media(max-width:500px) {
    #UpdatePanel1 {
        height: 480px;
    }
    .slide-container {
        position: relative;
        top: 100px;
        height: 350px;
    }
    .slide-container img {
        height: 150px;
    }
    #pauseplay {
        font-size: 1.5rem;
        right: 1rem;
        bottom: 1rem;
    }  
}
/*#endregion*/