/* Frontend editor */
.ct-widget.ct-ignition {
  position: fixed;
  left: auto;
  top: auto;
  right: 20px;
  bottom: 20px;
  z-index: 10000;
  transition: all 0.5s ease 0s;
}
.ct-widget.ct-ignition .ct-ignition__button {
  position: static;
  margin-top: 10px;
}
.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;
}

@charset "UTF-8";
/* Responsive font size */
/**
 * General Elements
 **/
body {
  --spacing: 10vmin;
  --yellow: #DAA135;
  --lightgrey: #E3E6E1;
  --bggrey: #F6F9F4;
  --orange: #DAA135;
  --green: #2C7B4B;
  --darkgreen: #2A4735;
  --blackgreen: #14241A;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  color: var(--blackgreen);
}
:focus, button:focus {
  outline: none;
}
/* Images */
img, svg, video {
  max-width: 100%;
  height: auto;
}
img {
  border-radius: 5px;
}
img.noborder {
  border-radius: 0;
}
[data-sizes] {
  display: block;
  width: 100%;
}
[data-bg] {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
/* Paragraphs */
p {
  margin-bottom: 1em;
  font-weight: 400;
  line-height: 2em;
}
p:last-child {
  margin-bottom: 0;
}
/* Link */
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: var(--yellow);
  text-decoration: none;
}
/* Lists */
ul, ol {
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}
.text ul {
  font-weight: 400;
}
.text ul > li {
  position: relative;
  padding-left: 30px;
  margin: 1em 0;
}
#pictolist ul > li {
  margin: 0;
}
.text ul > li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 15px;
  height: 3px;
  background: var(--orange);
}
/* Forms */
.invalid-feedback.visible {
  display: block !important;
}
/* Titles */
h1 {
  font-size: calc(1.475rem + 2.7vw);
}
@media (min-width: 1200px) {
  h1 {
    font-size: 3.5rem;
  }
}
h2 {
  font-size: calc(1.3625rem + 1.35vw);
  font-weight: 600;
  margin-bottom: 1em;
  color: var(--darkgreen);
}
@media (min-width: 1200px) {
  h2 {
    font-size: 2.375rem;
  }
}
h3 {
  font-size: calc(1.325rem + 0.9vw);
  font-weight: 700;
}
@media (min-width: 1200px) {
  h3 {
    font-size: 2rem;
  }
}
/**
 * Layout
 **/
/* Global */
#page {
  position: relative;
  width: 100%;
  overflow: hidden;
}
#backtotop {
  position: fixed;
  right: 50px;
  bottom: 50px;
  width: 72px;
  height: 72px;
  background: var(--green);
  border-radius: 5px;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s ease 0s;
}
#backtotop.visible {
  opacity: 1;
  pointer-events: auto;
}
/* Header */
#header {
  position: fixed;
  left: 50px;
  top: 50px;
  z-index: 10;
  padding: 30px;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease 0s, transform 1s cubic-bezier(0.56, -0.48, 0.45, 1.32) 0s;
  max-width: calc(100% - 100px);
}
#header .row {
  --bs-gutter-x:3rem;
}
#header .row > .col-auto {
  display: flex;
  align-items: center;
  border-left: 1px solid var(--lightgrey);
}
#header .row > .col-auto:first-child {
  border-left: none;
}
#header .logo {
  position: relative;
  z-index: 10;
  transition: all 0.3s ease 0.3s;
}
#header .navigation > ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
#header .navigation > ul > li {
  margin: 0 3px;
}
#header .navigation a {
  font-size: 0.813rem;
  text-transform: uppercase;
  padding: 15px 20px;
  transition: background 0.3s ease 0s;
}
#header .navigation a:hover {
  background: var(--green);
  color: #fff;
  border-radius: 5px;
}
#header .phone {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  color: var(--yellow);
}
#header .phone a {
  color: var(--yellow);
}
#header .phone svg {
  margin-right: 15px;
}
#header .end {
  display: none !important;
}
#header.pinned {
  left: 50px;
  transform: translateX(0);
}
#header.unpinned {
  left: 0;
  transform: translateX(-100%);
}
#overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--green);
  z-index: 5;
  transform: translateY(-100%);
  transition: all 0.5s ease 0s;
  padding: 150px 50px 50px 50px;
  max-height: 100vh;
  overflow-y: auto;
}
#overlay .menu > li {
  margin-bottom: 10px;
  padding: 15px;
  background: rgba(42, 71, 53, 0.1);
}
#overlay .menu > li > a {
  font-size: 1rem;
  text-transform: uppercase;
  color: #fff;
  display: block;
  border-radius: 5px;
}
#overlay .submenu {
  margin-top: 15px;
}
#overlay .submenu > li > a {
  position: relative;
  padding: 10px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: block;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  font-weight: 400;
}
#overlay .submenu > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 3px;
  background: var(--orange);
  transition: all 0.5s ease 0s;
}
#overlay .submenu > li > a:hover:before {
  background: #fff;
  left: 5px;
}
#overlay .submenu > li:last-child > a {
  border: none;
}
#overlay .btn {
  font-size: 1rem;
}
#overlay .btn svg {
  fill: #fff;
  stroke: #fff;
}
#overlay .btn a {
  color: #fff !important;
}
body.open #header {
  background: var(--green);
  box-shadow: none;
}
body.open #overlay {
  transform: translateY(0);
}
/* Hamburger */
.hamburger {
  padding: 0;
  height: 24px;
  position: relative;
  z-index: 10;
}
.hamburger-box {
  width: 30px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 30px;
  background: var(--orange);
  border-radius: 5px;
}
.hamburger-inner:after {
  width: 20px;
  right: 0;
}
.hamburger.is-active .hamburger-inner, .hamburger.is-active .hamburger-inner::before, .hamburger.is-active .hamburger-inner::after {
  background: #fff;
}
.hamburger.is-active .hamburger-inner::after {
  width: 30px;
}
/* Footer */
#footer {
  background: url(../themes/albizzia/assets/img/footer-bg.jpg) no-repeat center center / cover;
  color: #fff;
  position: relative;
}
#footer .leaf1 {
  position: absolute;
  left: 0;
  top: 0;
  max-width: 10vw;
  transform: translateY(-50%);
}
#footer .leaf2 {
  position: absolute;
  right: 0;
  top: 0;
  max-width: 15vw;
  transform: translateY(-50%);
}
#footer a:hover {
  color: var(--orange);
}
#footer .address {
  margin: calc(var(--spacing) / 2) 0;
}
#footer .phone {
  font-size: 1.25rem;
  color: var(--orange);
  margin-bottom: 0;
}
#footer .socials a:hover svg {
  fill: var(--orange);
  stroke: var(--orange);
}
#footer ul li {
  margin: 1rem 0;
}
#footer ul a {
  position: relative;
  transition: all 0.5s ease 0s;
  padding-left: 30px;
}
#footer ul a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 15px;
  height: 3px;
  background: var(--orange);
  transition: all 0.5s ease 0s;
}
#footer ul a:hover {
  padding-left: 40px;
}
#footer ul a:hover:before {
  width: 25px;
}
/**
 * Overrides
 **/
/* Buttons */
.btn {
  padding: 1rem 3rem;
  font-size: 0.813rem;
  border-radius: 5px;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s ease 0s;
  border-width: 3px;
}
.btn:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 45px;
  height: 4px;
  background: #fff;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease 0s;
}
.btn:hover:before {
  width: 30px;
  transform: translate(-3px, -50%);
}
.btn-primary {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.15);
}
.btn-primary:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff !important;
}
.btn-secondary {
  background: var(--blackgreen);
  border-color: var(--blackgreen);
  color: #fff;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.15);
}
.btn-secondary:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff !important;
}
.btn-outline-light {
  border-color: #fff;
}
.btn-outline-light:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff !important;
}
/* Dropdown */
.dropdown-toggle[aria-expanded=true] {
  background: var(--green);
  color: #fff;
  border-radius: 5px 5px 0 0 !important;
}
.dropdown-menu {
  --bs-dropdown-border-width:0;
  --bs-dropdown-border-radius:0 5px 5px 5px;
  --bs-dropdown-bg:var(--green);
  transform: translate(0px, 35px) !important;
}
.dropdown-menu a {
  position: relative;
  color: #fff;
  padding-left: 40px !important;
}
.dropdown-menu a:before {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 3px;
  background: var(--orange);
  transition: all 0.5s ease 0s;
}
.dropdown-menu a:after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.5s ease 0s;
}
.dropdown-menu a:hover:before {
  background: #fff;
  left: 15px;
}
.dropdown-menu a:hover:after {
  background: #fff;
}
.dropdown-menu li:last-child a:after {
  content: none;
}
/* Fancybox */
.fancybox__caption {
  text-align: center;
}
/* Forms*/
.form-floating:not(.noborder):before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--darkgreen);
  z-index: 1;
}
.form-floating:not(.noborder):after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--green);
  z-index: 2;
  transition: all 0.8s ease 0s;
}
.form-floating > .form-label {
  padding-left: 0;
  padding-right: 0;
}
.form-floating > .form-label .required {
  color: var(--orange);
}
.form-floating > input.form-control {
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
  border: none;
}
.form-floating > textarea.form-control {
  border: 1px solid var(--darkgreen);
  border-radius: 5px;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.form-floating > .form-select {
  padding-top: 0.625rem;
  border-color: var(--darkgreen);
}
.form-floating > .form-select option {
  font-weight: 500;
}
.form-floating > .form-select:focus {
  box-shadow: none;
}
.form-floating > .form-control:focus {
  box-shadow: none;
}
.form-floating > .form-control:focus ~ label, .form-floating > .form-control:not(:placeholder-shown) ~ label {
  transform: scale(0.85) translateY(-0.5rem) translateX(0);
}
.form-floating:focus-within:after {
  width: 100%;
}
textarea.form-control:focus {
  border-color: var(--green);
}
/* Tabs */
.nav-pills .nav-link {
  border-radius: 5px;
  padding: 1rem 3rem;
  background: #fff;
  color: var(--green);
  border: 1px solid var(--green);
  text-transform: uppercase;
  font-size: 0.688rem;
  margin-right: 30px;
  position: relative;
}
.nav-pills .nav-link:hover {
  background-color: var(--green);
  color: #fff;
}
.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  background-color: var(--green);
  color: #fff;
}
.nav-pills .nav-link.active:before, .nav-pills .show > .nav-link:before {
  content: "";
  position: absolute;
  left: -1px;
  bottom: 5px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 25px 0 0;
  border-color: var(--green) transparent transparent transparent;
  transform: translateY(100%);
}
/* Swiper */
.swiper-navigation {
  position: absolute;
  width: 100%;
  height: 0;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.swiper-navigation button {
  width: 40px;
  height: 40px;
  background: var(--green);
  border: 1px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}
.swiper-navigation button svg {
  stroke: #fff;
}
.swiper-navigation .prev {
  position: absolute;
  left: 0;
  transform: translate(-50%, -50%);
}
.swiper-navigation .next {
  position: absolute;
  right: 0;
  transform: translate(50%, -50%);
}
/**
 * Components
 **/
/* General classes */
.padding {
  padding-top: var(--spacing);
  padding-bottom: var(--spacing);
}
.padding-sm {
  padding-top: calc(var(--spacing) / 2);
  padding-bottom: calc(var(--spacing) / 2);
}
.padding-lg {
  padding-top: calc(var(--spacing) * 1.5);
  padding-bottom: calc(var(--spacing) * 1.5);
}
/* Sliders */
.swiper-pagination {
  z-index: 3;
}
.swiper-pagination-bullet {
  width: 30px;
  height: 30px;
  position: relative;
  opacity: 1;
  background: none;
  user-select: none;
}
.swiper-pagination-bullet:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 13px;
  height: 13px;
  border-radius: 100%;
  background: var(--orange);
  opacity: 0.8;
  transform: translate(-50%, -50%);
}
.swiper-pagination-bullet:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  border: 3px solid #fff;
  opacity: 0;
  transition: all 0.3s ease 0s;
}
.swiper-pagination-bullet-active {
  background: none;
}
.swiper-pagination-bullet-active:before {
  background: #fff;
}
.swiper-pagination-bullet-active:after {
  opacity: 0.8;
}
/* Heading */
#heading {
  height: 60vh;
  min-height: 500px;
  max-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 150px;
  position: relative;
}
#heading:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
  pointer-events: none;
}
#heading .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  object-fit: cover;
}
#heading h1 {
  font-weight: 600;
  color: #fff;
  position: relative;
  z-index: 2;
}
#heading h1:after {
  content: "";
  display: block;
  width: 175px;
  height: 5px;
  background: var(--orange);
  margin: 1rem auto 0 auto;
}
#heading .arrow {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  z-index: 1;
}
#heading .arrow:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 50%;
  z-index: 2;
  background: linear-gradient(rgba(42, 71, 53, 0) 0%, var(--darkgreen) 70%);
}
/* Section 1 */
#section1 {
  background: var(--darkgreen);
  color: #fff;
  padding-top: calc(var(--spacing) + 50px);
  position: relative;
}
#section1 h2 {
  color: inherit;
}
#section1:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 200px;
  background: #fff;
  z-index: 0;
}
#section1 .container-lg {
  position: relative;
  z-index: 2;
}
#section1 .inner {
  padding-right: calc(var(--spacing) * 1.5);
}
#section1 .text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#section1 .text .images {
  margin-top: calc(var(--spacing )/ 2);
}
#section1 .text .images img {
  height: 100%;
  object-fit: cover;
}
#section1 .images {
  position: relative;
  z-index: 1;
}
#section1 .images .row {
  --bs-gutter-y:1.5rem;
}
#section1 .images img {
  height: 100%;
  object-fit: cover;
}
#section1 #pictolist {
  margin-top: var(--spacing);
  padding: calc(30px - 1rem) 30px;
  background: #fff;
  border-radius: 5px;
  border-radius: 5px 0 0 5px;
}
/* CTA */
#cta {
  background: url(../themes/albizzia/assets/img/cta.jpg) no-repeat center center / cover;
  padding: calc(var(--spacing) / 1.5);
  border-radius: 5px;
  position: relative;
  z-index: 2;
  margin: 0 var(--spacing) var(--spacing) var(--spacing);
  transform: translateY(50%);
}
#cta .title {
  font-size: calc(1.325rem + 0.9vw);
  margin-bottom: 0;
  color: #fff;
}
@media (min-width: 1200px) {
  #cta .title {
    font-size: 2rem;
  }
}
#cta .row {
  --bs-gutter-x:5rem;
}
/* Picto list */
#pictolist {
  color: var(--green);
  position: relative;
  z-index: 1;
}
#pictolist .row {
  --bs-gutter-x:3rem;
}
#pictolist a {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  font-size: 0.938rem;
  text-transform: uppercase;
  line-height: 1.2em;
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--lightgrey);
}
#pictolist a > div {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
#pictolist a > div > svg {
  margin-right: 15px;
  min-width: 50px;
  max-width: 50px;
}
#pictolist a > div > svg path {
  transition: all 0.5s ease 0s;
}
#pictolist a > svg {
  margin-left: 15px;
  min-width: 12px;
  max-width: 12px;
  transition: all 0.5s ease 0s;
  position: relative;
  left: 0;
}
#pictolist li:before {
  content: none;
  padding-left: 0;
}
#pictolist li:last-child a {
  border: none;
}
#pictolist a:hover {
  color: var(--green);
}
#pictolist a:hover > div > svg .picto-border {
  fill: var(--yellow);
}
#pictolist a:hover > svg {
  stroke: var(--yellow);
  left: 10px;
}
/**
 * Page Specific
 **/
/* Accueil */
#accueil #slider {
  position: relative;
}
#accueil #slider:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 50%;
  background: linear-gradient(rgba(42, 71, 53, 0) 0%, #2a4735 100%);
  z-index: 2;
}
#accueil #slider .caption {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  z-index: 3;
}
#accueil #slider .title {
  font-size: calc(1.5625rem + 3.75vw);
  color: #fff;
  font-weight: 600;
  padding-right: 80px;
}
@media (min-width: 1200px) {
  #accueil #slider .title {
    font-size: 4.375rem;
  }
}
#accueil #slider .title strong {
  position: relative;
  font-weight: 600;
}
#accueil #slider .title strong:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: calc(100% + 50%);
  height: 5px;
  background: var(--yellow);
}
#accueil #slider .scroll {
  border: 3px solid #fff;
  border-radius: 5px;
  padding: 15px;
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 3;
  transform: translate(-50%, 50%);
  height: 120px;
}
#accueil #slider .scroll img {
  animation: bounce 2s infinite;
}
#accueil #slider .swiper {
  height: 100vh;
  min-height: 600px;
  max-height: 1000px;
}
#accueil #slider .swiper-slide img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
#accueil #slider .swiper-pagination {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: auto;
  bottom: auto;
  width: 30px;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
}
#accueil #slider .swiper-pagination-bullet {
  margin: 10px 0;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-12px);
  }
  60% {
    transform: translateY(-6px);
  }
}
#accueil #section1:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  background: #fff url(../themes/albizzia/assets/img/grass.jpg) repeat-x center bottom / contain;
}
#accueil #realisations {
  background: var(--blackgreen);
  padding-top: calc(var(--spacing) * 1);
  color: #fff;
}
#accueil #realisations #cta2 {
  position: relative;
  z-index: 2;
  margin: 0 var(--spacing);
  transform: translateY(50%);
  margin-bottom: var(--spacing);
}
#accueil #realisations #cta2 .row {
  --bs-gutter-y:0;
}
#accueil #realisations #cta2 .column {
  padding: var(--spacing);
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-repeat: no-repeat;
}
#accueil #realisations #cta2 .left {
  background-image: url(../themes/albizzia/assets/img/cta-left.jpg);
  border-radius: 5px 0 0 5px;
}
#accueil #realisations #cta2 .right {
  background-image: url(../themes/albizzia/assets/img/cta-right.jpg);
  border-radius: 0 5px 5px 0;
}
#accueil #cta {
  margin-bottom: 0;
}
#accueil #chiffres img {
  max-width: 75px;
}
#accueil #chiffres .row {
  margin-top: calc(var(--spacing) / 2);
}
#accueil #chiffres .text {
  font-size: 1.063rem;
}
#accueil #chiffres .text strong {
  font-size: calc(1.3375rem + 1.05vw);
  color: var(--orange);
  font-weight: 600;
}
@media (min-width: 1200px) {
  #accueil #chiffres .text strong {
    font-size: 2.125rem;
  }
}
#accueil #facebook {
  background: var(--bggrey);
}
#accueil #facebook .title {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  color: var(--darkgreen);
  margin-bottom: 1em;
}
#accueil #facebook .title img {
  margin-right: 30px;
}
#accueil #facebook .title h2 {
  margin-bottom: 0;
}
/* Albizzia */
#albizzia #section2 {
  position: relative;
}
#albizzia #section2 .bg {
  min-height: 400px;
  object-fit: cover;
}
#albizzia #section2:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 200px;
  background: #fff url(../themes/albizzia/assets/img/grass.jpg) repeat-x center bottom / contain;
  z-index: -1;
}
#albizzia #section2 .left {
  margin-top: 1.5rem;
}
#albizzia #section2 .right {
  margin-top: calc(0px - var(--spacing));
}
#albizzia #section2 .right img {
  margin-bottom: 1.5rem;
}
/* Contact */
#contact #form {
  background: var(--darkgreen);
  color: #fff;
}
#contact #form .phone {
  color: var(--yellow);
  font-size: 1.25rem;
}
#contact #form .images {
  --bs-gutter-y: 1.5rem;
}
#contact #form .fax {
  margin-bottom: 1em;
}
#contact #form .block {
  padding: calc(var(--spacing) / 2);
  background: #fff;
  color: var(--darkgreen);
  border-radius: 5px;
}
#contact #form .alert {
  margin-top: 1.5rem;
}
#contact #form .alert .close {
  display: none;
}
/* Pages prestations */
#prestation .block {
  position: relative;
  z-index: 1;
}
#prestation .block .inner {
  padding: var(--spacing);
  background: #fff;
  border-radius: 5px;
}
#prestation #intro {
  background: var(--darkgreen);
  color: #fff;
}
#prestation #intro h2 {
  color: inherit;
}
#prestation #intro .bg {
  position: relative;
}
#prestation #intro .bg:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 50%;
  z-index: 1;
  background: linear-gradient(#2a4735 0%, rgba(42, 71, 53, 0) 100%);
}
#prestation #intro .image {
  position: relative;
}
#prestation #intro .caption {
  position: absolute;
  left: calc(0px - var(--bs-gutter-x) * 0.5);
  line-height: 1.5em;
  bottom: -1.5rem;
  background: var(--green);
  padding: 15px;
  color: #fff;
  font-style: italic;
  max-width: 50%;
}
#prestation #block1 {
  margin-top: calc(0px - var(--spacing));
}
#prestation #block2 {
  text-align: center;
}
#prestation #block2 .row {
  --bs-gutter-x:3rem;
}
#prestation #block2 {
  background: var(--bggrey);
}
#prestation #block2 .inner {
  background: transparent;
}
#prestation #block2 .inner > .row {
  margin-top: calc(var(--spacing) / 2);
}
#prestation #block2 img {
  margin-bottom: 15px;
}
#prestation #block2 .bottom {
  position: relative;
  font-weight: 600;
  font-style: italic;
  color: var(--darkgreen);
}
#prestation #block2 .bottom p {
  font-weight: inherit;
  color: inherit;
}
#prestation #block2 .bottom:before {
  content: "";
  display: block;
  width: 180px;
  height: 5px;
  background: var(--orange);
  margin: 30px auto;
}
#prestation #pourquoi {
  position: relative;
}
#prestation #pourquoi .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: -1;
  min-height: 600px;
}
#prestation #pourquoi .bg img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#prestation #pourquoi .inner {
  background: var(--blackgreen);
  color: #fff;
  padding: var(--spacing);
  border-radius: 5px;
}
#prestation #pourquoi .inner h2 {
  color: #fff;
}
#prestation #pourquoi .bottom {
  text-align: center;
  position: relative;
  color: var(--darkgreen);
  margin: var(--spacing);
  margin-bottom: 0;
}
#prestation #pourquoi .bottom:after {
  content: "";
  display: block;
  width: 180px;
  height: 5px;
  background: var(--orange);
  margin: 30px auto;
}
#prestation #cta {
  margin: var(--spacing);
  padding: var(--spacing) calc(var(--spacing) * 1);
  transform: none;
  text-align: center;
  color: #fff;
}
#prestation #cta h3 {
  color: inherit;
  margin-bottom: 1em;
}
#prestation #cta .btn {
  margin-top: 30px;
}
/* Réalisations */
#realisations #filters {
  background: var(--darkgreen);
}
#realisations #filters .title {
  color: var(--orange);
  text-align: center;
  margin-bottom: 30px;
}
#realisations #filters .form-floating {
  position: static;
}
#realisations #filters .form-select {
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  border-color: #fff;
  color: #fff;
}
#realisations #filters .form-select option {
  background: var(--darkgreen);
  color: #fff;
}
#realisations #records {
  position: relative;
}
#realisations #records .row {
  --bs-gutter-y:3rem;
}
#realisations #records .text {
  padding-right: var(--spacing);
  padding-bottom: var(--spacing);
}
#realisations #records .filigrane1 {
  position: absolute;
  left: -10vw;
  top: 15%;
  z-index: 0;
  max-width: 40vw;
  opacity: 0.5;
}
#realisations #records .filigrane2 {
  position: absolute;
  right: -2vw;
  bottom: 20%;
  z-index: 0;
  max-width: 40vw;
  opacity: 0.5;
}
#realisations #records .caption {
  padding: 0 1.5rem;
}
#realisations #records .uppertitle {
  color: var(--orange);
  font-size: 0.938rem;
  position: relative;
  padding-top: 1.5rem;
}
#realisations #records .uppertitle:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 30px;
  background: var(--orange);
  transform: translateY(-50%);
}
#realisations #records .title {
  font-size: calc(1.3125rem + 0.75vw);
  font-weight: 500;
}
@media (min-width: 1200px) {
  #realisations #records .title {
    font-size: 1.875rem;
  }
}
#realisations #records .image {
  overflow: hidden;
  display: block;
  max-width: 100%;
  border-radius: 5px;
}
#realisations #records .link img {
  transform: scale(1.1);
  transition: all 0.7s ease 0s;
}
#realisations #records .link:hover img {
  transform: scale(1);
}
#realisations #record-wrapper {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s ease 0s;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
#realisations #record-wrapper.open {
  opacity: 1;
  pointer-events: auto;
}
#realisations #record {
  width: 100%;
}
#realisations #record .leaf1 {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-250px, -50%);
  z-index: -1;
}
#realisations #record .leaf2 {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(250px, -50%);
  z-index: -1;
}
#realisations #record h1 {
  font-size: calc(1.325rem + 0.9vw);
  color: var(--darkgreen);
}
@media (min-width: 1200px) {
  #realisations #record h1 {
    font-size: 2rem;
  }
}
#realisations #record .description {
  color: var(--blackgreen);
}
#realisations #record .customer {
  color: #7EC9C7;
  border-left: 5px solid #7EC9C7;
  padding-left: 10px;
  margin: 1rem 0 2rem 0;
}
#realisations #record .block {
  background: #fff;
  border-radius: 5px;
  position: relative;
}
#realisations #record .row {
  max-height: 90vh;
  overflow-x: hidden;
  overflow-y: auto;
}
#realisations #record .column {
  padding: calc(var(--spacing) / 2);
}
#realisations #record .right {
  background: var(--bggrey);
  border-radius: 0 5px 5px 0;
}
#realisations #record .close {
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(50%, -50%);
  background: var(--green);
  width: 40px;
  height: 40px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#realisations #record .nav {
  margin-bottom: 30px;
}
#realisations #record .slider {
  margin-bottom: 30px;
}
#realisations #record .thumbs img {
  cursor: pointer;
}
#realisations #record #juxtapose {
  width: 100% !important;
  height: 450px !important;
}
#realisations #record #juxtapose .jx-knightlab {
  display: none !important;
}
/* Entretien */
#entretien #prestation #intro .image img {
  height: 100%;
  object-fit: cover;
}
#entretien #prestation #pourquoi {
  position: relative;
}
#entretien #prestation #pourquoi .bg:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 50%;
  z-index: 1;
  background: linear-gradient(#2a4735 0%, rgba(42, 71, 53, 0) 100%);
}
#entretien #prestation .block .inner {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}
#entretien #prestation #block2 .lowertitle {
  color: var(--orange);
  margin-bottom: 50px;
  font-weight: 600;
}
#entretien #prestation #block2 .text {
  text-align: left;
}
#entretien #prestation #block2 .text ul > li {
  margin: 0.5em 0;
}
#entretien #prestation #block2 .row .row {
  --bs-gutter-x:1.5rem;
}
#entretien #prestation #cta {
  text-align: left;
  padding: calc(var(--spacing) / 1.5);
  transform: translateY(-50%);
  margin-left: var(--spacing);
  margin-right: var(--spacing);
}
#entretien #prestation #cta h3 {
  margin-bottom: 0;
}
/* Pages légales */
.legal .padding {
  background: #fff;
}
.legal #heading .arrow {
  display: none;
}

/**
 * XXL
 **/
/**
 * XL
 **/
@media (max-width: 1399px) {
  .dropdown-menu {
    transform: translate(0px, 30px) !important;
  }
  #header {
    padding: 20px;
  }
  #header .row {
    --bs-gutter-x:1.5rem;
  }
  #header .navigation a {
    padding: 10px;
  }
  #section1 .inner {
    padding-right: calc(var(--spacing) / 2);
  }
  #section1 #pictolist {
    margin-top: calc(var(--spacing) / 2);
  }
  #cta {
    margin: 0 calc(var(--spacing) / 2) var(--spacing) calc(var(--spacing) / 2);
  }
  #cta .row {
    --bs-gutter-x:3rem;
  }
  #accueil #realisations #cta2 {
    margin: 0 calc(var(--spacing) / 2) var(--spacing) calc(var(--spacing) / 2);
  }
}
/**
 * LG
 **/
@media (max-width: 1199px) {
  .container-lg, .container-xl {
    --bs-gutter-x:3rem;
  }
  .nav-pills .nav-link {
    padding: 1rem 2rem;
    margin-right: 15px;
  }
  #header {
    left: 30px;
    top: 30px;
    max-width: calc(100% - 60px);
  }
  #header .logo {
    max-width: 160px;
  }
  #header .phone svg {
    margin-right: 5px;
  }
  #header.pinned {
    left: 30px;
  }
  #section1 .images img {
    width: 100%;
  }
  #section1 .text .images {
    display: none;
  }
  #section1 #pictolist {
    margin: calc(var(--spacing) / 2) 0;
    border-radius: 5px;
  }
  #section1:after {
    content: none;
  }
  #cta {
    margin: 0 0 var(--spacing) 0;
    padding: calc(var(--spacing) / 2);
  }
  #cta .row {
    --bs-gutter-x:1.5rem;
  }
  #accueil #realisations #cta2 {
    margin: 0;
  }
  #accueil #realisations #cta2 .column {
    padding: calc(var(--spacing) / 2);
  }
  #accueil #section1:after {
    height: 25%;
  }
  #prestation #block2 .row {
    --bs-gutter-x:1.5rem;
  }
  #prestation #pourquoi .inner {
    padding: calc(var(--spacing) / 2);
  }
  #prestation #cta {
    margin-left: 0;
    margin-right: 0;
    padding: var(--spacing);
  }
  #realisations #record #juxtapose {
    height: 350px !important;
  }
}
/**
 * MD
 **/
@media (max-width: 991px) {
  .btn {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .btn:before {
    width: 30px;
    height: 3px;
  }
  .btn:hover:before {
    width: 20px;
  }
  .nav-pills .nav-link {
    padding: 1rem;
  }
  #header {
    width: 100%;
  }
  #header .row > .col-auto {
    border-left: none;
  }
  #header .center {
    display: none !important;
  }
  #header .right {
    margin-left: auto;
    border-left: 0;
  }
  #header .end {
    display: flex !important;
  }
  body.open #header {
    transform: none !important;
    left: 30px !important;
  }
  body.open #header .center {
    transform: translateY(0) !important;
    left: 0 !important;
  }
  body.open #header .logo {
    filter: brightness(0) invert(1);
    transition: all 0.3s ease 0s;
  }
  #backtotop {
    right: 30px;
    bottom: 30px;
    width: 60px;
    height: 60px;
  }
  #footer .leaf1 {
    max-width: 15vw;
  }
  #footer .leaf2 {
    max-width: 25vw;
  }
  #pictolist .row {
    --bs-gutter-x:1.5rem;
  }
  #accueil #slider .scroll {
    padding: 10px;
    height: 90px;
  }
  #accueil #realisations {
    padding-top: calc(var(--spacing) * 2.5);
  }
  #accueil #realisations .text {
    padding: calc(var(--spacing) / 2);
  }
  #accueil #realisations .row {
    --bs-gutter-y:1.5rem;
  }
  #accueil #realisations #record .row {
    --bs-gutter-y:0;
  }
  #prestation .block .inner {
    padding: calc(var(--spacing) / 2);
  }
  #prestation #pourquoi .bg {
    min-height: 400px;
  }
}
/**
 * SM
 **/
@media (max-width: 767px) {
  #accueil #slider:before {
    height: 75%;
  }
  #footer .row {
    --bs-gutter-y:3rem;
  }
  #footer .row > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  #footer ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  #footer ul li {
    margin: 0.5rem 0;
  }
  #footer ul a {
    padding-left: 0;
  }
  #footer ul a:before {
    content: none;
  }
  #footer ul a:hover {
    padding-left: 0;
  }
  #footer .row.socials {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
  #accueil #chiffres img {
    margin-bottom: 15px;
  }
  #accueil #chiffres .text {
    line-height: 1.4em;
  }
  #albizzia #section2 .right {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-start;
    margin-top: -30px;
  }
  #albizzia #section2 .right img {
    margin-right: 1.5rem;
    margin-bottom: 0;
    max-width: 200px;
  }
  #contact #form .left {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    margin-bottom: 3rem;
  }
  #contact #form .text {
    width: 50%;
  }
  #contact #form .images {
    margin-top: 0;
    width: 50%;
    --bs-gutter-y:0;
  }
  #contact #form .images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-right: 0;
  }
  #contact #form .images .col-4:last-child {
    display: none;
  }
  #realisations #record .slider {
    margin-bottom: 15px;
  }
  #entretien #prestation #cta {
    margin-left: calc(var(--spacing) / 2);
    margin-right: calc(var(--spacing) / 2);
  }
  #realisations #record #juxtapose {
    height: 250px !important;
  }
}
/**
 * XS
 **/
@media (max-width: 575px) {
  .nav-pills .nav-link {
    padding: 0.5rem;
    margin-right: 5px;
  }
  #heading {
    height: initial;
    min-height: initial;
    max-height: initial;
    padding-top: 130px;
  }
  #heading h1 {
    padding-bottom: 10vh;
  }
  #header {
    left: 0;
    top: 0;
    border-radius: 0;
    max-width: 100%;
    transition: all 0.5s ease 0s;
  }
  #header .right {
    display: none !important;
  }
  #header .end {
    margin-left: auto;
  }
  #header.pinned {
    left: auto;
    top: 0;
    transform: translateY(0);
  }
  #header.unpinned {
    transform: translateY(-100%);
  }
  body.open #header {
    left: 0 !important;
  }
  #overlay {
    padding: 80px 15px 15px 15px;
  }
  #cta {
    margin-bottom: 100px;
  }
  #cta .row {
    --bs-gutter-y:1.5rem;
  }
  #section1 #pictolist {
    padding: calc(15px - 1rem) 15px;
  }
  #accueil #slider .title {
    padding-right: 0;
  }
  #accueil #slider .swiper-pagination {
    flex-direction: row;
    top: auto;
    bottom: 100px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
  }
  #accueil #slider .swiper-pagination-bullet {
    margin: 0 15px;
  }
  #accueil #slider .scroll {
    padding: 5px;
    height: 70px;
  }
  #accueil #realisations {
    padding-top: 150px;
  }
  #accueil #chiffres {
    padding-top: 100px;
  }
  #accueil #section1:after {
    height: 20%;
  }
  #albizzia #section2 .right {
    flex-direction: column;
    margin-top: 1.5rem;
  }
  #albizzia #section2 .right img {
    max-width: none;
    margin: 1.5rem 0 0 0;
    order: 2;
  }
  #contact #form .left {
    flex-direction: column;
  }
  #contact #form .images {
    width: 100%;
  }
  #contact #form .images .col-4:last-child {
    display: block;
  }
  #entretien #prestation #cta {
    margin-left: 0;
    margin-right: 0;
    border-radius: 0;
    transform: translateY(0);
  }
}
