
.cycle_banner_container {
    position: relative;
    z-index: 1;
    overflow: hidden;
    text-align: center;
}

.page_home .cycle_banner_container {
    margin-bottom: 0;
}

.cycle_banner_container .banner_content {
    width: 100%;
    height: 100%;
}

    .cycle_banner_container .banner_content img {
        width: 100%;
        height: 100%;
    }

.cycle_banner_container .banner_item {
    position: relative;
    width: 100% !important;
    height: 100% !important;
}
    .cycle_banner_container .banner_item::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        width: 80%;
        background-image: url(../images/artp-arrows.png);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: bottom left;
        opacity: .25;
        z-index: 1;
        mix-blend-mode: overlay;
    }

    .cycle_banner_container .banner_item .bg_image {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-size: cover !important;
        background-position: center center !important;
        animation: zoom-in-zoom-out 25s linear infinite;
    }

@keyframes zoom-in-zoom-out {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.banner_item_description_column {
    position: absolute;
    z-index: 99;
    bottom: 120px;
    left: 0;
    min-width: 400px;
}

.cycle_banner_container .banner_item_description_container {
    text-align: left;
}

    .cycle_banner_container .banner_item_description_container > p {
        color: #fff;
        width: fit-content;
        background: var(--blue-darker);
        margin-bottom: 0;
        padding: 5px 15px;
        font-size: 1.2em;
        border-radius: var(--border-radius) var(--border-radius) 0 0;
    }

    .cycle_banner_container .banner_item_description_container .text_container {
        background: rgba(255,255,255,.6);
        padding: 1em;
    }

        .cycle_banner_container .banner_item_description_container .text_container .text {
            background: var(--pink-dark);
            color: #fff;
            padding: 0.5em 1em;
            border-radius: var(--border-radius);
            margin-bottom: 1em;
        }

.cycle_banner_container .banner_item_link {
    display: block;
    position: absolute;
    background: transparent;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 98;
}

.cycle_banner_container .banner_item_date {
}

    .cycle_banner_container .banner_item_date h1,
    .cycle_banner_container .banner_item_date h3 {
        text-align: center;
        color: #2b2b2b;
    }

        .cycle_banner_container .banner_item_date h1 small {
            opacity: 1;
        }

    .cycle_banner_container .banner_item_date h1 {
        margin-bottom: 0;
        margin-top: 5px;
        font-size: 3.5em;
    }

    .cycle_banner_container .banner_item_date h3 {
        margin-top: 3px;
    }
/*.cycle_banner_container h2 {
    color: #ffffff;
    font-size: 1.35em;
    font-weight: 300;
    margin-bottom: 20px;
}*/
/*.cycle_banner_container .banner_item_description {
    padding-top: 0;
    font-size: 1.2em;
}*/
.cycle_banner_container .banner_item_description p {
    margin: 5px 0 0 0;
}

.cycle_banner_container .banner_pager {
    position: absolute;
    z-index: 100;
    bottom: 20px;
    right: 20px;
}

    .cycle_banner_container .banner_pager a {
        background-color: rgba(255, 255, 255, 0.5);
        border-radius: 5px;
        color: #000000;
        display: block;
        float: left;
        font-size: 1.2em;
        height: 20px;
        line-height: 20px;
        margin-left: 6px;
        text-align: center;
        text-decoration: none;
        transition: background-color 0.2s ease;
        -moz-transition: background-color 0.2s ease;
        -webkit-transition: background-color 0.2s ease;
        -ms-transition: background-color 0.2s ease;
        -o-transition: background-color 0.2s ease;
        width: 20px;
    }

        .cycle_banner_container .banner_pager a.cycle-pager-active {
            color: #FFFFFF;
            background-color: rgba(255,255,255,1);
        }

.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;
}
