
@font-face {
    font-family: 'Poppins';
    font-style: italic;
    font-weight: normal;
    src: url('../themes/renaud/assets/fonts/poppins/poppins-v19-latin-italic.eot');
    src: local(''),
            url('../themes/renaud/assets/fonts/poppins/poppins-v19-latin-italic.eot?#iefix') format('embedded-opentype'),
            url('../themes/renaud/assets/fonts/poppins/poppins-v19-latin-italic.woff2') format('woff2'),
            url('../themes/renaud/assets/fonts/poppins/poppins-v19-latin-italic.woff') format('woff'),
            url('../themes/renaud/assets/fonts/poppins/poppins-v19-latin-italic.ttf') format('truetype'),
            url('../themes/renaud/assets/fonts/poppins/poppins-v19-latin-italic.svg#Poppins') format('svg');
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: normal;
    src: url('../themes/renaud/assets/fonts/poppins/poppins-v19-latin-regular.eot');
    src: local(''),
            url('../themes/renaud/assets/fonts/poppins/poppins-v19-latin-regular.eot?#iefix') format('embedded-opentype'),
            url('../themes/renaud/assets/fonts/poppins/poppins-v19-latin-regular.woff2') format('woff2'),
            url('../themes/renaud/assets/fonts/poppins/poppins-v19-latin-regular.woff') format('woff'),
            url('../themes/renaud/assets/fonts/poppins/poppins-v19-latin-regular.ttf') format('truetype'),
            url('../themes/renaud/assets/fonts/poppins/poppins-v19-latin-regular.svg#Poppins') format('svg');
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: bold;
    src: url('../themes/renaud/assets/fonts/poppins/poppins-v19-latin-700.eot');
    src: local(''),
            url('../themes/renaud/assets/fonts/poppins/poppins-v19-latin-700.eot?#iefix') format('embedded-opentype'),
            url('../themes/renaud/assets/fonts/poppins/poppins-v19-latin-700.woff2') format('woff2'),
            url('../themes/renaud/assets/fonts/poppins/poppins-v19-latin-700.woff') format('woff'),
            url('../themes/renaud/assets/fonts/poppins/poppins-v19-latin-700.ttf') format('truetype'),
            url('../themes/renaud/assets/fonts/poppins/poppins-v19-latin-700.svg#Poppins') format('svg');
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    src: url('../themes/renaud/assets/fonts/poppins/poppins-v19-latin-500.eot');
    src: local(''),
         url('../themes/renaud/assets/fonts/poppins/poppins-v19-latin-500.eot?#iefix') format('embedded-opentype'),
         url('../themes/renaud/assets/fonts/poppins/poppins-v19-latin-500.woff2') format('woff2'),
         url('../themes/renaud/assets/fonts/poppins/poppins-v19-latin-500.woff') format('woff'),
         url('../themes/renaud/assets/fonts/poppins/poppins-v19-latin-500.ttf') format('truetype'),
         url('../themes/renaud/assets/fonts/poppins/poppins-v19-latin-500.svg#Poppins') format('svg');
}

@font-face {
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 500;
    src: url('../themes/renaud/assets/fonts/poppins/poppins-v19-latin-500italic.eot');
    src: local(''),
         url('../themes/renaud/assets/fonts/poppins/poppins-v19-latin-500italic.eot?#iefix') format('embedded-opentype'),
         url('../themes/renaud/assets/fonts/poppins/poppins-v19-latin-500italic.woff2') format('woff2'),
         url('../themes/renaud/assets/fonts/poppins/poppins-v19-latin-500italic.woff') format('woff'),
         url('../themes/renaud/assets/fonts/poppins/poppins-v19-latin-500italic.ttf') format('truetype'),
         url('../themes/renaud/assets/fonts/poppins/poppins-v19-latin-500italic.svg#Poppins') format('svg');
}

@font-face {
    font-family: 'Poppins';
    font-style: italic;
    font-weight: bold;
    src: url('../themes/renaud/assets/fonts/poppins/poppins-v19-latin-700italic.eot');
    src: local(''),
            url('../themes/renaud/assets/fonts/poppins/poppins-v19-latin-700italic.eot?#iefix') format('embedded-opentype'),
            url('../themes/renaud/assets/fonts/poppins/poppins-v19-latin-700italic.woff2') format('woff2'),
            url('../themes/renaud/assets/fonts/poppins/poppins-v19-latin-700italic.woff') format('woff'),
            url('../themes/renaud/assets/fonts/poppins/poppins-v19-latin-700italic.ttf') format('truetype'),
            url('../themes/renaud/assets/fonts/poppins/poppins-v19-latin-700italic.svg#Poppins') format('svg');
}

/* Frontend editor */
.ce-element {
  outline: 2px dashed rgba(243, 156, 18, 0.5);
}
.ce-element--focused, .ce-element:focus {
  outline: 2px dashed #f39c12;
}
/* tables default (cookies in /donnees-personnelles) */
table {
  width: calc(100% + 10px);
  margin-bottom: 2em;
  border-collapse: separate;
  border-spacing: 5px;
  margin-left: -5px;
}
th {
  border-bottom: 1px solid #666;
}
td, th {
  padding: 2px 0.5em;
}
tr:not(:last-child) td {
  border-bottom: 1px dotted #ccc;
}

/**
 * ----------------------------------------
 * animation shake-lr
 * ----------------------------------------
 */
@-webkit-keyframes shake {
  0%,
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
  }
  10% {
    -webkit-transform: rotate(8deg);
            transform: rotate(8deg);
  }
  20%,
  40%,
  60% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  30%,
  50%,
  70% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  80% {
    -webkit-transform: rotate(-8deg);
            transform: rotate(-8deg);
  }
  90% {
    -webkit-transform: rotate(8deg);
            transform: rotate(8deg);
  }
}
@keyframes shake {
  0%,
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
  }
  10% {
    -webkit-transform: rotate(8deg);
            transform: rotate(8deg);
  }
  20%,
  40%,
  60% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  30%,
  50%,
  70% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  80% {
    -webkit-transform: rotate(-8deg);
            transform: rotate(-8deg);
  }
  90% {
    -webkit-transform: rotate(8deg);
            transform: rotate(8deg);
  }
}

/**
 * ----------------------------------------
 * animation scroll-down
 * ----------------------------------------
 */
@-webkit-keyframes scroll-down {
  0%,
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  10%,
  30%,
  50%,
  70% {
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
  }
  20%,
  40%,
  60% {
    -webkit-transform: translateY(8px);
            transform: translateY(8px);
  }
  80% {
    -webkit-transform: translateY(6.4px);
            transform: translateY(6.4px);
  }
  90% {
    -webkit-transform: translateY(-6.4px);
            transform: translateY(-6.4px);
  }
}
@keyframes scroll-down {
  0%,
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  10%,
  30%,
  50%,
  70% {
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
  }
  20%,
  40%,
  60% {
    -webkit-transform: translateY(8px);
            transform: translateY(8px);
  }
  80% {
    -webkit-transform: translateY(6.4px);
            transform: translateY(6.4px);
  }
  90% {
    -webkit-transform: translateY(-6.4px);
            transform: translateY(-6.4px);
  }
}

/**
 * ----------------------------------------
 * animation shadow-drop-2-br
 * ----------------------------------------
 */
@-webkit-keyframes shadow-drop-2-br {
  0% {
    -webkit-transform: translateZ(0) translateX(0) translateY(0);
            transform: translateZ(0) translateX(0) translateY(0);
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
            box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
  100% {
    -webkit-transform: translateZ(50px) translateX(-12px) translateY(-12px);
            transform: translateZ(50px) translateX(-12px) translateY(-12px);
    -webkit-box-shadow: 12px 12px 20px -12px rgba(0, 0, 0, 0.35);
            box-shadow: 12px 12px 20px -12px rgba(0, 0, 0, 0.35);
  }
}
@keyframes shadow-drop-2-br {
  0% {
    -webkit-transform: translateZ(0) translateX(0) translateY(0);
            transform: translateZ(0) translateX(0) translateY(0);
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
            box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
  100% {
    -webkit-transform: translateZ(50px) translateX(-12px) translateY(-12px);
            transform: translateZ(50px) translateX(-12px) translateY(-12px);
    -webkit-box-shadow: 12px 12px 20px -12px rgba(0, 0, 0, 0.35);
            box-shadow: 12px 12px 20px -12px rgba(0, 0, 0, 0.35);
  }
}
/**
 * ----------------------------------------
 * animation shadow-drop-2-bl
 * ----------------------------------------
 */
@-webkit-keyframes shadow-drop-2-bl {
  0% {
    -webkit-transform: translateZ(0) translateX(0) translateY(0);
            transform: translateZ(0) translateX(0) translateY(0);
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
            box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
  100% {
    -webkit-transform: translateZ(50px) translateX(12px) translateY(-12px);
            transform: translateZ(50px) translateX(12px) translateY(-12px);
    -webkit-box-shadow: 12px 12px 20px -12px rgba(0, 0, 0, 0.35);
            box-shadow: 12px 12px 20px -12px rgba(0, 0, 0, 0.35);
  }
}
@keyframes shadow-drop-2-bl {
  0% {
    -webkit-transform: translateZ(0) translateX(0) translateY(0);
            transform: translateZ(0) translateX(0) translateY(0);
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
            box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
  100% {
    -webkit-transform: translateZ(50px) translateX(12px) translateY(-12px);
            transform: translateZ(50px) translateX(12px) translateY(-12px);
    -webkit-box-shadow: 12px 12px 20px -12px rgba(0, 0, 0, 0.35);
            box-shadow: 12px 12px 20px -12px rgba(0, 0, 0, 0.35);
  }
}

/* Responsive font size */
/**
 * General Elements
 **/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  --bs-body-font-family: Poppins, Verdana, sans-serif;
  --bs-body-line-height: 1.5em;
  --bs-body-color: #353733;
  --containerWidth: 100%;
  --asideWidth: calc((100vw - var(--containerWidth)) / 2);
  --headerHeight: 70px;
  --charpente: #A8A982;
  --couverture: #C58C3D;
  --ossature-bois: #875646;
  --menuiserie: var(--bs-body-color);
  --fond-gris: #4B4D4A;
  --fond-beige: #DEDED9;
  --page-theme-color: var(--charpente);
  --swiper-theme-color: var(--page-theme-color);
  --swiper-pagination-color: var(--charpente);
  --swiper-pagination-bullet-inactive-color: var(--bs-body-color);
  --swiper-pagination-bullet-size: .5em;
  color: var(--bs-body-color);
  font-family: var(--bs-body-font-family);
  line-height: var(--bs-body-line-height);
  font-size: 1.25rem;
  min-height: 100vh;
}
:focus, button:focus {
  outline: none;
}
/* Images */
img, svg {
  max-width: 100%;
  height: auto;
}
[data-sizes] {
  display: block;
  width: 100%;
}
[data-bg] {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.cover {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.cover > img {
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  max-width: none;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}
/* Headings */
h1, h2, .h2, h3, .h3 {
  margin-bottom: 1em;
  line-height: 1.2em;
  color: var(--page-theme-color);
  font-weight: bold;
}
h1 {
  color: #fff;
}
h2, .h2 {
  font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
  h2, .h2 {
    font-size: 1.75rem;
  }
}
h3, .h3 {
  margin-bottom: 1em;
  position: relative;
  font-size: calc(1.2625rem + 0.15vw);
}
@media (min-width: 1200px) {
  h3, .h3 {
    font-size: 1.375rem;
  }
}
/* Paragraphs & lists */
p {
  margin-bottom: 1em;
}
p.index {
  font-size: calc(2.0625rem + 9.75vw);
  font-weight: bold;
  opacity: 7%;
  line-height: 1em;
  margin-bottom: -1rem;
}
@media (min-width: 1200px) {
  p.index {
    font-size: 9.375rem;
  }
}
ul, ol {
  padding: 0;
  list-style: none;
  margin-bottom: 1em;
}
li {
  margin-bottom: 0.5em;
  padding-left: 0;
  display: flex;
  align-items: baseline;
}
li:before {
  content: "-";
  padding-right: 0.5em;
  font-weight: bold;
  color: var(--page-theme-color);
}
/* Link */
a, a:before {
  transition: all 0.4s ease-out;
}
a {
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
}
a:hover {
  color: inherit;
}
/* common classes */
.casper {
  display: none;
}
.up {
  text-transform: uppercase;
}
.cta {
  margin-top: 5vmin;
}
.cta > a {
  position: relative;
  overflow: hidden;
  display: inline-block;
  border-radius: 0;
  border: 2px solid var(--page-theme-color);
  color: var(--page-theme-color);
  font-weight: bold;
  padding: 0.4em 1.3em;
  font-size: 1rem;
}
.cta > a:before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  right: 100%;
  top: 0;
  background-color: var(--page-theme-color);
}
.cta > a:hover {
  color: #fff;
}
.cta > a:hover:before {
  right: 0;
}
.text {
  padding: 10vmin 0;
}
.text.centered-block {
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.p5 {
  padding-top: 5vmin;
  padding-bottom: 5vmin;
}
.pt5 {
  padding-top: 5vmin;
}
.pb5 {
  padding-bottom: 5vmin;
}
.p10 {
  padding-top: 10vmin;
  padding-bottom: 10vmin;
}
.pt10 {
  padding-top: 10vmin;
}
.pb10 {
  padding-bottom: 10vmin;
}
.p20 {
  padding-top: 20vmin;
  padding-bottom: 20vmin;
}
.pt20 {
  padding-top: 20vmin;
}
.pb20 {
  padding-bottom: 20vmin;
}
.m10 {
  margin-top: 10vmin;
  margin-bottom: 10vmin;
}
.mt10 {
  margin-top: 10vmin;
}
.mb10 {
  margin-bottom: 10vmin;
}
.m20 {
  margin-top: 20vmin;
  margin-bottom: 20vmin;
}
.mt20 {
  margin-top: 20vmin;
}
.mb20 {
  margin-bottom: 20vmin;
}
.anchor-wrapper {
  position: absolute;
  left: 25%;
  top: calc(100% + 5vmin);
  transform: translate(-50%, 0);
}
.ico {
  display: inline-block;
  width: 20px;
  height: 20px;
  text-indent: 120%;
  overflow: hidden;
  white-space: nowrap;
  transition: all 0.4s ease-out;
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: 100% auto;
}
.ico.home {
  background-image: url("../themes/renaud/assets/img/ico-accueil.svg");
}
.ico.contact {
  background-image: url(../themes/renaud/assets/img/ico-contact.svg);
}
.ico.close {
  background-image: url(../themes/renaud/assets/img/ico-croix.svg);
}
.ico.filtres {
  background-image: url(../themes/renaud/assets/img/ico-filtres.svg);
}
.ico.reals {
  background-image: url(../themes/renaud/assets/img/ico-reals.svg);
}
.ico.fb {
  background-image: url(../themes/renaud/assets/img/ico-fb.svg);
}
.ico.fb:hover {
  animation: shake 0.7s cubic-bezier(0.455, 0.03, 0.515, 0.955) both;
}
.ico.anchor {
  width: 125px;
  height: 40px;
  background-image: url(../themes/renaud/assets/img/fleche-down.svg);
  animation: scroll-down 7.7s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite both;
}
/**
 * Layout
 **/
#page {
  position: relative;
  max-width: 100vw;
  overflow: hidden;
}
#overlay {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  right: 0;
  background-color: #000;
  backdrop-filter: blur(3px);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  transition: all 0.7s ease-out;
}
#overlay.show-overlay {
  opacity: 0.5;
  pointer-events: inherit;
}
/* Header */
#navbar {
  position: fixed;
  z-index: 3;
  width: 100%;
  height: var(--headerHeight);
  overflow: hidden;
  background-color: #40423f;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
#navbar p {
  margin-bottom: 0;
}
#navbar > .container {
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: space-between;
}
#site-name {
  height: 65%;
  margin-right: 80px;
}
#site-name a {
  height: 100%;
  position: relative;
  display: block;
}
a.home:before {
  content: "";
  position: absolute;
  width: 75%;
  height: 100%;
  top: 0;
  right: 0;
  background-color: #40423f;
  opacity: 0;
}
a.home:hover:before {
  opacity: 0.3;
}
#site-name img {
  height: 100%;
}
#menu-burger {
  display: none;
}
#header {
  position: relative;
  color: #fff;
}
#header:before {
  content: "";
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--page-theme-color);
}
#header > div {
  position: relative;
  min-height: 25vw;
}
#header > div:before {
  content: "";
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 80%;
  bottom: -7%;
  left: calc(var(--containerWidth) * -0.65);
  z-index: 0;
  background: url(../themes/renaud/assets/img/logo-filigrane.svg) no-repeat 50% 100%;
  background-size: auto 100%;
}
#header > div > * {
  z-index: 1;
}
#header .sup-title {
  font-weight: bold;
  font-size: calc(var(--containerWidth) * 0.11);
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 100%;
  transform: translateX(-100%);
  text-transform: uppercase;
  line-height: 0.7em;
  margin: 0;
  color: #000;
  opacity: 0.07;
  white-space: nowrap;
}
#header .content-flex-inline {
  display: flex;
  justify-content: space-between;
}
#header .col-texte {
  width: 50%;
  /*margin: 5rem 0 10rem;*/
}
#subnav {
  width: 531px;
  min-width: 531px;
  margin-left: 5vmin;
}
#subnav ul {
  display: flex;
  align-items: center;
  height: 100%;
  margin-bottom: 0;
}
#subnav li {
  margin-bottom: 0;
  height: 100%;
  width: 20%;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  flex-direction: column;
  justify-content: flex-end;
}
#subnav li.active, #subnav li:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}
#subnav li.inactive {
  opacity: 0 !important;
  pointer-events: none;
}
#subnav li:before {
  content: "";
}
#subnav li span {
  display: none;
}
#subnav li a {
  display: block;
  width: calc(100% + 2px);
  height: 60%;
  min-height: 330px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}
#subnav li.entreprise a {
  background-image: url(../themes/renaud/assets/img/menu-entreprise.jpg);
  transform: translateY(8.8vh);
}
#subnav li.charpente a {
  background-image: url(../themes/renaud/assets/img/menu-charpente.jpg);
  transform: translateY(4.8vh);
}
#subnav li.couverture a {
  background-image: url(../themes/renaud/assets/img/menu-couverture.jpg);
  transform: translateY(11.2vh);
}
#subnav li.ossature a {
  background-image: url(../themes/renaud/assets/img/menu-ossature-bois.jpg);
  transform: translateY(8vh);
}
#subnav li.menuiserie a {
  background-image: url(../themes/renaud/assets/img/menu-menuiserie.jpg);
  transform: translateY(1.6vh);
}
/* Main */
#main {
  padding-top: var(--headerHeight);
}
section {
  position: relative;
}
section > div {
  z-index: 1;
  position: relative;
}
/* Contact */
#contact {
  position: fixed;
  width: 100vw;
  bottom: 0;
  left: 0;
  max-height: 80vh;
  z-index: 3;
  transition: transform 0.7s ease-out;
  transform: translateY(100vh);
}
#contact.open {
  transform: translateY(0);
}
#contact .toggler {
  position: absolute;
  top: 0;
  right: calc(1.75rem + 6vw);
  width: calc(1.75rem + 6vw);
  height: calc(1.75rem + 6vw);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  z-index: 1;
  transform: translateY(-50%);
  cursor: pointer;
}
@media (min-width: 1200px) {
  #contact .toggler {
    right: 6.25rem;
  }
}
@media (min-width: 1200px) {
  #contact .toggler {
    width: 6.25rem;
  }
}
@media (min-width: 1200px) {
  #contact .toggler {
    height: 6.25rem;
  }
}
#contact .toggler span {
  width: 17px;
  height: 17px;
}
#contact .contact-wrapper {
  background-color: var(--bs-body-color);
  color: #fff;
}
#contact p {
  font-size: calc(1.45rem + 2.4vw);
  line-height: 1.2em;
}
@media (min-width: 1200px) {
  #contact p {
    font-size: 3.25rem;
  }
}
#contact p.dt {
  font-size: 1.25rem;
  color: var(--charpente);
}
#contact a:hover {
  opacity: 0.7;
  transform: translateX(5px);
}
/* Footer */
#footer {
  background-color: var(--bs-body-color);
  padding: 5vmin 0;
  color: #fff;
  font-size: 14px;
  line-height: 1.5em;
  overflow: hidden;
}
#footer .inline {
  display: flex;
  justify-content: space-between;
  margin-left: -5vmin;
  margin-right: -5vmin;
}
#footer .inline > * {
  width: 25%;
  padding: 0 5vmin;
}
#footer .inline > .cols-wrapper {
  min-width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#footer .home img {
  width: 215px;
  max-width: none;
}
#footer .home:before {
  background-color: #353733;
}
#footer .map {
  min-width: 280px;
  text-align: center;
}
#footer .cols-coords {
  display: flex;
}
#footer .cols-coords > div {
  width: 50%;
}
#footer .legals {
  columns: 2;
}
#footer .legals li {
  margin-bottom: 0;
  display: block;
}
#footer .legals li:before {
  content: none;
}
#footer .legals a {
  display: block;
  opacity: 0.4;
}
#footer .legals a:hover {
  opacity: 0.6;
}
/**
 * General components
 **/
.text-center {
  text-align: center;
}
.outside-img {
  max-height: calc(100vh - var(--headerHeight));
  height: 100vh;
  align-items: center;
}
.outside-img > div:last-child {
  height: 100%;
}
.outside-img .text {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
  text-align: center;
  max-width: 520px;
  background-color: #fff;
  padding: 0;
}
.outside-img .text:before {
  content: "";
  width: 55px;
  height: 55px;
  transform: translate(-50%, -25%) rotate(45deg);
  position: absolute;
  top: 0;
  left: 50%;
  background-color: #fff;
  border: 1px solid var(--charpente);
  z-index: 0;
}
.outside-img .text:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 100vh;
  transform: translateY(-50%);
  border-right: 1px solid var(--charpente);
  z-index: -1;
}
.outside-img p.date {
  font-size: 16px;
  position: relative;
  display: inline-block;
  z-index: 1;
  margin-bottom: 3em;
}
.outside-img .img {
  position: relative;
  width: 50vw;
  height: 100%;
  overflow: hidden;
}
.outside-img .img img {
  position: absolute;
  min-width: 100%;
  width: auto;
  min-height: 100%;
  height: auto;
  object-fit: cover;
}
.outside-box {
  margin-bottom: 10vmin;
}
.outside-box .image {
  padding-bottom: 10vmin;
}
.outside-box .text {
  position: relative;
  margin-top: 10vmin;
  padding-left: 10vmin;
  padding-right: 10vmin;
  min-height: calc(100% - 10vmin);
}
.outside-box .text:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 100vw;
  height: 100%;
  background: var(--fond-beige);
  z-index: -1;
}
.outside-box .col-image {
  z-index: 1;
}
.outside-accordion {
  padding-bottom: 10vmin;
}
.outside-accordion .row {
  justify-content: flex-end;
}
.outside-accordion .row > li:before {
  content: none;
}
.outside-accordion h3 {
  padding-bottom: 0;
  margin-bottom: 0;
  color: #fff;
}
.outside-accordion a {
  background: var(--fond-gris);
  position: relative;
  min-height: 120px;
}
.outside-accordion .title {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  opacity: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.5s ease 0s;
  padding: 1em 5vmin;
}
.outside-accordion .title h3 {
  margin-right: 15px;
}
.outside-accordion .title svg {
  min-width: 40px;
}
.outside-accordion .description {
  max-width: 80%;
  color: #fff;
  white-space: normal;
  margin-bottom: 0;
  opacity: 0;
  transition: all 0.5s ease 0s;
  padding: 5vmin;
}
.outside-accordion .open .title {
  opacity: 0;
}
.outside-accordion .open .description {
  opacity: 1;
}
.outside-lines .swiper-slide {
  height: auto;
}
.outside-lines .swiper-button-prev, .outside-lines .swiper-button-next {
  top: inherit;
  bottom: 0;
  width: 20px;
  height: 5vmin;
  min-height: 33px;
  background-color: var(--page-theme-color);
  mask: url(../themes/renaud/assets/img/slide-prev.svg) no-repeat 50% 50%;
  mask-size: contain;
  -webkit-mask: url(../themes/renaud/assets/img/slide-prev.svg) no-repeat 50% 50%;
  -webkit-mask-size: contain;
}
.outside-lines .swiper-button-prev:after, .outside-lines .swiper-button-next:after {
  content: none;
}
.outside-lines .swiper-button-prev {
  left: 0;
}
.outside-lines .swiper-button-next {
  left: 15%;
  transform: rotate(180deg);
}
.outside-lines .item {
  position: relative;
  height: 100%;
}
.outside-lines .col-image {
  position: relative;
}
.outside-lines .col-image:before, .outside-lines .col-image:after {
  content: "";
  position: absolute;
  bottom: 14vmin;
  height: 1.8vmin;
  min-height: 10px;
  background-color: #DEDED9;
  width: 160%;
  opacity: 75%;
  left: 40%;
  z-index: 2;
  pointer-events: none;
}
.outside-lines .col-image:after {
  bottom: 8vmin;
  left: 70%;
}
.outside-lines .img {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.outside-lines .swiper .item .text {
  padding-top: 0;
}
.outside-lines .swiper .col-image:before, .outside-lines .swiper .col-image:after {
  content: none;
}
.outside-lines .swiper-container:before, .outside-lines .swiper-container:after {
  content: "";
  position: absolute;
  bottom: 14vmin;
  height: 1.8vmin;
  min-height: 10px;
  background-color: #DEDED9;
  width: 60%;
  opacity: 75%;
  left: 70%;
  z-index: 2;
  pointer-events: none;
}
.outside-lines .swiper-container:after {
  bottom: 8vmin;
  left: 83%;
}
.outside-lines.vertical .item .col-texte {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.outside-lines.vertical .col-image:before, .outside-lines.vertical .col-image:after {
  bottom: -15vmin;
  height: 100%;
  width: 1.8vmin;
  min-width: 10px;
  left: calc(100% - var(--bs-gutter-x) * 0.5 - .9vmin);
  transform: translateX(3.5vmin);
}
.outside-lines.vertical .col-image:after {
  height: calc(100% - 15vmin);
  transform: translateX(-3.5vmin);
}
.triptique {
  margin-bottom: 20vmin;
}
.triptique .img-triptique {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  max-width: 420px;
  float: right;
}
.triptique .triptique1 {
  min-width: 2vmin;
  background-color: var(--page-theme-color);
  height: auto;
  transform: translateY(5vmin);
}
.triptique .triptique2 {
  width: 35%;
  transform: translateY(16vmin);
  position: relative;
  height: calc(100% + 10vmin);
}
.triptique .triptique3 {
  width: 35%;
  transform: translateY(-10vmin);
  position: relative;
  height: calc(100% + 10vmin);
}
.triptique .cover {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.reals > div {
  transition: all 0.4s ease-out;
  margin-top: 0;
  margin-bottom: var(--bs-gutter-y);
}
.reals > div.even {
  transform: translateY(5vmin);
}
.real.teaser {
  max-width: 320px;
  margin: auto;
}
.real.teaser figcaption {
  padding: 1em 0;
}
.real.teaser figcaption strong {
  display: block;
}
.real.teaser figcaption span {
  white-space: initial;
}
/**
 * Pages
 **/
#accueil #header {
  height: 80vh;
}
#accueil #header:before {
  background-color: var(--fond-gris);
}
#accueil #header .col-texte {
  margin: 0;
}
#accueil #subnav li {
  display: inline-flex;
}
#accueil #subnav li.inactive {
  opacity: 1 !important;
  pointer-events: inherit;
}
#accueil #atouts {
  background-size: contain;
  background-position: -15vh 22vh;
}
#accueil #atouts .rge {
  background: var(--fond-gris);
}
#accueil #atouts .equipes {
  background: var(--ossature-bois);
}
#accueil #atouts .conseils {
  background: var(--couverture);
}
#accueil #atouts .formations {
  background: var(--charpente);
}
#entreprise {
  --page-theme-color: var(--bs-body-color);
}
#entreprise #header, #entreprise #header h1 {
  color: var(--bs-body-color);
}
#entreprise #header:before {
  background-color: #f1f1f1;
}
#entreprise #subnav li.active {
  border-color: rgba(100, 100, 100, 0.3);
}
#entreprise #historique {
  overflow: hidden;
}
#entreprise #historique h3 {
  font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
  #entreprise #historique h3 {
    font-size: 1.75rem;
  }
}
#entreprise .events {
  position: relative;
}
#entreprise .events.sticky .event .img {
  position: fixed;
  top: var(--headerHeight);
  max-height: calc(100vh - var(--headerHeight));
  height: 100vh;
}
#entreprise .event .img {
  opacity: 0;
  transition: opacity 0.8s ease-out;
}
#entreprise .event.active .img {
  opacity: 1;
}
#entreprise #valeurs .minutie {
  background: var(--charpente);
}
#entreprise #valeurs .proximite {
  background: var(--fond-gris);
}
#charpente {
  --page-theme-color: var(--charpente);
}
#couverture-zinguerie {
  --page-theme-color: var(--couverture);
}
#ossature-bois {
  --page-theme-color: var(--ossature-bois);
}
#ossature-bois h3 {
  margin-top: 10vmin;
}
#ossature-bois p.index {
  float: left;
  margin-left: -1em;
  margin-top: 5vmin;
  width: 1em;
  text-align: center;
}
#ossature-bois li em {
  font-style: normal;
  opacity: 0.5;
}
#menuiserie {
  --page-theme-color: var(--menuiserie);
}
#realisations {
  --page-theme-color: var(--fond-gris);
}
#realisations h1 {
  color: var(--charpente);
}
#realisations #go-filtres {
  display: block;
  position: fixed;
  width: 100px;
  height: 100px;
  bottom: 0;
  left: 0;
  background-color: var(--charpente);
  border-right: 0;
  z-index: 1;
  color: #fff;
}
#realisations #go-filtres .ico {
  color: inherit;
  position: relative;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  height: 100%;
  width: 100%;
  text-align: center;
  padding: 0;
  white-space: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  background-size: 30px 25px;
  background-position: 50% 20%;
  text-indent: 0;
  margin-top: 20%;
}
#realisations #go-filtres:hover {
  -webkit-animation: shadow-drop-2-bl 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: shadow-drop-2-bl 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
#realisations #filtres {
  position: fixed;
  top: var(--headerHeight);
  left: 0;
  width: 800px;
  max-width: 80vw;
  background-color: var(--fond-gris);
  color: #fff;
  height: calc(100vh - var(--headerHeight));
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.7s ease-out;
  transform: translateX(-110%);
}
#realisations #filtres.open {
  transform: translateX(0);
}
#realisations .cat {
  font-size: calc(1.2875rem + 0.45vw);
  font-weight: bold;
  flex-direction: column;
  position: relative;
  cursor: pointer;
}
@media (min-width: 1200px) {
  #realisations .cat {
    font-size: 1.625rem;
  }
}
#realisations .cat:before {
  content: none;
}
#realisations .cat.active {
  color: var(--charpente);
}
#realisations .cat.active:before {
  content: "";
  position: absolute;
  right: 100%;
  top: 0.5em;
  width: 100%;
  height: 0;
  border-bottom: 1px solid var(--charpente);
  margin-right: 1em;
}
#realisations .cat small {
  font-size: 14px;
  font-weight: normal;
  display: block;
}
#realisations #close-filtres {
  width: calc(1.75rem + 6vw);
  height: calc(1.75rem + 6vw);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff url(../themes/renaud/assets/img/ico-croix.svg) no-repeat 50% 50%;
  background-size: 17px auto;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  transform: translate(50%, 50%);
  cursor: pointer;
  border-radius: 0;
  border: 0;
  box-shadow: none !important;
}
@media (min-width: 1200px) {
  #realisations #close-filtres {
    width: 6.25rem;
  }
}
@media (min-width: 1200px) {
  #realisations #close-filtres {
    height: 6.25rem;
  }
}
#realisations #menu li#go-contact {
  background-color: var(--charpente);
}
#realisation {
  --page-theme-color: var(--bs-body-color);
}
#realisation .real.full .col-texte {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: calc(100vh - var(--headerHeight));
}
#realisation .real.full .text {
  display: flex;
  flex-direction: column;
}
#realisation .real.full h1 {
  color: var(--page-theme-color);
  order: 2;
  margin: 0.5em 0 1em;
}
#realisation .real.full .cat {
  font-size: 14px;
  order: 1;
}
#realisation .real.full .desc {
  order: 3;
}
#realisation .real.full .col-image {
  position: relative;
}
#realisation .real.full .swiper {
  width: 50vw;
  height: 100%;
  float: right;
}
#realisation .real.full .swiper-button-prev, #realisation .real.full .swiper-button-next {
  top: inherit;
  bottom: 1rem;
  left: inherit;
  width: 20px;
  height: 5vmin;
  min-height: 33px;
  background-color: var(--page-theme-color);
  mask: url(../themes/renaud/assets/img/slide-prev.svg) no-repeat 50% 50%;
  mask-size: contain;
  -webkit-mask: url(../themes/renaud/assets/img/slide-prev.svg) no-repeat 50% 50%;
  -webkit-mask-size: contain;
}
#realisation .real.full .swiper-button-prev:after, #realisation .real.full .swiper-button-next:after {
  content: none;
}
#realisation .real.full .swiper-button-prev {
  right: 8rem;
}
#realisation .real.full .swiper-button-next {
  right: 3rem;
  transform: rotate(180deg);
}
/* Popup */
.fancybox__slide {
  padding: 0;
}
.fancybox__content {
  padding: 0;
  background-color: transparent;
  margin: 0;
}
.fancybox__content .text {
  max-width: 1100px;
}
.fancybox__content > .carousel__button {
  width: calc(1.75rem + 6vw);
  height: calc(1.75rem + 6vw);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff url(../themes/renaud/assets/img/ico-croix.svg) no-repeat 50% 50%;
  background-size: 17px auto;
  position: absolute;
  top: 0;
  right: calc(1.75rem + 6vw);
  z-index: 1;
  transform: translateY(-50%);
  cursor: pointer;
  border-radius: 0;
  border: 0;
  box-shadow: none !important;
}
@media (min-width: 1200px) {
  .fancybox__content > .carousel__button {
    width: 6.25rem;
  }
}
@media (min-width: 1200px) {
  .fancybox__content > .carousel__button {
    height: 6.25rem;
  }
}
@media (min-width: 1200px) {
  .fancybox__content > .carousel__button {
    right: 6.25rem;
  }
}
.fancybox__content > .carousel__button.is-close {
  top: 10vmin;
  right: calc(16.6666666% + 5vmin);
}
.fancybox__content.has-img > .carousel__button.is-close {
  right: calc(8.33333333% + 5vmin);
}
.fancybox__content > .carousel__button svg {
  display: none;
}
/**
 * Bootstrap overrides
 **/
/* Forms */
.form-control {
  font-size: var(--bs-body-font-size);
  border: 0;
  box-shadow: 0 15px 15px rgba(0, 0, 0, 0.15);
  border-radius: 27px;
}
.form-control:focus {
  color: var(--bs-body-font-size);
  background-color: #fff;
  border: 0 transparent;
  outline: 0;
  box-shadow: 0 15px 15px rgba(0, 0, 0, 0.15);
}
.form-floating > label {
  font-size: var(--bs-body-font-size);
  font-weight: bold;
  opacity: 0.3;
  text-transform: uppercase;
  padding: 1rem 1.25rem;
}
.form-floating > .form-control, .form-floating > .form-select {
  padding-left: 1em;
}
.form-floating > .form-control:focus ~ label, .form-floating > .form-control:not(:placeholder-shown) ~ label, .form-floating > .form-select ~ label {
  opacity: 0.3;
  transform: scale(0.85) translateY(-0.6rem) translateX(0.15rem);
}
.form-control.is-invalid:focus, .was-validated .form-control:invalid:focus {
  box-shadow: 0 15px 15px rgba(220, 53, 69, 0.25);
}
.invalid-fffdback {
  margin-left: 1em;
  display: block;
}
.form-btn {
  color: var(--bs-body-color);
  transition: opacity 0.2s ease-out;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  display: inherit;
}
.form-btn:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 90%;
  border-bottom: 2.5px solid;
  transition: all 0.2s ease-out;
}
.form-btn:hover {
  text-decoration: none;
  color: var(--bs-body-color);
}
.form-btn:hover:after {
  width: 100%;
}
.form-btn button {
  display: inline;
  background-color: transparent;
  border: 0 none;
  padding: 0;
  text-transform: uppercase;
  line-height: 1em;
}
.alert {
  padding: 1rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 2;
  width: 90%;
  max-width: 750px;
  max-height: 100%;
  height: max-content;
}
.alert-heading {
  color: inherit;
}
.alert-link {
  font-weight: 700;
}
.alert-dismissible {
  padding-right: 3rem;
}
.alert-dismissible .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 1.25rem 1rem;
}
.alert-primary {
  color: #084298;
  background-color: #cfe2ff;
  border-color: #b6d4fe;
}
.alert-primary .alert-link {
  color: #06357a;
}
.alert-secondary {
  color: #41464b;
  background-color: #e2e3e5;
  border-color: #d3d6d8;
}
.alert-secondary .alert-link {
  color: #34383c;
}
.alert-success {
  color: #0f5132;
  background-color: #d1e7dd;
  border-color: #badbcc;
}
.alert-success .alert-link {
  color: #0c4128;
}
.alert-info {
  color: #055160;
  background-color: #cff4fc;
  border-color: #b6effb;
}
.alert-info .alert-link {
  color: #04414d;
}
.alert-warning {
  color: #664d03;
  background-color: #fff3cd;
  border-color: #ffecb5;
}
.alert-warning .alert-link {
  color: #523e02;
}
.alert-danger {
  color: #842029;
  background-color: #f8d7da;
  border-color: #f5c2c7;
}
.alert-danger .alert-link {
  color: #6a1a21;
}
.alert-light {
  color: #636464;
  background-color: #fefefe;
  border-color: #fdfdfe;
}
.alert-light .alert-link {
  color: #4f5050;
}
.alert-dark {
  color: #141619;
  background-color: #d3d3d4;
  border-color: #bcbebf;
}
.alert-dark .alert-link {
  color: #101214;
}
.alert .close {
  float: right;
  background-color: transparent;
  border: 0;
  font-size: 2em;
  line-height: 1em;
  opacity: 0.8;
}
.alert .close span {
  line-height: 0.7em;
  display: block;
}
.alert .close:hover {
  opacity: 1;
}

/* CONTAINER */
body {
  --containerWidth: 100%;
}
@media (min-width: 576px) {
  body {
    --containerWidth:  540px;
  }
}
@media (min-width: 768px) {
  body {
    --containerWidth:  720px;
  }
}
@media (min-width: 992px) {
  body {
    --containerWidth:  960px;
  }
}
@media (min-width: 1200px) {
  body {
    --containerWidth: 1140px;
  }
}
@media (min-width: 1400px) {
  body {
    --containerWidth: 1320px;
  }
}
/**
 * XXXL
 **/
/**
 * XXL
 **/
/**
 * XL
 **/
@media (max-width: 1399px) {
  #accueil h1 {
    font-size: 1.8rem;
  }
  .fancybox__content.has-img > .carousel__button.is-close {
    right: 5vmin;
  }
  .fancybox__content.outside-box .text {
    min-height: 0;
  }
}
/**
 * LG
 **/
@media (max-width: 1199px) {
  #footer .container {
    position: relative;
  }
  #footer .inline {
    flex-wrap: wrap;
  }
  #footer .inline > * {
    width: 100%;
  }
  #footer .inline > .home {
    margin-bottom: 5vmin;
  }
  #footer .inline > .map {
    position: absolute;
    max-width: 360px;
    top: 0;
    right: calc(var(--bs-gutter-x) * 0.5);
  }
  #footer .cols-coords {
    display: block;
    margin-bottom: 3vmin;
  }
  .legals {
    columns: 1;
  }
  section.outside-box {
    padding-bottom: 0;
    margin-bottom: 0;
  }
  section.outside-box .text {
    margin-top: -20vmin;
    padding-top: 20vmin;
    height: auto;
  }
  section.outside-box .text:before {
    width: 100%;
  }
  .fancybox__content.has-img > .carousel__button.is-close {
    right: calc(16.666666% + 5vmin);
  }
  .fancybox__content.outside-box .col-image {
    display: none;
  }
}
/*
 * Desktop menu
 */
@media (min-width: 992px) {
  #menu {
    height: 100%;
    position: relative;
    width: 530px;
  }
  #menu ul {
    display: flex;
    width: 100%;
    align-items: center;
    height: 100%;
    margin-bottom: 0;
  }
  #menu li {
    margin-bottom: 0;
    height: 100%;
    width: 20%;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
  }
  #menu li:before {
    content: none;
  }
  #menu a {
    color: inherit;
    position: relative;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    padding: 0 1em;
    display: flex;
    height: 100%;
    width: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  #menu li.main-page a:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 23px;
    height: 5px;
  }
  #menu li.main-page a:hover:before {
    width: 55px;
  }
  #menu li#menu-entreprise a:before {
    background-color: #fff;
  }
  #menu li#menu-charpente a:before {
    background-color: var(--charpente);
  }
  #menu li#menu-couverture a:before {
    background-color: var(--couverture);
  }
  #menu li#menu-ossature a:before {
    background-color: var(--ossature-bois);
  }
  #menu li#menu-menuiserie a:before {
    background-color: var(--menuiserie);
  }
  #menu li#go-home {
    position: absolute;
    right: 100%;
    top: 0;
    height: 100%;
    width: 65px;
  }
  #menu li#go-contact {
    display: block;
    position: fixed;
    width: 100px;
    height: 100px;
    bottom: 0;
    right: 0;
    background-color: var(--page-theme-color);
    border-right: 0;
  }
  #menu li#go-contact .ico {
    padding: 0;
    white-space: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    background-size: 30px 25px;
    background-position: 50% 20%;
    text-indent: 0;
    padding-top: 20%;
  }
  #menu li#go-contact:hover {
    -webkit-animation: shadow-drop-2-br 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    animation: shadow-drop-2-br 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  }
  #menu li#go-realisations {
    display: block;
    position: fixed;
    width: 100px;
    height: 100px;
    bottom: 0;
    left: 0;
    background-color: var(--page-theme-color);
    border-right: 0;
  }
  #menu li#go-realisations .ico {
    padding: 0;
    white-space: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    background-size: 30px 25px;
    background-position: 50% 20%;
    text-indent: 0;
    padding-top: 20%;
  }
  #menu li#go-realisations:hover {
    -webkit-animation: shadow-drop-2-bl 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    animation: shadow-drop-2-bl 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  }
  #header {
    margin-bottom: 20vh;
    height: auto;
    max-height: 80vh;
  }
  #header > div, #header .content-flex-inline {
    height: 100%;
    align-items: initial;
  }
  #header .col-texte {
    height: auto;
    display: flex;
    align-items: center;
  }
  #header .texte {
    padding: 0 5vmin 0 0;
  }
}
/**
 * MD
 **/
@media (max-width: 991px) {
  body {
    font-size: 1rem;
  }
  #navbar {
    background-color: transparent;
    border-bottom: 0px none;
  }
  #site-name {
    z-index: 2;
  }
  #site-name:before {
    content: "";
    position: absolute;
    width: 100%;
    height: var(--headerHeight);
    border-bottom: 1px solid #818280;
    z-index: 0;
    top: -1px;
    left: 0;
    background-color: #40423f;
  }
  #menu-burger {
    display: block;
    position: relative;
    z-index: 2;
    height: 20px;
    width: 25px;
  }
  #menu-burger:before {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 0;
    right: 0;
    border-bottom: 2px solid #fff;
    transition: all 0.2s ease-in-out;
  }
  #menu-burger:after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 0;
    right: 0;
    border-bottom: 2px solid #fff;
    transition: all 0.2s ease-in-out;
  }
  #menu-burger span {
    position: absolute;
    width: 100%;
    height: 0;
    top: 50%;
    right: 0;
    border-bottom: 2px solid #fff;
    margin-top: -1px;
    overflow: hidden;
    transition: all 0.2s ease-in-out;
  }
  #menu-burger.open:before {
    width: 26px;
    transform: rotate(-45deg);
    transform-origin: top right;
  }
  #menu-burger.open:after {
    width: 26px;
    transform: rotate(45deg);
    transform-origin: bottom right;
  }
  #menu-burger.open span {
    right: 50%;
    width: 0;
  }
  #menu-burger.open + #menu {
    transform: translateY(0);
  }
  #menu {
    transform: translateY(-110%);
    position: fixed;
    width: 100%;
    min-height: 100vh;
    left: 0;
    top: 0;
    background-color: #40423F;
    color: #fff;
    padding: var(--headerHeight) calc(var(--bs-gutter-x) * 0.5);
    transition: transform 0.7s ease-out;
    z-index: 1;
  }
  #menu ul {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding: 10vh 0;
    max-width: 345px;
    margin: 0 auto;
    height: 80vh;
    max-height: 600px;
  }
  #menu li {
    margin: 0;
  }
  #menu li:before {
    content: none;
  }
  #menu a {
    color: inherit;
    font-weight: bold;
  }
  #menu li#go-home .ico {
    text-indent: inherit;
    background: none;
    width: auto;
    height: inherit;
  }
  #menu li#go-realisations {
    margin-top: 1em;
  }
  #menu li#go-realisations .ico {
    text-indent: inherit;
    background-color: var(--couverture);
    background-size: 30px 30px;
    background-position: 21% 50%;
    width: 100%;
    height: inherit;
    text-align: center;
    padding: 0.4em 1.3em;
    font-weight: normal;
  }
  #menu li#go-contact .ico {
    text-indent: inherit;
    background-color: var(--charpente);
    background-size: 30px 30px;
    background-position: 15% 50%;
    width: 100%;
    height: inherit;
    text-align: center;
    padding: 0.4em 1.3em;
    font-weight: normal;
  }
  #footer {
    position: relative;
  }
  #footer .container {
    position: static;
  }
  #footer .inline > .map {
    top: 5vmin;
    max-width: 50%;
  }
  #header > div:before {
    content: none;
  }
  #header .content-flex-inline {
    flex-direction: column;
    align-items: center;
  }
  #header .content-flex-inline .col-texte {
    order: 2;
    width: 100%;
    max-width: 530px;
  }
  #header .content-flex-inline #subnav {
    order: 1;
  }
  #header .content-flex-inline #subnav ul {
    height: 55vh;
    margin-bottom: 10vh;
  }
  #header.front {
    height: auto;
    margin-bottom: 120px;
  }
  #header.not-front {
    margin-bottom: 15vmin;
  }
  #header.not-front #subnav {
    display: none;
  }
  #header.not-front .col-texte {
    margin: 0;
  }
  #subnav {
    width: 100%;
    min-width: 0;
    max-width: 530px;
    margin-left: 0;
  }
  .anchor-wrapper {
    left: 25%;
  }
  .cta, .btn {
    text-align: center;
  }
  #accueil #header {
    height: auto;
  }
  #accueil #atouts {
    background: transparent none !important;
  }
}
/**
 * SM
 **/
@media (max-width: 767px) {
  #header.front {
    margin-bottom: 0;
  }
  #header.front .text {
    padding-bottom: 30vmin;
  }
  #header.front + section {
    margin-top: -20vmin;
  }
  .anchor-wrapper {
    display: none;
  }
  .container-m5 {
    padding-right: 5vmin;
    padding-left: 5vmin;
  }
  .outside-box .text {
    margin-top: 0;
    padding: 10vmin 5vmin;
  }
  .outside-box .text:before {
    content: none;
  }
  .outside-box .image {
    padding-right: 5vmin;
  }
  .outside-accordion .title {
    position: static;
    transform: none;
  }
  .outside-accordion .open .title {
    opacity: 1;
  }
  .outside-accordion .title h3 {
    max-width: 70%;
    white-space: initial;
  }
  .outside-accordion .title img {
    display: none;
  }
  .outside-accordion .description {
    opacity: 1;
    position: relative;
    max-width: none;
  }
  .outside-accordion .description:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    padding-top: 5vmin;
    padding-bottom: 5vmin;
  }
  .outside-img {
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    height: auto;
    max-height: none;
  }
  .outside-img .text {
    margin: auto;
    margin-bottom: 15vmin;
  }
  .outside-img .text:before {
    z-index: 1;
    top: -15px;
  }
  .outside-img p.date {
    transform: translateY(-10px);
  }
  .outside-img .img {
    width: 100%;
    height: 60vw;
  }
  .outside-img:last-child .text:after {
    height: 120%;
  }
  #entreprise #historique {
    padding-bottom: 10vmin;
  }
  #entreprise #historique .events .event .img {
    opacity: 1;
  }
  #entreprise #historique .events.sticky .event .img {
    position: relative;
    top: inherit;
    max-height: none;
    height: 100%;
  }
  .triptique .img-triptique {
    height: 80vw;
    width: 70vw;
    float: none;
    margin: auto;
  }
  #realisation .real.full .col-texte {
    min-height: 0;
    height: auto;
    margin-top: 0;
    margin-bottom: 10vmin;
  }
  #realisation .real.full .swiper {
    height: 70vmin;
    width: 100vw;
    float: none;
    transform: translateX(-50%);
    left: 50%;
  }
  #realisation .real.full .swiper-button-prev, #realisation .real.full .swiper-button-next {
    bottom: -4rem;
  }
  .fancybox__content.outside-box {
    margin-right: 5vmin;
  }
  .fancybox__content > .carousel__button.is-close, .fancybox__content.has-img > .carousel__button.is-close {
    top: 0;
    right: 5vmin;
  }
  .fancybox__content.outside-box .text:before {
    content: "";
    width: 100%;
  }
}
/**
 * XS
 **/
@media (max-width: 575px) {
  body, .container, .container-fluid, .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .row {
    --bs-gutter-x: 40px;
  }
  #footer {
    padding-top: 10vmin;
  }
  #footer .inline {
    flex-direction: column;
    align-items: center;
  }
  #footer .inline > * {
    width: auto;
    padding: 0;
  }
  #footer .inline > .home {
    width: 160px;
    height: 75px;
    background: url(../themes/renaud/assets/img/logo-xs.svg) no-repeat 50% 50%;
    background-size: auto 100%;
    margin-bottom: 10vmin;
  }
  #footer .inline > .home:before {
    content: none;
  }
  #footer .inline > .home img {
    display: none;
  }
  #footer .inline > .cols-wrapper {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  #footer .inline > .map {
    display: none;
  }
  #footer .cols-coords > div {
    width: auto;
  }
  #footer .coords {
    display: flex;
    flex-direction: column-reverse;
    margin-bottom: 5vmin;
    margin-top: 5vmin;
  }
  #footer a.tel {
    margin-bottom: 3vmin;
  }
  #footer .cols-legals {
    margin-top: 5vmin;
    padding-top: 320px;
    background: url(../themes/renaud/assets/img/carte-xs.svg) no-repeat 50% 0;
    background-size: 172px auto;
  }
  #footer .cols-legals li {
    margin-bottom: 0.5em;
  }
  #footer .ico.fb {
    width: 30px;
    height: 30px;
  }
  #footer .legals {
    display: flex;
    flex-direction: column;
  }
  .reals > div:nth-child(even) {
    transform: none;
  }
  .outside-lines .swiper-wrapper {
    align-items: flex-end;
  }
  .outside-lines .swiper-button-prev, .outside-lines .swiper-button-next {
    bottom: 50vh;
    margin-bottom: 0.5em;
  }
  .outside-lines .swiper-button-prev {
    left: inherit;
    right: 15%;
  }
  .outside-lines .swiper-button-next {
    left: inherit;
    right: 0;
  }
  .outside-lines .item .img {
    height: 50vh;
  }
  .outside-lines.vertical .item:before {
    height: 50vh;
    left: 97%;
  }
  .outside-lines.vertical .item:after {
    height: calc(50vh - 7vmin);
    left: 90%;
  }
}
