/*-----------------------------------------------------------------------------------
	Frangraf
	About: "Proposition pour un nouveau code d'écriture du français.Facile à apprendre. Rationnel et efficace.Anti-faute"
	Author: Norman Sheeran
	Version: 1.0
	Built with Blocs
-----------------------------------------------------------------------------------*/
body{
	margin:0;
	padding:0;
    background:#FFFFFF;
    overflow-x:hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.page-container{overflow: hidden;} /* Prevents unwanted scroll space when scroll FX used. */
a,button{transition: background .3s ease-in-out;outline: none!important;} /* Prevent blue selection glow on Chrome and Safari */
a:hover{text-decoration: none; cursor:pointer;}
.scroll-fx-lock-init{position:fixed!important;top: 0;bottom: 0;left: 0;right: 0;z-index:99999;} /* ScrollFX Lock */
.blocs-grid-container{display: grid!important;grid-template-columns: 1fr 1fr;grid-template-rows: auto auto;column-gap: 1.5rem;row-gap: 1.5rem;} /* CSS Grid */


/* Preloader */

.page-preloader{position: fixed;top: 0;bottom: 0;width: 100%;z-index:100000;background:#FFFFFF url("img/pageload-spinner.gif") no-repeat center center;animation-name: preloader-fade;animation-delay: 2s;animation-duration: 0.5s;animation-fill-mode: both;}
.preloader-complete{animation-delay:0.1s;}
@keyframes preloader-fade {0% {opacity: 1;visibility: visible;}100% {opacity: 0;visibility: hidden;}}

/* = Blocs
-------------------------------------------------------------- */

.bloc{
	width:100%;
	clear:both;
	background: 50% 50% no-repeat;
	padding:0 20px;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	position:relative;
	display:flex;
}
.bloc .container{
	padding-left:0;
	padding-right:0;
}


/* Sizes */

.bloc-lg{
	padding:100px 20px;
}
.bloc-md{
	padding:50px 20px;
}
.bloc-sm{
	padding:20px;
}

/* = Full Screen Blocs 
-------------------------------------------------------------- */

.bloc-fill-screen{
	min-height:100vh;
	display: flex;
	flex-direction: column;
	padding-top:20px;
	padding-bottom:20px;
}
.bloc-fill-screen > .container{
	align-self: flex-middle;
	flex-grow: 1;
	display: flex;
	flex-wrap: wrap;
}
.bloc-fill-screen > .container > .row{
	flex-grow: 1;
	align-self: center;
	width:100%;
}
.bloc-fill-screen .fill-bloc-top-edge, .bloc-fill-screen .fill-bloc-bottom-edge{
	flex-grow: 0;
}
.bloc-fill-screen .fill-bloc-top-edge{
	align-self: flex-start;
}
.bloc-fill-screen .fill-bloc-bottom-edge{
	align-self: flex-end;
}

/* = Full Width Blocs 
-------------------------------------------------------------- */

.full-width-bloc{
	padding-left:0;
	padding-right:0;
}
.full-width-bloc .row{
	margin-left:0;
	margin-right:0;
}
.full-width-bloc .container{
	width:100%;
	max-width:100%!important;
}
.full-width-bloc .carousel img{
	width:100%;
	height:auto;
}


/* Edge Dividers */

.bloc-shape-divider{
	position: absolute;
	width:100%;
	text-align:center;
	left:0;
	right:0;
	z-index: 0;
	display: flex;
	pointer-events: none;
}
.svg-divider{
	width:100%;
	height:100px;
	fill:#000000;
}
.bloc-divider-top{
	top:-1px;
	align-items: flex-start;
}
.bloc-divider-bottom{
	bottom:-1px;
	align-items: flex-end;
}


/* Bloc Mask */

.bloc-bg-mask{
	position: absolute;
	width:100%;
	height: 100%;
	text-align:center;
	left:0;
	right:0;
	top:0;
	bottom:0;
	z-index: 0;
	display: flex;
	pointer-events: none;
	align-items: flex-start;
}
.svg-mask{
	width:100%;
	height: 100%;
	fill-rule: evenodd;
	fill:#000000;
}


/* Flip Edge Divider */

.bloc-divider-flip-x svg{
	transform:scale(-1,1);
}
.bloc-divider-flip-y svg{
	transform:scale(1,-1);
}
.bloc-divider-flip-x.bloc-divider-flip-y svg{
	transform:scale(-1,-1);
}


/* Background Styles */

.bg-center,.bg-l-edge,.bg-r-edge,.bg-t-edge,.bg-b-edge,.bg-tl-edge,.bg-bl-edge,.bg-tr-edge,.bg-br-edge,.bg-repeat{
	-webkit-background-size: auto!important;
	-moz-background-size: auto!important;
	-o-background-size: auto!important;
	background-size: auto!important;
}
.bg-center{
	-webkit-background-size: auto;
}
.bg-t-edge{
	background-position: top!important;
	background-repeat: no-repeat;
}


/* Background Textures */

.bloc-bg-texture::before{
	content:"";
	background-size: 2px 2px;
	position: absolute;
	top: 0;
	bottom: 0;
	left:0;
	right:0;
}
.texture-paper::before{
	background: url("img/texture-paper.png");
	background-size: 280px 280px;
}
.texture-darken::before{
	background: rgba(0,0,0,0.5);
}


/* Background Effects */

.parallax__container {
	clip: rect(0, auto, auto, 0);
	height: 100%;
	left: 0;
	overflow: hidden;
	position: absolute;
	top: 0;
	width: 100%;
	z-index:-1;
}
.parallax {
	position: fixed;
	top: 0;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	width: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}


/* Dark theme */

.d-bloc{
	color:rgba(255,255,255,.7);
}
.d-bloc button:hover{
	color:rgba(255,255,255,.9);
}
.d-bloc .icon-round,.d-bloc .icon-square,.d-bloc .icon-rounded,.d-bloc .icon-semi-rounded-a,.d-bloc .icon-semi-rounded-b{
	border-color:rgba(255,255,255,.9);
}
.d-bloc .divider-h span{
	border-color:rgba(255,255,255,.2);
}
.d-bloc .a-btn,.d-bloc .navbar a, .d-bloc a .icon-sm, .d-bloc a .icon-md, .d-bloc a .icon-lg, .d-bloc a .icon-xl, .d-bloc h1 a, .d-bloc h2 a, .d-bloc h3 a, .d-bloc h4 a, .d-bloc h5 a, .d-bloc h6 a, .d-bloc p a{
	color:rgba(255,255,255,.6);
}
:where(.d-bloc) .bloc-link{
	fill:rgba(255,255,255,.6);
}
.d-bloc .a-btn:hover,.d-bloc .navbar a:hover,.d-bloc a:hover .icon-sm, .d-bloc a:hover .icon-md, .d-bloc a:hover .icon-lg, .d-bloc a:hover .icon-xl, .d-bloc h1 a:hover, .d-bloc h2 a:hover, .d-bloc h3 a:hover, .d-bloc h4 a:hover, .d-bloc h5 a:hover, .d-bloc h6 a:hover, .d-bloc p a:hover{
	color:rgba(255,255,255,1);
}
.d-bloc .navbar-toggle .icon-bar{
	background:rgba(255,255,255,1);
}
.d-bloc .btn-wire,.d-bloc .btn-wire:hover{
	color:rgba(255,255,255,1);
	border-color:rgba(255,255,255,1);
}
.d-bloc .card{
	color:rgba(0,0,0,.5);
}
.d-bloc .card button:hover{
	color:rgba(0,0,0,.7);
}
.d-bloc .card icon{
	border-color:rgba(0,0,0,.7);
}
.d-bloc .card .divider-h span{
	border-color:rgba(0,0,0,.1);
}
.d-bloc .card .a-btn{
	color:rgba(0,0,0,.6);
}
.d-bloc .card .a-btn:hover{
	color:rgba(0,0,0,1);
}
.d-bloc .card .btn-wire, .d-bloc .card .btn-wire:hover{
	color:rgba(0,0,0,.7);
	border-color:rgba(0,0,0,.3);
}


/* Light theme */

.d-bloc .card,.l-bloc{
	color:rgba(0,0,0,.5);
}
.d-bloc .card button:hover,.l-bloc button:hover{
	color:rgba(0,0,0,.7);
}
.l-bloc .icon-round,.l-bloc .icon-square,.l-bloc .icon-rounded,.l-bloc .icon-semi-rounded-a,.l-bloc .icon-semi-rounded-b{
	border-color:rgba(0,0,0,.7);
}
.d-bloc .card .divider-h span,.l-bloc .divider-h span{
	border-color:rgba(0,0,0,.1);
}
.d-bloc .card .a-btn,.l-bloc .a-btn,.l-bloc .navbar a,.l-bloc a .icon-sm, .l-bloc a .icon-md, .l-bloc a .icon-lg, .l-bloc a .icon-xl, .l-bloc h1 a, .l-bloc h2 a, .l-bloc h3 a, .l-bloc h4 a, .l-bloc h5 a, .l-bloc h6 a, .l-bloc p a{
	color:rgba(0,0,0,.6);
}
:where(.l-bloc) .bloc-link{
	fill:rgba(0,0,0,.6);
}
.d-bloc .card .a-btn:hover,.l-bloc .a-btn:hover,.l-bloc .navbar a:hover, .l-bloc a:hover .icon-sm, .l-bloc a:hover .icon-md, .l-bloc a:hover .icon-lg, .l-bloc a:hover .icon-xl, .l-bloc h1 a:hover, .l-bloc h2 a:hover, .l-bloc h3 a:hover, .l-bloc h4 a:hover, .l-bloc h5 a:hover, .l-bloc h6 a:hover, .l-bloc p a:hover{
	color:rgba(0,0,0,1);
}
.l-bloc .navbar-toggle .icon-bar{
	color:rgba(0,0,0,.6);
}
.d-bloc .card .btn-wire,.d-bloc .card .btn-wire:hover,.l-bloc .btn-wire,.l-bloc .btn-wire:hover{
	color:rgba(0,0,0,.7);
	border-color:rgba(0,0,0,.3);
}


/* Correct Dropdown Links */

.d-bloc .dropdown-menu a, .l-bloc .dropdown-menu a,.d-bloc .dropdown-menu a:hover, .l-bloc .dropdown-menu a:hover{
	color:initial;
}


/* = NavBar
-------------------------------------------------------------- */

.navbar-dark .nav .dropdown-menu .nav-link{
	color: rgb(64, 64, 64);
}
/* Navbar Icon */
.svg-menu-icon{
	fill: none;
	stroke: rgba(0,0,0,0.5);
	stroke-width: 2px;
	fill-rule: evenodd;
}
.navbar-dark .svg-menu-icon{
	stroke: rgba(255,255,255,0.5);
}
.menu-icon-thin-bars{
	stroke-width: 1px;
}
.menu-icon-thick-bars{
	stroke-width: 5px;
}
.menu-icon-rounded-bars{
	stroke-width: 3px;
	stroke-linecap: round;
}
.menu-icon-filled{
	fill: rgba(0,0,0,0.5);
	stroke-width: 0px;
}
.navbar-dark .menu-icon-filled{
	fill: rgba(255,255,255,0.5);
}
.navbar-toggler-icon{
	background: none!important;
	pointer-events: none;
	width: 33px;
	height: 33px;
}
.navbar-toggle.menu-icon-rounded-uneven-list{
	margin-top:7px!important;
}
/* Handle Multi Level Navigation */
.dropdown-menu .dropdown-menu{
	border:none}
@media (min-width:576px){
	
.navbar-expand-sm .dropdown-menu .dropdown-menu{
	border:1px solid rgba(0,0,0,.15);
	position:absolute;
	left:100%;
	top:-7px}.navbar-expand-sm .dropdown-menu .submenu-left{
	right:100%;
	left:auto}}@media (min-width:768px){
	.navbar-expand-md .dropdown-menu .dropdown-menu{
	border:1px solid rgba(0,0,0,.15);
	border:1px solid rgba(0,0,0,.15);
	position:absolute;
	left:100%;
	top:-7px}.navbar-expand-md .dropdown-menu .submenu-left{
	right:100%;
	left:auto}}@media (min-width:992px){
	.navbar-expand-lg .dropdown-menu .dropdown-menu{
	border:1px solid rgba(0,0,0,.15);
	position:absolute;
	left:100%;
	top:-7px}.navbar-expand-lg .dropdown-menu .submenu-left{
	right:100%;
	left:auto}
}
/* = Bric adjustment margins
-------------------------------------------------------------- */

.mg-md{
	margin-top:10px;
	margin-bottom:20px;
}

/* = Buttons
-------------------------------------------------------------- */

.btn-d,.btn-d:hover,.btn-d:focus{
	color:#FFF;
	fill:#FFF;
	background:rgba(0,0,0,.3);
}

.btn-rd{
	border-radius: 40px;
}
.btn-glossy{
	border:1px solid rgba(0,0,0,.09);
	border-bottom-color:rgba(0,0,0,.2);
	text-shadow:0 1px 0 rgba(0,0,1,.2);
	box-shadow: 0 1px 3px rgba(0,0,1,.35), inset 0 1px 0 0 rgba(255,255,255,.4), inset 0 1px 0 2px rgba(255,255,255,.08);
	background-image: linear-gradient(bottom, rgba(0,0,0,.07) 0%, rgba(255,255,255,.07) 100%);
}
.btn-glossy:focus{
	box-shadow: 0 1px 3px rgba(0,0,1,.35), inset 0 1px 0 0 rgba(255,255,255,.4), inset 0 1px 0 2px rgba(255,255,255,.08)!important;
}
.btn-style-none,.btn-style-none:hover,.btn-style-none:active,.btn-style-none:focus{
	background:none;
	box-shadow: none;
	padding:0;
}


/* Image Scale */
.img-fluid-up{
	min-width: 100%;
	height: auto;
}

/* = Text & Icon Styles
-------------------------------------------------------------- */
.sm-shadow{
	text-shadow:0 1px 2px rgba(0,0,0,.3);
}
.lg-shadow{
	text-shadow:0 2px 5px rgba(0,0,0,.5);
}
.glow-t{
	text-shadow:0 0 10px #FFF;
}
/* = Text Widths
-------------------------------------------------------------- */
.text-w-90{
	max-width:90%;
}
.text-w-70{
	max-width:70%;
}
.text-center.text-w-sm, .text-center.text-w-md, .text-center.text-w-lg, .text-center.text-w-90, .text-center.text-w-80, .text-center.text-w-70, .text-center.text-w-60, .text-center.text-w-50{
	margin-left: auto;
	margin-right: auto;
}


.card-sq, .card-sq .card-header, .card-sq .card-footer{
	border-radius:0;
}
.card-rd{
	border-radius:30px;
}
.card-rd .card-header{
	border-radius:29px 29px 0 0;
}
.card-rd .card-footer{
	border-radius:0 0 29px 29px;
}

/* = Classic Dividers
-------------------------------------------------------------- */
.divider-h{
	min-height: 1px;
	background-color:rgba(0,0,0,.2);
	margin: 20px 0;
}
.divider-half{
	width: 50%;
}
.dropdown-menu .divider-h{
	margin:0;
}

[data-bs-theme="dark"] .carousel-nav-icon{
	stroke: #000;
}
[data-bs-theme="dark"] .carousel-indicators [data-target] {
	background-color:#000;
}


/* ScrollToTop button */

.scrollToTop{
	width:36px;
	height:36px;
	padding:5px;
	position:fixed;
	bottom:1rem;
	right:1rem;
	opacity:0;
	z-index:999999;
	transition: all .3s ease-in-out;
	pointer-events:none;
}
.showScrollTop{
	opacity: 1;
	pointer-events:all;
}
.scroll-to-top-btn-icon{
	fill: none;
	stroke: #fff;
	stroke-width: 2px;
	fill-rule: evenodd;
	stroke-linecap:round;
}

/* = Custom Styling
-------------------------------------------------------------- */

h1,h2,h3,h4,h5,h6,p,label,.btn,a{
	font-family:"Old Standard TT";
}
.container{
	max-width:1140px;
}
.footer-link{
	text-align:center;
	font-size:14px;
	margin-bottom:30px;
}
.primary-divider{
	width:100%;
	height:4px;
	background-color:var(--swatch-var-3409);
	margin:10px auto 40px auto;
}
.primary-btn{
	color:#FEFFFE!important;
}
.hero-sub-heading{
	font-size:20px;
}
.hero-btn{
	min-width:150px;
}
.footer-divider{
	background-color:var(--swatch-var-3409);
	width:40%;
	height:3px;
	margin-top:30px;
	margin-bottom:30px;
}
.info-text{
	font-size:18px;
}
.cap-heading{
	text-transform:uppercase;
}
.hero-fill-mask{
	fill:var(--swatch-var-6880);
}
.logo-style{
	font-size:30px;
	font-family:"Open Sans";
}
.feature-icon{
	text-align:center;
}
.primary-icon{
	fill:var(--swatch-var-3409);
}
.form-btn{
	min-width:200px;
}
.drink-thumb{
	float:left;
	width:50px;
	height:50px;
	border-radius:50px 50px 50px 50px;
}
.menu-grid{
	grid-template-columns:0.20fr 1fr 0.25fr;
	column-gap:13px;
}
.page-heading{
	font-size:100px;
}
.bloc-fill-mask-2{
	fill:rgba(0,0,0,0.70);
}
.bloc-fill-mask-3{
	fill:rgba(0,0,0,0.70);
}
.navbar-brand img{
	height:55px;
	width:55px;
}
.p-style{
	font-size:33px;
	color:#FFFFFF!important;
	width:98.47%;
}
.img-style{
	width:98px;
	height:70px;
}
.list{
	color:var(--swatch-var-7376)!important;
	font-size:18px;
	font-family:"Droid Sans";
}
.h4-style{
	width:100%;
	font-size:22px;
}
.p-details-style{
	font-size:18px;
	line-height:2px;
}
.p-ortog-style{
	font-size:26px;
	width:100%;
	line-height:33px;
}
.bloc-divider-t-fill{
	fill:var(--swatch-var-6880);
	height:90px;
}
.bloc-divider-b-fill{
	fill:rgba(0,0,0,0.64);
}
.bloc-divider-t-cod-ecritur-fill{
	fill:rgba(0,0,0,0.34);
}
.bloc-divider-b-règles-fill{
	fill:rgba(0,0,0,0.50);
}
.divider-style{
	height:2px;
}
.row-style{
	width:100%;
}
.bloc-divider-b-details-fill{
	fill:rgba(25,29,30,0.40);
}
.h3-regles-style{
	font-size:22px;
	width:100%;
	line-height:32px;
	text-align:left;
	writing-mode:horizontal-tb;
}
.h4-hot-beverages-style{
	width:100%;
	font-size:18px;
}
.bloc-divider-t-trenscripsion-fill{
	fill:rgba(35,36,35,0.14);
	height:60px;
}
.h4-trenscripsion-style{
	width:100%;
	text-indent:0px;
	letter-spacing:0%;
	line-height:27px;
	font-size:18px;
}
.h4-8-style{
	line-height:28px;
	font-size:18px;
	width:100%;
}
.link-style{
	width:84.79%;
}
.h3-43-style{
	font-size:24px;
	line-height:30px;
}
.label-style{
	font-size:18px;
}
.link-u-style{
	width:2.75%;
	font-weight:bold;
	text-decoration:underline;
	font-style:normal;
}
.p-4-style{
	font-size:16px;
	width:100%;
}
.h1-style{
	font-size:40px;
}
.h4-17-style{
	line-height:27px;
	font-size:20px;
}
.h4-18-style{
	line-height:27px;
	font-size:20px;
}
.carousel-style{
	width:100%;
	position:relative;
	top:0px;
}
.h3-bloc-19-style{
	line-height:33px;
}
.h1-bloc-18-style{
	font-size:33px;
}
.h5-style{
	font-size:18px;
	line-height:24px;
}
.h1-3-style{
	font-family:"Ubuntu";
	font-size:90px;
	letter-spacing:4px;
	width:100%;
	line-height:90px;
}
.text-area-style{
	width:100%;
}
.form-style{
	width:100%;
}
.h2-style{
	font-size:26px;
}
.h1-contact-style{
	font-size:54px;
}
.h5-bloc-24-style{
	width:100%;
	font-family:"PT Sans";
	font-size:18px;
}
.img-5-jen-style{
	width:481px;
}
.bloc-divider-t-bloc-24-fill{
	fill:var(--swatch-var-2941);
}
.bloc-divider-b-bloc-26-fill{
	fill:var(--swatch-var-2941);
}
.h5-mon-pèi-style{
	font-size:16px;
}
.h5-1-style{
	font-size:18px!important;
}
.bloc-divider-t-0-fill{
	fill:rgba(0,0,15,0.40);
}
.bloc-divider-t-2290-fill{
	fill:var(--swatch-var-6880);
	height:80px;
}
.bloc-divider-b-bloc-22-fill{
	fill:var(--swatch-var-5558);
}
.bloc-divider-t-style{
	height:70px;
	fill:var(--swatch-var-6880);
}
.h4-cod-ecritur-style{
	font-size:20px;
	width:68.89%;
}
.img-4-style{
	height:270px;
	width:180px;
}
.h5-15-style{
	width:70.13%;
}
.p-6-style{
	width:62.13%;
}
.link-qontaqt    -style{
	width:94.74%;
}
.h5-bloc-21-style{
	font-family:"Vollkorn";
	font-size:18px;
}
.h4-qontaq-style{
	width:16.04%;
	font-size:28px;
}
.btn-style{
	width:69.86%;
}
.p-5-style{
	font-size:18px;
	font-family:"Ubuntu";
}
.btn-le-dixionèr-style{
	font-weight:bold;
	font-family:"Helvetica";
}
.h6-style{
	width:87.21%;
	font-style:italic;
}
.h6-bloc-32-style{
	line-height:27px;
	width:87.03%;
	font-size:20px;
}
.h6-6-style{
	width:100%;
	line-height:24px;
	font-size:18px;
}
.img-un-carcan-style{
	width:235px;
}
.row-range-style{
	width:100%;
}
.h4-range-style{
	font-size:18px;
	width:98.57%;
}
.h5-cod-ecritur-style{
	width:98.51%;
}
.h5-regles-style{
	text-indent:px;
	padding-top:9px;
	font-size:20px;
	width:100%;
	font-family:"Source Sans Pro";
	font-weight:300;
}
.h4-7-style{
	width:100%;
}
.h5-3-style{
	width:92.22%;
}
.bloc-divider-b-style{
	width:100%;
	height:50px;
	fill:var(--swatch-var-5558);
}
.bloc-divider-b-bloc-31-fill{
	fill:var(--swatch-var-5558);
}
.bloc-divider-b-bloc-33-style{
	height:50px;
	fill:var(--swatch-var-5558);
}
.bloc-divider-b-bloc-22-style{
	height:70px;
	fill:var(--swatch-var-7358);
}
.bloc-divider-b-bloc-23-fill{
	fill:var(--swatch-var-5558);
	height:50px;
}
.text-span-style{
	font-weight:bold;
}
.h6-bloc-22-style{
	width:100%;
}
.p-8-style{
	font-family:"Open Sans";
}
.p-9-style{
	font-family:"Open Sans";
}
.img-10-style{
	width:547px;
}
.img-my-extensions-style{
	width:600px;
}
.h5-lexiqe-style{
	width:98.89%;
	font-size:18px;
}
.text-span-bloc-15-style{
	font-style:italic;
}
.h4-hero-style{
	font-size:22px;
}
.h4-3-style{
	font-size:22px;
}
.h4-1-style{
	font-size:26px;
}
.h5-2-style{
	font-size:18px;
}
.menu-icon-stroke{
	stroke:var(--swatch-var-6728)!important;
	fill:var(--swatch-var-6728)!important;
}
.link-erofa-style{
	font-weight:bold;
}
.link-0-style{
	font-weight:bold;
}
.link-alfonic-style{
	font-weight:bold;
}
.link-ortograf-style{
	font-weight:bold;
}
.link-fonétik-style{
	font-weight:bold;
}
.text-span-bloc-22-style{
	font-weight:bold;
}
.img-2-style{
	width:200px;
}
.img-efiqasit-style{
	width:900px;
	height:320px;
}
.bloc-fill{
	fill:var(--swatch-var-2941);
}
.h5-38-style{
	width:79.82%;
}
.container-div-style{
	width:100%;
	min-height:324px;
}
.menu-icon-hero-stroke{
	stroke:var(--swatch-var-7955)!important;
	fill:var(--swatch-var-7955)!important;
}
.menu-icon-bloc-0-stroke{
	stroke:var(--swatch-var-7955)!important;
	fill:var(--swatch-var-7955)!important;
}
.img-qouri-style{
	width:60px;
}
.p-bloc-21-style{
	line-height:22px;
	font-family:"Vollkorn";
	font-size:18px;
}
.h4-regles-style{
	font-family:"Open Sans";
	font-weight:600;
}
.h5-source sans{
	font-family:"Source Sans Pro";
}
.h5-39-style{
	font-family:"Roboto";
	font-size:17px;
	width:100%;
}
.h5-44-style{
	font-family:"PT Serif";
	font-size:17px;
	line-height:22px;
}
.h5-41-regles-style{
	font-size:18px;
}
.h5-47-style{
	font-size:15px;
	font-family:"Roboto";
	line-height:16px;
}
.h5-44-regles-style{
	font-family:"PT Serif";
	font-size:17px;
	text-align:center;
}
.link-regles-style{
	font-style:italic;
}
.link-règles-style{
	font-style:italic;
}
.h5-48-style{
	font-size:22px;
}
.img-favicon-style{
	width:54px;
}
.img-tireli-style{
	height:100px;
}
.img-clavi-style{
	width:122px;
}
.img-regles-style{
	width:87px;
}
.h5-bloc-22-style{
	font-size:18px;
	line-height:20px;
}
.h5-bloc-23-style{
	font-size:18px;
	line-height:20px;
}
.h5-13{
	font-size:18px;
	line-height:20px;
}
.h5-bloc-31-style{
	font-size:18px;
	line-height:22px;
}
.h5-16-style{
	font-size:18px;
	line-height:22px;
}
.img-3-style{
	height:385px;
	width:320px;
}
.h5-5-style{
	width:97.78%;
	font-family:"Vollkorn";
}
.h6-2025-06-13-style{
	font-family:"Open Sans Condensed";
	font-weight:300;
	font-size:14px;
}
.text-span-bloc-23-style{
	font-style:italic;
}
.h5-39-regles-style{
	font-size:18px;
}
.img-mastodon-style{
	width:45px;
}
.img-bluesky-lo-style{
	width:45px;
}
.h6-le-dixionère-style{
	font-family:"Oswald";
}
.row-15-style{
	width:100%;
}
.h5-bloc-9-style{
	width:68.86%;
}
.h6-bloc-10-style{
	width:90.11%;
}
.h6-3-style{
	width:100%;
}
.h5-bloc-5-style{
	width:100%;
	font-size:22px;
}
.h5-5-bloc-5-style{
	font-size:18px;
}
.h5-22-style{
	width:63.95%;
}
.navbar-logo{
	text-transform:none;
	text-decoration:none;
	font-size:20px;
}
.h5-14-style{
	font-size:18px;
	font-family:"Vollkorn";
}
.h5-33-style{
	line-height:25px;
}
.h6-2957-style{
	width:100%;
	font-size:18px;
	line-height:20px;
}
.h6-bloc-21-style{
	font-size:18px;
	line-height:20px;
}
.h6-regles-style{
	line-height:20px;
	font-family:"PT Sans";
	font-size:17px;
}
.h6-12-style{
	font-size:17px;
}

/* = Colour
-------------------------------------------------------------- */

/* Swatch Variables */
:root{
	
	--swatch-var-7376:rgba(35,36,35,1.00);
	
	--swatch-var-2941:rgba(232,210,168,0.94);
	
	--swatch-var-6728:rgba(255,255,255,1.00);
	
	--swatch-var-3409:rgba(0,153,153,0.87);
	
	--swatch-var-5587:rgba(35,36,35,0.06);
	
	--swatch-var-5558:rgba(35,36,35,0.66);
	
	--swatch-var-7750:rgba(35,36,35,0.73);
	
	--swatch-var-2869:rgba(0,0,0,1.00);
	
	--swatch-var-5568:rgba(35,36,35,0.84);
	
	--swatch-var-7358:rgba(35,36,35,0.00);
	
	--swatch-var-3893:rgba(188,0,0,1.00);
	
	--swatch-var-6880:rgba(103,102,109,1.00);
	
	--swatch-var-2093:#F4F3F0;
	
	--swatch-var-895:rgba(234,233,222,1.00);
	
	--swatch-var-4025:#FFF5F5;
	
	--swatch-var-7955:#FFFFD4;
	
	--swatch-var-4981:#DCFFD4;
	
	--swatch-var-4294:#BAFFFF;
	
	--swatch-var-4887:#D0FFF5;
	
	--swatch-var-6566:rgba(243,228,224,1.00);
	
	--swatch-var-4976:rgba(227,242,255,1.00);
	
	--swatch-var-4982:#003B00;
	
	--swatch-var-3860:rgba(163,235,255,1.00);
	
	--swatch-var-6184:rgba(0,26,255,1.00);
	
}


/* Background colour styles */

.bgc-6880{
	background-color:var(--swatch-var-6880);
}
.bgc-5587{
	background-color:var(--swatch-var-5587);
}
.bgc-6728{
	background-color:var(--swatch-var-6728);
}
.bgc-7955{
	background-color:var(--swatch-var-7955);
}
.bgc-3860{
	background-color:var(--swatch-var-3860);
}
.bgc-6566{
	background-color:var(--swatch-var-6566);
}
.bgc-895{
	background-color:var(--swatch-var-895);
}
.bgc-2093{
	background-color:var(--swatch-var-2093);
}
.bgc-4294{
	background-color:var(--swatch-var-4294);
}
.bgc-4981{
	background-color:var(--swatch-var-4981);
}
.bgc-4887{
	background-color:var(--swatch-var-4887);
}
.bgc-7358{
	background-color:var(--swatch-var-7358);
}
.bgc-2941{
	background-color:var(--swatch-var-2941);
}
.bgc-4976{
	background-color:var(--swatch-var-4976);
}
.bgc-4025{
	background-color:var(--swatch-var-4025);
}
.bgc-5558{
	background-color:var(--swatch-var-5558);
}

/* Text colour styles */

.tc-895{
	color:var(--swatch-var-895)!important;
}
.tc-6728{
	color:var(--swatch-var-6728)!important;
}
.tc-2941{
	color:var(--swatch-var-2941)!important;
}
.tc-7376{
	color:var(--swatch-var-7376)!important;
}
.tc-5568{
	color:var(--swatch-var-5568)!important;
}
.tc-2869{
	color:var(--swatch-var-2869)!important;
}
.tc-3893{
	color:var(--swatch-var-3893)!important;
}
.tc-4982{
	color:var(--swatch-var-4982)!important;
}
.tc-6880{
	color:var(--swatch-var-6880)!important;
}
.tc-2093{
	color:var(--swatch-var-2093)!important;
}

/* Button colour styles */

.bgc-7376{
	background-color:var(--swatch-var-7376);
}
.tc-7376{
	color:var(--swatch-var-7376)!important;
}
.btn-c-7376,.btn-c-7376:focus{
	background:var(--swatch-var-7376);
	color:#FFFFFF!important;
	fill:#FFFFFF;
}
.btn-c-7376:hover{
	background:#000000!important;
	color:#FFFFFF!important;
	fill:#FFFFFF;
}
.wire-btn-c-7376{
	color:var(--swatch-var-7376)!important;
	border-color:var(--swatch-var-7376)!important;
	fill:var(--swatch-var-7376);
}
.ltc-7376{
	color:var(--swatch-var-7376)!important;
	fill:var(--swatch-var-7376);
}
.ltc-7376:hover{
	color:#000000!important;
	fill:var(--swatch-var-7376);
}
.icon-7376{
	color:var(--swatch-var-7376)!important;
	border-color:var(--swatch-var-7376)!important;
}
/**/.bgc-2941{
	background-color:var(--swatch-var-2941);
}
.tc-2941{
	color:var(--swatch-var-2941)!important;
}
.btn-c-2941,.btn-c-2941:focus{
	background:var(--swatch-var-2941);
	color:rgba(0,0,0,.5)!important;
	fill:rgba(0,0,0,.5);
}
.btn-c-2941:hover{
	background:rgba(181,159,117,0.94)!important;
	color:rgba(0,0,0,.5)!important;
	fill:rgba(0,0,0,.5);
}
.wire-btn-c-2941{
	color:var(--swatch-var-2941)!important;
	border-color:var(--swatch-var-2941)!important;
	fill:var(--swatch-var-2941);
}
.ltc-2941{
	color:var(--swatch-var-2941)!important;
	fill:var(--swatch-var-2941);
}
.ltc-2941:hover{
	color:rgba(181,159,117,0.94)!important;
	fill:var(--swatch-var-2941);
}
.icon-2941{
	color:var(--swatch-var-2941)!important;
	border-color:var(--swatch-var-2941)!important;
}
/**/.bgc-6728{
	background-color:var(--swatch-var-6728);
}
.tc-6728{
	color:var(--swatch-var-6728)!important;
}
.btn-c-6728,.btn-c-6728:focus{
	background:var(--swatch-var-6728);
	color:rgba(0,0,0,.5)!important;
	fill:rgba(0,0,0,.5);
}
.btn-c-6728:hover{
	background:#CCCCCC!important;
	color:rgba(0,0,0,.5)!important;
	fill:rgba(0,0,0,.5);
}
.wire-btn-c-6728{
	color:var(--swatch-var-6728)!important;
	border-color:var(--swatch-var-6728)!important;
	fill:var(--swatch-var-6728);
}
.ltc-6728{
	color:var(--swatch-var-6728)!important;
	fill:var(--swatch-var-6728);
}
.ltc-6728:hover{
	color:#CCCCCC!important;
	fill:var(--swatch-var-6728);
}
.icon-6728{
	color:var(--swatch-var-6728)!important;
	border-color:var(--swatch-var-6728)!important;
}
/**/.bgc-3409{
	background-color:var(--swatch-var-3409);
}
.tc-3409{
	color:var(--swatch-var-3409)!important;
}
.btn-c-3409,.btn-c-3409:focus{
	background:var(--swatch-var-3409);
	color:#FFFFFF!important;
	fill:#FFFFFF;
}
.btn-c-3409:hover{
	background:rgba(0,102,102,0.87)!important;
	color:#FFFFFF!important;
	fill:#FFFFFF;
}
.wire-btn-c-3409{
	color:var(--swatch-var-3409)!important;
	border-color:var(--swatch-var-3409)!important;
	fill:var(--swatch-var-3409);
}
.ltc-3409{
	color:var(--swatch-var-3409)!important;
	fill:var(--swatch-var-3409);
}
.ltc-3409:hover{
	color:rgba(0,102,102,0.87)!important;
	fill:var(--swatch-var-3409);
}
.icon-3409{
	color:var(--swatch-var-3409)!important;
	border-color:var(--swatch-var-3409)!important;
}
/**/.bgc-5587{
	background-color:var(--swatch-var-5587);
}
.tc-5587{
	color:var(--swatch-var-5587)!important;
}
.btn-c-5587,.btn-c-5587:focus{
	background:var(--swatch-var-5587);
	color:#FFFFFF!important;
	fill:#FFFFFF;
}
.btn-c-5587:hover{
	background:rgba(0,0,0,0.06)!important;
	color:#FFFFFF!important;
	fill:#FFFFFF;
}
.wire-btn-c-5587{
	color:var(--swatch-var-5587)!important;
	border-color:var(--swatch-var-5587)!important;
	fill:var(--swatch-var-5587);
}
.ltc-5587{
	color:var(--swatch-var-5587)!important;
	fill:var(--swatch-var-5587);
}
.ltc-5587:hover{
	color:rgba(0,0,0,0.06)!important;
	fill:var(--swatch-var-5587);
}
.icon-5587{
	color:var(--swatch-var-5587)!important;
	border-color:var(--swatch-var-5587)!important;
}
/**/.bgc-5558{
	background-color:var(--swatch-var-5558);
}
.tc-5558{
	color:var(--swatch-var-5558)!important;
}
.btn-c-5558,.btn-c-5558:focus{
	background:var(--swatch-var-5558);
	color:#FFFFFF!important;
	fill:#FFFFFF;
}
.btn-c-5558:hover{
	background:rgba(0,0,0,0.66)!important;
	color:#FFFFFF!important;
	fill:#FFFFFF;
}
.wire-btn-c-5558{
	color:var(--swatch-var-5558)!important;
	border-color:var(--swatch-var-5558)!important;
	fill:var(--swatch-var-5558);
}
.ltc-5558{
	color:var(--swatch-var-5558)!important;
	fill:var(--swatch-var-5558);
}
.ltc-5558:hover{
	color:rgba(0,0,0,0.66)!important;
	fill:var(--swatch-var-5558);
}
.icon-5558{
	color:var(--swatch-var-5558)!important;
	border-color:var(--swatch-var-5558)!important;
}
/**/.bgc-7750{
	background-color:var(--swatch-var-7750);
}
.tc-7750{
	color:var(--swatch-var-7750)!important;
}
.btn-c-7750,.btn-c-7750:focus{
	background:var(--swatch-var-7750);
	color:#FFFFFF!important;
	fill:#FFFFFF;
}
.btn-c-7750:hover{
	background:rgba(0,0,0,0.73)!important;
	color:#FFFFFF!important;
	fill:#FFFFFF;
}
.wire-btn-c-7750{
	color:var(--swatch-var-7750)!important;
	border-color:var(--swatch-var-7750)!important;
	fill:var(--swatch-var-7750);
}
.ltc-7750{
	color:var(--swatch-var-7750)!important;
	fill:var(--swatch-var-7750);
}
.ltc-7750:hover{
	color:rgba(0,0,0,0.73)!important;
	fill:var(--swatch-var-7750);
}
.icon-7750{
	color:var(--swatch-var-7750)!important;
	border-color:var(--swatch-var-7750)!important;
}
/**/.bgc-2869{
	background-color:var(--swatch-var-2869);
}
.tc-2869{
	color:var(--swatch-var-2869)!important;
}
.btn-c-2869,.btn-c-2869:focus{
	background:var(--swatch-var-2869);
	color:#FFFFFF!important;
	fill:#FFFFFF;
}
.btn-c-2869:hover{
	background:#000000!important;
	color:#FFFFFF!important;
	fill:#FFFFFF;
}
.wire-btn-c-2869{
	color:var(--swatch-var-2869)!important;
	border-color:var(--swatch-var-2869)!important;
	fill:var(--swatch-var-2869);
}
.ltc-2869{
	color:var(--swatch-var-2869)!important;
	fill:var(--swatch-var-2869);
}
.ltc-2869:hover{
	color:#000000!important;
	fill:var(--swatch-var-2869);
}
.icon-2869{
	color:var(--swatch-var-2869)!important;
	border-color:var(--swatch-var-2869)!important;
}
/**/.bgc-5568{
	background-color:var(--swatch-var-5568);
}
.tc-5568{
	color:var(--swatch-var-5568)!important;
}
.btn-c-5568,.btn-c-5568:focus{
	background:var(--swatch-var-5568);
	color:#FFFFFF!important;
	fill:#FFFFFF;
}
.btn-c-5568:hover{
	background:rgba(0,0,0,0.84)!important;
	color:#FFFFFF!important;
	fill:#FFFFFF;
}
.wire-btn-c-5568{
	color:var(--swatch-var-5568)!important;
	border-color:var(--swatch-var-5568)!important;
	fill:var(--swatch-var-5568);
}
.ltc-5568{
	color:var(--swatch-var-5568)!important;
	fill:var(--swatch-var-5568);
}
.ltc-5568:hover{
	color:rgba(0,0,0,0.84)!important;
	fill:var(--swatch-var-5568);
}
.icon-5568{
	color:var(--swatch-var-5568)!important;
	border-color:var(--swatch-var-5568)!important;
}
/**/.bgc-7358{
	background-color:var(--swatch-var-7358);
}
.tc-7358{
	color:var(--swatch-var-7358)!important;
}
.btn-c-7358,.btn-c-7358:focus{
	background:var(--swatch-var-7358);
	color:#FFFFFF!important;
	fill:#FFFFFF;
}
.btn-c-7358:hover{
	background:transparent!important;
	color:#FFFFFF!important;
	fill:#FFFFFF;
}
.wire-btn-c-7358{
	color:var(--swatch-var-7358)!important;
	border-color:var(--swatch-var-7358)!important;
	fill:var(--swatch-var-7358);
}
.ltc-7358{
	color:var(--swatch-var-7358)!important;
	fill:var(--swatch-var-7358);
}
.ltc-7358:hover{
	color:transparent!important;
	fill:var(--swatch-var-7358);
}
.icon-7358{
	color:var(--swatch-var-7358)!important;
	border-color:var(--swatch-var-7358)!important;
}
/**/.bgc-3893{
	background-color:var(--swatch-var-3893);
}
.tc-3893{
	color:var(--swatch-var-3893)!important;
}
.btn-c-3893,.btn-c-3893:focus{
	background:var(--swatch-var-3893);
	color:#FFFFFF!important;
	fill:#FFFFFF;
}
.btn-c-3893:hover{
	background:#890000!important;
	color:#FFFFFF!important;
	fill:#FFFFFF;
}
.wire-btn-c-3893{
	color:var(--swatch-var-3893)!important;
	border-color:var(--swatch-var-3893)!important;
	fill:var(--swatch-var-3893);
}
.ltc-3893{
	color:var(--swatch-var-3893)!important;
	fill:var(--swatch-var-3893);
}
.ltc-3893:hover{
	color:#890000!important;
	fill:var(--swatch-var-3893);
}
.icon-3893{
	color:var(--swatch-var-3893)!important;
	border-color:var(--swatch-var-3893)!important;
}
/**/.bgc-6880{
	background-color:var(--swatch-var-6880);
}
.tc-6880{
	color:var(--swatch-var-6880)!important;
}
.btn-c-6880,.btn-c-6880:focus{
	background:var(--swatch-var-6880);
	color:#FFFFFF!important;
	fill:#FFFFFF;
}
.btn-c-6880:hover{
	background:#34333A!important;
	color:#FFFFFF!important;
	fill:#FFFFFF;
}

/* Link colour styles */

.ltc-6728{
	color:var(--swatch-var-6728)!important;
	fill:var(--swatch-var-6728);
}
.ltc-6728:hover{
	color:#CCCCCC!important;
	fill:var(--swatch-var-6728);
}
.ltc-5568{
	color:var(--swatch-var-5568)!important;
	fill:var(--swatch-var-5568);
}
.ltc-5568:hover{
	color:rgba(0,0,0,0.84)!important;
	fill:var(--swatch-var-5568);
}
.ltc-6184{
	color:var(--swatch-var-6184)!important;
	fill:var(--swatch-var-6184);
}
.ltc-6184:hover{
	color:#0000CC!important;
	fill:var(--swatch-var-6184);
}

/* Bloc image backgrounds */




/* = Toggle Visibility
-------------------------------------------------------------- */

.toggled-item{transition: height 350ms ease-in-out, padding 350ms ease-in-out, opacity 350ms ease-in-out;overflow: hidden;}
.toggled-item-hidden{padding-top:0!important;padding-bottom:0!important;border-top:0!important;border-bottom:0!important;outline:0!important;opacity: 0;}
.object-hidden{display:none;}


/* = Bloc Padding Multi Breakpoint
-------------------------------------------------------------- */

@media (min-width: 576px) {
    .bloc-xxl-sm{padding:200px 20px;}
    .bloc-xl-sm{padding:150px 20px;}
    .bloc-lg-sm{padding:100px 20px;}
    .bloc-md-sm{padding:50px 20px;}
    .bloc-sm-sm{padding:20px;}
    .bloc-no-padding-sm{padding:0 20px;}
    .link-with-icon.text-sm-start,.link-with-icon.text-sm-left{justify-content: flex-start;}
    .link-with-icon.text-sm-center{justify-content: center;}
    .link-with-icon.text-sm-end,.link-with-icon.text-sm-right{justify-content: flex-end;}
}
@media (min-width: 768px) {
    .bloc-xxl-md{padding:200px 20px;}
    .bloc-xl-md{padding:150px 20px;}
    .bloc-lg-md{padding:100px 20px;}
    .bloc-md-md{padding:50px 20px;}
    .bloc-sm-md{padding:20px 20px;}
    .bloc-no-padding-md{padding:0 20px;}
    .link-with-icon.text-md-start,.link-with-icon.text-md-left{justify-content: flex-start;}
    .link-with-icon.text-md-center{justify-content: center;}
    .link-with-icon.text-md-end,.link-with-icon.text-md-right{justify-content: flex-end;}
}
@media (min-width: 992px) {
    .bloc-xxl-lg{padding:200px 20px;}
    .bloc-xl-lg{padding:150px 20px;}
    .bloc-lg-lg{padding:100px 20px;}
    .bloc-md-lg{padding:50px 20px;}
    .bloc-sm-lg{padding:20px;}
    .bloc-no-padding-lg{padding:0 20px;}
    .link-with-icon.text-lg-start,.link-with-icon.text-lg-left{justify-content: flex-start;}
    .link-with-icon.text-lg-center{justify-content: center;}
    .link-with-icon.text-lg-end,.link-with-icon.text-lg-right{justify-content: flex-end;}
}


/* = Mobile adjustments 
-------------------------------------------------------------- */
@media (max-width: 1024px)
{
    .bloc.full-width-bloc, .bloc-tile-2.full-width-bloc .container, .bloc-tile-3.full-width-bloc .container, .bloc-tile-4.full-width-bloc .container{
        padding-left: 0; 
        padding-right: 0;  
    }
}
@media (max-width: 991px)
{
    .container{width:100%;}
    .bloc{padding-left: constant(safe-area-inset-left);padding-right: constant(safe-area-inset-right);} /* iPhone X Notch Support*/
    .bloc-group, .bloc-group .bloc{display:block;width:100%;}
}
@media (max-width: 767px)
{
    .bloc-tile-2 .container, .bloc-tile-3 .container, .bloc-tile-4 .container{
        padding-left:0;padding-right:0;
    }
    .btn-dwn{
       display:none; 
    }
    .voffset{
        margin-top:5px;
    }
    .voffset-md{
        margin-top:20px;
    }
    .voffset-lg{
        margin-top:30px;
    }
    form{
        padding:5px;
    }
    .close-lightbox{
        display:inline-block;
    }
    .blocsapp-device-iphone5{
	   background-size: 216px 425px;
	   padding-top:60px;
	   width:216px;
	   height:425px;
    }
    .blocsapp-device-iphone5 img{
	   width: 180px;
	   height: 320px;
    }
}


@media (max-width: 991px){
	.hero-fill-mask{
		fill:rgba(0,0,0,0.70);
	}
	.form-btn{
	}
	.menu-grid{
		grid-template-columns:0.20fr 1fr 0.25fr;
	}
	.mt-md-0{
	}
	.mt-md-4{
	}
	
}

@media (max-width: 767px){
	.primary-divider{
		margin-bottom:30px;
	}
	.form-btn{
		width:100%;
	}
	.menu-grid{
		grid-template-columns:0.20fr 1fr 0.25fr;
	}
	.logo-style{
		font-size:25px;
	}
	.page-heading{
		font-size:50px;
	}
	.hero-heading{
		font-size:30px;
	}
	
}

@media (max-width: 575px){
	.footer-link{
		text-align:center;
	}
	.menu-grid{
		grid-template-columns:0.20fr 1fr 0.25fr;
		column-gap:7px;
	}
	.menu-price{
		font-size:16px;
	}
	.menu-item-title{
		font-size:21px;
	}
	.drink-thumb{
		width:30px;
		height:30px;
	}
	.menu-item-info{
		font-size:15px;
	}
	.page-heading{
	}
	.logo-style{
	}
	.hero-sub-heading{
		font-size:18px;
	}
	.hero-fill-mask{
		fill:rgba(0,0,0,0.80);
	}
	.mt-1{
	}
	.navbar-logo{
		font-size:18px;
	}
	
}

