			

	header#rotator {
		width: 100%;
        background: var(--secondary);
        position: relative;
	}
		header#rotator .triangles {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            transform: translate(-12.5%, 0);
            z-index: 0;
        }
		header #rotatorContent {
			padding-top: 65px;
			padding-bottom: 110px;
			margin: 0 auto;
			width: 1200px;
            display: flex;
            position: relative;
		}

header.header-small {
	background: var(--secondary);
	position: relative;
	color: #fff;
	height:150px;
}

	header.header-small .triangles {
		content: "";
		position: absolute;
		left: 0;
		top: 0;
		bottom: 0;
		transform: translate(-12.5%, 0);
		z-index: 0;
		height: 100%;
	}
	header.header-small .triangles img {
		height: 100%;
		max-width: none;
	}
	@media(max-width: 991px) {
		header.header-small .triangles img {
			display: none;
		}
	}
		header.header-small .contentblock {
			z-index: 1;
			position: relative;
			display: flex;
			align-items: center;
			min-height: 94px;
			padding-top: 1.25rem;
			padding-bottom: 1.25rem;
			height:150px;
		}
		header.header-small .contentblock .h1,
		header.header-small .contentblock h1 {
			margin-bottom: 0;
		}
	header.header-small .product-image {
		position: absolute;
		top: 0;
		bottom: 0;
		right: 0;
		height: 100%;
		z-index: -1;
	}
	@media (max-width: 1350px ) {
		header.header-small .product-image img:first-child + img {
			display: none;
		}
		header.header-small .product-image img:last-child {
			display: inline-block !important;
		}
	}
	@media (max-width: 767px ) {
		header.header-small .product-image img:first-child {
			display: none;
		}
		header.header-small .product-image img:last-child {
			display: inline-block !important;
		}
	}
	header.header-small .product-image img {
		width: 170px;
		object-fit: cover;
	}
	header.header-small .product-image:before {
		content: "";
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		height: 100%;
		width: 50%;
		background: -moz-linear-gradient(left, rgba(var(--secondary-rgb),1)  0%, rgba(var(--secondary-rgb),0) 100%); /* FF3.6-15 */
		background: -webkit-linear-gradient(left, rgba(var(--secondary-rgb),1)  0%,rgba(var(--secondary-rgb),0) 100%); /* Chrome10-25,Safari5.1-6 */
		background: linear-gradient(to right, rgba(var(--secondary-rgb),1)  0%,rgba(var(--secondary-rgb),0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=1 ); /* IE6-9 */
	}
		header.header-small .product-image img {
			height: 100%;
		}