﻿/* CSS for banner module using jQuery Cycle */

.banner_branches {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    z-index: 100;
    width: 100%;
    opacity: 0.2;
}

.cycle_banner_container {
    position: relative;
    z-index: 1;
    overflow: hidden;
    text-align: center;
}

.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;
}

.banner_bg{
    position:absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    animation: zoom linear 50s infinite;
}

    .banner_bg.faded {
        /*        background: linear-gradient(180deg, rgba(255,255,255,0) 62%, rgba(10,10,10,0.4) 65%, rgba(0,0,0,0.4) 100%);*/
        background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(0,0,0,0.4) 100%);
        z-index: 1;
    }

@keyframes zoom{
    0%{
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.banner_item_description_column {
    position: absolute;
    min-width: 400px;
    right: 0;
    top: 75%;
    min-width: 400px;
    transform: translateY(-50%);
    z-index: 2;
}

.cycle_banner_container .banner_item_description_container {
    text-align: right;
    padding: 15px;
    font-size: 1.2em;
    color: #fff;
}

    .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;
    font-size: 1.2em;
}

    .cycle_banner_container .banner_item_description h1{
        font-size: 3em;
    }

    .cycle_banner_container .banner_item_description h1, .cycle_banner_container .banner_item_description h2 {
        margin: 0;
        font-weight: lighter;
    }
    .cycle_banner_container .banner_item_description h2{

    }

    .cycle_banner_container .banner_item_description p {
        margin: 5px 0 0 0;
    }

    .banner_item_description h1,
    .banner_item_description h2,
    .banner_item_description h3, {
           color: #000;
       }

    .cycle_banner_container .banner_item_description h1, .cycle_banner_container .banner_item_description h2, .cycle_banner_container .banner_item_description h3, .cycle_banner_container .banner_item_description h4, .cycle_banner_container .banner_item_description h5, .cycle_banner_container .banner_item_description h6 {
        color: #fff;
    }

.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: 8px;
    width: 30px;
    height: 4px;
    color: #000000;
    text-decoration: none;
    text-align: center;
    font-size: 1.2em;
    line-height: 20px;
    background-color: rgba(255,255,255,0.8);
    transition: all .3s linear;
}

    .cycle_banner_container .banner_pager a.cycle-pager-active {
        color: #FFFFFF;
        background-color: #b74721;
    }

.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;
}