@font-face {
  font-family: 'BOLD';
  src: url(Novecentosans-Bold.otf),

}

@font-face {
  font-family: 'BOOK';
  src: url(Novecentosans-Book.otf),
}

@font-face {
  font-family: 'Ultra';
  src: url(Novecentosans-UltraLight.otf),

}

@font-face {
  font-family: 'LIGHT';
  src: url(Novecentosans-Light.otf),
}

@font-face {
  font-family: 'DEMI';
  src: url(Novecentosans-DemiBold.otf),
}

@font-face {
  font-family: 'MED';
  src: url(Novecentosans-Medium.otf),
}

@font-face {
  font-family: 'NORMAL';
  src: url(Novecentosans-Normal.otf),
}




/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color:                  #FFFFFF;
  --primary-color:                #fcdd00;
  --secondary-color:              #f3af24;
  --section-bg-color:             #F9F9F9;
  --dark-color:                   #000000;
  --title-color:                  #565758;
  --news-title-color:             #292828;
  --p-color:                      #717275;
  --border-color:                 #eaeaea;
  --border-radius-default:        .25rem;

  --h1-font-size:                 76px;
  --h2-font-size:                 56px;
  --h3-font-size:                 50px;
  --h4-font-size:                 28px;
  --h5-font-size:                 26px;
  --h6-font-size:                 22px;

  --p-font-size:                  18px;
  --menu-font-size:               18px;
  --category-font-size:           14px;

  --font-weight-light:            300;
  --font-weight-normal:           400;
  --font-weight-semibold:         600;
  --font-weight-bold:             700;
}

body {
    background: #191d31;
    font-family: 'BOOK';
    position: relative;
    overflow-x: hidden;
    overflow-x: none;
}



/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: #fcdd00;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-semibold);
}

h1,
h2 {
  font-weight: var(--font-weight-bold);
}

h1 {
  font-size: var(--h1-font-size);
  line-height: normal;
}

h2 {
  font-size: var(--h2-font-size);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
}

p,
.list .list-item {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

.form-label {
  color: #fff;

  font-family: 'LIGHT';
}

a {
  color: var(--secondary-color);
  text-decoration: none;
}

a:hover {
  color: var(--primary-color);
}

::selection {
  background: var(--primary-color);
  color: var(--white-color);
}

::-moz-selection {
  background: var(--primary-color);
  color: var(--white-color);
}

.section-padding {
  padding-top: 0rem;
  padding-bottom: 4rem;
    overflow-x: hidden;
  overflow-x: none;
}

b,
strong {
  font-weight: var(--font-weight-bold);
}


/*---------------------------------------
  CUSTOM BUTTON              
-----------------------------------------*/
.custom-btn {
  color: #fcdd00;
  font-size: var(--menu-font-size);
  font-family: 'BOOK';
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: transparent;
  border: 1px solid #fcdd00;
  border-radius: 50px;
}

.custom-btn:hover{
  background-color: #4da8de;
  color: #fff;
  border-color: #4da8de;

}

/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.navbar {
  background: #fff;
  padding-top: 12px;
  padding-bottom: 12px;
  font-family: 'BOLD';

}

.navbar-brand {
  font-weight: 900;
  margin-right: 0;
  margin-left: -8%;
  align-content: center;
}

.logo-rdr{
  width: 300px;
}

.logo-simple{
  width: 170px;
  margin-left: 12px;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 4px;
  padding-left: 4px;
  margin-left: 20px;
  margin-right: 20px;
}

.navbar-expand-lg .nav-link {
  color: #191d31;
  font-weight: 900;
  font-size: 20px;
  padding-top: 0px;
  padding-bottom: 0px;
}

.navbar-nav .nav-link.active, 
.nav-link:focus, 
.nav-link:hover {
  color: #fcdd00;
  border-bottom: 1px solid #fcdd00;
  
}




.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: #191d31;
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: #191d31;
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon:before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon:after {
  top: 8px;
}


/*---------------------------------------
  SITE HEADER              
-----------------------------------------*/
.site-header {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-top: 10rem;
  padding-bottom: 10rem;
  text-align: center;
  position: relative;
}

.site-header .container {
  position: relative;
  z-index: 2;
}

.site-news-detail-header {
  background: transparent;
  text-align: left;
   padding-top: 6rem;
  padding-bottom: 6rem;
}

.text-dore{
  color: #191d31;
}

.text-dore1{
  color: #fff;
  font-weight: 200 !important;
  font-family: 'Ultra';
  line-height: 1.5;
  text-align : justify;
  margin-bottom: 30px;
}

.text-dore1 strong{
  color: #4da8de;
  font-weight: 200 !important;
  font-family: 'BOLD';
  line-height: 1.5;
  text-align : justify;
  margin-bottom: 30px;
}


.text-title{
  color: #fcdd00;
  font-family: 'BOLD';
  font-weight: 100;
  font-size: 70px;
}

.text-title1{
  color: #fcdd00;
  font-family: 'BOLD';
  font-weight: 100;
  font-size: 70px;
}

.content{
  background-color: #4da8de;
}

.text-title2{
  color: #fcdd00;
  font-family: 'BOLD';
  font-weight: 100;
  font-size: 70px;
}

.text-title3{
  color: #fff;
  font-weight: 300 !important;
  font-family: 'LIGHT';

}

.text-title4{
  color: #fcdd00;
  font-family: 'BOLD';
  font-weight: 100;
  font-size: 40px;
}

.text-title5{
  color: #fcdd00;
  font-family: 'BOLD';
  font-weight: 100;
  font-size: 30px;
}


.text-home{
  color: #fcdd00;
  font-family: 'BOOK';
  white-space: nowrap;
}

.subtitle{
 font-family: 'DEMI';
  color: #fff;
  font-weight: 900;
  margin-bottom: 20px;
}

.subtitle1{
  font-family: 'Ultra';
  color: #fff;
  font-weight: 200;
  margin-bottom: 30px;
    line-height: 1.5;
  display: flex;
  justify-content: center;
  text-align: center;
}


.custom-link{
  background-color: transparent;
  color: #fcdd00 !important;
  font-family: 'BOLD';
  border: solid 1px #fcdd00;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 50px;
}

.custom-link:hover{
  background-color: #4da8de !important;
  color: #fff !important;
  border-color: #4da8de !important;
}

.site-about-header {
  background-image: url('AP_221026RDR_0428.webp');
}

.site-about-header2 {
  background-image: url('');
}

.site-menu-header {
  background-image: url('22-DSC04815.webp');
}

.site-news-header {
  background-image: url('');
}

.site-contact-header {
  background-image: url('bg2.webp');
}

.overlay {
  background: #191d31;
  background: linear-gradient(0deg,rgba(25, 29, 49, 1) 0%, rgba(25, 29, 49, 0.3) 59%, rgba(25, 29, 49, 0) 100%);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}



/*---------------------------------------
  HERO              
-----------------------------------------*/
.hero {
  position: relative;
  overflow: hidden;
  overflow-x: hidden;
  overflow-x: none;
}

.banner1{
  text-align: center;
  align-content: center;
  align-items: center;
  padding: 250px 0;
  width: 100%;
  height: auto;
  display: inline-flex;
  flex-direction: column;
  background-image: url('bg.webp');
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
}
.banner1 h1 {
  color: #fcdd00;
  font-family: 'BOLD';
  font-size: 90px;
  font-weight: 100;
  margin-bottom: 0px;
  position: relative;
  z-index: 9;
  display: flex;
  margin-left: 5%;
}

.banner1 h4 {
  color: #fff;
  align-items: center;
  font-size: 34px;
  font-weight: 600;
  position: relative;
  text-align: center;
  z-index: 9;
  display: inline-flex;
  align-content: center;
 font-family: 'DEMI';
  margin-bottom: 20px;
}

.title-principale{
  color: #fcdd00;
  font-size: 90px;
  font-weight: 100;
  position: relative;
  z-index: 9;
  display: flex;
  justify-content: center;
  font-family: 'BOLD';
  align-items: center;
}

.title-principale2{
 color: #fff;
  font-size: 34px;
  font-weight: 600;
  position: relative;
  z-index: 9;
  display: flex;
  justify-content: center;
 font-family: 'DEMI';
  align-items: center;
}

.home-button{
  z-index: 9;
  position: relative;
  margin-left: 5% !important;
  display: flex;
  background-color: transparent;
  color: #fcdd00;
  font-family: 'BOLD';
  width: fit-content;
  border: solid 1px #fcdd00;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 50px;

}

.btn-home{
  z-index: 9;
  position: relative ;
  margin-left: 5% !important;
  padding-top: 0px !important;
  padding-bottom: 00px !important;
  display: flex;
}


.home-button:hover{
  background-color: #4da8de;
  border-color: #4da8de;
  color: #fff;
}

.home-button1{
  z-index: 9;
  position: relative;
  display: inline-block;
  justify-content: center;
  background-color: transparent;
  color: #fcdd00;
  font-family: 'BOLD';
  border: solid 1px #fcdd00;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 50px;
  
}

.home-button1:hover{
  background-color: #4da8de;
  border-color: #4da8de;
  color: #fff;
}

.button-center{
  display: flex;
  justify-content: center;
}




.custom-video {
  display:block;
  margin:0 auto 35px auto;
  object-fit: cover;
  width: 100%;
  margin-top: 60px;
  margin-bottom: 60px;
}

.image-border1{
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
}

.image-border2{
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
}

.image-border3{
  border-radius: 25px;
  margin-top: 80px;
}

.colu{
  background-color: none;
  margin-top: 25px;
}


.colu2 {
  background-color: none;
  margin-top: 80px;
}







/*---------------------------------------
  HERO SLIDE               
-----------------------------------------*/
.carousel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.carousel-thumb {
  position: relative;
}

.carousel-caption {
  background: linear-gradient(to top, var(--dark-color), transparent 90%);
  text-align: left;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 60px 40px;
  border-radius: 10px;
}

.hero-carousel .reviews-text,
.hero-text {
  color: #fcdd00;
}

.price-tag {
  background: #fcdd00;
  border-radius: 5px;
  color: #191d31;
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-semibold);
  display: inline-block;
  width: 84px;
  height: 64px;
  line-height: 64px;
  text-align: center;
}

.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
  position: absolute;
  top: auto;
  bottom: 0;
  opacity: 1;
}

.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
  background: #191d31;
  width: 60px;
  height: 60px;
  text-align: center;
}

.hero-carousel .carousel-control-prev {
  left: auto;
  right: 60px;
  background: #191d31;
  color: #fcdd00;
}

.hero-carousel .carousel-control-next {
  background: #191d31;
  right: 0;
  color: #fcdd00;
  border-bottom-right-radius: 10px;
}

.hero-carousel .carousel-control-prev:hover, 
.hero-carousel .carousel-control-next:hover {
  background: #fcdd00;
  color: #191d31;
}

.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon {
  background-image: none;
  width: inherit;
  height: inherit;
  line-height: 60px;
}

.hero-carousel .carousel-control-prev-icon::before,
.hero-carousel .carousel-control-next-icon::before {
  font-family: bootstrap-icons;
  display: block;
  margin: auto;
  font-size: var(--h5-font-size);
}

.hero-carousel .carousel-control-prev-icon{
  rotate: -45deg;
}

.hero-carousel .carousel-control-next-icon{
  rotate: 45deg;
}

.hero-carousel .carousel-control-prev-icon::before {
  content: "\f13f";
}

.hero-carousel .carousel-control-next-icon::before {
  content: "\f144";
}

.reviews-icon {
  color: #191d31;
}


/*---------------------------------------
  MENU               
-----------------------------------------*/
.menu,
.about,
.news,
.related-news,
.newsletter,
.comments {
  background: #191d31;
}

.about p{
  color: #fcdd00;
}

.menu-thumb {
  position: relative;
  overflow: hidden;
}

.menu-info {
  padding: 20px 20px 30px 20px;
}

.menu-image {
  display: block;
}

.menu-image-wrap {
  position: relative;
}

.menu-image-wrap img{
  border-radius: 10px;
}

.menu-tag {
  position: absolute;
  top: 0;
  right: 0;
  margin: 20px;
}

.newsletter-image {
  border-radius: 100%;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  max-width: 450px;
  max-height: 450px;
}

.img-rosace{
  max-width: 130px;
  position: absolute;
  left: 44%;
  top: 62.7%;
  z-index: 1;
}











.img-home{
  z-index: 100 !important;
  width: 400px !important;
  position: relative;
}
																					
															
																					

.title-center{
  text-align: justify !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  align-content: center !important;

}

.banner1 img{
    z-index: 100 !important;
  width: 400px !important;
  position: relative;
}










.img-rosace1{
  max-width: 150px;
  position: absolute;
  rotate: 90deg;
  left: 44%;
  top: 62%;
  z-index: 1;
}

.img-goutte{
  max-width: 500px;
  position: absolute;
  margin-left: -3.5%;
  top: 19.2%;
}


.img-goutte1{
  max-width: 90px;
  position: absolute;
  left: 78%;
  top: 62%;
  rotate: -12deg;
}

.img-goutte2{
  max-width: 150px;
  position: absolute;
  rotate: 90deg;
  left: 30%;
  top: 59%;
}

.img-goutte3{
  max-width: 170px;
  position: absolute;
  left: 81%;
  top: 75.5%;
}


.img-goutte4{
  max-width: 170px;
  position: absolute;
  left: 81%;
  top: 67.5%;
}

.img-goutte5{
  max-width: 170px;
  position: absolute;
  left: 81%;
  top: 59.5%;
}

.img-goutte6{
  max-width: 170px;
  position: absolute;
  left: 81%;
  top: 48.5%;
}

.img-bateau{
  max-width: 380px;
  position: absolute;
  left: 19%;
  top: 39.7%;
}


/*---------------------------------------
  NEWS               
-----------------------------------------*/
.news-thumb {
  position: relative;
  overflow: hidden;
}

.news-thumb > a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease-out;
}

.news-thumb > a:hover {
  transform: scale(1.05);
}

.news-text-info {
  background: var(--section-bg-color);
  position: relative;
  z-index: 2;
  padding: 20px;
  transition: all 0.3s ease-out;
}

.related-news .news-text-info {
  background: var(--white-color);
}

.news-text-info-large {
  background: linear-gradient(to top, var(--dark-color), transparent 90%);
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  left: 0;
  pointer-events: none;
}

.news-text-info-large .news-title-link {
  color: #fcdd00;
}

.news-title-link {
  color: #fcdd00;
}

.news-image {
  display: block;
  width: 100%;
  transition: all 0.3s ease-out;
}

.news-image:hover {
  transform: scale(1.05);
}

.category-tag,
.menu-tag {
  background: var(--dark-color);
  border-radius: var(--border-radius-default);
  color: var(--white-color);
  font-size: var(--category-font-size);
  display: inline-block;
  padding: 4px 12px;
}

.category-tag {
  margin-bottom: 5px;
}

.comment-form {
  margin-bottom: 60px;
}

.news-author {
  border-bottom: 1px solid rgba(0,0,0,0.05);
  margin-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 30px;
}

.news-author:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.news-author-image {
  border-radius: 100px;
  object-fit: cover;
  width: 70px;
  height: 70px;
}


/*---------------------------------------
  CUSTOM FORM            
-----------------------------------------*/
.custom-form .form-control {
  margin-bottom: 20px;
  padding: 14px 10px;
  transition: all 0.3s;
}





/*---------------------------------------
  SUBSCRIBE FORM            
-----------------------------------------*/
.subscribe-form .form-control {
  margin-top: 20px;
  margin-bottom: 10px;
}


/*---------------------------------------
  BOOKING FORM            
-----------------------------------------*/
#BookingModal .modal-content {
  border: 0;
  overflow: hidden;
}

#BookingModal .modal-content::before {
  content: "";
  background-color: var(--white-color);
  background-image: url('');
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  width: 60%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}

#BookingModal .modal-header {
  border-bottom: 0;
  position: relative;
  padding: 26px 32px 0 32px;
}

#BookingModal .modal-body {
  padding: 38px 32px;
  padding-right: 35%;
}

#BookingModal .modal-footer {
  border-top: 0;
  padding: 0;
}

.booking-form .form-control {
  font-weight: var(--font-weight-normal);
  padding-top: 12px;
  padding-bottom: 12px;
  margin-bottom: 25px;
  transition: all 0.3s;
}

.booking-form button[type="submit"] {
  background: var(--dark-color);
  border: 0;
  font-weight: var(--font-weight-semibold);
  color: var(--white-color);
  text-transform: uppercase;
  margin-bottom: 0;
}

.booking-form button[type="submit"]:hover {
  background: var(--primary-color);
}

.BgImage {
  background-image: url('AP_221026RDR_0428.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  height: auto;
  padding-top: 85px;
  padding-bottom: 85px;
}

.menu-restaurant img{
  width: 200px;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

/*---------------------------------------
  FOOTER              
-----------------------------------------*/
.site-footer {
  background-image: url('bg2.webp');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-top: 7rem;
  padding-bottom: 7rem;
  position: relative;
    overflow-x: hidden;
  overflow-x: none;
}

.site-footer::before {
  content: "";
background: #191D31;
background: linear-gradient(180deg,rgba(25, 29, 49, 1) 0%, rgba(25, 29, 49, 0.3) 69%, rgba(25, 29, 49, 0) 100%);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.site-footer .container {
  position: relative;
}

.tooplate-mt30 {
	margin-top: 20px;
}
.tooplate-mt60 {
	margin-top: 20px;
}



.copyright-text {
  font-size: var(--menu-font-size);
}

.tel-link {
  color: #fff;
}

.site-footer a:hover {
  color: #fff;
}

.site-footer a {
  color: #fff;
}

.site-footer p {
	color: #fff;
}


/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon li {
  list-style: none;
  display: inline-block;
  vertical-align: top;
  transition: all 0.3s;
}

.social-icon li a{
  color: #fff !important;

}

.social-icon li a:hover{
  color: #4da8de;
}



.social-icon-link img {
  width: 35px;
  display: inline-block;
  vertical-align: top;
  margin-top: 4px;
  margin-right: 15px;
}



/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (max-width: 1180px) {
  h1 {
    font-size: 62px;
  }
}

@media screen and (max-width: 1170px) {
  h1 {
    font-size: 56px;
  }
}


@media screen and (max-width: 991px) {
  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 24px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .img-rosace{
    max-width: 70px;
    position: absolute;
    left: 78%;
    top: 62.8%;
    z-index: 1;
  }

  .texte-min{
    font-size: 22px !important;
  }

  .img-rosace1{
    max-width: 90px;
    position: absolute;
    left: 41%;
    top: 58%;
    z-index: 1;
  }
  
.img-goutte{
  max-width: 350px;
  position: absolute;
  margin-left: -7.5%;
  top: 11.8%;
}
  
  .img-goutte1{
    max-width: 70px;
    position: absolute;
    left: 71%;
    top: 64%;
  }

  .img-goutte2{
    max-width: 90px;
    position: absolute;
    left: 49%;
    top: 47%;

  }

.img-goutte3{
  display: none !important;
}

.img-goutte4{
    display: none !important;
}

.img-goutte5{
      display: none !important;
}

.img-goutte6{
      display: none !important;
}

.colu1 {
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
}

.colu1 img{
    border-radius: 0%;
}

.colu2 {
  display: none;
}

.colu3 {
  display: none;
}

.min-tel{
  display: none;
}

  .text-title2{
    color: #fcdd00;
    font-family: 'BOLD';
    font-weight: 100;
    font-size: 30px !important;
  }

  .text-title1{
    color: #fcdd00;
    font-family: 'BOLD';
    font-weight: 100;
    font-size: 30px !important;
    display: flex;
    justify-content: center;
  }

  .front-product {
  background: #191d31;
  background-image: url('');
  background-repeat: no-repeat;
  background-size: 2000px;
  padding-top: 20px;
  padding-bottom: 40px;
}



  .banner1 h1 {
  color: #fcdd00;
  font-family: 'BOLD';
  font-size: 30px;
  font-weight: 100;
  margin-bottom: 0px;
  position: relative;
  z-index: 9;
  display: flex;
  text-align: start;
}

.banner1 h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  position: relative;
  text-align: center;
  z-index: 9;
  display: flex;
 font-family: 'DEMI';
  margin-bottom: 20px;
}

.text2{
  font-size: 30px !important;
}

.text3{
  font-size: 30px !important;
}


.image-border2{
  margin-top: 100px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}

  .text-title{
    color: #fcdd00;
    font-family: 'BOLD';
    font-weight: 100;
    font-size: 30px !important;
  }

  .title-principale{
    margin-top: 20px;
  color: #fcdd00;
  font-size: 42px !important;
  font-weight: 100;
  position: relative;
  z-index: 9;
  display: flex;
  justify-content: center;
  font-family: 'BOLD';
  align-items: center;
}

.title-principale2{
 color: #fff;
  font-size: 18px !important;
  font-weight: 600;
  position: relative;
  z-index: 9;
  display: flex;
  justify-content: center;
  font-family: 'BOOK';
  align-items: center;
}

.img-bateau{
  max-width: 220px;
  position: absolute;
  align-items: center;
  align-content: center;
  justify-content: center;
  top: 37.4%;
}

.axoimg{
  width: 95%;
}

.menu-restaurant1 .menu-title1
{
display: flex;
justify-content: center;
width: fit-content;
align-items: center;
font-weight: 100;
font-size: 25px !important;
letter-spacing:1px;
color:#fcdd00;
font-family: 'BOLD';
width: 100%;
}

.menu-restaurant1 .specialtitle
{
font-size: 20px !important;
}


.menu-restaurant .menu-title
{
float:left;
font-weight: 800;
font-size: 14px !important;
text-transform: uppercase;
letter-spacing:1px;
color:#fff;
max-width: 340px;
  font-family: 'BOOK';
}

.text-title5{
  color: #fcdd00;
  font-family: 'BOLD';
  font-weight: 100;
  font-size: 30px;
  margin-top: 60px;
}

.menu-restaurant2 .menu-title
{
float:left;
font-weight: 800;
font-size: 14px !important;
text-transform: uppercase;
letter-spacing:1px;
color:#191d31 !important;
max-width: 340px;
  font-family: 'BOOK';
}

.decal{
  max-width: 120px !important;
}

.decal1{
  max-width: 190px !important;
}

.decal2{
  max-width: 250px !important;
}

.decal3{
  max-width: 270px !important;
}

.logo-rdr{
  width: 240px;
}

.menu-restaurant1 .menu-title2
{
float:left;
font-weight: 800;
font-size: 20px !important;
text-transform:uppercase;
letter-spacing:1px;
color:#fcdd00;
font-family: 'BOOK';
}

																																	
.img-home{
	width: 220px!important;	
																																	  
}
.container2{
  height: 75vh !important;
}

.container3{
  height: 75vh !important;
}

.menu-restaurant1 .menu-title1 .prix-title{
  font-family: 'BOLD';
  font-weight: 700;
  font-size: 15px !important;
  color:#fcdd00;
}

  .site-header,
  .section-padding {
    padding-top: 0rem;
    padding-bottom: 3rem;
    
  }

  .navbar {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .navbar-nav .nav-link {
    padding-top: 5px;
    padding-bottom: 10px;
    max-width: fit-content;
  }

  #BookingModal .modal-content {
    padding-bottom: 200px;
  }

  #BookingModal .modal-content::before {
    background-image: url('');
    background-position: bottom;
    top: auto;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 200px;
    transform: rotate(180deg);
  }

  #BookingModal .modal-body {
    padding-top: 18px;
    padding-right: 32px;
  }
}

@media screen and (max-width: 480px) {
  .newsletter-image {
    max-width: 310px;
    max-height: 310px;
  }

  .hero-carousel .carousel-control-prev,
  .hero-carousel .carousel-control-next {
    width: 50px;
    height: 50px;
  }
}


















.front-product {
  background: #191d31;
  background-image: url('../');
  background-repeat: no-repeat;
  background-size: 2000px;
  padding-top: 20px;
  padding-bottom: 40px;
    overflow-x: hidden;
  overflow-x: none;
}

.front-product1 {
  background: #191d31;
  padding-top: 80px;
  padding-bottom: 80px;
    overflow-x: hidden;
  overflow-x: none;
}

.hero10{
  margin-top: 17px;
  margin-bottom: 23px;
  margin-right: 27px;
  margin-left: 13px;

  overflow-x: hidden;
  overflow-y: none;
  display: flex;
  flex-direction: column-reverse;

  padding-top: 6%;
  margin-inline-start: none;
}

.front-product2 {
  background: #191d31;
  background-image: url('../');
  background-repeat: no-repeat;
  background-blend-mode: hue;
  background-size: 850px;
  padding-top: 80px;
  padding-bottom: 80px;
    overflow-x: hidden;
  overflow-x: none;
}

.front-product3 {
  background: #191d31;
  background-image: url('../');
  background-repeat: no-repeat;
  background-blend-mode: hue;
  background-position: right;
  background-size: 850px;
  padding-top: 80px;
  padding-bottom: 80px;
}


.front-product4 {
  background: #191d31;
  padding-top: 0px;
  padding-bottom: 0px;
}

.front-product5 {
  background: #191d31;
  background-image: url('../');
  background-repeat: no-repeat;
  background-blend-mode: hue;
  background-size: 850px;
  padding-top: 80px;
  padding-bottom: 0px;
  padding-bottom: 80px;
}

.display{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-content: center;
  align-items: center;
}








































#menu-list{
  background: #191d31;
  background-image: url('../');
  background-repeat: space;
  background-blend-mode: hue;
  background-size: 3000px;
}




.header-h {
  font-size: 35px;
  color: #fcdd00;
  font-weight: 800;
font-size: 46px;

}
ul
{
list-style:none;
}
.header-p {
color:#fcdd00;

  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}
.section-padding1{
padding: 60px 0px;
}
.marb-35{
margin-bottom:0px;
}
.menu-restaurant
{
width:50%;
float:left;
padding:15px;
position: relative;

}

.menu-restaurant1
{
width:100%;
float:left;
padding:15px;
position: relative;
}

.menu-restaurant2
{
width:100%;
float:left;
padding:15px;
position: relative;
background-color: #fff;
border-radius: 25px;
}




.menu-restaurant .menu-title
{
float:left;
font-weight: 800;
font-size: 18px;
text-transform: uppercase;
letter-spacing:1px;
color:#fff;
  font-family: 'BOOK';
}

.menu-restaurant1 .menu-title2
{
float:left;
font-weight: 800;
font-size: 22px;
text-transform:uppercase;
letter-spacing:1px;
color:#fcdd00;
font-family: 'BOOK';
}

.menu-restaurant1 .menu-title1
{
display: flex;
justify-content: center;
width: fit-content;
align-items: center;
font-weight: 100;
font-size: 50px;
letter-spacing:1px;
color:#fcdd00;
font-family: 'BOLD';
width: 100%;
}



.menu-restaurant2 .menu-title1
{
display: flex;
justify-content: center;
width: fit-content;
align-items: center;
font-weight: 800;
font-size: 24px;
letter-spacing:1px;
color:#191d31;
font-family: 'BOOK';
width: 100%;
}

.menu-restaurant2 .menu-title
{
  float:left;
  font-weight: 800;
  font-size: 18px;
  text-transform:uppercase;
  letter-spacing:1px;
  color:#191d31;
  font-family: 'BOOK';
}

.menu-restaurant1 .menu-title1 .min-title{
  font-family: 'LIGHT';
  font-weight: 200;
  font-size: 16px;
}

.menu-restaurant2 .menu-title1 .min-title{
  font-family: 'LIGHT';
  font-weight: 200;
  font-size: 16px;
}

.min-title{
  font-family: 'LIGHT';
  font-weight: 200;
  font-size: 16px;
  text-transform: none !important;
}

.menu-restaurant1 .menu-title1 .prix-title{
  font-family: 'BOLD';
  font-weight: 700;
  font-size: 18px;
  color:#fff;
}

.menu-restaurant2 .menu-title1 .prix-title{
  font-family: 'BOLD';
  font-weight: 700;
  font-size: 18px;
  color:#191d31;
}


.menu-restaurant .menu-line
{
position: absolute;
bottom:6px;
border-bottom:1px dotted transparent;
margin-left: .6em;
margin-right: .6em;

}

.menu-restaurant1 .menu-line
{
position: absolute;
bottom:6px;
border-bottom:1px dotted transparent;
margin-left: .6em;
margin-right: .6em;
}

.menu-restaurant2 .menu-line
{
position: absolute;
bottom:6px;
border-bottom:1px dotted transparent;
margin-left: .6em;
margin-right: .6em;
}


.menu-restaurant .menu-price{
font-weight:600;
position:absolute;
color:#fff;
right:0;
top:0;

}

.menu-restaurant .menu-price1{
  font-weight:600;
  position:absolute;
  color:#fcdd00;
  right:0;
  top:0;
  }

.menu-restaurant .menu-price i{
  scale: 2;
  margin-right: 10px;
  }

.menu-restaurant .menu-price .espace{
  scale: 2;
  margin-right: 50px;
  }

  .menu-restaurant .espace1{
    margin-right: 92px;
    }


.menu-restaurant1 .menu-price{
  font-weight:600;
  position:absolute;
  color:#fff;
  right:0;
  top:0;
  }

  .menu-restaurant1 .menu-price span{
    color: #ffff;
    }


  .menu-restaurant2 .menu-price{
    font-weight:600;
    position:absolute;
    color:#191d31;
    right:0;
    top:0;
    }

.menu-restaurant .menu-subtitle
{
display:block;
float:left;
color:#fff;
font-weight: 100;
font-size: 16px;
font-family: 'LIGHT';
}
.menu-restaurant span.clearfix{
position:relative;
display:block;
}

.menu-restaurant1 .menu-subtitle
{
display:block;
float:left;
color:#fff;
font-weight: 100;
font-size: 16px;
font-family: 'LIGHT';
}
.menu-restaurant1 span.clearfix{
position:relative;
display:block;
}

.menu-restaurant2 .menu-subtitle
{
display:block;
float:left;
color:#191d31;
font-weight: 100;
font-size: 15px;
font-family: 'LIGHT';
}

.menu-restaurant2 .menu-subtitle span
{
  font-family: 'BOOK';
color:#191d31;
font-size: 15px;
}

.menu-restaurant2 span.clearfix{
position:relative;
display:block;
}


#menu-filters ul li a.active, #menu-filters ul li a:hover
{
background: #4da8de;
color:#fff;
border:1px solid #4da8de;
border-radius: 100px;
  font-family: 'BOLD';
}
#menu-filters ul li 
{
display:inline-block;
color:#fff;
text-transform:capitalize;
letter-spacing:1px;
margin-bottom:40px;
border-radius: 100px;
}
#menu-filters ul li a
{
padding: 10px 20px;
font-size:15px;
margin-left: 3px;
margin-right: 3px;
color: #ffff;
  font-family: 'BOLD';
border:1px solid #ffff;
text-decoration:none;
cursor:pointer;
border-radius: 100px;

}
@media (min-width: 20px) and (max-width: 450px) 
{
.menu-restaurant 
{
width: 100%;
}
.header-h
{
font-size: 35px;
}
.header-p 
{
font-size: 14px;
}

.menu-restaurant .menu-title
{
float:left;
font-weight: 800;
font-size: 12px;
text-transform:uppercase;
letter-spacing:1px;
color:#fcdd00;
font-family: '';
}

.menu-restaurant .menu-price1{
  font-weight:600;
  position:absolute;
  color:#fcdd00;
  right:20;
  top:0;
  font-size: 13px;
  text-align: end;
  margin-top: -20px;
  }

}

.msg-row{
margin-top:56px;
}
.media-body, .media-left, .media-right
{
display:table-cell; 
vertical-align: top;

}

.bg-1
{
background-color: #fcdd00;
width:70px;
height:70px;
border-radius:50%;

}
.bg-14
{
background-color: #fcdd00;
width:70px;
height:70px;
border-radius:50%;
}
.dark-blue
{
color: #fcdd00;
font-size: 24px;
margin-top: 0;
}
.light-blue {
color: #fff;
font-size: 16px;
margin-bottom: 1px;
}
.media-body{
margin-left:10px;
padding-left:13px;
}
.media-2{
margin-top:30px;

}
.form-group
{
margin:8px 0 9px !important;
padding-bottom:10px;
}
.contact-form .form-control
{
color: #fff !important;
font-size:16px;
font-weight:normal;
height:38px;
line-height: 1.42857;
padding:7px 0;
border: 1px solid #fff;
}

.form-control, .form-group .form-control {
border: 0;

-webkit-background-size: 0 2px, 100% 1px;
background-size:0 2px,100% 1px;
background-repeat: no-repeat;
background-position: center bottom, center -webkit-calc(100% - 1px);
background-position: center bottom, center calc(100% - 1px);
background-color: rgba(0, 0, 0, 0);
-webkit-transition: background 0s ease-out;
-o-transition: background 0s ease-out;
transition: background 0s ease-out;
float: none;
-webkit-box-shadow: none;
box-shadow: none;
border-radius:25px;

}

.img-menu{
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  width: 300px !important;
}

.contact{
  background: #191d31;
  background-image: url('../');
  background-repeat: space;
  background-blend-mode: hue;
  background-size: 850px;
  background-position: right;
}

.contact-form {
margin: 8px 0 9px !important;
padding-bottom: 10px;
}
.phone-in-talk, .hour-icon
{
font-size: 35px;
line-height: 70px;
color: rgb(255, 255, 255);
}

.contact-form textarea.form-control {
color: #fff !important;
border: 1px solid #ffff;
height: auto;
}

.contact-form textarea.form-control:focus{
  background-color: transparent;
}

.contact-form input.form-control:focus{
  background-color: transparent;
}

.contact-form textarea.form-control::placeholder{
color: #fff;
}


.contacts-btn {
background-color:  transparent !important;
color: blue !important;
width: 170px;
height: 54px;
border-radius: 3px;
font-size: 16px;
font-family: 'Satoshi', sans-serif;
font-weight: normal;
text-transform: capitalize;
border: 0px;
}



.validation {
color: red;
display:none;
margin: 0 0 20px;
font-weight:400;
font-size:13px;
}

#sendmessage {
color: green;
border:1px solid green;
display:none;
text-align:center;
padding:15px;
font-weight:600;
margin-bottom:15px;
}

#errormessage {
color: red;
display:none;
border:1px solid red;
text-align:center;
padding:15px;
font-weight:600;
margin-bottom:15px;
}

#sendmessage.show, #errormessage.show, .show {
display:block;
}





















.btn{
	color: #fff;
	border: 1px solid #fff;
  font-family: 'BOLD';
	border-radius: 50px;
    z-index: 9;

  padding-left: 20px;
  padding-right: 20px;
  padding-top: 8px;
  padding-bottom: 8px;
  
	position: absolute;

	overflow: hidden;
	transition: all 0.3s;

}

.btn:before{
	content: "";
	position: absolute;
	width: 320px;
	height: 320px;
	border-radius: 140px;
	background-color: #4da8de;
border-color: #4da8de;
	top: 70px;
	left: 50%;
	/*transform: translateX(-50%);*/

	animation: wave 5s infinite linear;
	transition: all 1s;
}
@keyframes wave{
	0%{transform: translateX(-50%) rotate(0deg);

	} 
	100%{transform: translateX(-50%) rotate(360deg);

	}
}
.btn:hover{
	color: #4da8de !important;
  border-color: #4da8de;
	/*transition: all 0.3s;*/
}
.btn:hover:before{
	top: 10px;

  
	/*transition: all 1s;*/
}


.btn-texte{
  padding-top: 8px;
  padding-bottom: 8px;
  filter: invert(0%);
}

.btn-texte:hover{
  color: #000 !important;
  border-color: #4da8de;
  filter: invert(100%);
  transition: all 0.4s;
}


























.container2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 120vh;
  margin-left: 10%;
  margin-bottom: 0%;
  margin-right: 10%;
}

.container3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 120vh;
  margin-top: 0%;
  margin-left: 10%;
  margin-bottom: 0%;
  margin-right: 10%;
}

.text2 {
  font-size: 50px;
  letter-spacing: -.01em;
  width: 100%;
  color: rgb(182, 182, 182, 0.2);
  background: #fff no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  background-size: 0%;
  font-family: 'DEMI';
  transition: background-size cubic-bezier(.1,.5,.5,1) 0.5s;
  text-transform: uppercase;

  border-bottom: 1px solid transparent;
  border-radius: 0%;
  margin-top: -10px;
  
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: relative;
}

.text3 {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #4da8de;
  color: #0D0D0D;
  text-transform: uppercase;
  
  clip-path: polygon(0 50%, 100% 50%, 100% 50%, 0 50%);
  transform-origin: center;
  transition: all cubic-bezier(.1,.5,.5,1) 0.4s;
  
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.text2:hover > span {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.button-services {
  text-decoration: none;
  color: #fff;
}

.button-services:hover {
  text-decoration: none;
  color: #fff;
}

