/* Font */
/* @import url("https://fonts.googleapis.com/css?family=Montserrat:400,700&display=swap"); */

@font-face {
  font-family: 'HankenGrotesk';
  src: url('../../fonts/HankenGrotesk-Light.woff2') format('woff2'),
      url('../../fonts/HankenGrotesk-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'EBGaramond';
  src: url('../../fonts/EBGaramond-SemiBold.woff2') format('woff2'),
      url('../../fonts/EBGaramond-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --light-red: #C07364;
  --red-color: #C07364;
  --blue-color: #C07364;
  --yellow-color: #C07364;
  --light-blue: #C07364;
  --bl-444: #000;
  --dark-gray: #000;
  --cream-color: #FFFDF8;
}


html {
  height: 100%;
}
body {
  font-family: "HankenGrotesk", sans-serif;
  height: 100%;
  background: #FFFDF8;
}
.red hr {
  background-color: var(--red-color);
}
.blue hr {
  background-color: var(--blue-color);
}
.yellow hr {
  background-color: var(--yellow-color);
}
.light-red hr {
  background-color: var(--light-red);
}
.light-blue hr {
  background-color: var(--light-blue);
}
.dark-gray hr {
  background-color: var(--dark-gray);
}
.page-node-type-event hr {
  background-color: var(--light-blue);
}
hr {
  background-color: var(--red-color);
  width: 20px;
  height: 4px;
  margin: 1rem auto 3rem 0;
}
.link-white {
  color: #fff;
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}
.link-yellow {
  color: var(--red-color);
  border-color: var(--red-color);
  text-decoration: none;
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}
.link-white:hover{
  color: #fff;
}
.link-yellow:hover {
  color: #fff;
  background-color: var(--red-color);
  text-decoration: none;
}
a.link-purple {
	text-shadow: none;
  text-decoration: none !important;
  font-weight: normal;
  box-shadow: none;
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  border-radius: 0;
  padding: 0.45rem 2.3rem;
  color: var(--dark-gray) !important;
  background: transparent;
  border: 1px solid #444;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}
a.link-purple:hover {
	background: #444;
  color: #fff !important;
  box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 3px 1px -2px rgba(0, 0, 0, 0.12);
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}
a.link-purple-white {
	text-shadow: none;
  text-decoration: none !important;
  font-weight: normal;
  box-shadow: none;
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  border-radius: 0;
  padding: 0.45rem 2.3rem;
  color: var(--red-color) !important;
  background: transparent;
  border: 1px solid var(--red-color);
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}
a.link-purple-white:hover {
	color: #fff !important;
	background-color: var(--red-color);
}
.dialog-off-canvas-main-canvas {
  /* height: 100vh; */
  /* display: flex; */
  /* flex-direction: column; */
}
.main-container {
  flex: 1 0 auto;
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: auto;
}

/* Align items verticaly */
.v-center {
  display: flex;
  align-items: center;
}

/* Avoid gutter for Bootstrap rows */
.no-gutter {
  margin-right: 0;
  margin-left: 0;
}

/* Disable default margin for node pages */
.node__content {
  margin-top: 0 !important;
}

/* Pagination */
.pagination {
  /* margin: auto; */
  display: flex;
  justify-content: center;
}
.page-link {
  color: var(--dark-gray);
  background-color: transparent;
  border: none;
}
.page-link:hover {
  color: var(--dark-gray);
  background-color: transparent;
  border: none;
}
.page-item.active .page-link {
  color: var(--dark-gray);
  font-weight: bold;
  font-family: 'EBGaramond';
  background-color: transparent;
  border-color: none;
  text-decoration: underline;
}

/* Carousel in Boostrap 4 */
.carousel-control-prev,
.carousel-control-next {
  z-index: 2;
  opacity: 0.8;
}
.carousel-control-prev .fas,
.carousel-control-next .fas {
  font-size: 28px;
  color: #fff;
}

/* Paragraph bug */
.paragraph {
  display: block !important;
  flex-wrap: unset !important;
}

/* Bug phone number Saphari */
a[href^="tel"] {
  text-decoration: inherit;
  color: inherit;
}

/* Breadcrumb */
.breadcrumb {
  background-color: transparent;
  margin: 0;
  padding: 0.4rem 0;
  font-size: 0.55rem;
  text-transform: uppercase;
}
.breadcrumb-container {
  background-color: #f0f0f0;
  padding-top: 8px;
}
.breadcrumb-item.active {
  color: #000;
  font-weight: bold;
  font-family: 'EBGaramond';
}
.breadcrumb-item + .breadcrumb-item::before {
  color: #000;
  content: ">";
  font-weight: lighter;
}
.breadcrumb-item {
  font-size: 0.65rem;
}

/* Magnific Popup */
.mfp-zoom-out-cur {
  cursor: default;
}
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: pointer;
}
.mfp-title {
  display: none;
}
.mfp-image-holder .mfp-content {
  width: 60%;
  height: 80vh;
  /* object-fit: contain; */
}
img.mfp-img {
  width: 100%;
  height: 80vh;
  object-fit: cover;
}

/* Instagram block */
.instagram-block {
  /* background: #f0f0f0; */
}
.instagram-block-row {
  width: 90%;
  margin: 0 auto;
}
.instagram-image {
  display: block;
  width: 100%;
  height: 9rem;
  background-size: cover !important;
}
.instagram-big-image {
  height: 19rem;
}

/* Links */
a {
  color: #000;
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}
a:hover,
a:focus {
  text-decoration: none;
  color: var(--dark-gray);
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}

/* Button generic */
.btn-generic-empty a {
  background: transparent;
  /* font-size: 2rem; */
  color: var(--dark-gray)4;
  border: 2px solid #444;
  text-align: center;
  white-space: nowrap;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  text-transform: uppercase;
  display: inline-block;
  padding: 0.3rem 1.8rem;
  font-size: 0.8rem;
  text-decoration: none;
  /* transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms; */
  margin: 1rem auto;
}
.btn-generic-empty a:hover,
.btn-generic-empty a:focus {
  background: #444;
  color: #ffffff;
  box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.2),
    0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 3px 1px -2px rgba(0, 0, 0, 0.12);
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}

/* Disable loader for media elements */
.media--loading::before {
  display: none;
}

/* Banner image (like the page enjeux) */
.image-full-width {
  /* width: 100%; */
  /* height: 300px; */
}

/* Cookie banner */
div#sliding-popup,
div#sliding-popup .eu-cookie-withdraw-banner,
.eu-cookie-withdraw-tab {
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.2),
    0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 3px 1px -2px rgba(0, 0, 0, 0.12);
  margin: 0.7rem 0;
  left: 0;
  right: 0;
  padding: 2rem 2rem;
}
#sliding-popup h1,
#sliding-popup h2,
#sliding-popup h3,
#sliding-popup p,
#sliding-popup label,
#sliding-popup div,
.eu-cookie-compliance-more-button,
.eu-cookie-compliance-secondary-button,
.eu-cookie-withdraw-tab {
  color: var(--dark-gray);
}
.eu-cookie-compliance-category {
  font-size: 0.9rem;
}
.eu-cookie-compliance-more-button {
  color: var(--dark-gray);
  font-size: 0.9rem;
  text-decoration: none;
}
.eu-cookie-compliance-message p {
  font-size: 0.9rem;
}
.eu-cookie-compliance-more-button:hover {
  color: var(--dark-gray);
  text-decoration: underline;
}
.eu-cookie-compliance-secondary-button,
.eu-cookie-compliance-save-preferences-button {
  color: var(--red-color);
  text-decoration: underline;
  font-weight: normal;
  font-size: 0.9rem;
  font-family: "Montserrat", sans-serif;
  border: none;
  padding-left: 0;
  background-color: unset;
  box-shadow: none;
  background-image: unset;
}
.eu-cookie-compliance-secondary-button:hover,
.eu-cookie-compliance-secondary-button:focus,
.eu-cookie-compliance-save-preferences-button:hover,
.eu-cookie-compliance-save-preferences-button:focus {
  font-family: "Montserrat", sans-serif;
}
.eu-cookie-compliance-default-button {
  text-shadow: none;
  font-weight: normal;
  box-shadow: none;
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  border-radius: 0;
  padding: 0.45rem 2.3rem;
  color: #fff;
  background: var(--red-color);
  border: 1px solid var(--red-color);
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}
.eu-cookie-compliance-default-button:hover,
.eu-cookie-compliance-default-button:focus {
  background: transparent;
  color: var(--red-color);
  border-color: var(--red-color);
  box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.2),
    0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 3px 1px -2px rgba(0, 0, 0, 0.12);
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}

@media (max-width: 992px) {
  .image-full-width {
    height: 130px;
  }
  .instagram-block-row {
    width: inherit;
    margin: inherit;
  }
  .instagram-image {
    height: 6rem;
  }
  .instagram-big-image {
    height: 13rem;
  }
}

/* Add white lines each side on large screens */
@media (min-width: 1920px) {
  .bg-edge2edge {
    width: 1920px !important;
    margin-left: -960px !important;
    margin-right: -960px !important;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 1920px !important;
    -ms-flex: 0 0 1920px !important;
    flex: 0 0 1920px !important;
  }
}
