/* ---------------------------------------------------------------------------- */
/* Imports */
/* ---------------------------------------------------------------------------- */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

.clearfix:before, .clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

.button {
  transition: all 0.3s ease;
}

i[class^='icon'],
i[class*=' icon'] {
  display: flex;
  align-items: center;
}

/* ---------------------------------------------------------------------------- */
/* Mixins - Functions */
/* ---------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------- */
/* Font smoothing */
/* ---------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------- */
/* Variables - Colors */
/* ---------------------------------------------------------------------------- */
:root {
  --color-main: #980321;
  --color-secondary: #faf2f3;
  --color-black: #000000;
  --color-white: #ffffff;
  --color-dirty-black: #1a1818;
  --color-white: #fff;
  --color-black: #000;
}

.background-color-main {
  background-color: #980321 !important;
}

.text-color-main {
  color: #980321 !important;
}

.background-color-secondary {
  background-color: #faf2f3 !important;
}

.text-color-secondary {
  color: #faf2f3 !important;
}

.background-color-black {
  background-color: #000000 !important;
}

.text-color-black {
  color: #000000 !important;
}

.background-color-white {
  background-color: #ffffff !important;
}

.text-color-white {
  color: #ffffff !important;
}

.background-color-dirty-black {
  background-color: #1a1818 !important;
}

.text-color-dirty-black {
  color: #1a1818 !important;
}

::selection {
  color: white;
  background: var(--color-main);
}

/* ---------- Backgrounds ---------- */
.style-clear h1,
.style-clear h2,
.style-clear h3,
.style-clear h4,
.style-clear h5,
.style-clear h6,
.style-clear p {
  color: var(--color-black) !important;
}

/* ---------------------------------------------------------------------------- */
/* Variables - Fonts */
/* ---------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------- */
/* Components - Buttons */
/* ---------------------------------------------------------------------------- */
.text-link:hover {
  text-decoration: underline;
}

.full-button .btn-holder {
  flex: 0 0 100%;
  max-width: 100%;
  box-shadow: 0 0 35px 5px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .full-button .btn-holder {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

.full-button .btn-holder .button {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  height: 150px;
}

@media (min-width: 1280px) {
  .full-button .btn-holder .button {
    height: 190px;
  }
}

.full-button .btn-holder .button .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  font-size: 100px;
  color: #fb204c;
}

@media (min-width: 1280px) {
  .full-button .btn-holder .button .icon {
    font-size: 135px;
  }
}

.full-button .btn-holder .button span {
  position: relative;
  z-index: 5;
  text-transform: uppercase;
}

.button {
  color: var(--color-white);
  text-decoration: none;
  background: none;
  cursor: pointer;
  padding: 11px 26px;
}

.button.border-radius {
  border-radius: 30px;
}

.button.small-font {
  padding: 0.625rem 0.875em;
}

.button.smaller-font {
  padding: 0.375rem 0.625em;
}

.outline-color-main {
  color: #980321 !important;
  border: 2px solid #980321 !important;
}

.outline-color-main:hover {
  color: #FFFFFF !important;
  border: 2px solid #BF2F38 !important;
  background: #BF2F38 !important;
}

.opaque-color-main {
  border: 2px solid #980321 !important;
  background: #980321 !important;
  color: #FFFFFF;
}

.opaque-color-main:hover {
  color: #FFFFFF !important;
  border: 2px solid #BF2F38 !important;
  background: #BF2F38 !important;
}

.outline-color-secondary {
  color: #faf2f3 !important;
  border: 2px solid #faf2f3 !important;
}

.outline-color-secondary:hover {
  color: #FFFFFF !important;
  border: 2px solid #BF2F38 !important;
  background: #BF2F38 !important;
}

.opaque-color-secondary {
  border: 2px solid #faf2f3 !important;
  background: #faf2f3 !important;
  color: #FFFFFF;
}

.opaque-color-secondary:hover {
  color: #FFFFFF !important;
  border: 2px solid #BF2F38 !important;
  background: #BF2F38 !important;
}

.outline-color-black {
  color: #000000 !important;
  border: 2px solid #000000 !important;
}

.outline-color-black:hover {
  color: #FFFFFF !important;
  border: 2px solid #BF2F38 !important;
  background: #BF2F38 !important;
}

.opaque-color-black {
  border: 2px solid #000000 !important;
  background: #000000 !important;
  color: #FFFFFF;
}

.opaque-color-black:hover {
  color: #FFFFFF !important;
  border: 2px solid #BF2F38 !important;
  background: #BF2F38 !important;
}

.outline-color-white {
  color: #ffffff !important;
  border: 2px solid #ffffff !important;
}

.outline-color-white:hover {
  color: #FFFFFF !important;
  border: 2px solid #BF2F38 !important;
  background: #BF2F38 !important;
}

.opaque-color-white {
  border: 2px solid #ffffff !important;
  background: #ffffff !important;
  color: #FFFFFF;
}

.opaque-color-white:hover {
  color: #FFFFFF !important;
  border: 2px solid #BF2F38 !important;
  background: #BF2F38 !important;
}

.outline-color-dirty-black {
  color: #1a1818 !important;
  border: 2px solid #1a1818 !important;
}

.outline-color-dirty-black:hover {
  color: #FFFFFF !important;
  border: 2px solid #BF2F38 !important;
  background: #BF2F38 !important;
}

.opaque-color-dirty-black {
  border: 2px solid #1a1818 !important;
  background: #1a1818 !important;
  color: #FFFFFF;
}

.opaque-color-dirty-black:hover {
  color: #FFFFFF !important;
  border: 2px solid #BF2F38 !important;
  background: #BF2F38 !important;
}

/* ---------------------------------------------------------------------------- */
/* Components - Content-text */
/* ---------------------------------------------------------------------------- */
/* Font */
.style-h1,
h1 {
  font-size: 52px;
  line-height: 1.25;
  font-family: "Poppins";
  font-weight: 700;
}

@media screen and (min-width: 480px) {
  .style-h1,
  h1 {
    font-size: calc(52px + 18 * ((100vw - 480px) / 960));
  }
}

@media screen and (min-width: 1440px) {
  .style-h1,
  h1 {
    font-size: 70px;
  }
}

.style-h2,
h2 {
  font-size: 38px;
  line-height: 1.15;
  font-family: "Poppins";
  font-weight: 700;
}

@media screen and (min-width: 480px) {
  .style-h2,
  h2 {
    font-size: calc(38px + 12 * ((100vw - 480px) / 960));
  }
}

@media screen and (min-width: 1440px) {
  .style-h2,
  h2 {
    font-size: 50px;
  }
}

.style-h3,
h3 {
  font-size: 27px;
  line-height: 1.35;
  font-family: "Poppins";
  font-weight: 700;
}

@media screen and (min-width: 480px) {
  .style-h3,
  h3 {
    font-size: calc(27px + 4 * ((100vw - 480px) / 960));
  }
}

@media screen and (min-width: 1440px) {
  .style-h3,
  h3 {
    font-size: 31px;
  }
}

.style-h4,
h4 {
  font-size: 24px;
  line-height: 1.5;
  font-family: "Poppins";
  font-weight: 700;
}

@media screen and (min-width: 480px) {
  .style-h4,
  h4 {
    font-size: calc(24px + 2 * ((100vw - 480px) / 960));
  }
}

@media screen and (min-width: 1440px) {
  .style-h4,
  h4 {
    font-size: 26px;
  }
}

.style-h5,
h5 {
  font-size: 18px;
  line-height: 1.5;
  font-family: "Poppins";
  font-weight: 500;
}

@media screen and (min-width: 480px) {
  .style-h5,
  h5 {
    font-size: calc(18px + 6 * ((100vw - 480px) / 960));
  }
}

@media screen and (min-width: 1440px) {
  .style-h5,
  h5 {
    font-size: 24px;
  }
}

.style-h6,
h6 {
  font-size: 18px;
  line-height: 1.5;
  font-family: "Poppins";
  font-weight: 500;
}

@media screen and (min-width: 480px) {
  .style-h6,
  h6 {
    font-size: calc(18px + 2 * ((100vw - 480px) / 960));
  }
}

@media screen and (min-width: 1440px) {
  .style-h6,
  h6 {
    font-size: 20px;
  }
}

.style-p,
p {
  font-size: 18px;
  line-height: 1.65;
  font-family: "Poppins";
  font-weight: 400;
}

@media screen and (min-width: 480px) {
  .style-p,
  p {
    font-size: calc(18px + 0 * ((100vw - 480px) / 960));
  }
}

@media screen and (min-width: 1440px) {
  .style-p,
  p {
    font-size: 18px;
  }
}

.style-font-content-text, p,
font-content-text {
  font-size: 18px;
  line-height: 1.65;
  font-family: "Poppins";
  font-weight: 400;
}

@media screen and (min-width: 480px) {
  .style-font-content-text, p,
  font-content-text {
    font-size: calc(18px + 0 * ((100vw - 480px) / 960));
  }
}

@media screen and (min-width: 1440px) {
  .style-font-content-text, p,
  font-content-text {
    font-size: 18px;
  }
}

.style-font-content-text-banner-big, .banner .banner-container p,
font-content-text-banner-big {
  font-size: 20px;
  line-height: 1.5;
  font-family: "Poppins";
  font-weight: 400;
}

@media screen and (min-width: 480px) {
  .style-font-content-text-banner-big, .banner .banner-container p,
  font-content-text-banner-big {
    font-size: calc(20px + 4 * ((100vw - 480px) / 960));
  }
}

@media screen and (min-width: 1440px) {
  .style-font-content-text-banner-big, .banner .banner-container p,
  font-content-text-banner-big {
    font-size: 24px;
  }
}

.style-font-content-text-banner,
font-content-text-banner {
  font-size: 18px;
  line-height: 1.66;
  font-family: "Poppins";
  font-weight: 400;
}

@media screen and (min-width: 480px) {
  .style-font-content-text-banner,
  font-content-text-banner {
    font-size: calc(18px + 2 * ((100vw - 480px) / 960));
  }
}

@media screen and (min-width: 1440px) {
  .style-font-content-text-banner,
  font-content-text-banner {
    font-size: 20px;
  }
}

.style-font-content-text-strong-banner, .banner .banner-container p strong,
font-content-text-strong-banner {
  font-size: 20px;
  line-height: 1.66;
  font-family: "Poppins";
  font-weight: 500;
}

@media screen and (min-width: 480px) {
  .style-font-content-text-strong-banner, .banner .banner-container p strong,
  font-content-text-strong-banner {
    font-size: calc(20px + 4 * ((100vw - 480px) / 960));
  }
}

@media screen and (min-width: 1440px) {
  .style-font-content-text-strong-banner, .banner .banner-container p strong,
  font-content-text-strong-banner {
    font-size: 24px;
  }
}

.style-font-button, .text-link, .button {
  font-size: 16px;
  line-height: 1.25;
  font-family: "Poppins";
  font-weight: 500;
}

@media screen and (min-width: 480px) {
  .style-font-button, .text-link, .button {
    font-size: calc(16px + 1 * ((100vw - 480px) / 960));
  }
}

@media screen and (min-width: 1440px) {
  .style-font-button, .text-link, .button {
    font-size: 17px;
  }
}

.style-font-button-small, .text-link.small-font, .button.small-font {
  font-size: 14px;
  line-height: 1.25;
  font-family: "Poppins";
  font-weight: 500;
}

@media screen and (min-width: 480px) {
  .style-font-button-small, .text-link.small-font, .button.small-font {
    font-size: calc(14px + 2 * ((100vw - 480px) / 960));
  }
}

@media screen and (min-width: 1440px) {
  .style-font-button-small, .text-link.small-font, .button.small-font {
    font-size: 16px;
  }
}

.style-font-button-smaller, .button.smaller-font {
  font-size: 14px;
  line-height: 1.25;
  font-family: "Poppins";
  font-weight: 500;
}

@media screen and (min-width: 480px) {
  .style-font-button-smaller, .button.smaller-font {
    font-size: calc(14px + 0 * ((100vw - 480px) / 960));
  }
}

@media screen and (min-width: 1440px) {
  .style-font-button-smaller, .button.smaller-font {
    font-size: 14px;
  }
}

.style-font-main-menu {
  font-size: 14px;
  line-height: 1.25;
  font-family: "Poppins";
  font-weight: 500;
}

@media screen and (min-width: 1280px) {
  .style-font-main-menu {
    font-size: calc(14px + 1 * ((100vw - 1280px) / 160));
  }
}

@media screen and (min-width: 1440px) {
  .style-font-main-menu {
    font-size: 15px;
  }
}

.style-font-main-sub-menu {
  font-size: 16px;
  line-height: 1;
  font-family: "Poppins";
  font-weight: 400;
}

@media screen and (min-width: 480px) {
  .style-font-main-sub-menu {
    font-size: calc(16px + 0 * ((100vw - 480px) / 960));
  }
}

@media screen and (min-width: 1440px) {
  .style-font-main-sub-menu {
    font-size: 16px;
  }
}

/* Font Weight */
.fw-thin {
  font-weight: 100 !important;
}

.fw-extralight {
  font-weight: 200 !important;
}

.fw-light {
  font-weight: 300 !important;
}

.fw-regular {
  font-weight: 400 !important;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-extrabold {
  font-weight: 800 !important;
}

.fw-black {
  font-weight: 900 !important;
}

/* Titles */
.suptitle {
  font: 400 1.5625rem/1.3 "Poppins";
  margin-bottom: 30px;
}

/* Paragraphes */
p {
  margin-bottom: 30px;
}

p strong {
  font-weight: 700;
}

p small {
  font-size: 12px;
  font-weight: 400;
}

p + * {
  margin-top: 25px;
}

p:last-of-type {
  margin-bottom: 0;
}

/* Elements */
.content-text {
  /* ---------- Images ---------- */
}

.content-text h1 + *,
.content-text h2 + *,
.content-text h3 + *,
.content-text h4 + *,
.content-text h5 + *,
.content-text h6 + * {
  margin-top: 7px;
}

.content-text > *:first-child {
  margin-top: 0;
}

.content-text > *:last-child {
  margin-bottom: 0;
}

.content-text hr {
  height: 1px;
  display: block;
  margin: 3rem auto;
  background: #F3F3F3;
  border: none;
  clear: both;
}

.content-text img {
  border-radius: 2px;
}

.content-text .alignleft {
  float: left;
  max-width: 45%;
  margin: 5px 35px 15px 0;
}

.content-text .alignleft.wp-caption {
  margin-right: 2rem;
}

.content-text .alignright {
  float: right;
  max-width: 45%;
  margin: 5px 0 15px 35px;
}

.content-text .alignright.wp-caption {
  margin-left: 2rem;
}

.content-text .aligncenter {
  padding: 10px 0;
  margin: 0 auto 2rem;
  clear: both;
}

.content-text .aligncenter.wp-caption {
  max-width: 100%;
}

.content-text .wp-caption p {
  color: #888;
  font: italic 12px/16px "Poppins";
  text-align: center;
  padding: 0 5px;
  margin: 10px 10px 0 0;
}

b, strong {
  font-weight: bold;
}

i, em {
  font-style: italic;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.4rem;
}

sub {
  bottom: -0.25rem;
}

/* ---------------------------------------------------------------------------- */
/* Layout - Header */
/* ---------------------------------------------------------------------------- */
.header {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 11111;
  position: fixed;
  background-color: rgba(152, 2, 33, 0.8);
  transition: background-color ease 0.2s , 0.1s ease 0.2s;
}

@media (min-width: 1280px) {
  .header {
    border-bottom: transparent;
  }
}

.header.shrink {
  background-color: #980221;
}

.header.scrollUp {
  opacity: 0;
  transform: translateY(-100%);
}

.header .sup-header {
  background: #f8f8f8;
  padding: 0.625rem 0;
  border-bottom: #e1e1e1;
}

.header .sup-header span {
  font: 400 0.75rem/1.2 "Poppins";
}

.header .sup-header a {
  font: 500 1rem/1.2 "Poppins";
  text-decoration: underline;
}

.header .sup-header a:hover {
  text-decoration: none;
}

.header .logo {
  position: relative;
  padding: 3px 0;
}

@media (min-width: 576px) {
  .header .logo {
    width: 215px;
  }
}

@media (min-width: 1280px) {
  .header .logo {
    padding: 0;
  }
}

.header .hamburger {
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  padding: 13px;
  transition: background ease 0.2s , 0.25s ease 0.2s;
  font: inherit;
  color: inherit;
  text-transform: none;
  border: 0;
  overflow: visible;
}

.header .hamburger .open-menu {
  display: block;
}

.header .hamburger .close-menu {
  display: none;
}

.header .hamburger.is-active .open-menu {
  display: none;
}

.header .hamburger.is-active .close-menu {
  display: block;
}

.header .main-menu-holder {
  padding: 0.9375rem 0;
}

.header .main-menu-holder nav {
  text-align: left;
  width: 100%;
}

.header .main-menu-holder nav ul {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.header .main-menu-holder nav ul li {
  position: relative;
  margin: 0 1.61458vw;
}

.header .main-menu-holder nav ul li:first-of-type {
  margin-left: 0;
}

.header .main-menu-holder nav ul li:last-of-type {
  margin-right: 0;
}

.header .main-menu-holder nav ul li:hover a:after {
  width: 50px;
  left: 50%;
  transform: translateX(-50%);
}

.header .main-menu-holder nav ul li.current-page-parent > a, .header .main-menu-holder nav ul li.current_page_item > a {
  color: var(--color-main);
  font-weight: bold;
}

.header .main-menu-holder nav ul li a {
  display: block;
  font: 500 1rem/1 "Poppins";
  color: var(--color-white);
  letter-spacing: 0.0015em;
}

.header .main-menu-holder nav ul li a:after {
  background: none repeat scroll 0 0 transparent;
  background-color: var(--color-white);
  bottom: -5px;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
  transform: translateX(-50%);
  border-radius: 3px;
}

.header .main-menu-holder nav ul li a.current_page_item:after {
  width: 50px;
  left: 50%;
  transform: translateX(-50%);
}

/* ---------------------------------------------------------------------------- */
/* Layout - Banner */
/* ---------------------------------------------------------------------------- */
.banner {
  position: relative;
  color: #fff;
  padding: 4.27083vw 0;
  min-height: 33vh;
}

.banner.full-height {
  min-height: 33vh;
}

@media (min-width: 992px) {
  .banner.full-height {
    min-height: auto;
  }
}

.banner.two-third-height {
  min-height: 33vh;
}

@media (min-width: 992px) {
  .banner.two-third-height {
    min-height: calc(66vh);
  }
}

.banner.mid-height {
  min-height: 50vh;
}

@media (min-width: 992px) {
  .banner.mid-height {
    min-height: calc(50vh);
  }
}

.banner.one-third-height {
  min-height: 33vh;
}

@media (min-width: 992px) {
  .banner.one-third-height {
    min-height: calc(33vh);
  }
}

.banner.banner_map.auto-height {
  min-height: 260px;
}

.banner .container {
  z-index: 11;
}

.banner .banner-background {
  width: 100%;
  min-height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.banner .banner-background .banner-image {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  background-size: cover;
  background-position: center center;
  display: none;
}

@media (min-width: 576px) {
  .banner .banner-background .banner-image {
    display: block;
  }
}

.banner.content_banner .banner-mobile, .banner.video_banner .banner-mobile {
  position: absolute;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  display: block;
  top: 0;
}

@media (min-width: 576px) {
  .banner.content_banner .banner-mobile, .banner.video_banner .banner-mobile {
    display: none;
  }
}

.banner .banner-container {
  display: flex;
  flex-direction: column;
}

.banner .banner-container h1,
.banner .banner-container p {
  color: var(--color-white);
}

.banner .banner-container p {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 991.98px) {
  .banner .banner-container p br {
    display: none;
  }
}

.banner .banner-container h2, .banner .banner-container h3, .banner .banner-container h4, .banner .banner-container h5, .banner .banner-container h6, .banner .banner-container p {
  margin-bottom: 15px !important;
}

.banner .banner-container h2 + h2, .banner .banner-container h2 h3, .banner .banner-container h2 h4, .banner .banner-container h2 h5, .banner .banner-container h2 h6, .banner .banner-container h2 p, .banner .banner-container h3 + h2, .banner .banner-container h3 h3, .banner .banner-container h3 h4, .banner .banner-container h3 h5, .banner .banner-container h3 h6, .banner .banner-container h3 p, .banner .banner-container h4 + h2, .banner .banner-container h4 h3, .banner .banner-container h4 h4, .banner .banner-container h4 h5, .banner .banner-container h4 h6, .banner .banner-container h4 p, .banner .banner-container h5 + h2, .banner .banner-container h5 h3, .banner .banner-container h5 h4, .banner .banner-container h5 h5, .banner .banner-container h5 h6, .banner .banner-container h5 p, .banner .banner-container h6 + h2, .banner .banner-container h6 h3, .banner .banner-container h6 h4, .banner .banner-container h6 h5, .banner .banner-container h6 h6, .banner .banner-container h6 p, .banner .banner-container p + h2, .banner .banner-container p h3, .banner .banner-container p h4, .banner .banner-container p h5, .banner .banner-container p h6, .banner .banner-container p p {
  margin-top: 15px !important;
}

.banner .banner-container.align-center {
  align-items: center;
}

.banner .banner-container.align-center .banner-content {
  width: 100%;
  max-width: 1280px;
  text-align: center;
}

.banner .banner-container.align-left {
  align-items: flex-start;
}

.banner .banner-container.align-left .banner-content {
  text-align: left;
  max-width: 560px;
}

.banner .banner-container.align-right {
  align-items: flex-end;
}

.banner .banner-container.align-right .banner-content {
  text-align: right;
  max-width: 560px;
}

.banner .banner-map {
  position: absolute;
  width: 100%;
  height: 100%;
}

.banner .banner-map .acf-map {
  position: absolute;
  width: 100%;
  height: 100%;
}
