html, body {
	height: 100%;
	margin: 0;
	font-family: 'Montserrat', Sans-serif !important;
	color: #333;
	overflow: visible !important;
}
button {
	outline: none;
	border: none;
}
div {
	box-sizing: border-box;
}
* {
    margin: 0;
    padding: 0;
    outline: none;
    outline-offset: 0;
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
a {
	text-decoration: none;
	color: #333;
}
img {
    max-height: 100%;
    max-width: 100%;
}
/* without render */
.image-wrapper, #loading-gif, #SwitchView, .force-render {display: none !important;}
/* end without render */
.item:hover h2 {
    color: #849fae;
}
.item:hover img {
    transform: scale(1.05);
    transition: all .5s;
    -webkit-transition: all .5s;
}

.item img {
    transition: all .5s;
    -webkit-transition: all .5s;
}
.header-wrapper {
	background: #FFF;
}
.header {
    height: 100px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 15px;
    display: flex;
    align-items: center;
	justify-content: space-between;
}
.header-menu {
    display: flex;
    gap: 60px;
}
.header-menu a {
	font-size: 18px;
	font-weight: 600;
	color: #333 !important;
	text-decoration: none;
}
.header img {
	height: 30px;
	width: 100%;
}
.breadcrumbs-wrapper {
	background: #849fae;
}
.breadcrumbs-wrapper.top {
	background: #f5f5f5;
}
.bread-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 15px;
    display: flex;
    align-items: center;
}	
.bread-header {
	color: #FFF;
}
.breadcrumbs ul {
    display: flex;
    list-style: none;
    color: #333;
	gap: 15px;
}
.main-content {
	max-width: 1440px;
	margin: 0 auto;
	padding: 15px;
}
.product-grid {
    padding: 60px 0;
}
.main-content .products {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
    gap: 30px;
	margin-bottom: 60px;
}
.item-content {
    text-align: left;
    display: flex;
    justify-content: center;
	text-align: left;
	padding: 15px 0;
}
.item-content h2 {
	font-size: 20px;
	font-weight: 700;
	color: #333;
}
.item {
    flex: 1;
	cursor: pointer;
}