/* reset */
html, body, div, span,
*, *::before, *::after,
object, iframe,
h1, h2, h3, h4, p, a, img,
strong, cite, ul, li, form, embed,
header, section, footer,
audio, video	{ font-size: 100%; font: inherit; margin: 0; padding: 0; box-sizing: border-box; }
ul				{ list-style: none; }
body			{ background: #f5f9ff; color: #333333; font: normal 22px/34px "Utily-Regular"; overflow-x: hidden; }
h1				{ font: normal 74px/74px "Croust-Sans-Ink"; letter-spacing: -1px; }
h2				{ font: normal 20px/20px "Croust-Sans-Ink"; }
a				{ color: #333333; text-decoration: none; }



/* transition */
a,
.scroll,
header,
header nav ul li ul li,
header nav ul li ul li::after,
header nav ul li a::after,
header nav ul li ul .submenu,
header #social i.icon_facebook,
header #social i.icon_instagram,
header #social i.icon_linkedin,
#news .image,
section#cialho .scroll i,
section#cialho .content a.button_link::after,
section#products .accordion,
section#products .accordion li .link i.arrow_down,
section#products ul.submenu_filter li,
section#products ul.list li p::after,
section#faq ul li .more:before,
section#faq ul li .more:after {
	-webkit-transition: all .3s ease;
			transition: all .3s ease;
}



/* selection */
a {
	-webkit-user-select: none;
			user-select: none;

}
::selection {
	background: #f27535;
	color: #ffffff;
}



/* container */
.container {
	width: 100%;
	max-width: 90%;
	display: flex;
	margin: 0 auto;
	position: relative;
}



/* container */
.scroll {
	width: 15px;
	height: 30px;
	margin: 0 auto;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 30px;
	opacity: 1;
}
.scroll i {
	width: 100%;
	height: 100%;
	background: url(../img/icons/scroll.png) no-repeat center center;
	background: rgba(0,0,0,0) url(../img/icons/scroll.svg) no-repeat center center;
	background-size: cover;
	display: block;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	opacity: .5;
	-webkit-animation: bounce 2s infinite;
			animation: bounce 2s infinite;
}
.scroll:hover i {
	opacity: 1;
}
@-webkit-keyframes bounce {
	0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
	40% { transform: translateY(-20px); }
	60% { transform: translateY(-10px); }
}
@keyframes bounce {
	0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
	40% { transform: translateY(-20px); }
	60% { transform: translateY(-10px); }
}



/* loader */
.loader_overlay_slide {
	width: 100%;
	height: 100%;
	background: #f27535;
	position: fixed;
	z-index: 10;
	-webkit-animation-fill-mode: forwards;
			animation-fill-mode: forwards;
}
.loader_in_right {
	width: 0;
	right: 0;
	-webkit-animation-name: loader_in_right;
			animation-name: loader_in_right;
}
@-webkit-keyframes loader_in_right {
	0%   { width: 100%; }
	100% { width: 0; }
}
@keyframes loader_in_right {
	0%   { width: 100%; }
	100% { width: 0; }
}
.loader_out_right {
	width: 100%;
	right: 0;
	-webkit-animation-name: loader_out_right;
			animation-name: loader_out_right;
}
@-webkit-keyframes loader_out_right {
	0%   { width: 0; }
	100% { width: 100%; }
}
@keyframes loader_out_right {
	0%   { width: 0; }
	100% { width: 100%; }
}

.loader_loading {
	width: 90px;
	height: 90px;
	border-top: 3px solid #ffffff;
	border-right: 3px solid #f27535;
	border-radius: 100%;
	position: fixed;
	top: calc(50% - 45px);
	left: calc(50% - 45px);
	z-index: 100;
	-webkit-animation: loading 1s ease infinite;
			animation: loading 1s ease infinite;
}
@-webkit-keyframes loading {
	to { transform: rotate(360deg); }
}
@keyframes loading {
	to { transform: rotate(360deg); }
}



/* header */
header {
	width: 100%;
	background: #ffffff;
	position: relative;
	z-index: 3;
}
header.hide_header {
	-webkit-transform: translateY(-22px);
			transform: translateY(-22px);
}
header.fixed {
	position: fixed;
	top: 0;
	left: 0;
}

header .menu_top {
	width: 100%;
	height: 22px;
	background: #f38531;
}
header .menu_top ul {
	display: flex;
	justify-content: center;
	align-items: center;
}
header .menu_top ul li {
	float: left;
	margin: 0 15px;
}
header .menu_top ul li a {
	color: #ffffff;
	font: normal 12px/22px "Utily-Medium";
	letter-spacing: 1px;
	text-transform: uppercase;
	display: block;
}

header #logo {
	width: 104px;
	height: 64px;
	float: left;
	margin: 0 30px;
	position: relative;
}
header #logo::after {
	content: "";
	width: 200px;
	height: 20px;
	background: url(../img/icons/shape_menu.png) no-repeat center center;
	background: rgba(0,0,0,0) url(../img/icons/shape_menu.svg) no-repeat center center;
	background-size: cover;
	position: absolute;
	top: 64px;
	left: 50%;
	z-index: -1;
	-webkit-transform: translateX(-50%);
			transform: translateX(-50%);
}
header #logo i {
	width: 100%;
	height: 100%;
	background: url(../img/icons/logo.png) no-repeat bottom center;
	background: rgba(0,0,0,0) url(../img/icons/logo.svg) no-repeat bottom center;
	background-size: auto 64px;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	display: block;
	margin: 10px 0 0 0;
}

header nav {
	flex: 100% 0 1;
}
header nav ul {
	display: flex;
}
header nav ul li {
	float: left;
	margin: 0 30px 0 0;
}
header nav ul li:last-child {
	margin: 0;
}
header nav ul li a {
	color: #333333;
	font: normal 14px/64px "Utily-Bold";
	letter-spacing: 1px;
	text-transform: uppercase;
	display: block;
	position: relative;
}
header nav ul li a::after {
	content: "";
	width: 30px;
	height: 0;
	background: #f27535;
	margin: 0 auto;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
}
header nav ul li a:hover::after,
header nav ul li a.active::after {
	height: 4px;
}

header nav ul li ul {
	width: 100%;
	height: 0;
	background: #f5f9ff;
	position: absolute;
	top: 64px;
	left: 0;
	z-index: -2;
	-webkit-transition: height .6s ease;
			transition: height .6s ease;
}
header nav ul li:hover ul {
	height: 280px;
}
header nav ul li ul::before,
header nav ul li ul::after {
	content: "";
	width: 10%;
	height: 100%;
	background: #f5f9ff;
	position: absolute;
	top: 0;
}
header nav ul li ul::before {
	right: -10%;
}
header nav ul li ul::after {
	left: -10%;
}

header nav ul li ul .submenu {
	width: 100%;
	visibility: hidden;
	opacity: 0;
	transition-delay: .1s;
}
header nav ul li:hover ul .submenu {
	visibility: visible;
	opacity: 1;
}
header nav ul li ul li {
	width: calc(100% / 7);
	height: 100%;
	background: url(../img/products/condimentos.png) no-repeat 50% 25%;
	background-size: 90% auto;
	text-align: center;
	margin: 0;
	position: relative;
}
header nav ul li ul li:hover {
	-webkit-transform: translateY(-6px);
			transform: translateY(-6px);
}
header nav ul li ul li:nth-child(2) {
	background-image: url(../img/products/farinaceos.png);
}
header nav ul li ul li:nth-child(3) {
	background-image: url(../img/products/molhos.png);
}
header nav ul li ul li:nth-child(4) {
	background-image: url(../img/products/temperos.png);
}
header nav ul li ul li:nth-child(5) {
	background-image: url(../img/products/conservas.png);
}
header nav ul li ul li:nth-child(6) {
	background-image: url(../img/products/graos.png);
}
header nav ul li ul li:nth-child(7) {
	background-image: url(../img/products/food_service.png);
}
header nav ul li ul li::after {
	content: "";
	width: 100%;
	height: 0;
	background: #f27535;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: -2;
}
header nav ul li ul li:hover::after {
	height: 4px;
	-webkit-transform: translateY(6px);
			transform: translateY(6px);
}
header nav ul li ul li a {
	width: 100%;
	height: 100%;
	display: block;
}
header nav ul li ul li a::after {
	display: none;
}
header nav ul li ul li p {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: -1;
}

header #social {
	display: flex;
	justify-content: center;
	align-items: center;
}
header #social i.icon_facebook,
header #social i.icon_instagram,
header #social i.icon_linkedin {
	width: 18px;
	height: 18px;
	background: url(../img/icons/social_facebook.png) no-repeat center center;
	background: rgba(0,0,0,0) url(../img/icons/social_facebook.svg) no-repeat center center;
	background-size: auto 100%;
	float: left;
	display: block;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
}
header #social i.icon_facebook:hover {
	background: url(../img/icons/social_facebook_color.png) no-repeat center center;
	background: rgba(0,0,0,0) url(../img/icons/social_facebook_color.svg) no-repeat center center;
}
header #social i.icon_instagram {
	background: url(../img/icons/social_instagram.png) no-repeat center center;
	background: rgba(0,0,0,0) url(../img/icons/social_instagram.svg) no-repeat center center;
	margin: 0 15px;
}
header #social i.icon_instagram:hover {
	background: url(../img/icons/social_instagram_color.png) no-repeat center center;
	background: rgba(0,0,0,0) url(../img/icons/social_instagram_color.svg) no-repeat center center;
}
header #social i.icon_linkedin {
	background: url(../img/icons/social_linkedin.png) no-repeat center center;
	background: rgba(0,0,0,0) url(../img/icons/social_linkedin.svg) no-repeat center center;
}
header #social i.icon_linkedin:hover {
	background: url(../img/icons/social_linkedin_color.png) no-repeat center center;
	background: rgba(0,0,0,0) url(../img/icons/social_linkedin_color.svg) no-repeat center center;
}

header #sac {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 30px;
}
header #sac i.icon_sac{
	width: 36px;
	height: 36px;
	background: url(../img/icons/sac.png) no-repeat center center;
	background: rgba(0,0,0,0) url(../img/icons/sac.svg) no-repeat center center;
	background-size: auto 100%;
	display: block;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
}

header #filter {
	flex: 25% 0 0;
	background: #f27535;
}
header #filter::after {
	content: "";
	width: 9999px;
	background: #f27535;
	position: absolute;
	top: 0;
	left: 100%;
	bottom: 0;
}
header #filter a {
	color: #ffffff;
	font: normal 14px/64px "Utily-Bold";
	letter-spacing: 1px;
	text-transform: uppercase;
	display: block;
	padding: 0 30px;
	opacity: .5;
}
header #filter a:hover {
	opacity: 1;
	padding: 0 0 0 40px;
}
header #filter a::after {
	content: "";
	width: 26px;
	height: 26px;
	background: url(../img/icons/like.png) no-repeat center center;
	background: rgba(0,0,0,0) url(../img/icons/like.svg) no-repeat center center;
	background-size: cover;
	position: absolute;
	top: 50%;
	right: 30px;
	-webkit-transform: translateY(-50%);
			transform: translateY(-50%);
}



/* cialho */
section#cialho {
	width: 100%;
	height: calc(100vh - 64px);
	background: url(../img/img_home.jpg) no-repeat center center;
	background-size: 100% auto;
	display: flex;
	justify-content: center;
	align-items: center;
	-webkit-transition: background .6s cubic-bezier(.190, 1.000, .220, 1.000);
			transition: background .6s cubic-bezier(.190, 1.000, .220, 1.000);
}
section#cialho.small {
	background-size: 110% auto;
}

section#cialho .content {
	width: 75%;
	padding: 0 90px;
}
section#cialho .title p {
	color: #ffffff;
	font: normal 15px/24px "Utily-Bold";
	letter-spacing: 1px;
	text-transform: uppercase;
	margin: 90px 0 0 0;
}
section#cialho .title h1 {
	color: #ffffff;
	margin: 15px 0;
}
section#cialho .button_link a {
	color: #ffffff;
	font: normal 14px/60px "Utily-Bold";
	letter-spacing: 1px;
	text-transform: uppercase;;
	border: 2px solid #ffffff;
	border-radius: 100px;
	display: inline-block;
	overflow: hidden;
	margin: 60px 0 0 0;
	padding: 0 30px;
	position: relative;
}
section#cialho .button_link a:hover {
	color: #333333;
	padding: 0 40px;
}
section#cialho .button_link a::after {
	content: "";
	width: 0;
	height: 100%;
	background: #ffffff;
	position: absolute;
	top: 0;
	left: 0;
}
section#cialho .button_link a:hover::after {
	width: 100%;
}
section#cialho .button_link a span {
	position: relative;
	z-index: 1;
}

section#cialho .scroll.hide {
	opacity: 0;
}

#news {
	width: 50%;
	height: 100%; 
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	top:0;
	right: 0;
	z-index: 1;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: opacity .6s ease;
			transition: opacity .6s ease;
}
#news.show {
	opacity: 1;
	visibility: visible;
}
#news.show::before {
	content: "";
	width: 55%;
	height: 100%;
	background: #f27535;
	position: absolute;
	top: 0;
	right: 0;
}
#news.show::after {
	content: "";
	width: 0;
	height: 100%;
	background: #f5f9ff;
	position: absolute;
	top: 0;
	right: 55%;
	z-index: -1;
	-webkit-animation: slide .4s ease 0s forwards;
			animation: slide .4s ease 0s forwards;
}
@-webkit-keyframes slide {
	0%   { width: 0; }
	100% { width: 45%; }
}
@keyframes slide {
	0%   { width: 0; }
	100% { width: 45%; }
}
#news .image {
	width: 100%;
	height: 100%;
	position: relative;
	-webkit-transform: translateX(5%);
			transform: translateX(5%);
}
#news.show .image {
	-webkit-transform: translateX(0%);
			transform: translateX(0%);
}
#news .image img {
	width: 720px;
	height: auto;
	position: absolute;
	top: 50%;
	left: calc(50% - 47.5px);
	-webkit-transform: translate(-50%, -50%);
			transform: translate(-50%, -50%);
}



/* about */
section#about {
	width: 100%;
	height: 100vh;
	background: url(../img/img_about.jpg) no-repeat center center;
	background-size: 100% auto;
	display: flex;
	justify-content: center;
	align-items: center;
}

section#about .content {
	width: 56%;
	text-align: center;
	margin: 0 auto;
	padding: 0 90px;
}
section#about .title span {
	color: #ffffff;
	font: normal 15px/24px "Utily-Bold";
	letter-spacing: 1px;
	text-transform: uppercase;
	display: block;
}
section#about .title h1 {
	color: #ffffff;
	margin: 60px 0 30px 0;
}
section#about .title h1 p {
	font: normal 380px/160px "Utily-Regular";
}
section#about .title .description p {
	color: #ffffff;
	font: normal 20px/32px "Utily-Regular";
	letter-spacing: 1px;
}

section#history {
	width: 100%;
	height: calc(100vh - 60px);
	display: flex;
	justify-content: center;
	align-items: center;
}

section#history .content {
	width: 66%;
	text-align: center;
	margin: 0 auto;
	padding: 0 90px;
}
section#history .content span {
	color: #f27535;
	font: normal 15px/24px "Utily-Bold";
	letter-spacing: 1px;
	text-transform: uppercase;
	display: inline-block;
	margin: 0 0 10px 0;
}
section#history .content h1 {
	margin: 0 0 40px 0;
}
section#history .description p {
	font: normal 20px/32px "Utily-Regular";
	letter-spacing: 1px;
	margin: 0 0 30px 0;
}
section#history .description p:last-child {
	margin: 0;
}



/* contact */
section#contact {
	width: 100%;
	height: 100vh;
}

section#contact .content {
	width: 100%;
	margin: 160px 0 0 0;
	padding: 0 90px;
}
section#contact .title span {
	font: normal 15px/24px "Utily-Bold";
	letter-spacing: 1px;
	text-transform: uppercase;
	display: inline-block;
	margin: 0 0 10px 0;
}
section#contact .title h1 {
	color: #f27535;
	margin: 0 0 30px 0;
}
section#contact .description {
	display: inline-block;
	margin: 60px 0 0 0;
}
section#contact .description span {
	color: #f27535;
	font: normal 20px/32px "Utily-Bold";
	letter-spacing: 1px;
	text-transform: uppercase;
}
section#contact .description p {
	font: normal 20px/32px "Utily-Regular";
	letter-spacing: 1px;
	margin: 0 0 30px 0;
}
section#contact .description p b {
	font: normal 20px/32px "Utily-Bold";
}
section#contact .description p a {
	color: #f27535;
	text-decoration: underline;
}



/* faq */
section#faq {
	width: 100%;
}

section#faq .content {
	width: 100%;
	margin: 160px 0;
	padding: 0 90px;
}
section#faq .title span {
	font: normal 15px/24px "Utily-Bold";
	letter-spacing: 1px;
	text-transform: uppercase;
	display: inline-block;
	margin: 0 0 10px 0;
}
section#faq .title h1 {
	color: #f27535;
	margin: 0 0 30px 0;
}

section#faq ul {
}
section#faq ul li {
	border-bottom: 1px solid rgba(51, 51, 51, .2);
}
section#faq ul li .tag {
	font: normal 20px/32px "Utily-Bold";
	letter-spacing: 1px;
	text-transform: uppercase;
	display: inline-block;
	margin: 60px 0 0 0;
}
section#faq ul li .question {
	font: normal 15px/100px "Utily-Bold";
	letter-spacing: 1px;
	text-transform: uppercase;
	position: relative;
	cursor: pointer;
}
section#faq ul li .answer {
	max-height: 0;
	font: normal 18px/30px "Utily-Regular";
	letter-spacing: 1px;
	padding: 0 120px 0 0;
	overflow: hidden;
	-webkit-transition: all .6s ease;
			transition: all .6s ease;
}
section#faq ul li .answer a {
	color: #f27535;
	text-decoration: underline;
}
section#faq ul li.active .answer {
	max-height: 240px !important;
	padding-bottom: 60px;
	-webkit-transition: all .6s ease;
			transition: all .6s ease;
}
section#faq ul li .more {
	width: 60px;
	height: 60px;
	border: 2px solid #f27535;
	border-radius: 50%;
	position: absolute;
	top: 20px;
	right: 0;
	z-index: 1;
}
section#faq ul li .more:before,
section#faq ul li .more:after {
	content: "";
	width: 20px;
	height: 2px;
	background: #f27535;
	position: absolute;
	top: 50%;
    left: calc(50% - 10px);
}
section#faq ul li .more:after {
	-webkit-transform-origin: center;
			transform-origin: center;
}
section#faq ul li .more.collapsed:after {
	-webkit-transform: rotate(90deg);
			transform: rotate(90deg);
}
section#faq ul li .more.collapsed:before {
	-webkit-transform: rotate(180deg);
			transform: rotate(180deg);
}



/* cookies */
section#cookies {
	width: 100%;
}

section#cookies .content {
	width: 100%;
	margin: 160px auto;
	padding: 0 90px;
}
section#cookies .title span {
	font: normal 15px/24px "Utily-Bold";
	letter-spacing: 1px;
	text-transform: uppercase;
	display: inline-block;
	margin: 0 0 10px 0;
}
section#cookies .title h1 {
	color: #f27535;
	margin: 0 0 30px 0;
}
section#cookies .description {
	display: inline-block;
	margin: 60px 0 0 0;
}
section#cookies .description p {
	font: normal 18px/30px "Utily-Regular";
	letter-spacing: 1px;
	margin: 0 0 30px 0;
}
section#cookies .description p b {
	font: normal 15px/24px "Utily-Bold";
	display: block;
}
section#cookies .description p:last-child {
	margin: 0;
}



/* products */
section#products {
	width: 100%;
}

section#products .content {
	width: 100%;
	margin: 160px 0 0 0;
	padding: 0;
}
section#products .title span {
	font: normal 15px/24px "Utily-Bold";
	letter-spacing: 1px;
	text-transform: uppercase;
	display: inline-block;
	margin: 0 0 10px 0;
}
section#products .title h1 {
	color: #333333;
	margin: 0 0 30px 0;
}

section#products .breadcrumb {
	width: 100%;
	display: inline-block;
	margin: 30px 0 30px 0;
	padding: 0 30px 0 0;
}
section#products.full .breadcrumb {
	padding: 0;
}
section#products .breadcrumb .left,
section#products .breadcrumb .right {
	width: 50%;
	float: left;
}
section#products .breadcrumb .right {
	text-align: right;
}
section#products .breadcrumb p {
	font: normal 12px/22px "Utily-Medium";
	letter-spacing: 1px;
	text-transform: uppercase;
}
section#products .breadcrumb a:hover {
	color: #f27535;
}

section#products ul.list {
	width: 100%;
	display: block;
}
section#products ul.list li {
	width: calc(20% - 20px);
	height: 405px;
	background: #ffffff;
	text-align: center;
	float: left;
	margin: 0 15px 15px 0;
	position: relative;
	-webkit-transition: box-shadow .6s ease;
			transition: box-shadow .6s ease;
}
section#products ul.list li:last-child {
	margin: 0 0 80px 0 !important;
}
section#products.full ul.list li {
	width: calc(20% - 12px);
}
section#products.full ul.list li:nth-child(5),
section#products.full ul.list li:nth-child(10),
section#products.full ul.list li:nth-child(15),
section#products.full ul.list li:nth-child(20),
section#products.full ul.list li:nth-child(25),
section#products.full ul.list li:nth-child(30),
section#products.full ul.list li:nth-child(35),
section#products.full ul.list li:nth-child(40),
section#products.full ul.list li:nth-child(45),
section#products.full ul.list li:nth-child(50),
section#products.full ul.list li:nth-child(55),
section#products.full ul.list li:nth-child(60),
section#products.full ul.list li:nth-child(65),
section#products.full ul.list li:nth-child(70),
section#products.full ul.list li:nth-child(75),
section#products.full ul.list li:nth-child(80),
section#products.full ul.list li:nth-child(85),
section#products.full ul.list li:nth-child(90),
section#products.full ul.list li:nth-child(95),
section#products.full ul.list li:nth-child(100),
section#products.full ul.list li:nth-child(105),
section#products.full ul.list li:nth-child(110) {
	margin: 0 0 15px 0;
}
section#products ul.list li:hover {
	box-shadow: 0 10px 10px rgba(0,0,0,.2);
}

section#products ul.list li a {
	display: block;
	overflow: hidden;
	position: relative;
}
section#products ul.list li a::after {
	content: "";
	width: 50%;
	height: 100%;
	display: block;
	position: absolute;
	top: 0;
	left: -75%;
	z-index: 1;
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	-webkit-transform: skewX(-25deg);
			transform: skewX(-25deg);
}
section#products ul.list li:hover a::after {
	-webkit-animation: shine .8s ease forwards;
			animation: shine .8s ease forwards;
}
@-webkit-keyframes shine {
	100% { left: 125%; }
}
@keyframes shine {
	100% { left: 125%; }
}
section#products ul.list li img {
	width: 100%;
	height: auto;
	display: block;
	padding: 30px 30px 0 30px;
}
section#products ul.list li span.tag {
	color: #f27535;
	font: normal 12px/18px "Utily-Medium";
	text-transform: uppercase;
	display: block;
	margin: 10px 0;
}
section#products.full ul.list li span.tag {
	font: normal 14px/30px "Utily-Medium";
}
section#products ul.list li h2 {
	height: 40px;
	margin: 0 0 30px 0;
	padding: 0 15px;
}
section#products.full ul.list li h2 {
	padding: 0 30px;
}
section#products ul.list li p {
	background: #f27535;
	color: #ffffff;
	font: normal 14px/64px "Utily-Bold";
	letter-spacing: 1px;
	text-transform: uppercase;
	display: block;
	position: relative;
	z-index: 0;
}
section#products ul.list li p::after {
	content: "";
	width: 0;
	height: 100%;
	background: rgb(202,80,86);
	background: -webkit-linear-gradient(90deg, rgba(202,80,86,1) 0%, rgba(242,117,53,1) 100%);
	background: linear-gradient(90deg, rgba(202,80,86,1) 0%, rgba(242,117,53,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ca5056",endColorstr="#f27535",GradientType=1);
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: -2;
}
section#products ul.list li:hover p::after {
	width: 100%;
}

section#products .products {
	width: 75%;
}
section#products .buttons_filter {
	width: 22.5%;
	height: 100vh;
	background: #f27535;
	position: fixed;
	top: 0;
	right: 5%;
	z-index: 2;
}
section#products .buttons_filter::after {
	content: "";
	width: 9999px;
	background: #f27535;
	position: absolute;
	top: 0;
	left: 100%;
	bottom: 0;
}

section#products .accordion {
	width: 100%;
	position: absolute;
	top: 86px;
}
section#products .accordion.hide_header {
	-webkit-transform: translateY(-22px);
			transform: translateY(-22px);
}
section#products .accordion li:first-child {
	border-top: 1px solid rgba(255,255,255,.2);
}
section#products .accordion li {
	border-bottom: 1px solid rgba(255,255,255,.2);
}
section#products .accordion li.open {
	padding: 0 0 30px 0;
}
section#products .accordion li .link {
	width: 100%;
	color: #ffffff;
	font: normal 14px/64px "Utily-Bold";
	letter-spacing: 1px;
	text-transform: uppercase;
	display: block;
	padding: 0 30px;
	cursor: pointer;
	position: relative;
}
section#products .accordion li .link i.arrow_down {
	width: 64px;
	height: 64px;
	background: url(../img/icons/arrow_down.png) no-repeat center center;
	background: rgba(0,0,0,0) url(../img/icons/arrow_down.svg) no-repeat center center;
	background-size: auto 18px;
	position: absolute;
	right: 10px;
}
section#products .accordion li.open .link i.arrow_down {
	-webkit-transform: rotate(180deg);
			transform: rotate(180deg);
}
section#products .accordion .clear {
	clear: both;
}

section#products ul.submenu_filter {
	width: 100%;
	display: none;
	padding: 0 30px;
	cursor: pointer;
	position: relative;
}
section#products ul.submenu_filter li {
	width: calc(50% - 15px);
	border: 2px solid rgba(255,255,255,.2);
	color: #ffffff;
	font: normal 12px/64px "Utily-Medium";
	letter-spacing: 1px;
	text-transform: uppercase;
	text-align: center;
	display: block;
	float: left;
	margin: 7.5px;
	opacity: .5;
}
section#products ul.submenu_filter li:hover,
section#products ul.submenu_filter li.button.is-checked {
	opacity: 1;
	border: 2px solid rgba(255,255,255,1);
}

.featherlight {
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,.9);
	display: none;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 1000;
}
.featherlight .featherlight-inner {
	width: 100%;
	height: 100%;
	display: inline-block;
	padding: 180px 0;
}
.featherlight-content {
	width: 75%;
	height: 100%;
	background: rgb(202,80,86);
	background: -moz-linear-gradient(45deg, rgba(202,80,86,1) 0%, rgba(242,117,53,1) 100%);
	background: -webkit-linear-gradient(45deg, rgba(202,80,86,1) 0%, rgba(242,117,53,1) 100%);
	background: linear-gradient(45deg, rgba(202,80,86,1) 0%, rgba(242,117,53,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ca5056",endColorstr="#f27535",GradientType=1);
	color: #ffffff;
	position: absolute;
	top: 0;
	right: 0;
}
.featherlight-close {
	width: 120px;
	height: 120px;
	position: absolute;
	top: 0;
	right: 0;
	padding: 30px;
	pointer-events: visible;
	cursor: pointer;
	z-index: 2;
}
.featherlight-close::before,
.featherlight-close::after {
	content: "";
	width: 60px;
	height: 2px;
	background: #ffffff;
	position: absolute;
}
.featherlight-close::before {
	top: 60px;
	-webkit-transform: rotate(-45deg);
			transform: rotate(-45deg);
}
.featherlight-close::after {
	top: 60px;
	-webkit-transform: rotate(45deg);
			transform: rotate(45deg);
}
.lightbox {
	display: none;
}
.lightbox img {
	width: 600px;
	height: auto;
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translate(-50%, -50%);
			transform: translate(-50%, -50%);
}
.lightbox .infos {
	width: 50%;
	margin-left: 25%;
}
.lightbox h3 {
	font: normal 24px/30px "Utily-Medium";
	letter-spacing: 1px;
	text-transform: uppercase;
	display: block;
	margin: 0 0 10px 0;
}
.lightbox span {
	font: normal 15px/24px "Utily-Regular";
	letter-spacing: 1px;
	text-transform: uppercase;
	display: inline-block;
	margin: 0 0 10px 0;
}
.lightbox p {
	font: normal 20px/32px "Utily-Regular";
	letter-spacing: 1px;
	margin: 0 0 40px 0;
}
.lightbox ul li {
	font: normal 18px/40px "Utily-Regular";
	letter-spacing: 1px;
	text-transform: uppercase;
}



/* menu mobile */
.button_menu_mobile {
	width: 60px;
	height: 60px;
	color: #ffffff;
	font: normal 14px/60px "Utily-Bold";
	letter-spacing: 1px;
	text-transform: uppercase;
	text-align: center;
	position: fixed;
	top: 10px;
	right: 10px;
	z-index: 9;
	cursor: pointer;
	display: none;
	visibility: hidden;
}
.button_menu_mobile.black {
    color: #333333;
}
.mobile_close {
	color: #888888;
	opacity: 0;
	-webkit-transform: translateX(90px);
			transform: translateX(90px);
}
.mobile_open p,
.mobile_close p {
	display: inline-block;
	position: relative;
}
.mobile_open p::after,
.mobile_close p::after {
	content: "";
	width: 100%;
	height: 4px;
	background: #f27535;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 15px;
}

.menu_mobile ul {
	width: 100%;
	height: 100%;
	background: #ffffff;
	padding: 80px 0 0 0;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 2;
	-webkit-transform: translateX(100%);
			transform: translateX(100%);
}
.menu_mobile ul li {
	position: relative;
	border-bottom: 1px solid rgba(51, 51, 51, .2);
}
.menu_mobile ul li:nth-child(5),
.menu_mobile ul li:nth-child(6),
.menu_mobile ul li:nth-child(7),
.menu_mobile ul li:nth-child(8),
.menu_mobile ul li:nth-child(9),
.menu_mobile ul li:nth-child(10),
.menu_mobile ul li:nth-child(11) {
	color: #888888;
	border: none;
}
.menu_mobile ul li:nth-child(4),
.menu_mobile ul li:nth-child(7) {
	margin: 0 0 20px 0;
}

.menu_mobile ul li a {
	color: #333333;
	font: normal 14px/64px "Utily-Bold";
	letter-spacing: 1px;
	text-transform: uppercase;
	display: block;
	padding: 0 20px;
}
.menu_mobile ul li:nth-child(1) a {
	color: rgba(255,255,255,.5);
	background: #f27535;
}
.menu_mobile ul li:nth-child(1) a::after {
	content: "";
	width: 26px;
	height: 26px;
	background: url(../img/icons/like.png) no-repeat center center;
	background: rgba(0,0,0,0) url(../img/icons/like.svg) no-repeat center center;
	background-size: cover;
	position: absolute;
	top: 50%;
	right: 30px;
	opacity: .5;
	-webkit-transform: translateY(-50%);
			transform: translateY(-50%);
}
.menu_mobile ul li:nth-child(1) a:hover,
.menu_mobile ul li:nth-child(1) a:hover::after {
	color: rgba(255,255,255,1);
	opacity: 1;
}
.menu_mobile ul li:nth-child(5) a,
.menu_mobile ul li:nth-child(6) a,
.menu_mobile ul li:nth-child(7) a {
	color: #888888;
	font: normal 12px/42px "Utily-Bold";
}
.menu_mobile ul li:nth-child(8) a i.icon_facebook,
.menu_mobile ul li:nth-child(9) a i.icon_instagram,
.menu_mobile ul li:nth-child(10) a i.icon_linkedin {
	width: 18px;
	height: 18px;
	background: url(../img/icons/social_facebook.png) no-repeat center center;
	background: rgba(0,0,0,0) url(../img/icons/social_facebook.svg) no-repeat center center;
	background-size: auto 100%;
	float: left;
	display: block;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	margin: 0 0 20px 0;
}
.menu_mobile ul li:nth-child(8) a i.icon_facebook:hover {
	background: url(../img/icons/social_facebook_color.png) no-repeat center center;
	background: rgba(0,0,0,0) url(../img/icons/social_facebook_color.svg) no-repeat center center;
}
.menu_mobile ul li:nth-child(9) a i.icon_instagram {
	background: url(../img/icons/social_instagram.png) no-repeat center center;
	background: rgba(0,0,0,0) url(../img/icons/social_instagram.svg) no-repeat center center;
	margin: 0 15px;
}
.menu_mobile ul li:nth-child(9) a i.icon_instagram:hover {
	background: url(../img/icons/social_instagram_color.png) no-repeat center center;
	background: rgba(0,0,0,0) url(../img/icons/social_instagram_color.svg) no-repeat center center;
}
.menu_mobile ul li:nth-child(10) a i.icon_linkedin {
	background: url(../img/icons/social_linkedin.png) no-repeat center center;
	background: rgba(0,0,0,0) url(../img/icons/social_linkedin.svg) no-repeat center center;
}
.menu_mobile ul li:nth-child(10) a i.icon_linkedin:hover {
	background: url(../img/icons/social_linkedin_color.png) no-repeat center center;
	background: rgba(0,0,0,0) url(../img/icons/social_linkedin_color.svg) no-repeat center center;
}
.menu_mobile ul li:nth-child(11) {
	clear: both;
}
.menu_mobile ul li:nth-child(11) span {
	font: normal 12px/42px "Utily-Medium";
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 0 20px;
	opacity: .7;
}