/*
@import "config/accordion";
@import "menu";
@import "config/custom-variables";
@import "config/magazine";*/
@import url("https://fonts.googleapis.com/css2?family=Lora:wght@400..700&family=Outfit:wght@100..900&display=swap");
.header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  margin: 20px 0;
}

.header .logo-head {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  padding-top: 20px;
  width: 220px;
  height: 220px;
  border: 1px solid #a7a7a7;
  background-color: white;
  border-radius: 50%;
  overflow: hidden;
}

.header .logo-head img {
  max-width: 240px;
  padding: 20px;
}

@media (min-width: 220px) and (max-width: 1200px) {
  .header {
    display: none;
  }
}

.header-nav {
  position: relative;
  z-index: 80;
}

.header-nav .header-nav-block {
  margin: 0 50px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  background-color: rgba(255, 255, 255, 0.8);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.header-nav .header-nav-block nav {
  width: 100%;
}

.header-nav .header-nav-block nav .content-menu {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
}

.header-nav .header-nav-block nav .content-menu .logo {
  display: none;
}

.header-nav .header-nav-block nav .content-menu .link-menu {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  width: 100%;
  padding: 20px 0;
}

.header-nav .header-nav-block nav .content-menu .menu {
  list-style: none;
  padding: 0;
  margin-bottom: 0px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}

.header-nav .header-nav-block nav .content-menu .menu .rs a {
  padding: 0 8px 0 4px;
}

.header-nav .header-nav-block nav .content-menu .menu li a {
  text-decoration: none !important;
  text-transform: uppercase;
  color: #757575;
  letter-spacing: .04rem !important;
  font-family: "Outfit", Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0 25px;
}

.header-nav .header-nav-block nav .content-menu .hamburger-collapse {
  cursor: pointer;
}

.header-nav .header-nav-block nav .content-menu .hamburger-collapse .hamburger {
  fill: #a7a7a7;
}

.header-nav .header-nav-block.sticky {
  margin: 0;
  position: fixed;
  width: 100%;
  top: 0;
  background-color: white !important;
  z-index: 30;
}

.header-nav .header-nav-block.sticky nav .content-menu {
  padding: 0 15px;
}

.header-nav .header-nav-block.sticky nav .content-menu .logo {
  padding: 0 !important;
}

.header-nav .header-nav-block.sticky nav .content-menu .logo img {
  width: 110px !important;
}

.header-nav .header-nav-block.sticky nav .content-menu .link-menu {
  border-top: none !important;
}

@media (min-width: 220px) and (max-width: 1200px) {
  .header-nav .header-nav-block.sticky nav .content-menu .logo {
    -ms-flex-pack: start;
        justify-content: start;
  }
  .header-nav .header-nav-block.sticky nav .content-menu .link-menu {
    border-top: 0px solid rgba(0, 0, 0, 0.1);
  }
}

.header-nav .collapse {
  display: block;
}

.header-nav .btn-collapse-nav {
  display: none;
}

@media (min-width: 220px) and (max-width: 1200px) {
  .header-nav .header-nav-block {
    margin: 0;
    height: auto;
    padding: 10px;
    background-color: white;
  }
  .header-nav .header-nav-block nav .content-menu {
    -ms-flex-direction: row;
        flex-direction: row;
    padding: 0 15px;
  }
  .header-nav .header-nav-block nav .content-menu .logo {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
        justify-content: start;
  }
  .header-nav .header-nav-block nav .content-menu .logo img {
    width: 160px;
    height: auto;
    transition: all 0.3s ease-out;
  }
  .header-nav .header-nav-block nav .content-menu .link-menu {
    border-top: none;
  }
  .header-nav .collapse {
    display: none;
  }
  .header-nav .btn-collapse-nav {
    display: block;
  }
}

.olv-menu {
  width: 310px;
  background-color: #a7a7a7;
  height: 100%;
  position: fixed;
  z-index: 99999;
  top: 0;
  left: -310px;
  overflow-y: auto;
  transition: all 0.3s ease-out;
}

.olv-menu.close {
  translate: -310px 0;
}

.olv-menu.open {
  translate: 310px 0;
}

.olv-menu .olv-menu-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-align: center;
      align-items: center;
  background-color: #757575;
  height: 65px;
  padding-right: 25px;
}

.olv-menu .olv-menu-header .btn-close-olv {
  cursor: pointer;
}

.olv-menu .olv-menu-header .btn-close-olv .close-fill {
  fill: #a7a7a7;
}

.olv-menu .olv-menu-body {
  padding-left: 25px;
  padding-right: 20px;
  padding-top: 0px;
}

.olv-menu .olv-menu-body li {
  margin: 25px 0;
}

.olv-menu .olv-menu-body li a {
  font-family: "Outfit", Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  color: #FFF;
}

.olv-menu .olv-menu-body li a:hover {
  text-decoration: none;
}

.olv-menu .olv-menu-body a {
  text-decoration: none;
}

.olv-menu .olv-menu-body p {
  color: #FFF;
  font-size: 0.8rem;
}

.olv-menu .olv-menu-body .nums {
  font-weight: 800;
  color: #757575;
  font-size: 1.2rem;
}

.olv-menu .olv-menu-body hr {
  background: rgba(255, 255, 255, 0.2);
  border: 0;
  height: 1px;
  margin: 15px 0;
  opacity: 1;
}
/* GDPR */
[data-plugin-rgpd-wrapper] {
  opacity: 0;
  transition: ease opacity 300ms;
}

[data-plugin-rgpd-wrapper].show {
  opacity: 1;
}

.olv-rgpd-bar {
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: justify;
      justify-content: space-between;
  background: rgba(0, 0, 0, 0.9);
  padding: 1rem 1.5rem;
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate3d(0, 100%, 0);
          transform: translate3d(0, 100%, 0);
  transition: ease opacity 300ms, ease transform 300ms;
}

.olv-rgpd-bar .olv-rgpd-bar-description p {
  color: rgba(255, 255, 255, 0.5);
}

.olv-rgpd-bar .olv-rgpd-bar-actions {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  margin-top: 15px;
}

.olv-rgpd-bar .olv-rgpd-bar-actions .btn-refuse {
  background-color: #f4f4f4;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: #a7a7a7;
  margin-right: 10px;
}

.olv-rgpd-bar .olv-rgpd-bar-actions .btn-accept {
  background: #a7a7a7;
  color: white;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.olv-rgpd-bar .olv-rgpd-bar-actions .olv-rgpd-agree-trigger {
  margin-left: 2rem;
}

.olv-rgpd-bar.show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.olv-rgpd-bar.removing {
  opacity: 0;
  -webkit-transform: translate3d(0, 100%, 0);
          transform: translate3d(0, 100%, 0);
}

@media (min-width: 1200px) {
  .olv-rgpd-bar {
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-align: center;
        align-items: center;
  }
  .olv-rgpd-bar .rgpd-bar-actions {
    -ms-flex-pack: end;
        justify-content: flex-end;
    margin-top: 0;
  }
}

#olv-rgpd-change {
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  background-color: #757575;
  position: fixed;
  bottom: 10px;
  left: 10px;
  z-index: 70;
  border-radius: 4px;
  padding: 5px;
  opacity: 0;
}

#olv-rgpd-change .icone {
  font-size: 1.3rem;
  line-height: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.623);
}

#olv-rgpd-change .legend {
  color: white;
  font-size: 0.75rem;
  margin-bottom: 0px !important;
}

.show {
  opacity: 1 !important;
  visibility: visible;
}
html body {
  font-size: 1rem;
  letter-spacing: normal;
}

html h1, html h2, html h3, html h4, html h5, html h6, html p, html a {
  letter-spacing: normal !important;
  text-transform: none;
  font-family: "Lora", Times, serif;
}

html h2 {
  font-size: calc(1.3475rem + 1.17vw);
  line-height: calc(1.405rem + 1.86vw);
  color: #a7a7a7;
  font-weight: 700;
}

@media (min-width: 1200px) {
  html h2 {
    font-size: 2.225rem;
  }
}

@media (min-width: 1200px) {
  html h2 {
    line-height: 2.8rem;
  }
}

html p {
  font-size: 1.1rem;
  font-family: "Outfit", Arial, Helvetica, sans-serif;
  line-height: 1.7rem;
  color: #6e6e6e;
  margin-bottom: 10px !important;
  font-weight: 400;
}

html p strong {
  color: #757575;
}

html a {
  color: #ffb42d;
  text-decoration: underline;
}

html a:hover {
  color: #a7a7a7;
}

html a:active {
  color: #757575;
}

html ul li {
  line-height: 1.35rem;
  color: #6e6e6e;
  font-family: "Lora", Times, serif;
}

hr {
  color: #757575;
  opacity: 1;
}

.primary-color {
  color: #757575;
}

.text-white {
  color: rgba(255, 255, 255, 0.7);
}

.btn {
  padding: 10px 25px 9px 25px;
  text-transform: uppercase;
  line-height: 1rem;
  font-size: 0.9rem;
  font-family: "Lora", Times, serif;
  font-weight: 700 !important;
  background-color: #FFF;
  border-radius: 0px;
  border: 1px solid #a7a7a7;
  color: #757575;
  letter-spacing: .1rem !important;
}

.btn:hover {
  background-color: #a7a7a7;
  border-color: #757575;
  color: #FFF;
}

.facebook {
  fill: #a7a7a7;
}

.linkedin {
  fill: #a7a7a7;
}

.tiktok {
  fill: #a7a7a7;
}

.instagram {
  fill: #a7a7a7;
}

.x-twitter {
  fill: #a7a7a7;
}

.head-photo {
  margin-top: -330px;
  position: relative;
  overflow: hidden;
  height: 980px;
}

.head-photo .photo {
  width: 100%;
}

.head-photo .photo:before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: radial-gradient(circle at 50% 70%, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.85) 100%);
  z-index: 10;
}

.head-photo .photo img {
  height: 980px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 0% 0%;
     object-position: 0% 0%;
}

.head-photo .section-accueil {
  margin-top: -450px;
  position: relative;
  z-index: 10;
}

.head-photo .section-accueil .back-accueil {
  background-color: rgba(0, 0, 0, 0.45);
  padding: 25px;
  min-height: 250px;
}

.head-photo .section-accueil h1 {
  font-weight: 700;
  color: white;
  font-family: "Lora", Times, serif;
  font-size: calc(1.505rem + 3.06vw);
  line-height: calc(1.525rem + 3.3vw);
  margin-bottom: 0px !important;
  text-align: center;
  position: relative;
}

@media (min-width: 1200px) {
  .head-photo .section-accueil h1 {
    font-size: 3.8rem;
  }
}

@media (min-width: 1200px) {
  .head-photo .section-accueil h1 {
    line-height: 4rem;
  }
}

.head-photo .section-accueil h1:after {
  content: "";
  position: absolute;
  display: block;
  width: 180px;
  height: 5px;
  bottom: -25px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #a7a7a7;
}

.head-photo .section-accueil p {
  color: white;
  font-weight: 400;
  font-family: "Outfit", Arial, Helvetica, sans-serif;
  font-size: calc(1.26rem + 0.12vw);
  line-height: calc(1.315rem + 0.78vw);
  padding-top: 45px;
  text-align: center;
}

@media (min-width: 1200px) {
  .head-photo .section-accueil p {
    font-size: 1.35rem;
  }
}

@media (min-width: 1200px) {
  .head-photo .section-accueil p {
    line-height: 1.9rem;
  }
}

.section-separator-bottom {
  background-color: #f2f2f2;
  height: 70px;
  width: 110%;
  position: absolute;
  z-index: 50;
  rotate: 1.5deg;
  bottom: -38px;
  right: -5px;
}

.section-separator-top {
  background-color: #f2f2f2;
  height: 70px;
  width: 110%;
  position: absolute;
  z-index: 50;
  rotate: -1.5deg;
  top: -38px;
  left: -5px;
}

.contenu.space {
  padding: 80px 0 100px;
}

.contenu .content-text h2 {
  color: #000000;
  font-weight: 600;
  position: relative;
  margin-bottom: calc(1.425rem + 2.1vw) !important;
  font-size: calc(1.3475rem + 1.17vw);
  line-height: calc(1.405rem + 1.86vw);
}

@media (min-width: 1200px) {
  .contenu .content-text h2 {
    margin-bottom: 3rem !important;
  }
}

@media (min-width: 1200px) {
  .contenu .content-text h2 {
    font-size: 2.225rem;
  }
}

@media (min-width: 1200px) {
  .contenu .content-text h2 {
    line-height: 2.8rem;
  }
}

.contenu .content-text .line-p {
  position: relative;
}

.contenu .content-text .line-p:after {
  content: "";
  display: block;
  background-color: #a7a7a7;
  position: absolute;
  width: 53px;
  height: 3px;
  top: -20px;
  left: 0px;
  rotate: 0deg;
}

.contenu .content-text .line-p:before {
  content: "";
  display: block;
  background-color: #a7a7a7;
  position: absolute;
  width: 53px;
  height: 3px;
  bottom: -20px;
  left: 0px;
  rotate: 0deg;
}

.contenu .content-photo {
  position: relative;
}

.contenu .content-photo .photo-content {
  text-align: center;
}

.contenu .content-photo .photo-content:before {
  content: '';
  position: absolute;
  top: -10px;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border: 1px solid #757575;
  rotate: -6deg;
  width: 100%;
  max-width: 430px;
}

.contenu .content-photo .photo-content img {
  position: relative;
  z-index: 10;
  background-color: #FFF;
  width: 430px;
  height: 430px;
  -o-object-fit: contain;
     object-fit: contain;
  border: 10px solid #f2f2f2;
}

@media (min-width: 220px) and (max-width: 768px) {
  .contenu .content-photo .photo-content img {
    height: 420px;
  }
}

@media (min-width: 220px) and (max-width: 992px) {
  .contenu .content-photo .photo-content {
    margin-bottom: 50px;
  }
}

.contenu-02.bg-02 {
  background-color: #f2f2f2;
  position: relative;
  overflow: hidden;
}

.contenu-02.space {
  margin: 0px 0 0px 0;
  padding: 110px 0;
}

.contenu-02 .content-text h2 {
  color: #000000;
  font-weight: 600;
  position: relative;
  margin-bottom: calc(1.425rem + 2.1vw) !important;
  font-size: calc(1.3475rem + 1.17vw);
  line-height: calc(1.405rem + 1.86vw);
}

@media (min-width: 1200px) {
  .contenu-02 .content-text h2 {
    margin-bottom: 3rem !important;
  }
}

@media (min-width: 1200px) {
  .contenu-02 .content-text h2 {
    font-size: 2.225rem;
  }
}

@media (min-width: 1200px) {
  .contenu-02 .content-text h2 {
    line-height: 2.8rem;
  }
}

.contenu-02 .content-text .line-p {
  position: relative;
}

.contenu-02 .content-text .line-p:after {
  content: "";
  display: block;
  background-color: #a7a7a7;
  position: absolute;
  width: 53px;
  height: 3px;
  top: -20px;
  left: 0px;
  rotate: 0deg;
}

.contenu-02 .content-text .line-p:before {
  content: "";
  display: block;
  background-color: #a7a7a7;
  position: absolute;
  width: 53px;
  height: 3px;
  bottom: -20px;
  left: 0px;
  rotate: 0deg;
}

.contenu-02 .content-text .line-p p {
  color: #6e6e6e;
}

.contenu-02 .content-photo {
  position: relative;
}

.contenu-02 .content-photo .photo-content {
  text-align: center;
}

.contenu-02 .content-photo .photo-content:before {
  content: '';
  position: absolute;
  top: 20px;
  bottom: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border: 1px solid #757575;
  rotate: 6deg;
  width: 100%;
  max-width: 430px;
}

.contenu-02 .content-photo .photo-content img {
  position: relative;
  background-color: #FFF;
  width: 430px;
  height: 430px;
  -o-object-fit: contain;
     object-fit: contain;
  border: 10px solid #FFF;
}

@media (min-width: 220px) and (max-width: 768px) {
  .contenu-02 .content-photo .photo-content img {
    height: 420px;
  }
}

@media (min-width: 220px) and (max-width: 992px) {
  .contenu-02 .content-photo {
    margin-top: 80px;
  }
}

.contenu-02 .section-separator-bottom {
  background-color: #FFF;
}

.contenu-02 .section-separator-top {
  background-color: #FFF;
}

.contenu-03.space {
  margin: 80px 0 80px 0 !important;
}

.contenu-03 .content-imag {
  position: relative;
}

.contenu-03 .content-imag:before {
  content: '';
  position: absolute;
  top: 40px;
  width: 350px;
  height: 350px;
  left: 50%;
  top: 45%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 1px solid #757575;
  rotate: -6deg;
}

@media (min-width: 220px) and (max-width: 576px) {
  .contenu-03 .content-imag:before {
    width: 0px;
    height: 0px;
  }
}

.contenu-03 .content-imag img {
  position: relative;
  z-index: 30;
  margin-bottom: 20px;
  background-color: #FFF;
  width: 100%;
  height: 300px;
  -o-object-fit: contain;
     object-fit: contain;
  border: 10px solid #f2f2f2;
}

@media (min-width: 220px) and (max-width: 576px) {
  .contenu-03 .content-imag img {
    height: 420px;
  }
}

@media (min-width: 577px) and (max-width: 768px) {
  .contenu-03 .content-imag img {
    height: 320px;
  }
}

.contenu-03 .content-text .content-text-title h2 {
  color: #000000;
  font-weight: 600;
  margin-bottom: calc(1.425rem + 2.1vw) !important;
  font-size: calc(1.3475rem + 1.17vw);
  line-height: calc(1.405rem + 1.86vw);
}

@media (min-width: 1200px) {
  .contenu-03 .content-text .content-text-title h2 {
    margin-bottom: 3rem !important;
  }
}

@media (min-width: 1200px) {
  .contenu-03 .content-text .content-text-title h2 {
    font-size: 2.225rem;
  }
}

@media (min-width: 1200px) {
  .contenu-03 .content-text .content-text-title h2 {
    line-height: 2.8rem;
  }
}

.contenu-03 .content-p {
  position: relative;
}

.contenu-03 .content-p:after {
  content: "";
  display: block;
  background-color: #a7a7a7;
  position: absolute;
  width: 53px;
  height: 3px;
  top: -20px;
  left: 0px;
  rotate: 0deg;
}

.contenu-03 .content-p:before {
  content: "";
  display: block;
  background-color: #a7a7a7;
  position: absolute;
  width: 53px;
  height: 3px;
  bottom: -20px;
  left: 0px;
  rotate: 0deg;
}

.contenu-03 .content-p p {
  color: #6e6e6e;
}

.link-bloc {
  padding: 120px 0;
  background-color: #f1f1f1;
  position: relative;
  overflow: hidden;
}

.link-bloc .col-12 {
  margin-bottom: 25px;
}

.link-bloc .space {
  margin: 40px 0 60px 0 !important;
}

.link-bloc .bloc-link {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: justify;
      justify-content: space-between;
  background-color: rgba(167, 167, 167, 0.1);
  text-align: center;
  border: 10px solid #FFF;
  padding: 35px 25px 50px 25px;
  margin-bottom: 20px;
  min-height: 390px;
  position: relative;
  z-index: 20;
  height: 100%;
  box-shadow: 0 12px 25px -10px rgba(0, 0, 0, 0.3);
}

.link-bloc .bloc-link .bloc-link-title h2 {
  color: #000000;
  line-height: 2rem;
  font-weight: 600;
  margin-bottom: 10px;
  position: relative;
}

.link-bloc .bloc-link .bloc-link-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  bottom: -25px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #a7a7a7;
}

.link-bloc .bloc-link .bloc-link-p p {
  color: #6e6e6e;
}

.link-bloc .bloc-link .bloc-link-btn .btn {
  margin-top: 20px;
}

.link-bloc .section-separator-bottom {
  background-color: #FFF;
}

.link-bloc .section-separator-top {
  background-color: #FFF;
}

.pdf-bloc.space {
  margin: 70px 0 70px 0 !important;
  padding: 50px 0 50px;
}

.pdf-bloc .col-12 {
  margin-bottom: 55px;
}

.pdf-bloc .bloc-pdf {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: justify;
      justify-content: space-between;
  background-color: #FFF;
  border: 1px solid #a7a7a7;
  text-align: center;
  padding: 25px 25px 30px;
  height: 100%;
}

.pdf-bloc .bloc-pdf .bloc-pdf-title {
  margin-top: -60px;
  background-color: #FFF;
  border: 1px solid #a7a7a7;
  padding: 15px 0 10px;
}

.pdf-bloc .bloc-pdf .bloc-pdf-title h2 {
  font-family: "Lora", Times, serif;
  line-height: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #000000;
}

.pdf-bloc .bloc-pdf .bloc-pdf-btn .btn {
  margin-top: 15px;
}

.pdf-bloc .bloc-pdf .bloc-pdf-btn p {
  font-size: 0.75rem;
  color: #a7a7a7;
}

.head-photo-page {
  margin-top: -330px;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: end;
      align-items: end;
  overflow: hidden;
  height: 700px;
  background-color: #2e2a2a;
}

.head-photo-page .photo {
  width: 100%;
}

.head-photo-page .photo:before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: radial-gradient(circle at 50% 5%, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.85) 100%);
  z-index: 10;
}

.head-photo-page .photo img {
  width: 100%;
  height: 720px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 0% 0%;
     object-position: 0% 0%;
  position: relative;
  opacity: .8;
}

.head-photo-page .section-accueil {
  margin-top: 50px;
  min-height: 298px;
  width: 100%;
  position: absolute;
  z-index: 10;
}

.head-photo-page .section-accueil .back-accueil {
  padding: 25px;
  margin-bottom: 150px;
}

.head-photo-page .section-accueil h1 {
  font-weight: 700;
  color: white;
  font-family: "Lora", Times, serif;
  font-size: calc(1.505rem + 3.06vw);
  line-height: calc(1.525rem + 3.3vw);
  margin-bottom: 0px !important;
  text-align: center;
  position: relative;
}

@media (min-width: 1200px) {
  .head-photo-page .section-accueil h1 {
    font-size: 3.8rem;
  }
}

@media (min-width: 1200px) {
  .head-photo-page .section-accueil h1 {
    line-height: 4rem;
  }
}

.head-photo-page .section-accueil h1:after {
  content: "";
  position: absolute;
  display: block;
  width: 180px;
  height: 5px;
  bottom: -25px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #a7a7a7;
}

.intro-page {
  margin-top: -110px;
}

.intro-page .intro {
  background-color: #FFF;
  border: 1px solid #a7a7a7;
  text-align: center;
  padding: 35px 35px 40px 35px;
  position: relative;
  z-index: 60;
  box-shadow: 0 12px 25px -10px rgba(0, 0, 0, 0.3);
}

.intro-page .intro h2 {
  font-weight: 800;
}

.contenu-mentions {
  margin-top: 80px;
}

.contenu-mentions h2 {
  color: #a7a7a7 !important;
  margin-bottom: 50px;
  position: relative;
}

.contenu-mentions h2:before {
  content: "";
  display: block;
  background-color: #a7a7a7;
  position: absolute;
  width: 53px;
  height: 3px;
  bottom: -20px;
  left: 0px;
  rotate: 0deg;
}

.contenu-rgpd {
  margin-top: 100px;
}

.contenu-rgpd h3 {
  font-weight: 600;
}

.contenu-rgpd h4 {
  color: #757575;
}

.contact {
  position: relative;
  z-index: 50;
  padding: 30px 0;
  margin-top: -140px;
}

.contact .bg-form-contact {
  background-color: #FFF;
  border: 1px solid #a7a7a7;
  padding: 55px;
}

.contact h2 {
  font-weight: 800;
  color: #000000;
  font-family: "Lora", Times, serif;
  margin-bottom: 1rem !important;
  font-size: calc(1.405rem + 1.86vw);
  line-height: calc(1.425rem + 2.1vw);
}

@media (min-width: 1200px) {
  .contact h2 {
    font-size: 2.8rem;
  }
}

@media (min-width: 1200px) {
  .contact h2 {
    line-height: 3rem;
  }
}

.contact p {
  font-size: 1rem !important;
}

.contact p strong {
  color: #757575;
}

.contact .form p {
  font-size: 0.85rem;
  padding-bottom: 25px;
}

.contact .form p strong {
  color: #757575 !important;
}

.contact .form label {
  font-family: "Lora", Times, serif;
  color: #757575;
  font-weight: 700;
}

.contact .form .form-control {
  display: block;
  width: 100%;
  padding: .8rem .75rem;
  font-size: 1rem;
  font-weight: 500;
  font-family: "Lora", Times, serif;
  line-height: 1.5;
  color: #212529;
  background-color: rgba(0, 0, 0, 0.1);
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 0rem;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.contact .form .form-control:focus {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15) inset;
  border-color: #CCC;
}

.contact .form .form-check-input {
  border: 1px solid #6e6e6e !important;
}

.contact .form.merci {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  height: 400px;
}

.contact .form.merci h2 {
  font-weight: 800;
  color: #757575;
  font-family: "Lora", Times, serif;
  font-size: 3rem;
  line-height: 2.4rem;
  text-align: center;
}

.contact .form.merci p {
  text-align: center;
}

.contact .coordonnees {
  background-color: rgba(255, 255, 255, 0);
  border: 1px solid #e7e7e7;
  min-height: 250px;
  padding: 20px;
}

.contact .coordonnees h3 {
  color: #757575;
  font-weight: 700;
}

.contact .coordonnees p strong {
  color: #757575 !important;
}

.call-contact {
  margin-top: 50px;
  background-color: #f2f2f2;
  background-image: url("../images/fr-fr/bg-contact.png");
  background-repeat: no-repeat;
  background-position: top center;
}

.call-contact .bloc-contact {
  background-color: rgba(255, 255, 255, 0.9);
  background-image: url('data:image/svg+xml,<svg version="1.1" baseProfile="full" width="300" height="200" xmlns="http://www.w3.org/2000/svg"><circle cx="150" cy="100" r="90" fill="rgba(255,255,255,0.5)" /></svg>');
  background-repeat: no-repeat;
  background-position: top -90px left -130px;
  box-shadow: 0 12px 50px -10px rgba(0, 0, 0, 0.4) !important;
  border: 1px solid white;
  padding: 45px 25px;
  margin: 50px 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
}

.call-contact .bloc-contact h2 {
  color: #757575;
  font-weight: 700;
  font-size: calc(1.495rem + 2.94vw);
  line-height: calc(1.515rem + 3.18vw);
  text-align: center;
}

@media (min-width: 1200px) {
  .call-contact .bloc-contact h2 {
    font-size: 3.7rem;
  }
}

@media (min-width: 1200px) {
  .call-contact .bloc-contact h2 {
    line-height: 3.9rem;
  }
}

.call-contact .bloc-contact p {
  font-size: 1.35rem;
  line-height: 1.6rem;
  font-weight: 700;
  color: #a7a7a7;
  text-align: center;
}

.call-contact .bloc-contact .btn {
  background-color: #FFF;
  border-radius: 0px;
  color: #757575;
  margin-top: 30px;
  font-family: "Lora", Times, serif;
  font-weight: 700 !important;
}

.call-contact .bloc-contact .btn:hover {
  background-color: #000000;
  border-color: #757575;
  color: #a7a7a7;
}

footer {
  position: relative;
  padding-bottom: 0px;
  overflow: hidden;
}

footer .footer {
  background: #000000;
  border-top: none;
  height: auto;
}

footer .footer .logo {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  padding: 80px 0 15px;
}

footer .footer .logo img {
  max-width: 270px;
}

footer .footer .foot-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  padding: 0 0 40px 0;
}

footer .footer .foot-content a {
  color: #a7a7a7;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 5px;
}

footer .footer .foot-content p {
  text-align: center;
  color: white;
}

footer .rs-link {
  background: #141414;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  padding: 50px 0;
}

footer .rs-link p {
  text-align: center;
  font-weight: 700;
  color: #FFF;
  font-size: 1.5rem;
  position: relative;
  margin-bottom: 20px !important;
}

footer .footer-copyright {
  background: #000000;
  padding: 15px;
}

footer .footer-copyright a {
  font-size: 0.8rem;
  text-decoration: none;
  text-transform: uppercase;
  color: rgba(167, 167, 167, 0.8);
  font-family: "Outfit", Arial, Helvetica, sans-serif;
}

@media (min-width: 220px) and (max-width: 390px) {
  footer .footer-copyright a {
    display: inline-block;
    padding-bottom: 10px;
  }
}

footer .footer-copyright p {
  font-size: 0.8rem;
  color: rgba(167, 167, 167, 0.8);
}

/*# sourceMappingURL=template-01.css.map */
