.sort-container{
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.sort-container:first-of-type{
    margin-top: 100px;
}

.sort-container a{
    text-decoration: none;
    color: var(--colBlack);
    border-radius: 100px;
    padding: 5px 15px;
    margin-left: 20px;
}
.sort-fill{
    background-color: var(--colSec);
}
.sort-header{
    font-family: spectral-semibold-italic;
}

#section-shoes{
    width: 90%;
    margin: auto;
    padding: 100px 0;
    max-width: 1250px;
}

.shoe-section{
    margin-top: 100px;
}

.shoe-section-info{
    max-width: 800px;
}

.shoe-gallery{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
}

.shoe{
    width: 200px;
    margin-bottom: 40px;
    margin-right: 20px;
}

.shoe img{
    width: 200px;
    height: 200px;
    object-fit: cover;
}

.shoe-info{
    font-size: 16px;
    line-height: 20px;
    font-family: spectral-medium-italic
}

.sole-description{
    margin-top: 50px;
    width: 100%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}


@media only screen and (max-width: 1100px) {
    .shoe-gallery{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}

.shoe{
    width: 140px;
    margin-bottom: 20px;
    margin-left: 10px;
    margin-right: 10px;
}

.shoe img{
    width: 140px;
    height: 140px;
    object-fit: cover;
}
    
    #section-shoes{
    width: 90%;
    margin: auto;
    padding-bottom: 200px;
        padding-top: 50px;
    max-width: 1250px;
}
    
    .sort-container:first-of-type{
    margin-top: 50px;
}
    
    h3{
        text-align: center;
    }
    .h3-black:after {
    content: "";
    background: var(--colSec);
    position: absolute;
        transform: translateX(-50%);
    bottom: -5px;
    left: 50%;
    height: 2px;
    width: 50px;
}
    
    .shoe-info{
    text-align: center;
}
}