@charset "UTF-8";
/******************** Entête UTF-8 ******************\
*
*	fichier	: website\css\project\default.css
*	projet	: Baracci - CMS
*	version	: 8 2020-04-29 14:11 MB
*
\****************************************************/

/*headings*/
body { font-family: 'Noto Sans', sans-serif;font-weight: 400;font-size: 100%;color:#515151; }
.container-grid { max-width: 1300px;margin: auto;padding-left: 1.3rem;padding-right: 1.3rem; }
p { font-size: 1.05em;margin-bottom: 1em;text-align: left;line-height: 1.4;font-weight: 400; }
.styledheading { color: #87714e!important;font-family: 'Great Vibes', cursive;font-size: 4em;font-weight: 400;margin-bottom: 0.1em; }
h1 { font-size: 2em;margin: 0.3em 0;line-height: 105%;font-weight: 700;font-family: 'Playfair Display', serif;color: #000; }
h2 { font-size: 2em;line-height: 105%;font-weight: 700;font-family: 'Playfair Display', serif;color: #000; }
h3 { font-size: 1.4em;text-transform: uppercase;color: #000;font-weight: bold; }
.social h4 { margin: 0.5em 0;line-height: 105%;font-weight: 700; font-family: 'Playfair Display', serif;color: #000; }
.lead { font-size: 1.5em;font-family: 'Playfair Display', serif;color: #87714e!important;line-height: 1.3;font-weight: 400; }
/*back to top*/
.cd-top {
	display: inline-block;
	height: 40px;
	width: 40px;
	position: fixed;
	bottom: 40px;
	right: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
	background: rgba(232, 98, 86, 0.8) url(../../img/cd-top-arrow.svg) no-repeat center 50%;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: opacity .3s 0s, visibility 0s .3s;
	-moz-transition: opacity .3s 0s, visibility 0s .3s;
	transition: opacity .3s 0s, visibility 0s .3s;
	z-index: 1;
}
.cd-top.cd-is-visible, .cd-top.cd-fade-out, .no-touch .cd-top:hover {
	-webkit-transition: opacity .3s 0s, visibility 0s 0s;
	-moz-transition: opacity .3s 0s, visibility 0s 0s;
	transition: opacity .3s 0s, visibility 0s 0s;
}
.cd-top.cd-is-visible { visibility: visible;opacity: 1; }
.cd-top.cd-fade-out { opacity: .5; }
.no-touch .cd-top:hover { background-color: #EE3413;opacity: 1; }
@media only screen and (min-width: 768px) {
	.cd-top { right: 20px;bottom: 20px; }
}
@media only screen and (min-width: 1024px) {
	.cd-top { height: 60px;width: 60px;right: 30px;bottom: 30px; }
}
/*Site logo*/
.site-title a{
	width: 228px;
	height: 82px;
	background: transparent url("../../img/logo-DS.svg") no-repeat center center;
	background-size: 228px auto;
	margin-top: 11px;
}
/*Nav Toggle (Hamburger)*/
.nav-toggle {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 34px;
	height: 22px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	z-index: 1001;
	position: relative;
	flex-shrink: 0;
}
.nav-toggle span {
	display: block;
	width: 100%;
	height: 3px;
	background: #1d252c;
	border-radius: 2px;
	transition: all 0.3s ease;
	transform-origin: left center;
}
.small-header .nav-toggle span { background: #1d252c; }
.masthead.nav-open .nav-toggle span:nth-child(1) { transform: rotate(45deg) translate(1px, -2px); }
.masthead.nav-open .nav-toggle span:nth-child(2) { opacity: 0; width: 0; }
.masthead.nav-open .nav-toggle span:nth-child(3) { transform: rotate(-45deg) translate(1px, 2px); }

/*Nav Overlay*/
.nav-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 999;
}
.nav-overlay.active { display: block; }
body.nav-open { overflow: hidden; }

/*Nav Drawer*/
.site-nav {
	position: fixed;
	top: 0;
	left: -310px;
	width: 290px;
	height: 100vh;
	background: #1d252c;
	z-index: 1000;
	transition: left 0.3s ease;
	overflow-y: auto;
	padding-top: 60px;
}
.site-nav.open { left: 0; }
.nav-close {
	position: absolute;
	top: 16px;
	right: 16px;
	background: transparent;
	border: none;
	color: #fff;
	font-size: 1.6em;
	cursor: pointer;
	line-height: 1;
	padding: 5px;
	z-index: 1001;
}
.site-nav ul {
	display: block;
	list-style: none;
	padding: 0.5em 0 100px;
	margin: 0;
}
.site-nav ul li a {
	display: block;
	text-decoration: none;
	padding: 12px 0;
	font-size: 0.95em;
	margin: 0 2em;
	color: #fff;
	text-transform: uppercase;
	font-weight: bold;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	position: relative;
}
li.langSwitcherHeader > a.direct { border-bottom: none!important; margin-top: 0!important; }
.site-nav ul li a:hover { color: #d2d2d2!important; text-decoration: none; }
.site-nav ul li > a > span {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.2em;
	display: inline-block;
	transition: transform 0.25s ease;
	line-height: 1;
}
.site-nav ul li.open > a > span { transform: translateY(-50%) rotate(45deg); }
.site-nav ul li.selected > a { font-weight: bold; }
.site-nav ul li ul { display: none; padding: 0; margin: 0; list-style: none; }
.site-nav ul li.open ul,
.site-nav ul li.selected ul { display: block; }
.site-nav ul li ul li a {
	padding: 8px 0;
	font-size: 0.82em;
	border: none;
	margin: 0 3em;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	color: #d2d2d2;
	text-transform: none;
	font-weight: normal;
}
.site-nav ul li ul li:last-child a { border-bottom: none; }
.site-nav ul li ul li a:hover { color: #fff!important; }
.site-nav ul li.getsocialtop .social-links { display: block; padding: 1em 0; border: 1px solid rgba(255,255,255,0.2); border-width: 1px 0; margin: 1em 2em 0; }
.site-nav ul li.getsocialtop a { margin: 0 0.5em 0 0; border: none; display: inline-block; }
.site-nav ul li.getsocialtop span { display: block; width: 100%; color: #fff; font-weight: bold; font-size: 1em; margin-bottom: 0.5em; }
.site-nav .social-links a { width: 40px; height: 38px; background-size: auto 36px; }
.site-nav .social-links a.fa { background-position: 2px 0; }
.site-nav .social-links a.in { background-position: -263px 0; }
.site-nav .social-links a.li { background-position: -175px 0; }
.site-nav .social-links a.yo { background-position: -86px 0; }

/*Masthead inner flex layout*/
.masthead-inner { display: flex; align-items: center; height: 100%; position: relative; }
.site-title { position: absolute; left: 50%; transform: translateX(-50%); }

/* ── Parallax banner sections ─────────────────────────────────────────────── */
.parallax-banner {
	width: 100%;
	height: 420px;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	position: relative;
}
/* iOS / Android don't support background-attachment:fixed properly — fall back to cover */
@supports (-webkit-touch-callout: none) {
	.parallax-banner { background-attachment: scroll; }
}

/*hero banner*/
.slider-hero { height: 125px; }
.slider-cont { position: relative;height: 125px; }
body.home .slider-hero { height: 400px; }
body.home .slider-cont { position: relative;height: 400px; }
body.contact .slider-hero { display: none; }
.slider-cont .container-grid { padding-top: 150px; }
.slider-cont .container-grid .title {
	font-size: 2.1em;
	margin-bottom: .1em;
	line-height: 105%;
	font-weight: 700;
	font-family: 'Playfair Display', serif;
	color: #000;
	display: block;
	text-shadow: -5px -5px 10px #fff, -5px 5px 10px #fff, 5px 5px 10px #fff, 5px -5px 10px #fff;
}
.slider-cont .bt { margin-top: 2em; }

/*Slider background*/
.slide-box { padding: 0;position: relative;height: 350px; }
.slider-img { float: left;width: 100%;height: 100%;overflow: hidden;background-size: cover;position: absolute;z-index: -1;top: 0; }
.slick-dots li button { height: 15px;width: 15px; }
.slick-dots li.slick-active button:before { opacity: 1;background-color: #fff;border: 1px solid #fff; }
.slick-slider { margin-bottom: 0!important; }
li.slick-active button:before,
.slick-dots li.slick-active button:before { opacity: 1;background-color: #515151;border: 1px solid #515151; }
.slick-dots li button::before {
	content: '';
	height: 15px!important;
	width: 15px!important;
	opacity: 0.8;
	background-color: #515151;
	border: 1px solid #515151;
	text-indent: -10000em;
}
.slick-dots { bottom: 20px!important; }
.slider-hero .slick-dots { display: none!important; }

/*header*/
.masthead { position: fixed;width: 100%;top: 0;background-color: #fff;border-bottom: 1px solid #f2f2f2;z-index: 1;height: 90px;z-index: 2; }
.small-header { background-color: #fff;border-bottom: 1px solid #f2f2f2; }

/*video cell phone*/
.video { background-color: #F8F7F3;}
.video-inner { width: 100%;background: transparent url("../../img/videobg-m.jpg") no-repeat center center;background-size: cover;position: relative; }
.video-inner .container-grid { padding: 3rem 1.3rem; }

/*video responsive*/
.video-detail { position: relative;padding-bottom: 56.25%;padding-top: 25px;height: 0; }
.video-detail iframe { position: absolute;top: 0;left: 0;width: 100%;height: 100%; }
.video-detail-mobile { display: none; }
.btn-play {
	position: absolute;
	top: 50%;
	left: 47%;
	transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	background-color: #ff0000;
	color: white;
	font-size: 16px;
	padding: 12px 24px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

/***** categories nav *****/
/* Common style */
.categories figure { position: relative;float: left;overflow: hidden;margin: 0;width: 100%;height: auto;text-align: center;cursor: pointer; }
.categories figure img { position: relative;display: block;min-height: 100%;max-width: 100%;opacity: 1; }
.categories figure figcaption { padding: 2em;color: #fff;text-transform: uppercase;font-size: 1.25em;-webkit-backface-visibility: hidden;backface-visibility: hidden; }
.categories figure figcaption::before,
.categories figure figcaption::after { pointer-events: none; }
.categories figure figcaption,
.categories figure figcaption > a { position: absolute;top: 0;left: 0;width: 100%;height: 100%; }
.categories-inner { position: relative; overflow: hidden; height: 396px; }
figure.effect-apollo h2 {
	width: 100%;
	background: rgba(255,255,255,0.6);
	position: absolute;
	bottom: 13%;
	left: 0;
	text-align: center;
	text-transform: none;
	font-size: 1.5em;
	padding: 0.4em 0;
	color: #000;
	-webkit-transition: all ease 0.3s;
	-moz-transition: all ease 0.3s;
	transition: all ease 0.3s;
}
.dividerlines {
	position: absolute;
	width: 100%;
	height: 30px;
	bottom: 0;
	padding-bottom: 20px;
	background-image:url("../../img/devider.png");
	background-position: center top;
	background-repeat: repeat-x;
}
.features {
	background-size: 100%;
	background: #ecf5f7;
	background: -moz-linear-gradient(left, #ecf5f7 0%, #ffffff 50%, #ecf5f7 100%);
	background: -webkit-linear-gradient(left, #ecf5f7 0%,#ffffff 50%,#ecf5f7 100%);
	background: linear-gradient(to right, #ecf5f7 0%,#ffffff 50%,#ecf5f7 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ecf5f7', endColorstr='#ecf5f7',GradientType=1 );
}
.hero { padding-bottom: 30px;background-image:url("../../img/devider.png");background-position: center bottom;background-repeat: repeat-x; }
.contact-hero { width: 100%;height: 300px;background-size: cover;background-position: center center;margin-top: 90px; }
.cakes-subcat-header { font-size: 2em; text-align: center; padding: 0.8em 0 0.4em; border-bottom: 2px solid #e0c9a6; margin-bottom: 0; }
.cakes-section { position: relative; padding-bottom: 30px; }
/* ── Catering form section ─────────────────────────── */
.catering-form-section { padding: 2.5rem 0 4rem; }
.catering-form-wrap {
	background: #fdf9f4;
	border: 1px solid #e8d9c2;
	border-radius: 12px;
	padding: 2.5rem 2.8rem;
	max-width: 860px;
	margin: 1.5rem auto 0;
	box-shadow: 0 4px 24px rgba(135,113,78,0.08);
}
.catering-form-intro {
	text-align: center;
	margin-bottom: 2rem;
	color: #6b5d4f;
	font-size: 1.05em;
	line-height: 1.6;
}
.catering-form-row { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.catering-form-row .form-group { flex: 1 1 calc(50% - 0.75rem); min-width: 220px; }
.catering-form .form-group label {
	display: block;
	font-weight: 600;
	margin-bottom: 0.4em;
	font-size: 0.88em;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #87714e;
}
.catering-form input[type="text"],
.catering-form input[type="email"],
.catering-form input[type="tel"],
.catering-form input[type="number"],
.catering-form textarea {
	width: 100%;
	padding: 0.75em 1em;
	border: 1.5px solid #d9c9b0;
	border-radius: 8px;
	font-size: 1em;
	font-family: inherit;
	color: #1d252c;
	background: #fff;
	box-sizing: border-box;
	transition: border-color 0.2s, box-shadow 0.2s;
}
.catering-form input:focus,
.catering-form textarea:focus {
	outline: none;
	border-color: #87714e;
	box-shadow: 0 0 0 3px rgba(135,113,78,0.12);
}
.catering-form textarea { resize: vertical; }
.catering-form .form-group { margin-bottom: 1.4em; }
.catering-form-divider {
	border: none;
	border-top: 1px solid #e8d9c2;
	margin: 1.8rem 0;
}
.catering-form-submit { text-align: center; margin-top: 0.5rem; }
/* Honeypot — must be visually hidden but not display:none (bots skip those) */
.form-hp { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }
/* Captcha question field — narrower than full-width inputs */
.captcha-group input[type="number"] { max-width: 120px; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; padding: 2rem 0 3rem; }
.product-card { background: #fff; border: 1px solid #ece8e0; border-radius: 4px; overflow: hidden; display: flex; flex-direction: column; }
.product-card-img { width: 100%; aspect-ratio: 4/3; overflow: hidden; background: #f7f4ef; }
.product-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s ease; }
.product-card:hover .product-card-img img { transform: scale(1.04); }
.product-card-info { padding: 0.9rem 1rem 1.1rem; flex: 1; }
.product-card-info h3 { font-size: 1em; margin: 0 0 0.4em; }
.product-card-info p { font-size: 0.88em; color: #666; margin: 0; line-height: 1.5; }
.categories { padding-bottom: 25px;background-image: url("../../img/devider.png");background-position: center bottom;background-repeat: repeat-x; }

/*button style*/
a { text-decoration: none;color: #c20430; }
a:hover,
a:active { color: #000;text-decoration: none; }
.bt-box { text-align: center; }
.m-bt { font-size: 0.9em!important;padding: 8px 18px 8px 40px; }
a.bt,
input.bt,
button.bt,
a.bt2,
button.bt2,
input.bt2{
	background: #fff;
	text-transform: uppercase;
	color: #c20430;
	display: inline-block;
	text-align: center;
	font-weight:400;
	text-decoration: none;
	max-width: 300px;
	margin: 1em auto;
	box-shadow: inset 0 0 0 0 #c20430;
	-webkit-transition: all ease 0.3s;
	-moz-transition: all ease 0.3s;
	transition: all ease 0.3s;
	border: solid 1px #c20430;
	border-radius: 10px;
	vertical-align: middle;
	position: relative;
}
a.bt:hover,
input.bt:hover,
button.bt:hover,
a.activenav { background: #c20430;color: #fff;border: solid 1px #c20430;box-shadow: inset 300px 0 0 0 #c20430;cursor: pointer; }
a.bt2:hover,
input.bt2:hover { background: #867150;color: #fff;border: solid 1px #867150;box-shadow: inset 300px 0 0 0 #867150;cursor: pointer; }
a.bt span,
input.bt span,
button.bt span,
a.bt2 span,
button.bt2 span,
input.bt2 span {
	width: 19px;
	height: 19px;
	background: transparent url("../../img/playbtn1.svg") no-repeat center center;
	background-size: 19px auto;
	text-indent: -10000em;
	position: absolute;
	left: 10px;
}
a.bt:hover span,
input:hover.bt span,
button.bt:hover span,
a.activenav span {
	background: transparent url("../../img/playbtn2.svg") no-repeat center center;
	width: 19px;
	background-size: 19px auto;
	text-indent: -10000em;
	position: absolute;
	left: 10px;
	height: 19px;
}
a.bt2:hover span,
input:hover.bt2 span {
	background: transparent url("../../img/playbtn3.svg") no-repeat center center;
	width: 19px;
	background-size: 19px auto;
	text-indent: -10000em;
	position: absolute;
	left: 10px;
	height: 19px;
}

/*feature box*/
.features-text,
.features-text p { text-align: center; }
.feature-service { background: transparent url("../../img/featured-cake1.png") no-repeat center bottom;background-size: cover;min-height: 454px; }
.feature-service,
.feature-service h2,
.feature-service .lead { text-align: right;padding-bottom: 0; }
.feature-service h2 { margin-top: 0; }
.feature-service .container-grid { display: flex;justify-content: flex-end;align-items: center; }
.feature-service .container-grid div { margin-top: 115px; }
.features .slick-dots { bottom: -40px !important; }

/*Social*/
.social-links { display: flex;flex-wrap: nowrap;justify-content: center; }
.social-links a {
	width: 56px;
	height: 54px;
	background: url(../../img/social-all.svg) no-repeat scroll center 200px transparent;
	text-indent: -10000em;
	display: block;
	margin: 0 0.2em;
	background-size: auto 54px;
	-webkit-transition: all ease 0.3s;
	-moz-transition: all ease 0.3s;
	transition: all ease 0.3s;
}
.social-links a:hover { opacity: 0.8; }
.social-links a.fa { background-position: 1px 0; }
.social-links a.in { background-position: -399px 0; }
.social-links a.li { background-position: -265px 0; }
.social-links a.yo { background-position: -132px 0; }

/*footer*/
.footer { background-color: #E2E2E2; }
.footer-nav { background: url(../../img/footerbg.jpg) no-repeat scroll center center transparent;background-size: cover; }
footer ul li { list-style: none; }
.footer-nav .container-grid { display: block; }
.footer-nav .nav1 { flex: 1;padding: 3em 0 0; }
.footer-nav .nav2 { flex: 2;padding: 3em 0 0; }
.footer-nav .nav2flex { display: flex; }
.footer-nav .nav2flex .nav { flex: 1; }
.footer-nav .address { flex: 1; }
.footer-nav .social { flex: 1; }
.footer-nav .address ul { padding: 0 1.2em;margin: 1em 0; }
.footer-nav .address { padding: 2em 0;max-width: 350px;margin: 0 auto; }
.addresstore { display: block;color: #d2d2d2; }
.footer-nav .address ul li { margin-bottom: 1em; }
.footer-nav .address ul li:nth-last-child(1) { border: 1px solid #d2d2d2;border-width: 1px 0;padding: 6px 0; }
.footer-nav .address ul li .city {
	margin: 0;
	text-transform: uppercase;
    font-size: 1em;
    font-weight: bold;
    color: #fff;
}
.footer-nav .address ul li .city a { color: #fff; }
.footer-nav .address ul li .city a:hover { opacity: .8; }
.footer-nav .address a { font-weight: bold; }
.footer-nav .address a .phone {
	width: 15px;
	height: 15px;
	display: inline-block;
	text-indent: -10000em;
	vertical-align: middle;
	background: url(../../img/phone.svg) no-repeat scroll center center transparent;
	background-size: 15px auto;
	margin-right: 7px;
}
.footer-nav .nav3 { background: turquoise; }
.footer-nav a { color: #d2d2d2; }
.footer-nav a:hover { color: #fff; }
.footer-nav h2,
.footer-nav a.direct { font-family: 'Noto Sans', sans-serif;text-transform: uppercase;font-size: 1em;font-weight: bold;color: #fff; }
.footer-nav a.direct { margin: 1.7em 0;display: block; }
.footer-nav h2 { padding-bottom: 0.1em; }
.footer-nav .social { margin-top: 1.5em; }
footer .social-links { margin: 0;width: 80%;border-top: 1px solid #fff;border-bottom: 1px solid #fff;padding: 0.9em 0;align-items: center;justify-content: flex-start; }
footer .social-links span { color: #fff;font-weight: bold;font-size: 1.1em;margin-right: 10px; }
footer .social-links a { width: 40px;height: 38px;background-size: auto 36px;margin: 0 0.3em; }
footer .social-links a.fa { background-position: 2px 0; }
footer .social-links a.in { background-position: -263px 0; }
footer .social-links a.li { background-position: -175px 0; }
footer .social-links a.yo { background-position: -86px 0; }
.footer-newsletter { padding: 1.7em 0; }
.footer-newsletter .newsletter-title { font-weight: bold;text-transform: uppercase;text-align: center;font-size: 1.5em;padding-bottom: 0.4em;color: #1d252c; }
.footer-newsletter .newsletter-subtitle {margin: 0;text-transform: none;text-align: center;font-size: 1.4em;font-weight: 400;color: #1d252c; }
.emailField {
	background: url(../../img/btnarrow.svg) no-repeat scroll right center #fff;
	background-size: 40px auto;
	max-width: 367px;
	padding: 10px 10px 10px 20px;
	font-style: italic;
	display: block;
	margin: 1em auto 0;
	color: #696969;
	font-size: 0.9em;
}
.emailField:hover { cursor: pointer; }
.footer-legal { background: #fff;padding: 10px 0; }
.footer-legal a { display: block;text-align: center;color: #6f6f6f;font-size: 0.9em;padding: 0; }

/*Products*/
.products-inner { display: flex;flex-wrap: wrap;flex-direction: row;position: relative;padding-top: 2em; }
.products-inner a { width: 50%;display: block; }

/* Common style */
.products-inner figure {
	position: relative;
	overflow: hidden;
	margin: 0.5rem;
	text-align: center;
	cursor: pointer;
	background: url(../../img/bgprod.jpg) no-repeat scroll right center transparent;
	background-size: cover;
}
.products-inner figure img {
	position: relative;
	display: block;
	min-height: 100%;
	max-width: 100%;
	opacity: 1;
	-webkit-transition: all ease 0.3s;
	-moz-transition: all ease 0.3s;
	transition: all ease 0.3s;
}
.products-inner figure figcaption {
	padding: 2em;
	color: #fff;
	text-transform: uppercase;
	font-size: 1.25em;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.products-inner figure figcaption::before,
.products-inner figure figcaption::after { pointer-events: none; }
.products-inner figure figcaption,
.products-inner figure figcaption > a { position: absolute;top: 0;left: 0;width: 100%;height: 100%; }
.products-inner figure h2 {
	font-family: 'Noto Sans', sans-serif;
	width: 100%;
	background: rgba(255,255,255,0.6);
	position: absolute;
	bottom: 13%;
	left: 0;
	text-align: center;
	text-transform: none;
	font-size: 1em;
	padding: 0.4em 0;
	color: #000;
	-webkit-transition: all ease 0.3s;
	-moz-transition: all ease 0.3s;
	transition: all ease 0.3s;
}

/*Products slider 2*/
.products2 { background-color: #FAF9F7; }
.products-inner2 { display: flex;flex-wrap: wrap;flex-direction: row;position: relative;padding-top: 2em; }
.products-inner2 a { width: 50%;display: block; }

/* Common style */
.products-inner2 figure { position: relative;overflow: hidden;margin: 0.5rem;text-align: center;cursor: pointer;background: #F0F0F0; }
.products-inner2 figure img {
	position: relative;
	display: block;
	min-height: 100%;
	max-width: 100%;
	opacity: 1;
	-webkit-transition: all ease 0.3s;
	-moz-transition: all ease 0.3s;
	transition: all ease 0.3s;
}
.products-inner2 figure figcaption { padding: 1.6em;color: #fff;text-transform: uppercase;font-size: 1.25em;-webkit-backface-visibility: hidden;backface-visibility: hidden; }
.products-inner2 figure figcaption::before,
.products-inner2 figure figcaption::after { pointer-events: none; }
.products-inner2 figure figcaption,
.products-inner2 figure figcaption > a { position: absolute;top: 0;left: 0;width: 100%;height: 100%; }
.products-inner2 figure h2 {
	width: 100%;
	background: rgba(255,255,255,0.6);
	position: absolute;
	bottom: 13%;
	left: 0;
	text-align: center;
	text-transform: none;
	font-size: 1em;
	padding: 0.4em 0;
	color: #000;
	-webkit-transition: all ease 0.3s;
	-moz-transition: all ease 0.3s;
	transition: all ease 0.3s;
}

/*slider products*/
.prod-slider { background: url(../../img/bgprod2.jpg) no-repeat scroll right center transparent;background-size: cover; }
.slider-data-flex,
.slider-data-flex2 { display: flex!important;flex-wrap: wrap;flex-direction: row;position: relative;padding: 2em 2em 0; }
.slick-prev,
.slick-next { width: 30px!important;height: 30px!important;opacity: 1;-webkit-transition: all ease 0.3s;-moz-transition: all ease 0.3s;transition: all ease 0.3s;z-index: 1; }
.slick-prev:hover,
.slick-next:hover { opacity: 1; }
.slick-prev::before,
.slick-next::before { display: none!important; }
.slick-prev { left: 0!important;background: url(../../img/back.svg) no-repeat scroll center center transparent!important;background-size: 30px auto!important; }
.slick-next { right: 0!important;background: url(../../img/next.svg) no-repeat scroll center center transparent!important;background-size: 30px auto!important; }
.slick-prev:hover {
	left: 0!important;
	background: url(../../img/back2.svg) no-repeat scroll center center transparent!important;
	background-size: 30px auto!important;
	width: 30px!important;
	height: 30px!important;
}
.slick-next:hover {
	right: 0!important;
	background: url(../../img/next2.svg) no-repeat scroll center center transparent!important;
	background-size: 30px auto!important;
	width: 30px!important;
	height: 30px!important;
}

/*Dropdown menu*/
.navdrop .bt { display: none; }
.navdrop nav {
	max-width: 324px;
	background: transparent;
	margin: 2em auto 0;
	border: 1px solid #C01E31 ;
	border-radius: 15px;
	height: 35px;
	position: relative;
	-webkit-transition: all ease 0.3s;
	-moz-transition: all ease 0.3s;
	transition: all ease 0.3s;
}
.navdrop nav span.arrow-down{
	background: transparent  url("../../img/playbtn1.svg") no-repeat center center;
	background-size: 19px auto;
	display: block;
	height: 19px;
	position: absolute;
	right: 0;
	text-indent: -999999em;
	top: 7px;
	width: 19px;
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	transform: rotate(90deg);
}
.navdrop nav span.arrow-down { right: 1em; }
.navdrop nav .label {
	display: block;
	text-align: left;
	background: none;
	font-size: 0.9em;
	text-transform: uppercase;
	width: 74%;
	margin: 0;
	color: #C01E31;
	font-weight: 300;
	position: relative;
	font-family: 'Noto Sans', sans-serif;
	top: 27%;
	left: 1.5em;
	z-index: 1;
}
.navdrop nav:hover { cursor: pointer; }
.navdrop nav ul {
	left: -9999em;
	list-style: outside none none;
	padding: 9px 0;
	position: absolute;
	top: 26px;
	z-index: 100;
	text-align: left;
	margin: 0;
	width: 100%;
}
.navdrop nav ul a {
	display: block;
	margin: 0;
	padding: 6px 10px 6px 19px;
	text-decoration: none;
	text-transform: uppercase;
	color: #fff;
	font-size: 0.9em;
	text-align: center;
	font-weight: 300;
	background-color: #C01E31;
	border: 1px solid #C01E31;
	text-align: left;
}
.navdrop nav ul a { margin: 0; }
.navdrop nav ul a:hover { background: none repeat scroll 0 0 #fff;color: #C01E31;border: medium none;text-decoration: none;border: 1px solid #C01E31; }
.navdrop nav ul a span { display: none; }
.navdrop nav:hover ul { left: 0; }

/*Stores*/
.stores-map { background-color: #FAF9F7;padding: 2em 0; }
.stores-nav { display: flex;justify-content: center;flex-wrap: wrap;flex-direction: row;position: relative;max-width: 700px;margin: 0 auto; }
.stores-nav a { margin: 0.5em auto;min-width: 170px; }
.stores-nav a.activenav span {
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	transform: rotate(90deg);
}
.stores-map .stores-map-inner { display: flex;justify-content: center;flex-wrap: wrap;flex-direction: column;position: relative; }

/*Contact map*/
.map-box { width: 100%;margin: 0;cursor: pointer; }
#map_canvas { height: 300px; }
#map_wrapper { height: 300px; }
.map-info-small { position: relative;margin: 0 auto; }
.map-info-small div { width: 100%;position: relative;display: block;margin: 10px 0; }
.map-info-small div p { display: inline-block;vertical-align: middle;width: 79%;margin-bottom: 0;margin-left: -5px;font-size: 1.05em; }
.map-info-small div a { display: inline-block;text-decoration: none;font-size: 1.05em;vertical-align: middle;width: auto;color: #515151; }
.map-info-small div span { background-size: 17px auto!important;display: inline-block;height: 17px;text-indent: -999999em;vertical-align: middle;width: 17px;margin-right: 12px; }
.map-info-small div .icon5 { background: url(../../img/clock.svg) no-repeat scroll center center transparent; }
.map-info-small div .icon4 { background: url(../../img/pin.svg) no-repeat scroll center center transparent; }
.map-info-small div .icon3 { background: url(../../img/email2.svg) no-repeat scroll center center transparent; }
.map-info-small div .icon2 { background: url(../../img/fax.svg) no-repeat scroll center center transparent; }
.map-info-small div .icon1 { background: url(../../img/phone2.svg) no-repeat scroll center center transparent; }
.map-info-small div:nth-of-type(3) { display: inline-block!important;width: 28%;float: left;	position: relative;z-index: 1; }
.map-info-small .dot { text-indent: -10000em;width: 6px;height: 6px;border-radius: 100%;background-color: #515151;margin-left: 15px; }
.map-info-small div:nth-of-type(4) { display: inline-block!important;/* float: left; */width: 70%; }
.contact-info h2 { font-size: 2em;margin: 0 0 1em; }
.prod-slider2-inner .slick-slide { border: 1px solid transparent; }

/* slider grab*/
.prod-slider2-inner div { width: 100%; }
.prod-slider2-inner h2 { font-size: 2em;text-align: center!important;display: block;margin: 0.1em auto 1em; }
.prod-slider2-inner img { padding: 1em 0; }
.prod-slider2-inner { display: flex !important;align-items: center; }
.social { clear: both; }
.standard h1 { margin-bottom: 1em; }
.standard h2 { font-size: 1.7em; }
.standard h3 { text-transform: none;font-size: 1.2em; }
.standard img { border-radius: 10px; }
.slick-slide img { width: 100%!important; }

/*CSS Spinners*/
.load-container { overflow: hidden;position: relative; width: 100%; margin: 1em 0; }
.loader3 {
	font-size: 10px;
	margin: 50px auto;
	text-indent: -9999em;
	width: 8em;
	height: 8em;
	border-radius: 50%;
	background: rgba(202, 14, 0, 1);
	background: -moz-linear-gradient(left, rgba(202, 14, 0, 1) 10%, rgba(255, 255, 255, 0) 42%);
	background: -webkit-linear-gradient(left, rgba(202, 14, 0, 1) 10%, rgba(255, 255, 255, 0) 42%);
	background: -o-linear-gradient(left, rgba(202, 14, 0, 1) 10%, rgba(255, 255, 255, 0) 42%);
	background: -ms-linear-gradient(left, rgba(202, 14, 0, 1) 10%, rgba(255, 255, 255, 0) 42%);
	background: linear-gradient(to right, rgba(202, 14, 0, 1) 10%, rgba(255, 255, 255, 0) 42%);
	position: relative;-webkit-animation: load3 1.4s infinite linear;
	animation: load3 1.4s infinite linear;
	-webkit-transform: translateZ(0);
	-ms-transform: translateZ(0);
	transform: translateZ(0);
}
.loader3:before { width: 50%;height: 50%;background: rgba(202, 14, 0, 1);border-radius: 100% 0 0 0;position: absolute;top: 0;left: 0;content: ''; }
.loader3:after { background: #fff;width: 75%;height: 75%;border-radius: 50%;content: '';margin: auto;position: absolute;top: 0;left: 0;bottom: 0; right: 0;}
/*List*/
.main .paragraph { margin: 0 0 2em; }
.main .paragraph ul,
.main .paragraph ol { list-style: none;padding-left: 15px;margin-top: 1em;font-size: 1.2em;line-height: 30px;color: #000; }
.main .paragraph ul li { margin-bottom: 5px;padding-left: 10px;text-indent: -1em;line-height: 126%; }
.main .paragraph ol li { margin-bottom: 5px;padding-left: 26px;text-indent: -2em;line-height: 120%;}
.main .paragraph ul li::before { content: "• ";color: #C01E31;margin-right: 4px;font-weight: bold; }
.main .paragraph ol { counter-reset: item; }
.main .paragraph ol li::before { color: #C01E31;content: counter(item) ". ";counter-increment: item;display: inline-block;font-size: 1.3em;margin-right: 4px;min-width: 26px;text-align: left; text-indent: 0;}
.standard2 { display: block; }
.standard2 .imgbox { margin-right: 2em; padding: 0 0 20px; }
.standard2 img { border-radius: 10px;width: 100%; }
/* Modale */
/*popup*/
.window_p {background: #FFF;min-width:300px;min-heigth:200px;padding:2.5em;position:fixed;top:50%;left:50%;-ms-transform:translate(-50%, -50%);-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%);z-index:99999;transition: all 0.5s ease;-webkit-transition: all 0.5s ease}
.window_p > .close {cursor:pointer;display:block;position:absolute;top:-28px; right:0; width:20px; height: 20px;background:url(../img/close.svg) no-repeat 50% 0;background-size:20px 20px}
.window_p > img {position:absolute;bottom:0;padding:5px;left:50%;-ms-transform:translate(-50%, 0);-webkit-transform:translate(-50%, 0);transform:translate(-50%, 0);transition: all 0.5s ease;-webkit-transition: all 0.5s ease; max-width: 100%;max-height:100%}
.window_p > .title {display:block;position:absolute;bottom: -58px; left:0; right:0; height: 58px; background: #FFF; color: #000; text-align: center;line-height: 58px}
.window_p .next, .window .prev {cursor:pointer;display:inline-block;width:20px; height:20px;margin:0 10px;text-align: center;vertical-align: middle;line-height: 1em;background-size:7px 16px}
.window_p .next::after {content:'▸';font-size:2em}
.window_p .prev::before {content:'◂';font-size:2em}
.window_p .count{display:block;position:absolute;bottom: -58px;right:0;min-width:58px;height:58px;padding:0 8px;color:#FFF;background:#249A46;line-height: 58px;text-align: center}

.modal { position: fixed;top: 0;right: 0;bottom: 0;left: 0;background-color: rgba(0, 0, 0, 0.7);z-index: 99997; }
.window { background: #000;position: fixed;display: inline-block;top: 0;left: 0;z-index: 99998; }
.window .close {
	position: absolute;
	display: block;
	top: -39px;
	right: 3px;
	background-image: url(../../img/bt_close.png);
	background-repeat: no-repeat;
	width: 36px;
	height: 35px;
	cursor: pointer;
	z-index: 99999;
}
.window .close-small {
	position: absolute;
	display: block;
	top: 30px;
	right: 3px;
	background-image: url(../../img/bt_close.png);
	background-repeat: no-repeat;
	width: 36px;
	height: 35px;
	cursor: pointer;
	z-index: 99999;
}
.standard2 h2 { margin-top: 0;font-size: 2.5em; }
@-webkit-keyframes .loader3 {
	{-webkit-transform: rotate(0deg);transform: rotate(0deg);}
	100% {-webkit-transform: rotate(360deg); transform: rotate(360deg);}
}
@keyframes load3 {
	0% { -webkit-transform: rotate(0deg);transform: rotate(0deg);}
	100% {-webkit-transform: rotate(360deg);transform: rotate(360deg); }
}

/*Contact page*/
/* ── Contact page hero ─────────────────────────── */
.contact-hero {
	width: 100%;
	height: 260px;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

/* ── Contact page layout ──────────────────────── */
.contact-page-inner { display: block; }
.contact-page-info { margin-bottom: 2.5em; }
.contact-page-info .map-info-small div:nth-of-type(3),
.contact-page-info .map-info-small div:nth-of-type(4) { display: block!important; width: 100%; float: none; }
.contact-page-form { width: 100%; }
.contact-form-wrap {
	background: #fdf9f4;
	border: 1px solid #e8d9c2;
	border-radius: 12px;
	padding: 2.5rem 2.8rem;
	box-shadow: 0 4px 24px rgba(135,113,78,0.08);
}
.contact-form .form-group { margin-bottom: 1.4em; }
.contact-form label {
	display: block;
	font-weight: 600;
	margin-bottom: 0.4em;
	font-size: 0.88em;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #87714e;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
	width: 100%;
	padding: 0.75em 1em;
	border: 1.5px solid #d9c9b0;
	border-radius: 8px;
	font-size: 1em;
	font-family: inherit;
	color: #1d252c;
	background: #fff;
	box-sizing: border-box;
	transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
	outline: none;
	border-color: #87714e;
	box-shadow: 0 0 0 3px rgba(135,113,78,0.12);
}
.contact-form textarea { resize: vertical; }
.contact-form-submit { text-align: center; margin-top: 0.5rem; }
.contact-form-error { color: #c20430; font-weight: bold; margin-bottom: 1em; }
/* ── Contact form notices ──────────────────────────── */
.contact-notice {
	display: flex;
	align-items: flex-start;
	gap: 0.85em;
	padding: 1.1em 1.4em;
	border-radius: 5px;
	margin-bottom: 1.4em;
	font-size: 1em;
	line-height: 1.5;
}
.contact-notice--success {
	background: #eaf6ec;
	border: 1px solid #4caf50;
	color: #1e5c22;
}
.contact-notice--error {
	background: #fdecea;
	border: 1px solid #e53935;
	color: #7b1a17;
}
.contact-notice-icon {
	font-size: 1.5em;
	line-height: 1;
	flex-shrink: 0;
}
.contact-notice strong { display: block; margin-bottom: 0.2em; }

.contact-form input[type="file"] {
	padding: 0.4em 0.5em;
	background: #fff;
	cursor: pointer;
	font-size: 0.9em;
}
.contact-file-hint {
	display: block;
	margin-top: 0.35em;
	font-size: 0.8em;
	color: #888;
}
.contact-success { background: #f0f7f0; border: 1px solid #87714e; border-radius: 4px; padding: 1.2em 1.5em; color: #1d252c; font-size: 1.05em; }
