/*FIX breadcrumbs on smartphone resolution*/
@media screen and (max-width: 570px) {
    .wrapper .breadcrumb-item {
        text-align: center;
        width: 100%;
        display: block;
        font-size: 14px;
    }

    .wrapper .breadcrumb.text-white .breadcrumb-item + .breadcrumb-item::before {
        display: none;
    }
}
/*CHANGE standard padding between <section> */
.section-padding{
    padding: 50px 0;
}
@media screen and (min-width:992px) {
    .section-padding{
        padding: 95px 0;
    }
}
/*FIX mobile content cut*/
@media screen and (max-width:768px) {
    .angled.no-angled-mobile::before{
        display: none!important;
    }
}