/***** fonts et reset *****/
@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&display=swap');
body, ul, li, ol, form, h1, h2, h3, h4, h5, h6, div, span, p {
  padding: 0;
  margin: 0;
  border: 0;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  text-size-adjust: none;
}
article, aside, dialog, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}
input, textarea {
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  border-radius: 0;
}
* {
  outline: none;
}
:root {
  --main-color: #AD8D4C;
  --main-color-hover: #C2A975;
  --black: #1B1A18;
  --white: #F5F5F5;
  --main-font: "Albert Sans", sans-serif;
}
strong, b {
  font-weight: 500;
}
ul {
  list-style-type: none;
}
body {
  font: 400 16px/32px var(--main-font);
  color: #000;
  background: var(--white);
  position: relative;
}
body.active_overflow {
  height: 100vh;
  overflow: hidden;
}
a {
  text-decoration: none;
  color: #000;
  position: relative;
}
img {
  border: none;
}
main {
  position: relative;
}
#wrapper {
  min-width: 320px;
  overflow: hidden;
  position: relative;
}
#wrapper * he {
  box-sizing: border-box;
}
#footer {
  position: relative;
  z-index: 15;
}
*, ::before, ::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
@media (max-width:700px) {
  body {
    font-size: 14px;
    line-height: 28px;
  }
}
/***** scollbar *****/ ::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background-color: var(--black);
}
::-webkit-scrollbar-thumb {
  background-color: var(--main-color);
}
/***** transition *****/
@media (min-width:1201px) {
  .link, .slick-arrow, :before, :after, a, a span, .sub {
    transition: all 400ms ease-in-out;
  }
}
/***** class *****/
/* Layouts */
.wrapper {
  width: 90vw;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.sections {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 50px auto;
}
@media (min-width: 1000px) {
  .sections {
    gap: 120px;
    margin: 120px auto;
  }
}
.wrapper_large {
  max-width: 1600px;
}
.wrapper_large {
  max-width: 1600px;
}
.flex-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 1000px) {
  .flex-col {
    gap: 30px
  }
}
.flex-spacebetween {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* TYPO & Liens */
.titre_main {
  font: 600 30px/42px var(--main-font);
  position: relative;
  letter-spacing: 0.8px;
  margin-bottom: 20px;
}
.sous_titre {
  font: 600 24px/35px var(--main-font);
  position: relative;
  letter-spacing: 0.8px;
}
.titre {
  font: 600 42px/50px var(--main-font);
  letter-spacing: 0.2px;
  margin-bottom: 15px;
}
.chapo {
  font: 400 16px/32px var(--main-font);
  margin-bottom: 0;
}
.link {
  font: 500 16px/50px var(--main-font);
  height: 50px;
  border: none;
  padding: 0 30px;
  display: inline-block;
  color: var(--white);
  padding: 0 30px;
  cursor: pointer;
  text-align: center;
  color: var(--main-color);
  border: 1px solid var(--main-color);
  transition: all .300s ease-in-out;
}
.link:hover {
  background: var(--main-color);
  color: var(--white);
}
@media (max-width:1000px) {
  .wrapper {
    max-width: 750px;
  }
}
@media (max-width:700px) {
  body {
    font-size: 14px;
    line-height: 28px;
  }
  .titre_main {
    font-size: 20px;
    line-height: 32px;
  }
  .sous_titre {
    font-size: 18px;
    line-height: 30px;
  }
  .link {
    padding: 0 30px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
  }
  .titre {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 0;
  }
  .chapo {
    font-size: 14px;
    line-height: 28px;
  }
}
/***** liens a *****/
.texte p a, .bloc_texte p a, .ul_list a {
  color: var(--main-color);
  border-bottom: 1px solid var(--main-color);
}
@media (min-width:1201px) {
  .texte p a:hover, .bloc_texte p a:hover, .ul_list a:hover {
    color: var(--main-color-hover);
    border-color: var(--main-color-hover);
  }
}
.read_more {
  color: var(--main-color);
}

.read_more:hover {
  text-decoration: underline;
}
/***** 
****** ul list
*****/

.ul_list li:before {
  content: url("/img/arrow-right-colorred.svg");
  display: block;
  transform: scale(0.4);
  position: absolute;
    left: -50px;
  top: -2px;
}
.ul_list li {
  position: relative;
  margin-left: 50px;
}
/***** 
****** header - menu alignements 
*****/
.header {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  transition: all 400ms ease-in-out;
  display: block;
}
.header .wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}
@media (min-width: 700px) {
  .header .wrapper {
    padding: 30px 0;
  }
}
@media (min-width: 1200px) {
  .header .wrapper {
    padding: 0;
  }
}
.header .left {
  display: flex;
  align-items: center;
}
.header .right {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header .logo {
  display: inline-flex;
  margin-right: 50px;
  align-items: center;
}
.sticky .header {
  background-color: var(--white);
  /*  box-shadow: 0 0 30px 0 rgba(32, 37, 43, 0.18);*/
}
/***** 
****** header - link
*****/
.header .link {
  display: none;
}
@media (min-width: 450px) {
  .header .link {
    display: block;
  }
}
/***** 
****** header - navigation menu + sub
*****/
.header_nav {
  z-index: 50;
}
.header_nav .menu {
  position: relative;
  display: flex;
  gap: 20px;
}
.header_nav .menu li {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
.header_nav .menu li a {
  font: 500 15px/150px var(--main-font);
  letter-spacing: 0.3px;
  height: 150px;
  display: block;
  transition-property: all;
}
.header_nav .menu > li.active > a {
  color: var(--main-color);
}
.header_nav .menu > li > a:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 45px;
  height: 4px;
  width: 0;
  background: var(--main-color);
  transition: all ease 400ms;
}
.header_nav .sub {
  width: 340px;
  padding: 20px 0;
  margin-left: -170px;
  text-align: left;
  position: absolute;
  top: 75%;
  left: 50%;
  display: block;
  visibility: hidden;
  opacity: 0;
  background: var(--white);
}
.header_nav .sub li {
  width: 100%;
  margin: 0;
}
.header_nav .sub li a {
  width: 100%;
  font-size: 14px !important;
  letter-spacing: 0.4px;
  height: 50px;
  color: var(--black);
  line-height: 22px;
  display: grid;
  align-items: center;
  font-size: 16px;
  padding: 0 40px;
}
.header_nav .menu li:hover .sub {
  opacity: 1;
  visibility: visible;
  z-index: 999;
}
.header_nav .menu .sub li.active a {
  color: var(--main-color);
}
@media (min-width:1201px) {
  .header_nav .menu > li:hover .sub {
    opacity: 1;
    visibility: visible;
    z-index: 10;
  }
  .header_nav .sub {
    display: block !important;
  }
  .header_nav .menu > li:hover > a {
    color: var(--main-color);
  }
  .header_nav .sub li a:hover {
    color: var(--main-color);
  }
  .sticky .header_nav .menu > li > a {
    line-height: 80px;
    height: 80px;
  }
  .sticky .header_nav .menu > li > a:after {
    bottom: 20px;
  }
  .sticky .header_nav {
    transition: all 400ms ease-in-out;
  }
}
/***** 
****** header - burgermenu
*****/
.menu_mobile {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  z-index: 250;
  top: 0;
  right: 0;
  color: var(--black);
  font-weight: 600;
}
@media (min-width: 1200px) {
  .menu_mobile {
    display: none;
  }
}
.menu_mobile div {
  display: block;
  align-self: center;
  width: 30px;
  margin: -1px 0 0 20px;
}
.menu_mobile div:before {
  width: 30px;
  height: 2px;
  background: var(--black);
  position: absolute;
  right: 0;
  top: 9px;
  content: "";
}
.menu_mobile div:after {
  width: 30px;
  height: 2px;
  background: var(--black);
  position: absolute;
  right: 0;
  top: 17px;
  content: "";
  transition: all .2s ease-in-out;
}
@media (min-width: 700px) {
  .menu_mobile div:before {
    top: 11px;
  }
  .menu_mobile div:after {
    top: 20px;
  }
}
.menu_mobile.active div {
  background: var(--main-color);
}
.menu_mobile.active div:before {
  top: 13px;
  transform: rotate(45deg);
  background: var(--main-color);
}
.menu_mobile.active div:after {
  top: 13px;
  transform: rotate(-45deg);
  background: var(--main-color);
}
.menu_mobile.active {
  color: var(--main-color);
}
/***** 
****** header - burgermenu OPEN - navstyle
*****/
@media (max-width:1200px) {
  .wrapper_header {
    min-width: inherit;
  }
  .header ::-webkit-scrollbar {
    display: none;
  }
  .header .header_nav {
    width: 100%;
    height: 100vh;
    position: fixed;
    right: -100%;
    top: 0;
    overflow-y: scroll;
    display: grid;
    z-index: 200;
    background: var(--black);
    transition: all 400ms ease-in-out 600ms;
    margin-top: 0;
  }
  .header .menu {
    display: block;
    width: 100%;
    text-align: left;
    padding: 5vw 15vw;
    position: relative;
    z-index: 100;
    align-self: center;
    opacity: 0;
    transform: translateY(40px);
    transition: all 400ms ease-in-out 200ms;
  }
  .header_nav .menu li:after {
    content: none;
  }
  .header_nav .menu > li {
    width: 100%;
    display: block;
    margin: 0;
  }
  .header_nav .menu li {
    margin: 0;
  }
  .header_nav .menu > li > a {
    line-height: 60px;
    height: 60px;
    transition: none;
    border-top: none;
    border-bottom: none;
    padding: 0;
    color: var(--white);
  }
  .header_nav .menu > li > a:after {
    right: auto;
    left: 0;
    bottom: 8px;
  }
  .header_nav .menu > li.active > a {
    border-top: none;
    border-bottom: none;
  }
  .header_nav .menu > li > i {
    width: 100%;
    height: 40px;
    display: block;
    position: absolute;
    top: 10px;
    left: 0;
    z-index: 5;
  }
  .header_nav .menu > li > i:after {
    width: 60px;
    height: 100%;
    position: absolute;
    top: -5px;
    right: 0;
    background: url("../img/chevron-down.svg") 50% no-repeat;
    transform: scale(0.8);
    float: right;
    content: "";
  }
  .header_nav .menu > li > i.active:after {
    transform: rotate(180deg);
  }
  .header_nav .menu .sub {
    background-color: var(--white);
    width: 100%;
    position: relative;
    left: auto;
    top: auto;
    padding: 10px 15px 10px 30px;
    margin: 15px 0;
    visibility: visible;
    opacity: 1;
    display: none;
    z-index: 150;
    transform: none;
    box-shadow: none;
  }
  .header_nav .menu .sub li {
    width: 100%;
    height: initial;
    border-bottom: 0;
  }
  .header_nav .menu .sub li a {
    width: 100%;
    text-align: left;
    padding: 0;
    color: var(--black);
  }
  .header.active:after {
    opacity: 1;
    visibility: visible;
    transition-delay: 100ms;
  }
  .header.active .header_nav {
    right: 0;
    transition-delay: 200ms;
  }
  .header.active .menu {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 600ms;
  }
}
@media (max-width:1000px) {
  .header {
    background: var(--white);
  }
}
@media (max-width:700px) {
  .header_nav .menu > li > a {
    height: 50px;
    line-height: 50px;
  }
  .header_nav .menu > li > a:after {
    bottom: 2px;
  }
}
/***** 
****** cta
*****/
.cta {
  background-color: var(--black);
  color: var(--white);
  padding-top: 30px;
  margin-bottom: 100px;
}
.cta .bloc_grid {
  align-items: flex-start;
  gap: 20px;
}
@media (min-width: 700px) {
  .cta {
    padding-top: 200px;
    margin-bottom: 200px;
  }
  .cta .texte a {
    width: fit-content;
  }
}
@media (min-width: 1000px) {
  .cta .bloc_grid {
    align-items: flex-start;
    gap: 0px;
  }
}
/***** 
****** moving-galerie
*****/
.moving_galerie {
  width: auto;
  left: 50%;
  transform: translateX(-50%) translateY(50%);
  position: relative;
  top: 50%;
  text-align: center;
}
.moving_galerie .row {
  width: auto;
  display: flex;
  gap: 80px;
}
.moving_galerie .row .item {
  width: auto;
  display: flex;
  align-items: center;
  gap: 80px;
  animation: scroll_gallery 20s linear infinite;
}
@media (min-width: 1000px) {
  .moving_galerie .row {
    gap: 250px;
  }
  .moving_galerie .row .item {
    gap: 250px;
  }
}
/*
.moving_galerie .row .item div {
  padding: 0 10px;
}
*/
.moving_galerie .row .item img {
  max-width: 500px;
  object-fit: cover;
  max-height: 200px;
  display: block;
  margin: 0 auto;
  transition: all 300ms ease-in-out;
}
@media (min-width: 1000px) {
  .moving_galerie .row .item img {
    max-width: 800px;
    max-height: 300px;
  }
}
@media (min-width: 1800px) {
  .moving_galerie .row .item img {
    max-width: 1000px;
    max-height: 500px;
  }
}
@keyframes scroll_gallery {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-100%, 0);
  }
}
@media (min-width:700px) {
  .moving_galerie .row .item img {
    height: 300px;
  }
}
/***** 
****** footer
*****/
.footer {
  position: relative;
  background: var(--black);
  color: var(--white);
  font-size: 0;
  padding-top: 95px;
}
.footer ul li a {
  color: var(--white);
  width: fit-content;
  font-family: var(--main-font);
  font-size: 14px;
  transition: all .300s ease-in-out;
}
.footer ul li a:hover {
  color: var(--main-color);
}
.footer-row {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 700px) {
  .footer-row {
    display: flex;
    flex-direction: row;
    gap: 0;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.footer .bloc_footer {
  display: inline-block;
  vertical-align: top;
}
.footer .sous_titre {
  color: var(--main-color);
  font-size: 16px;
  margin-bottom: 10px;
}
.footer .bloc_grid {
  display: grid;
  align-items: flex-start;
  margin: 0;
}

.footer-contact {
    width: 100%;
  }
@media (min-width: 700px) {
  .footer-contact {
    width: 50%;
  }
}
@media (min-width: 1000px) {
  .footer-contact {
    width: 50%;
  }
}
/*
.footer .rs .scroll {
  background: url("../images/scrolltop.svg") 50% 48% no-repeat #b21718;
}
.footer .rs .facebook {
  background: url("../images/facebook.svg") 50% 48% no-repeat #b21718;
}
*/
.footer_bottom {
  padding: 20px 0;
  line-height: 0;
  margin-top: 65px;
}
.footer_bottom li {
  display: inline-block;
  font-size: 11px;
  line-height: 20px;
  margin-right: 30px;
  letter-spacing: 0.5px;
  position: relative;
}
.footer_bottom li a {
  color: var(--white);
  transition: all .300s ease-in-out;
}
.toponweb {
  display: block;
  z-index: 85;
  position: absolute;
  right: 0;
  bottom: -65px;
  transition: bottom 400ms ease-in-out;
}
.toponweb span {
  width: auto;
  height: 60px;
  display: block;
  padding: 20px;
  background: var(--main-color);
  background-size: 200% 100%;
  background-position: 100% 0;
}
.toponweb img {
  width: 76px;
  height: auto;
  display: block;
  margin: 0 auto;
  transition: all 400ms ease-in-out;
}
.toponweb.show {
  bottom: 0;
}
@media (min-width:1201px) {
  .footer_bottom li a:hover, .footer .bloc_footer li a:hover, .footer .bloc_footer p a:hover {
    color: var(--main-color);
  }
  .footer .rs .scroll:hover {
    background: url("../images/scrolltop_red.svg") 50% 48% no-repeat #fff;
  }
  .footer .rs .facebook:hover {
    background: url("../images/facebook_red.svg") 50% 48% no-repeat #fff;
  }
  .toponweb:hover span {
    background-position: 0 0;
  }
  .toponweb:hover img {
    filter: brightness(0) invert(1);
  }
}
@media (max-width:1200px) {
  .toponweb {
    position: absolute;
  }
  .footer {
    padding-top: 80px;
  }
  .footer ul.bloc_footer {
    display: none;
  }
  .footer_bottom {
    margin-top: 60px;
  }
}
@media (max-width:700px) {
  .footer {
    padding-top: 50px;
  }
  .footer .sous_titre {
    font-size: 18px;
    line-height: normal;
  }
  .footer .bloc_footer {
    width: 100%;
  }
  .footer_bottom {
    text-align: left;
    margin-top: 30px;
    padding: 0 0 20px 0;
  }
  .footer_bottom li {
    display: block;
    margin: 0;
    font-size: 10px;
    line-height: 24px;
  }
  .footer_bottom li:after {
    display: none;
  }
}