@charset "UTF-8";
/***!  /media/templates/site/avenir/css/mod_avenir_home_numbers.css?736373  !***/

.homeNumbers{
    display: flex;
    flex-direction: row;
    border-radius: 30px;
    overflow: hidden;
}
    .homeNumbers_content{
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 100%;
        padding: 60px;
        background: var(--color-6);
        color: var(--color-2);
        text-align: center;
    }
        .homeNumbers_title{
            color: var(--color-2);
            font-size: 30px;
            font-weight: 800;
            text-transform: none;
        }
        .homeNumbers_text{
            font-size: 30px;
        }
    .homeNumbers_numbers{
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 100%;
        padding: 60px;
        background: var(--color-4);
        color: var(--color-2);
    }
        .homeNumbers_number{
            width: 100%;
            color: var(--color-2);
            font-size: 24px;
            font-weight: 600;

            &:not(:last-child){
                padding-bottom: 15px;
                margin-bottom: 15px;
                border-bottom: 1px solid var(--color-2);
            }
        }
            .homeNumbers_number span{
                font-size: 36px;
                font-weight: 800;
            }

@media (max-width: 1024px) {

    .homeNumbers{
        flex-direction: column;
    }
    .homeNumbers_title{
        font-size: 24px;
    }
    .homeNumbers_text{
        font-size: 24px;
    }
    .homeNumbers_numbers{
        padding: 40px 60px;
    }
    .homeNumbers_number{
        font-size: 20px;
    }
    .homeNumbers_number span{
        font-size: 30px;
    }

}

@media (max-width: 768px) {

    .homeNumbers_content{
        padding: 30px;
    }
    .homeNumbers_title{
        font-size: 20px;
    }
    .homeNumbers_text{
        font-size: 20px;
    }
    .homeNumbers_numbers{
        padding: var(--global-padding);
    }
    .homeNumbers_number{
        font-size: 16px;

        &:not(:last-child){
            padding-bottom: 10px;
            margin-bottom: 10px;
        }
    }
    .homeNumbers_number span{
        font-size: 24px;
    }

}
