.clothes {
    background-image: url('../img/clothes.jpg');
    -webkit-background-size: cover;
    background-size: cover;
    height: 620px;
    background-repeat: no-repeat;
    background-position: center;
}

.clothes__item {
    width: 190px;
    height: 290px;
    margin: 0 50px;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
}

.clothes__item:nth-child(1) {
    background-image: url('../img/clothes-item-1.png');
}

.clothes__item:nth-child(2) {
    background-image: url('../img/clothes-item-2.png');
}

.clothes__item:nth-child(3) {
    background-image: url('../img/clothes-item-3.png');
}

.clothes__info {
    padding-top: 15px;
    opacity: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
    color: #fff;
}

.clothes__item:hover {
    border-color: #00aeef;
}

.clothes__item:hover .clothes__info {
    opacity: 1;
}

.clothes__info > h5 {
    padding: 10px 30px;
    width: 175px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 2.4em;
    background-color: #00aeef;
    text-transform: uppercase;
    display: inline-block;
    line-height: 1.2;
}

.clothes__info > p {
    padding: 15px 30px;
    font-size: 1.6em;
    line-height: 1.4;
}

.clothes__text {
    font-size: 2em;
    color: #fff;
    text-align: center;
    margin: 35px auto;
    line-height: 1.8;
}

@media (min-width: 1400px) {
    .clothes__item {
        width: 220px;
    }
}
@media (max-width: 1400px) {
    .clothes__info > p {
        font-size: 1.8em;
    }
}
@media (max-width: 790px) {
    .clothes__item {
        width: 240px;
        height: 300px;
        margin: 0 20px;
    }
}
@media (max-width: 640px) {
    .clothes{
        height: auto;
        padding-bottom: 1em;
    }
    .clothes__list {
        display: block;
    }
    .clothes__item{
        background-position: top center;
        height: 250px;
        width: 100%;
        margin: 10px 0;
    }
}