:root {
  --primary-salmon: #FD6666;
  --bcg-color: #122631;
}

body {
  background-color: #122631;
  box-sizing: border-box;
}

/*** Header ***/
.header-lg {
  display: none;
}


/*** Enleve les bullets sur le carousel ***/
.et-pb-controllers {
  display: none;
}

/*******************/
/*** MOBILE NAV ***/
/******************/
#mobile__sec {
  position: fixed !important;
  top: 0;
  width: 100%;
}

.hamburger__nav {
  position: relative !important;
  height: 100%;
}

.hamburger_nav--items,
.hamburger_nav--items .et_pb_code_0_tb_header,
.hamburger_nav--items .et_pb_code_inner {
  height: 100%;
}

.mobile__nav--title {
  display: flex !important;
  justify-content: center;
  align-items: flex-end;
  height: 100%;
  padding-bottom: 5px;
}

.mobile__nav--title h2 {
  font-size: 10px;
  color: #fff;
}

.mobile__nav--title h2:first-child {
  margin-right: 3px;
}

.mobile__nav--title h2:last-child {
  margin-left: 3px;
}

.mobile__nav--title img {
  width: 30px;
}

.mobile__nav--title .et_pb_image {
  margin-right: 0;
}

.mobile__nav--title h2 {
  padding-bottom: 0;
}


#header-mobile .et_pb_column {
  margin-bottom: 0;
}


/*** Hamburger Menu ***/
.hamburger__menu {
  position: absolute !important;
  top: 10px;
  right: 20px;
  z-index: 600;
  margin: 5px;
}

.hamburger__menu.et_pb_column {
  margin-bottom: 0;
}

.hamburger__menu span {
  display: block;
  width: 32px;
  height: 4px;
  border-radius: 2px;
  background-color: #fff;
  margin: 3px 0;
}

.hamburger__menu span:nth-child(2) {
  width: 26px;
  margin-left: 3px;
}


#mobile__sec.scroll-active {

  border-bottom: 1px solid var(--primary-salmon);
  box-shadow: 0px 0px 10px 1px rgba(253, 102, 102, 0.5);
}

/*** Drawer ***/

.drawer {
  -webkit-transition: all 0.5s ease !important;
  -moz-transition: all 0.5s ease !important;
  -o-transition: all 0.5s ease !important;
  -ms-transition: all 0.5s ease !important;
  transition: all 0.5s ease !important;
}

.drawer.open,
.backdrop.open {
  left: 0;
}

.backdrop.open {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1500;
}

.drawer-close {
  position: relative;
  height: 40px;
  margin: 0;
}

.close-drawer {
  position: absolute;
  top: -5px;
  right: 5px;
  z-index: 600;
}

.close-drawer:after {
  content: "";
  height: 35px;
  border-left: 3px solid white;
  position: absolute;
  transform: rotate(45deg);
  top: 10px;
  left: -20px;
}

.close-drawer:before {
  content: "";
  height: 35px;
  border-left: 3px solid white;
  color: white;
  position: absolute;
  transform: rotate(-45deg);
  top: 10px;
  left: -20px;
}

.drawer-title h2 {
  margin-top: 10px;
  padding: 0;
}

.drawer-title h2:before {
  content: "";
  display: block;
  margin: 0 auto;
  width: 62%;
  height: 8px;
  border-top: 3px solid white;
}

.drawer-title h2:after {
  content: "";
  display: block;
  margin: 0 auto;
  width: 62%;
  height: 8px;
  border-bottom: 3px solid white;
}

.drawer__nav .drawer__nav--list {
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.drawer__nav .drawer__nav--box {
  display: block;
  position: relative;
  width: 200px;
  color: #FFF;
  margin-bottom: 20px;
}

.drawer__nav .drawer__nav--box li {
  font-size: 12px;
  letter-spacing: 1px;
  padding: 4px 0 4px 10px;
  border-radius: 35px;
  background: linear-gradient(90deg, #014254 0%, #033443 100%) padding-box,
    linear-gradient(to right, #3F3F3F, #666464) border-box;
  border: 4px solid transparent;
  text-transform: uppercase;
}

.drawer__nav .drawer__nav--box .drawer__nav--icon {
  position: absolute;
  width: 50px;
  top: -6px;
  right: -15px;
}

/******************/
/**** SUB NAV ****/
/****************/
#sub-sticky {
  position: sticky;
  top: 45px;
  z-index: 500;
}

.sub__nav ul {
  list-style: none;
  padding: 0;
  height: 30px;
  display: flex;
  align-items: center;
}

.sub__nav ul li {
  padding: 6px 3px;

}

.sub__nav .sub__nav--link {
  transition: 0.3s;
  color: #fff;
}

.sub__nav .sub__nav--link.active {
  background-color: var(--primary-salmon);
  padding: 3px 10px;
  border-radius: 3px;
}

/******************/
/*** MENU GRID ***/
/*****************/
.menu__container {
  display: grid;
  grid-template-columns: 1fr;
}

.card__menu .card__image {
	margin: 0;
	width: 60% !important;
	margin-right: 10px;
}

.card__menu .card__info {
	display: flex;
  width: 100%;
	flex-direction: column;
	justify-content: end;
}

.card__menu .card__info--titre {
	margin-bottom: 20px;
}



/**************/
/*** Footer ***/
/**************/

.footer {
  display: none;
}

#footer-mobile {
  display: block;
}

.footer-container {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "horaire horaire"
    "sitemap conditions"
    "copy copy";
}

.footer .grid1 {
  grid-area: horaire;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.footer .grid2 {
  grid-area: sitemap;
}

.footer .grid3 {
  grid-area: conditions;
}

.footer .grid4 {
  grid-area: copy;
}

.footer h3 {
  padding: 0;
}

.et_pb_row .et_pb_column.et_pb_column_1_4 {
  margin: 0;
  margin-bottom: 5px;
}

/*** SITEMAP ***/
.et-l--footer ul {
  list-style: none;
}

.et_pb_blurb_0_tb_footer.et_pb_blurb .et_pb_module_header,
.et_pb_blurb_1_tb_footer.et_pb_blurb .et_pb_module_header {
  margin-bottom: 10px;
}

.sitemap {
  padding: 0 !important;
}

.sitemap li {
  line-height: 1.2em;
}

.sitemap li a {
  font-size: 10px;
  color: #fff;
}

.sitemap .sitemap-title a {
  text-transform: uppercase;
  font-size: 10px;
  color: #fd6666;
}

/*******************/
/*** NAV BOTTOM ***/
/******************/

.nav-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  height: 70px;
  background-color: #122631;
  width: 100vw;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  z-index: 50000;
}

.nav-bottom .link-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #FFF;
  width: 25%;
}

.nav-bottom a:visited {
  color: #FFF;
}

.nav-bottom .bi-house,
.nav-bottom .bi-image,
.nav-bottom .bi-telephone,
.nav-bottom .bi-chat {
  width: 30px;
  height: 30px;
}

.nav-bottom__menu {
  position: absolute;
  top: -83vh;
  left: 0px;
  width: 100%;
  height: 83vh;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: scale(0);
  transition: all 0.6s ease;
}

.nav-bottom__menu.open {
  pointer-events: all;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.nav-bottom__menu h3 {
  color: #FFF;
  text-transform: uppercase;
  font-size: 24px;
  margin-bottom: 30px;
  padding: 0;
}

.nav-bottom__menu ul {
  height: 100%;
  padding: 100px 0 30px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

.nav-bottom__menu ul .nav-bottom__box {
  display: block;
  width: 240px;
  color: #FFF;
  margin-bottom: 20px;
}

.nav-bottom__menu ul .nav-bottom__box:last-child {
  margin-bottom: 0;
}

.nav-bottom__menu ul .nav-bottom__box li {
  text-align: center;
  font-size: 18px;
  letter-spacing: 1px;
  padding: 7px 0;
  border-radius: 35px;
  background: linear-gradient(90deg, #014254 0%, #033443 100%) padding-box,
    linear-gradient(to right, #3F3F3F, #666464) border-box;
  border: 4px solid transparent;
  text-transform: uppercase;
}

.nav-bottom__menu ul .nav-bottom__box .space-li {
  letter-spacing: 8px;
}

.carte-container {
  position: relative;
}

.close-menu {
  position: absolute;
  top: 0;
  right: -70px;
  z-index: 600;
}

.close-menu:after {
  content: '';
  height: 35px;
  border-left: 4px solid white;
  position: absolute;
  transform: rotate(45deg);
  top: 10px;
  left: -20px;
}

.close-menu:before {
  content: '';
  height: 35px;
  border-left: 4px solid white;
  color: white;
  position: absolute;
  transform: rotate(-45deg);
  top: 10px;
  left: -20px;
}

/*** FIDELITE ***/
#info {
  display: grid;
  grid-template-columns: 60% 40%;
}

#info__text {
  margin-bottom: 10px;
}

.border__pink {
	border: 1px solid #cc3366;
	border-radius: 5px;
	padding: 1px 8px;
	background-color: #cc3366;
}

/*** END FIDELITE ***/

/*****************************/
/**** MEDIA QUERY 768 PX ****/
/***************************/

@media screen and (min-width: 768px) {

  /*** Header ***/
  .header-lg {
    display: block;
  }

  #header-mobile {
    display: none;
  }

  .drawer {
    display: none;
  }

/******************/
/*** MENU GRID ***/
/*****************/
.menu__container {
  grid-template-columns: repeat(3, 1fr);
  column-gap: 10px;
  row-gap: 10px;
}

.card__menu {
  display: flex;
  flex-direction: column;
}

.card__menu .card__image {
  width: 100% !important;
  margin: 0;
}

  /**************/
  /*** Footer ***/
  /**************/
  .footer {
    display: block;
  }

  #footer-mobile {
    display: none;
  }

  .et_pb_gutters3 .et_pb_column_1_4 {
    width: 100% !important;
  }

  .footer-container {
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas:
      "horaire sitemap conditions"
      "copy copy copy";
  }

  .footer-container .et_pb_column {
    margin-bottom: 0 !important;
  }

  /*** Sitemap ***/
  .sitemap li a {
    font-size: 10px;
  }

  .sitemap .sitemap-title a {
    font-size: 14px;
  }

  .footer .grid1 {
    display: block;
  }
}

@media screen and (min-width: 992px) {

/******************/
/*** MENU GRID ***/
/*****************/
.menu__container {
  grid-template-columns: repeat(4, 1fr);
  }
}