/**
	Creator: Marsus.com
**/

/* Catalog CSS */

.content {
    min-height: auto;
}

.content .pages {
    font-size: 20px;
    color: #ccc;
    font-weight: 600;
    letter-spacing: 2px;
}

.catalog .owl-item {
    -webkit-transition: all 200ms ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    -ms-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
}

.catalog .owl-item:not(.active) {
    transform: scale(0.75);
    opacity: 0.7;
    cursor: pointer;
}

.catalog .owl-item:not(.active):hover {
    opacity: 1;
}



@media (min-width: 767px) {

    .catalog .owl-item:not(.active):hover {
        transform: scale(0.77);
    }

}

@media (max-width: 767px) {

    .catalog .owl-item:not(.active) {
        transform: scale(0.85);
    }

}