i.material-symbols-outlined {
    max-width: 30px;
}

#main-page {
   position: relative;
   overflow-x: hidden;
   background: var(--color-white);
}

.bt-fx {
  transition: transform 0.2s ease-in-out;
  animation: bg-blink 1.5s ease-in-out infinite;
}

@keyframes bg-blink {
  0% {
    background-color: var(--color-primary);
    transform: scale(1);
  }
  50% {
    background-color: var(--color-primary-hover);
    transform: scale(1.05);
  }
  100% {
    background-color: var(--color-primary);
    transform: scale(1);
  }
}

header {
    position: fixed;
    width: 100%;
    z-index: 90;
    transition: .2s all ease;
    background: rgba(0, 0, 0, 0);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

header.scroll {
    background: rgba(237,227,207, 1);
    -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
    -ms-box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}

header .logo-content {
    max-width: 270px;
    margin: 5px 0;
}

header .logo-content img {
    width: auto;
    height:auto;
}

header .nav-desktop nav > ul {
    display: inline-block;
}

header .nav-desktop nav > ul > li,
header .nav-bis nav > ul > li {
    display: inline-block;
    margin-right: 15px;
}

header .nav-desktop nav > ul > li.parent,
header .nav-bis nav > ul > li.parent {
    padding-right: 10px;
    background: url(img/arrow-select-w.png) no-repeat;
    background-position: center right;
}

header.scroll .nav-desktop nav > ul > li.parent,
header.scroll .nav-bis nav > ul > li.parent {
    background: url(img/arrow-select-b.png) no-repeat;
    background-position: center right;
}

header .nav-desktop nav > ul > li > a,
header .nav-desktop nav > ul > li > span,
header .nav-bis nav > ul > li > a,
header .nav-bis nav > ul > li > span {
    color: var(--color-white) !important;
    display: block;
    line-height: 80px;
    height: 80px;
    letter-spacing: 1px;
    padding: 0 5px;
    position: relative;
    transition: .2s all ease;
    font-weight: var(--font-weight-base);
}

header.scroll .nav-desktop nav > ul > li > a,
header.scroll .nav-desktop nav > ul > li > span,
header.scroll .nav-bis nav > ul > li > a,
header.scroll .nav-bis nav > ul > li > span {
    color: var(--color-dark) !important;
    font-weight: var(--font-weight-base);
}


header .nav-desktop nav > ul > li.menuactive > a,
header .nav-desktop nav > ul > li.menuactive ul li.menuactive > a,
header .nav-desktop nav > ul > li.menuactive > span,
header .nav-desktop nav > ul > li.menuactive ul li.menuactive > span,
header .nav-bis nav > ul > li.parent ul li.menuactive a {
    color: var(--color-primary) !important;
    position: relative;
    font-weight: var(--font-weight-base);
}

header .nav-desktop nav > ul > li.menuactive > a:after,
header .nav-desktop nav > ul > li > a:hover:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 3px;
    background: var(--color-primary);
    left: 0;
    bottom: -1px;
    transition: .2s all ease;
}

header .nav-desktop nav > ul > li.parent ul,
header .nav-bis nav > ul > li.parent ul {
    position: absolute;
    background: rgba(237,227,207, 1);
    padding: 10px 20px;
    -webkit-filter: drop-shadow(0 8px 20px rgba(0,0,0,.1));
    filter: drop-shadow(0 8px 20px rgba(0,0,0,.1));
    min-width: 230px;
    visibility: hidden;
    opacity: 0;
    margin-top: 20px;
    transition: .3s;
}

header .nav-desktop nav > ul > li.parent:hover > ul,
header .nav-bis nav > ul > li.parent:hover > ul {
    visibility: visible;
    opacity: 1;
    margin-top: 0;
    transition: .3s;
}

header .nav-desktop nav > ul > li.parent ul li {
    display: block;
}

header .nav-bis nav > ul > li.parent ul li {
    display: block;
}

header .nav-desktop nav > ul > li.parent ul li:last-child,
header .nav-bis nav > ul > li.parent ul li:last-child {
    border-bottom: 0;
}

header .nav-desktop nav > ul > li.parent ul li a,
header .nav-bis nav > ul > li.parent ul li a {
    display: block;
    line-height: 40px;
    letter-spacing: .5px;
    color: var(--color-dark);
}

header .nav-desktop nav a:hover,
header .nav-bis nav a:hover {
    color: var(--color-primary) !important;
}

header .nav-desktop nav > ul > li > ul > li > ul,
header .nav-bis nav > ul > li > ul > li > ul {
    visibility: hiddent;
    opacity: 0;
    transition: .3s;
    top: 0;
    left: calc(100% - 20px);
}

header .nav-desktop nav > ul > li > ul > li.parent:hover > ul,
header .nav-bis nav > ul > li > ul > li.parent:hover > ul {
    visibility: visible;
    opacity: 1;
    margin-top: 0;
    transition: .3s;
}

header .nav-desktop nav > ul > li > ul > li > ul > li > ul,
.nav-mobile nav > ul > li > ul > li > ul > li > ul {
    display: none;
}

header .nav-bis nav a {
   display: inline-flex !important;
   align-items: center;
}

header .nav-bis nav > ul > li.parent {
    vertical-align: middle;
    position: relative;
}

header .nav-bis nav > ul > li.parent ul li a {
    display: block !important;
}

header .nav-bis nav > ul > li.parent ul {
    min-width: inherit !important;
    right: 0;
}

header .select-lang a {
    padding-right: 0;
}

header .select-lang a i {
    font-size: 24px;
}

/* Nav mobile */

.nav-mobile {
    position: fixed;
    width: 320px;
    height: 100%;
    right: -330px;
    top: 0;
    z-index: 999999;
    background: rgba(0, 0, 0, 1.0);
    color: var(--color-white);
    transition: .2s;
    opacity: 0;
}

.nav-mobile.open-nav {
    right: 0;
    padding: 20px;
    opacity: 1;
    transition: .4s;
}

.nav-mobile .nav-item ul li {
    display: inline-block;
    margin-left: .8rem;
}

.nav-mobile .nav-item ul li a {
    color: var(--color-white);
}

.nav-mobile .inner {
    height: 100%;
    overflow: scroll;
    padding-bottom: 120px;
}

.nav-mobile nav ul li {
    padding: 15px 0;
    border-top: 1px dotted #ddd;
}

.nav-mobile nav ul li.parent {
    padding-bottom: 0 !important;
}

.nav-mobile nav ul li.parent > span {
    padding-bottom: 10px;
}

.nav-mobile nav ul li ul li {
    padding-left: 20px;
}

.nav-mobile nav ul li a,
.nav-mobile nav ul li > span {
    display: block;
    color: var(--color-white);
    padding-left: 20px;
}

.nav-mobile nav ul li.menuactive > a {
    color: var(--color-primary); !important;
}

.nav-mobile nav ul li.parent > a {
    margin-bottom: 10px;
}

.nav-mobile nav ul li a:hover {
    color: var(--color-primary);;
}

.bt-open-nav {
    border-radius: 4px;
    overflow: hidden;
    margin-left: 1rem;
    cursor: pointer;
}

.bt-open-nav i {
    background: var(--color-primary);
    color: var(--color-white);
    line-height: 45px;
    width: 45px;
    max-width: inherit;
    text-align: center;
    font-size: 32px;
}

.bt-open-nav:hover i {
    background: var(--color-primary-hover);
}

.bt-close-nav {
    line-height: 60px;
    padding-left: 15px;
    font-size: 28px;
    cursor: pointer;
}

.bt-close-nav i {
    line-height: 3;
}

.bt-close-nav:hover i {
    color: var(--color-primary);
}

.bt-mask-nav {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0,0,0,.4);
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    backdrop-filter: blur(2px);
}

.open-nav .bt-mask-nav {
    transition: .3s;
    opacity: 1;
    visibility: visible;
}

.nav-mobile .nav-item a {
    color: var(--color-white);
    letter-spacing: 1px;
}

.nav-mobile .nav-item a:hover {
    color: var(--color-primary);
}

.nav-mobile .nav-item .bt-search {
    font-size: 28px !important;
    margin-left: 15px;
    margin-right: 15px;
}

.nav-mobile .nav-item .bt-search i {
    line-height: 3;
}


/* Divers  */


.filter-img {
    position: relative;
    width: 100%;
    height: 100%;
}

.filter-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(152, 177, 143, .15);
    pointer-events: none;
}


/* Heading */

.heading-content {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

.banner-content {
	position: relative;
	width: 100%;
	min-height: 100vh;
    z-index: 2;
    padding-top: 25vh;
}

.banner-content #slide-txt { display: inline-block; }

.banner-content span#slide-txt {
    color: var(--color-primary);
}

.banner-content h1 { text-indent: -6ch; overflow: hidden; }

.banner-content h1,
.banner-content .info-contact,
.social-bloc {
    text-shadow: 0px 0px 6px rgba(0,0,0,0.4);
}

.info-contact .icon {
	margin-right: 15px;
    line-height: 0;
}

.info-contact .icon i {
    font-size: 26px;
}

.info-contact span {
	display: block;
}

.info-booking {
    position: relative;
}

/*
.info-booking::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 40px;
    left: 0;
    bottom: 0;
    background: var(--color-white) url(img/bg-b.jpg) no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 0;
}
*/

.info-booking .container {
    position: relative;
    z-index: 2;
}

.info-booking .social-bloc {
    margin-bottom: 55px;
}

.info-booking .social-bloc a img {
    width: 25px;
}

.booking-content {
    background: rgba(237,227,207, .85);
    background-position: center;
    max-width: 700px;
    border-radius: var(--border-radius-min) var(--border-radius-min) 0 0;
}

.booking-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.booking-content p {
    margin-bottom: 0;
}

.banner-video {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}


/* Video banner */

.video-content {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 6;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-size: 0 !important;
}

.video-content.active {
    opacity: 1;
    visibility: visible;
    border-radius: var(--border-radius-max);
    transform: scale(1.0);
}

.video-content video {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    margin-left: 0 !important;
    margin-top: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 1;
    object-fit: cover;
}

.video-content::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(50,50,50, 0.8);
    z-index: 2;
}

.video-content::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(img/bg-grid.png);
    z-index: 3;
}

.video-content .bg-top {
    position: absolute;
    content: "";
    width: 100%;
    height: 40%;
    top: 0;
    left: 0;
    background: linear-gradient(180deg,rgba(34, 34, 34, .9) 0%, rgba(34, 34, 34, 0) 100%);
    z-index: 2;
}

.video-content .bg-bottom {
    position: absolute;
    content: "";
    width: 100%;
    height: 40%;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg,rgba(34, 34, 34, 0) 0%, rgba(34, 34, 34, .9) 100%);
    z-index: 2;
}

/* LOcalisation */

.localisation-content {
    background: var(--color-white) url(img/bg-b.jpg) no-repeat;
    background-position: center;
    background-size: cover;
}


/* About */

.about-content {
	position: relative;
	background: url(img/pattern.webp) no-repeat;
	background-position: center;
	background-size: cover;
}

.about-content .slider {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 0;
    overflow: hidden;
}

.about-content .slider .component-fullwidth {
    width: 100%;
    height: 100%;
    background: #000;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    overflow: hidden;
}

.about-content .slider .component > ul {
    position: absolute;
    top: 0;
}

.about-content .slider .component-fullwidth li .filter {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 9;
}

.about-content .slider .component-fullwidth li .filter:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    background: rgba(50,50,50, 0.4);
}

.about-content .slider .component-fullwidth li .filter::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(img/bg-grid.png);
    z-index: 3;
}

.about-content .slider .component-fullwidth nav {
    display: none;
}

.about-content .slider .component-fullwidth li img {
    top: 0;
}

.about-content .slider .component-fullwidth li .inner {
    position: relative;
    top: 100px;
    opacity: 0;
    transition: .3s;
}

.about-content .slider .component-fullwidth li.current .inner {
    top: 0;
    opacity: 1;
    transition: .3s;
}

.about-content .slider .component-fullwidth li .background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: center !important;
    background-size: cover !important;
}

.about-content .container {
	position: relative;
	z-index: 2;
}

.about-content .container .inner {
	background: rgba(237,227,207, .85);
}


/* Service */

.service-content {
	background: var(--color-white) url(img/bg-b.jpg) no-repeat;
    background-position: center;
    background-size: cover;
}

.service-content a:hover {
    color: var(--color-txt);
}

.service-content .icon {
    width: 80px;
    height: 80px;
    border: 2px solid;
    padding: 5px;
    position: relative;
    margin: auto;
}

.service-content .icon::before {
	position: absolute;
    content: "";
    width: 60px;
    height: 60px;
    right: -2px;
    bottom: -2px;
    border-right: 2px solid var(--color-primary);
    border-bottom: 2px solid var(--color-primary);
    z-index: 1;
}

.service-content .icon::after {
	position: absolute;
    content: "";
    width: 60px;
    height: 60px;
    right: -8px;
    bottom: -8px;
    border-right: 2px solid;
    border-bottom: 2px solid;
    z-index: 2;
    transition: .2s all ease;
}

.service-content a:hover .icon::after {
    right: -2px;
    bottom: -2px;
}

.service-content h3 { transition: .2s all ease; }
.service-content a:hover h3 {
    color: var(--color-primary);
}

/* Aside */

.aside-content {
    position: relative;
    background: url(img/pattern.webp) no-repeat;
    background-position: center;
    background-size: cover;
}

.aside-content .container .inner {
    background: rgba(237,227,207, .85);
}

.aside-content .container .inner .filter-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Gallery */

.gallery-content {
    background: #111;
}

.fotoslide-viewport {
    position: relative;
}

.fotoslide-viewport::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(152, 177, 143, .15);
    pointer-events: none;
}


/* Newsletter */

.newsletter-content {
    background: var(--color-white) url(img/bg-b.jpg) no-repeat;
    background-position: center;
    background-size: cover;
}

.newsletter-content .newsletter form {
    width: 100%;
}

.newsletter-content .newsletter input {
    margin-bottom: 10px !important;
    color: var(--color-dark) !important;
    -webkit-text-fill-color: var(--color-dark) !important;
    border-bottom: 1px solid #444;
}

.newsletter-content .btn-newsletter input[type=submit] {
    position: absolute;
    right: 0;
    top: 0;
    display: inline-block;
    padding: 0 15px;
    appearance: none;
    webkit-appearance: none;
    cursor: pointer;
    height: 50px;
    text-align: center;
    white-space: nowrap;
    letter-spacing: 1px;
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid #444;
    font-size: 0;
    background: transparent url(img/paper-plane.svg) no-repeat;
    background-size: 65%;
    background-position: center;
}

.newsletter-content .btn-newsletter:hover {
    opacity: .8;
}


/* Prefooter */

.prefooter-content {
    position: relative;
    background: url(img/pattern.webp) no-repeat;
    background-position: center;
    background-size: cover;
}

.prefooter-content:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(6, 10, 10, .2);
}

.prefooter-content .container {
    position: relative;
    z-index: 1;
}

.prefooter-content .logo-footer {
    display: block;
    max-width: 270px;
}

.prefooter-content .contact p {
    margin-bottom: 0;
}

.prefooter-content .contact p strong {
    color: var(--color-primary);
}

.prefooter-content .form-contact .check-gdpr {
    width: 70%;
}

.prefooter-content .form-contact .submit {
    width: 30%;
}


.prefooter-content .copy {
    border-top: 1px solid #222;
    font-size: var(--font-size-xs);
}


a.top-scroll {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    right: -100px;
    bottom: 30px;
    width: 46px;
    height: 46px;
    background: var(--color-primary);
    color: var(--color-white);
    text-decoration: none;
    font-size: 30px;
    border-radius: 4px;
    z-index: 99;
}

a.top-scroll:hover {
    background: var(--color-primary-hover);
}


/* Subpage ------------------------------------ */

.sub-banner {
    height: 45vh;
    position: relative;
}

.sub-banner .banner {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    background-size: cover !important;
    background-position: center !important;
}

.sub-banner .banner::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 40%;
    top: 0;
    left: 0;
    background: linear-gradient(180deg,rgba(34, 34, 34, 1) 0%, rgba(34, 34, 34, 0) 100%);
    z-index: 1;
}

.sub-banner .banner .filter {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 8;
}

.sub-banner .banner .filter:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(50,50,50, 0.5);
}

.sub-banner .banner .filter::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(img/bg-grid.png);
    z-index: 2;
}

.sub-banner .container {
    position: relative;
    height: 100%;
    padding-top: 160px;
    z-index: 9;
}

#sticky-div.sticky {
    position: sticky;
    top: 160px;
}

#sticky-div {
    z-index: 1;
    position: relative;
}

.content-page.sub-page {
    background: var(--color-white);
}

.content-page ul {
    list-style: disc;
    padding-left: 19px;
    margin-bottom: var(--padding);
}

.content-page ul:last-child {
    margin-bottom: 0 !important;
}

.sidebar {
    background: #fff;
    -webkit-box-shadow: 0px 5px 25px -2px rgb(0 0 0 / 15%);
    -moz-box-shadow: 0px 5px 25px -2px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 5px 25px -2px rgb(0 0 0 / 15%);
    border-left: 5px solid #dc961d;
    color: #000;
}

.sidebar a.btn {
    margin-top: 10px;
    width: 100%;
}


/* Page pdf */

.menu-btn.btn-color-primary.active {
    background: var(--color-primary-hover);
}

#pdf-viewer {
    text-align: center;
    margin: 0 auto;
    max-width: 1100px;
    user-select: none;
    position: relative;
}

#pdf-pages {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 !important;
    flex-wrap: wrap;
    transition: all 0.3s ease;
}

#pdf-pages canvas {
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    cursor: grab;
    max-width: 48%;
    height: auto;
    min-height: 80vh;
    background: #fff url(img/loading.gif) no-repeat;
    background-position: center;
    background-size: 60px;
}

#controls {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
}

#controls button {
    position: relative;
    transform: translateY(-50%);
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    font-size: 24px;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    cursor: pointer;
    border-radius: 50%;
}

#controls button#prev {
    left: -25px;
}

#controls button#next {
    right: -25px;
}

#controls button:hover {
    background: var(--color-primary-hover);
}

#count {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 768px) {
    #pdf-pages {
        flex-direction: column;
    }

    #pdf-canvas-right {
      display: none;
    }

    #pdf-pages canvas {
        max-width: 95%;
    }
}


/* Booking page */

.booking-form .btn-color-primary.active {
    background: var(--color-primary-hover);
}

.booking-form .inner {
    max-width: 710px;
    margin: auto;
    height: 600px;
    background: #fff;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Btn color */
.btn-color-ubereats { background: #06c167; color: #000; }
.btn-color-ubereats:hover { background: #07ad5d; color: #000; }
.btn-color-takeaway { background: #ff7f00; color: #fff; }
.btn-color-takeaway:hover { background: #eb7704; color: #fff; }