h1{
    justify-content: center;
}
.fotos a{
    margin-top: 10px;
    margin-bottom: 10px;
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
}
.fotos a:nth-child(1),
.fotos a:nth-child(9){
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%
}
.fotos a:nth-child(2),
.fotos a:nth-child(3),
.fotos a:nth-child(4),
.fotos a:nth-child(5),
.fotos a:nth-child(6),
.fotos a:nth-child(7),
.fotos a:nth-child(8),
.fotos a:nth-child(10)
{
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}
.fotos a div{
    height: 280px;
    background-size: cover;
    background-position: center;
    position: relative;
    border: 1px solid #e0e0e0;
}
.fotos a div:before{
    content: '';
    background: rgba(0,0,0,.3);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transform: scale3d(0, 0, 0);
    transition: .5s;
    background-image: url("/catalog/view/theme/autopragma/images/hover-foto.svg");
    background-repeat: no-repeat;
    background-position: 50% 50%;
}
.fotos a:hover div:before{
    transform: scale3d(1, 1, 1);
}

.prokrut{
    display: flex;
    justify-content: center;
    margin-top: 60px;
}
.prokrut a img{
    transition: .5s;
}
.prokrut a:hover img{
    transform: rotate(360deg);
}

@media (min-width: 320px) and (max-width: 767px){
    h1{
        font-family: Oswald;
        font-style: normal;
        font-weight: bold;
        font-size: 26px !important;
        line-height: 140%;
        display: flex;
        align-items: center;
        letter-spacing: 0.03em;
        text-transform: uppercase;
        color: #434343;
        justify-content: flex-start;
    }
    .fotos a div{
        height: 150px;
    }
    .fotos a:nth-child(1),
    .fotos a:nth-child(6){
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .fotos a:nth-child(2),
    .fotos a:nth-child(3),
    .fotos a:nth-child(4),
    .fotos a:nth-child(5),
    .fotos a:nth-child(7),
    .fotos a:nth-child(8),
    .fotos a:nth-child(9),
    .fotos a:nth-child(10)
    {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .sort{
        display: none;
    }
}