.sales-block {
    position: relative;
}

.maker {
    position: relative;
    margin: 50px auto;
}

.maker p {
    font-size: 20px;
    font-weight: bold;
}

.makerimg {
    display: flex;
}

.makerimg img {
    position: relative;
    height: 100px;
    box-shadow: 1px 1px 10px #0000001c;
    margin:10px;
}

.sales {
    position: relative;
    display: flex;
}

.item {
    position: relative;
    display: flex;
    margin: 10px;
}

.itemimg {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 10px;
}

.itemimg img {
    width: 100%;
    min-height: 350px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.itemdetail {
    position: relative;
    padding: 0 10px;
}

.itemdetail h5{
    font-size: 25px;
}

.itemdetail p {
    margin-top: 10px;
}

.itemdetail a {
    position: relative;
    text-decoration: none;
    padding: 10px;
    background-color: #3f88d7;
    color: #fff;
    border-radius: 10px;
    display: block;
    text-align: center;
    transition: .2s;
}

.itemdetail a:hover {
    background-color: #255180;
}

.catalog {
    position: absolute;
    bottom: 20px;
}

@media (max-width: 1500px) {
    .sales {
        display: block;
    }

    .item {
        margin: 80px 0;
    }

    .itemimg {
        width: 300px;
        min-width: 300px;
    }
}

@media (max-width: 750px) {
    .item {
        display: block;
    }

    .title h4 {
        font-size: 20px;
    }

    .makerimg {
        display: block;
    }

    .makerimg img {
        height: 60px;
    }

    .catalog {
        position: static;
    }

    .itemimg {
        
        margin: auto;
    }

}