﻿/* CSS for banner module using jQuery Cycle */

.cycle_banner_container {
    position: relative;
    z-index: 1;
    overflow: hidden;
    text-align: center;
}

.banner_overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 50;
}

.cycle_banner_container .banner_content {
    width: 100%;
    height: 100%;
}

.cycle_banner_container .banner_content img {
    width: 100%;
    height: 100%;
}

.cycle_banner_container .banner_item {
    width: 100% !important;
    height: 100% !important;
    background-position: 0px 0px;
    background-repeat: repeat-x;
}


.cycle_banner_container .banner_item .container {
    z-index:100;
}

.banner_item_description_column {
    position: absolute;
    top: 330px;
    left: 0;
}

.cycle_banner_container .banner_item_description_container {
    text-align: left;
    color: #fff;
    padding: 15px;
}

.banner_image {
    animation: animatedBackground 20s linear infinite alternate;
    z-index: 5;
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover !important;
}

.description_outer {
    position: absolute;
    top: 0;
    left: 0;
    height:100%;
    width:100%;
}

.cycle_banner_container .banner_item_link {
    display: block;
    position: absolute;
    background: url('../../../../_resources/images/blank.gif') repeat;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
}

.cycle_banner_container .banner_item_title {
    font-size: 2em;
    margin-bottom: 10px;
}

.cycle_banner_container .banner_item_description {
    padding-top: 0;
}

    .cycle_banner_container .banner_item_description h2 {
        font-family: var(--secondary-font);
        font-size: 2.5em;
        line-height: 1.2em;
        color: #fff;
    }

        .cycle_banner_container .banner_item_description h2 em,
        .cycle_banner_container .banner_item_description h3 em
        {
            color: var(--btn-blue-color);
        }

    .cycle_banner_container .banner_item_description h3 {
        font-family: var(--secondary-font);
        font-size: 1.8em;
        line-height: 1.3em;
        color: #fff;
    }

    .cycle_banner_container .banner_item_description hr {
        background-color: var(--btn-blue-color);
        color: var(--btn-blue-color);
        height: 2px;
    }

    .cycle_banner_container .banner_item_description .climate_btn {
        color: #fff !important;
    }

.cycle_banner_container .banner_pager {
    position: absolute;
    z-index: 100;
    bottom: 20px;
    right: 20px;
}

.cycle_banner_container .banner_pager a {
    display: block;
    float: left;
    margin-left: 6px;
    width: 20px;
    height: 20px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    color: #000000;
    text-decoration: none;
    text-align: center;
    font-size: 1.2em;
    line-height: 20px;
    background-color: #FFFFFF;
}

.cycle_banner_container .banner_pager a.cycle-pager-active {
    color: #FFFFFF;
    background-color: #ffffff;
}

.cycle_banner_container .banner_pager_next,
.cycle_banner_container .banner_pager_previous {
    position: absolute;
    top: 120px;
    font-size: 60px;
    z-index: 100;
    color: #666;
    color: rgba(0,0,0,0.6);
    cursor: pointer;
}

.cycle_banner_container .banner_pager_next:hover,
.cycle_banner_container .banner_pager_previous:hover {
    color: #000;
}

.cycle_banner_container .banner_pager_next {
    right: 25px;
}

.cycle_banner_container .banner_pager_previous {
    left: 25px;
}

a.edit_banner {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 100;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.cycle_banner_container .hero_tag {
    display: none;
    z-index: 9;
}

@keyframes animatedBackground {
    0% {
        transform: scale(1.1);
        -ms-transform: scale(1.1);
        /* IE 9 */
        -webkit-transform: scale(1.1);
        /* Safari and Chrome */
        -o-transform: scale(1.1);
        /* Opera */
        -moz-transform: scale(1.1);
        /* Firefox */
    }

    100% {
        transform: scale(1.3);
        -ms-transform: scale(1.3);
        /* IE 9 */
        -webkit-transform: scale(1.3);
        /* Safari and Chrome */
        -o-transform: scale(1.3);
        /* Opera */
        -moz-transform: scale(1.3);
        /* Firefox */
    }
}