/* STYLES FOR MOBILE APP SLIDER */
.mas {
    padding: 25px 9.2% 50px 9.2%;
    max-width: unset !important;
    margin: 0 !important;
    position: relative;
}
.masSlide {
    text-align: center;
    margin: 0 20px;
}
.masSlide img {
    display: inline;
    max-height: 311px;
}
.masSlide h4 {
    margin: 3px 0 7px 0 !important;
}
.masSlide p {
    margin: 0 !important;
}
.mas .psacfControls {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 9%;
    bottom: 37px;
}
.masPrev {
    margin-right: 5px !important;
    cursor: pointer;
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
}
.masNext {
    margin-left: 5px !important;
    cursor: pointer;
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
}
.slick-list + .slick-next {
    display: none !important;
}

@media only screen and (max-width: 600px) {
    .mas {
        padding: 25px 15px 30px 15px;
    }
    .masControls {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 25px;
    }
    .masPrev {
        position: unset;
        transform: unset;
        margin-right: 15px !important;
    }
    .masNext {
        margin-left: 15px !important;
        position: unset;
        transform: unset;
    }
}