main {
    background-color: transparent;
    box-shadow: none;
}

.catalog_categoryBigBox {
    max-width: 1000px;
    margin :auto;
    display: flex;
    flex-flow: wrap;
}
.catalogCatItemBox {
    max-width: 240px;
    max-height: 300px;
    overflow: hidden;
}
.catalogCatItem {
    width: 240px;
    height: 300px;
    margin-left: 8px;
    margin-bottom: 12px;
    position: relative;
    /*background-color: #111;*/
    box-sizing: border-box;
    /*border: 1px solid #444;*/
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: 0 0 5px #ccc;
}
.catalogCatItem:hover {
    opacity: 0.7;
}
.viewAll_div {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}
.viewAll_div div {
    width: 42%;
    height: 2px;
    background-color: #333;

}
.viewAll_a {
    display: block;
    margin: auto;
    text-transform: uppercase;
    color: #333;
    text-decoration: none;
    transition: 0.5s;
    font-weight: bold;
    text-align: center;
}
.viewAll_a:hover {
    color: #444;
    transition: 0.5s;
}
.catalogInfo_item {
    max-width: 1200px;
    box-sizing: border-box;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    flex-flow: wrap;
}
.imgPart {
    width: 44%;
    padding: 20px 0;
}
.profilePhoto {
    width: 92%;
    height: 400px;
    margin: auto;
    background-color: #eee;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.profilePhoto:hover {
    cursor: pointer;
}
.zoomBox {
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    position: relative;
    display: none;
    cursor: pointer;
}
.zoomBox img {
    position: absolute;
    z-index: 9;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.smallImgBox {
    display: flex;
    flex-flow: wrap;
    width: 92%;
    margin: auto;
}
.smallImgBox div:hover {
    cursor: pointer;
    opacity: 0.7;
}
.smallImg {
    width: 19%;
    height: 90px;
    margin-left: 0.8333333333%;
    margin-bottom: 8px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.imgPart hr {
    width: 92%;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    height: 1px;
    background-color: #555;
    border: none;
}
.infoPart {
    width: 55%;
    /*background-color: #F3F3F3;*/
    padding: 20px;
    box-sizing: border-box;
}
.itemCodeBox {
    /*margin: 26px 0;*/
    margin-bottom: 8px;

}
.title {
    text-transform: uppercase;
    color: #8E8376;
}
.infoFromDB {
    color: #8E8376;
    padding-left: 5px;
}
.itemMainInfo div,
.stoneItemBox div {
    margin-bottom: 8px;
}
.stoneTypeBox {
    margin-top: 26px;
}
.stoneItemBox {
    margin-bottom: 20px;
}
@media(max-width: 472px){
    .viewAll_div div{
        width: 38%;
    }
}