﻿
/* |<------------------>|        */
/* |  xs  |  sm  |  md  |  lg  | */
@media screen and (max-width: 1199px) {

    .cycle_banner_container {
        height: 550px !important;
    }

        .cycle_banner_container .banner_item_title {
            font-size: 3.4em;
        }

    @keyframes move {
        0% {
            background-size: 120%;
        }

        100% {
            background-size: 150%;
        }
    }
}

/*               |<---->|        */
/* |  xs  |  sm  |  md  |  lg  | */
@media screen and (max-width: 1199px) and (min-width: 992px) {

    .cycle_banner_container .banner_pager {
        margin-top: 10px;
    }
}

/*        |<---->|                      */
/* |  xs  |  sm  |  md  |  lg  | */
@media screen and (max-width: 992px) and (min-width: 767px){
    @keyframes move {
        0% {
            background-size: 200%;
        }

        100% {
            background-size: 220%;
        }
    }
}

/* |<---->|                      */
/* |  xs  |  sm  |  md  |  lg  | */
@media screen and (max-width: 767px) {

    @keyframes move {
        0% {
            background-size: 290%;
        }

        100% {
            background-size: 320%;
        }
    }

    .page_home .banner_item_description_column {
        top: 5vh;
        width: auto !important;
    }

    .banner_item_description_column {
        left: 0;
        margin: 0 auto;
        min-width: unset;
        right: 0;
        top: 5vh;
    }

    .banner_item_description h1 {
        font-size: 1.2em;
        margin-top: 10px;
    }

    .banner_btn {
        font-size: 0.9em;
        margin: 30px 0 0;
        padding: 2px 20px;
    }

    .cycle_banner_container {
        height: 550px !important;
    }

    .cycle_banner_container .banner_pager {
        display: none;
        margin-top: 20px;
    }

    .cycle_banner_container .banner_pager a {
        width: 15px;
        height: 15px;
    }

    .cycle_banner_container .banner_pager_previous,
    .cycle_banner_container .banner_pager_next {
        display: none;
    }

    a.edit_banner {
        display: none;
    }

    .cycle_banner_container .banner_item_description_container {
        color: #fff;
        padding: 15px;
        margin-top: 30px;
        background-color: var(--pink-alt);
        width: 100vw;
        margin-left: -15px;
        height: 100%;
        position: relative;
    }
}

/* |<-->|500                     */
/* |  xs  |  sm  |  md  |  lg  | */
@media screen and (max-width: 500px) {

    .cycle_banner_container {
        height: 400px !important;
    }

        .cycle_banner_container .banner_item_title {
            color: white;
            font-size: 26px;
            line-height: 35px;
            place-self: anchor-center;
        }

    .banner_item_description h1 {
        font-size: 1em;
    }


    .banner_item_description h1 strong {
        display: inline;
        font-size: 1em;
    }

    .banner_btn {
        margin: 0;
    }

    .cycle_banner_container .banner_pager a {
        width: 20px;
        height: 20px;
    }
}