/* Teddy - 19.11.2022 */
/* SLIDER HOMEPAGE */
/* Start */

/* Menu Restaurant */

.menu-block li {
    list-style-type: none;
    font-size: 1.2rem;
    font-weight: normal;
}

.menu-block li span {
    display: block;
    padding-left: 0 !important;
    font-weight: bold;
}

.menu-info-supp {
    align-items: center;
}

/* External link */

a.external {
    font-weight: 600;
}

a.external:after {
	background: transparent url(../img/external.png) right 0 no-repeat;
	background-size: 16px;
	content: "";
	display: inline-block;
	height: 15px;
	margin-left: 5px;
	width: 15px;
    font-weight: bold;
}

/* Liens */

.mentions a, 
footer.page a, 
.page-details a, 
.page-details 
.page-details-container a {
    color: #fff !important;
    border-bottom: 4px dotted var(--primary-color) !important;
    background: none;
    padding: 0;
    border-radius: 0;
    letter-spacing: 0;
    transition: none;
}

.mentions a:hover, 
footer.page a:hover, 
.page-details a:hover, 
.page-details 
.page-details-container a:hover {
    border-bottom: 4px solid var(--primary-color) !important;
    background: none;
    padding: 0;
    border-radius: 0;
    letter-spacing: 0;
    transition: none;
}

footer.page .logos-container a, footer.page .logos-container a:hover {
    border: 0 !important;
}

/* Error messages */

.invalid-feedback {
    padding: 5px 10px 5px 10px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 10px;
    border: 0;
    width: 30%;
}

/* Slideshow container */

#slideshow {
    /* margin: 80px auto; */
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 700px;
    /* padding: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4); */
  }
  
#slideshow > div {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
}

.mySlides {
    display: none;
}

img {
    vertical-align: middle;
}

.hero {
    max-width: 100%;
    width: 100%;    
    position: relative;
    margin: auto;
}

.hero .hero-element-bottom {
    position: absolute;
    bottom: 0%;
    left: 0;
    width: 100%;
    height: 78px;
    z-index:999;
}

.mySlides img {
    width: 100%;
    max-width: 100%;
    height: 700px;
    background-size: cover;
    background-position: center;
    object-fit: cover;
}


@media only screen and (max-width: 991px){

    .hero {
        height: auto;
    }

    #slideshow {
        height: 100vh;
    }

    .mySlides img {
        height: 100vh;
        width: 100vw;        
    }
}

@media only screen and (max-width: 450px){

    .hero {
        height: auto;
    }

    #slideshow {
        height: 60vh;
    }

    .mySlides img {
        height: 60vh;
        width: 100vw;        
    }

    .hero-element-bottom {
       width: 100vw; 
       background-position: center !important;
    }

    .hero .hero-topic {
        top: auto;
        bottom: 4rem;
        right: 10%;
    }

}

/* End */