/**
 * 2019-2020 Afternet
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Academic Free License (AFL 3.0)
 *
 *  @author    Afternet <info@afternet.gr>
 *  @copyright 2019-2020 Afternet
 *  @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
 */

 .home-slider__content{
    display: block;
    position: relative;
    padding: 0;
}
.home-slider__img{
    display: block;
    width: 100%;
    max-width: none;
    height: auto;
}
.home-slider__img--desktop{
    display: none; 
}
.home-slider__img--mobile{
    display: block; 
}
.home-slider__box{
    display: block;
    padding: 20px 20px 40px 20px;
    width: 100%;
    background-color: #c3c3c3;
}
.home-slider__title{
    display: block;
    font-size: 25px;
    line-height: 1.2;
    font-weight: 300;
    color: #fff;
    padding: 0;
    margin-bottom: 10px;
}
.home-slider__text{
    display: block;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 300;
    color: #fff;
    padding: 0;
    margin-bottom: 15px;
}
@media (min-width: 768px){
    .home-slider__img--desktop{
        display: block;
    }
    .home-slider__img--mobile{
        display: none;
    }
    .home-slider__box{
        background-color: transparent;
        max-width: 320px;
        padding: 0;
        position: absolute;
        top: 133px;
        left: 92px;
    }
    .home-slider__title{
        font-size: 28px;
        margin-bottom: 25px;
    }
    .home-slider__text{
        font-size: 21px;
        margin-bottom: 30px;
    }
}