:root {
  --padding-100: 100px;
  --padding-40: 40px;
  --fs-14: 14px;
  --fs-16: 16px;
  --fs-20: 20px;
  --fs-32: 32px;
  --gap-24: 24px;
  --gap-32: 32px;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-y: auto;
}
html.overflow {
  overflow-y: hidden;
}

body {
  max-width: 1920px;
  margin: auto;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  font-family: "cofo-sans-variable", sans-serif;
}

* {
  box-sizing: border-box;
  max-width: 100%;
  margin: 0;
  padding: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/* width */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  overflow: hidden;
}

/* Track */
::-webkit-scrollbar-track {
  background: white;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #393939;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #393939;
}

#legales {
  padding-top: 50px;
  padding-bottom: 50px;
}
#legales h2 {
  margin: 30px 0;
}
#legales p {
  margin: 10px 0;
}

.width {
  padding: 0 3%;
}

a[data-fancybox] {
  display: block;
  width: 100%;
  height: 100%;
}
a[data-fancybox] img {
  display: block;
  width: 100%;
  height: 100%;
}
a[data-fancybox]:focus-visible {
  outline: none;
}

.fancybox-infobar * {
  color: white;
}

#succes {
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  top:0;
  left:0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  transition-duration: 0.6s;
}
#succes > div {
  text-align: center;
  font-size: 24px;
  z-index: 1;
  color: #393939;
  background-color: #ffffff;
  padding: 60px;
  line-height: 1.5;
  position: relative;
}
#succes #close-info {
  position: absolute;
  right: 20px;
  top: 10px;
  cursor: pointer;
}
#succes.active {
  display: flex;
}
#succes.hidden {
  visibility: hidden !important;
  opacity: 0 !important;
}

#loading {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #ffffff;
  z-index: 99999;
  transition-duration: 1s;
  transition-delay: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
#loading svg {
  width: 40%;
  height: auto;
  transition: all 0.3s linear;
}
#loading svg g path.river {
  stroke-dasharray: 50px;
  stroke-dashoffset: 100px;
  stroke-width: 0.3;
  fill-opacity: 0;
  transition: stroke-dashoffset 3s, stroke-width 3s linear,
    fill-opacity 3s linear, stroke-dasharray 3s linear;
}
#loading svg.animated g path.river {
  stroke-dashoffset: 0;
  fill-opacity: 1;
  stroke-width: 0.3;
}
#loading svg g path.tree {
  stroke-dasharray: 20px;
  stroke-dashoffset: 100px;
  stroke-width: 1;
  fill-opacity: 0;
  transition: stroke-dashoffset 3s, stroke-width 3s linear,
    fill-opacity 1s linear, stroke-dasharray 3s linear;
}
#loading svg.animated g path.tree {
  stroke-dashoffset: 0;
  fill-opacity: 1;
  stroke-width: 0.3;
}
#loading svg path.border {
  stroke-dasharray: 30px;
  stroke-dashoffset: 100px;
  stroke-width: 0;
  transition: stroke-dashoffset 2s, stroke-width 3s linear,
    stroke-dasharray 2s linear;
}
#loading svg.animated path.border {
  stroke-dasharray: 1500px;
  stroke-width: 1;
}
#loading svg .moulin {
  transform-origin: center center;
  animation: rotateMoulin 3.5s linear;
  transform-box: border-box;
  transition: all 0.3s linear;
}
@keyframes rotateMoulin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(15deg);
  }
}
#loading.hidden {
  opacity: 0;
  visibility: hidden;
}
#loading.hidden svg {
  transform: scale(1.1);
}

.corners img {
  width: 18px;
  height: 18px;
  position: absolute;
}
.corners img:nth-of-type(1) {
  top: 70px;
  left: 8%;
}
.corners img:nth-of-type(2) {
  top: 70px;
  right: 8%;
  transform: rotate(90deg);
}
.corners img:nth-of-type(3) {
  bottom: 70px;
  left: 8%;
  transform: rotate(-90deg);
}
.corners img:nth-of-type(4) {
  bottom: 70px;
  right: 8%;
  transform: rotate(180deg);
}

img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

h1,
h2,
.title {
  font-family: "cofo-sans-variable", sans-serif;
  font-size: var(--fs-32);
  font-weight: 300;
  line-height: 1.2;
  text-align: left;
  color: #393939;
  position: relative;
  margin-bottom: 32px;
}
h1 span,
h2 span,
.title span {
  font-family: "cofo-sans-variable", sans-serif;
  font-size: var(--fs-32);
  font-weight: 300;
  line-height: 1.2;
  text-align: left;
  color: #c7ab94;
}

a,
p,
li,
span {
  font-family: "cofo-sans-variable", sans-serif;
  font-size: var(--fs-14);
  font-weight: 400;
  line-height: 1.2;
  text-align: left;
  text-decoration: none;
  display: block;
  color: #969696;
}

.subtitle {
  font-family: "cofo-sans-variable", sans-serif;
  font-size: var(--fs-14);
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 4px;
  line-height: 1.2;
  text-align: left;
  color: #abc7d6;
  margin-bottom: 25px;
}
.subtitle::before {
  content: url("imgs/icons/moulin-icon.svg");
  display: block;
  width: 55px;
  height: 48px;
  margin-bottom: 16px;
}

.btn {
  font-style: normal;
  font-weight: 400;
  font-size: var(--fs-14);
  line-height: 1;
  color: #ffffff;
  background-color: #c7ab94;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px;
  border: 1px solid #c7ab94;
  cursor: pointer;
  position: relative;
  transition: all 0.3s linear;
}
.btn:hover {
  background-color: transparent;
  color: #c7ab94;
}

header {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
  padding: 0;
  z-index: 99;
  transition: all 0.3s linear;
  background-color: #ffffff;
  display: flex;
  justify-content: space-between;
  height: 200px;
}
header .width {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
header .width .timer {
  width: auto;
}
header .width .timer .data-counter {
  margin-bottom: 0;
  text-align: left;
  display: flex;
  gap: 42px;
  height: 200px;
}
header .width .timer .data-counter span {
  display: inline;
  color: #abc7d6;
}
header .width .timer .data-counter .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  width: calc(25% - 16px);
  min-width: 110px;
  border-radius: 50%;
}
header .width .timer .data-counter .item .value {
  font-size: var(--fs-32);
  font-weight: 600;
  margin-bottom: 8px;
  color: #abc7d6;
  border-radius: 50%;
  padding: 32px;
  margin-bottom: 12px;
  position: relative;
}
header .width .timer .data-counter .item .value:after {
  content: "";
  border: 3px solid #abc7d6;
  border-radius: 50%;
  animation: border 3s linear;
  -webkit-clip-path: ellipse(210px 120px at 100% 100%);
  clip-path: ellipse(210px 120px at 100% 100%);
  left: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 100px;
  height: 100px;
  transition: -webkit-clip-path 1.5s linear;
  transition: clip-path 1.5s linear;
  transition: clip-path 1.5s linear, -webkit-clip-path 1.5s linear;
}
header .width .timer .data-counter .item .unit {
  color: #abc7d6;
  font-weight: 400;
  font-size: var(--fs-16);
}
header .width .logo {
  width: auto;
  height: 100px;
  flex-shrink: 0;
  transition: all 1s linear;
}
header .width .logo a {
  height: 100%;
  width: 100%;
  transition: all 0.3s linear;
}
header .width .logo a img {
  transition: all 0.3s linear;
  -o-object-fit: contain;
  object-fit: contain;
}

#accueil .width {
  position: relative;
}
#accueil .width:after {
  content: "";
  position: absolute;
  top: 0;
  left: 3%;
  background-color: #bdd4df;
  height: 100%;
  width: 30%;
  z-index: 3;
}
#accueil .width .box {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 7%;
  height: 100%;
  z-index: 5;
  flex-direction: column;
}
#accueil .width .box h1 {
  color: #ffffff;
  font-size: 92px;
  font-weight: 400;
  max-width: 10ch;
}
#accueil .width .box .icons {
  margin-top: 50px;
  margin-left: -7%;
}
#accueil .width .box .icons ul {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
#accueil .width .box .icons ul li {
  position: relative;
  width: 45%;
}
#accueil .width .box .icons ul li::before {
  content: "";
  width: 70px;
  height: 70px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: block;
  position: absolute;
  top: -9px;
  left: 0px;
  z-index: -1;
  transform: translateX(-50%);
}
#accueil .width .box .icons ul li img {
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
  object-fit: contain;
  margin-bottom: 30px;
}
#accueil .width .box .icons ul li span {
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
  display: block;
  text-align: left;
  margin-left: -12%;
}
#accueil .width .top {
  height: 94vh;
  max-height: 1080px;
  min-height: 700px;
  overflow: hidden;
  position: relative;
}
#accueil .width .top img {
  -o-object-fit: cover;
  object-fit: cover;
  margin-right: 0;
  margin-left: auto;
  width: 69%;
}

#contact {
  padding-top: var(--padding-100);
  padding-bottom: var(--padding-100);
  background-image: url("./imgs/icons/tree.svg");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: auto;
}
#contact .width {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 8%;
  padding-right: 8%;
}
#contact .width .left {
  width: 100%;
}
#contact .width .left .subtitle::before {
  display: none;
}
#contact .width .left .title {
  margin-bottom: 80px;
}
#contact .width .left .title span {
  display: inline;
}
#contact .width .left .title::before {
  height: 60%;
}
#contact .width .left form {
  display: flex;
  justify-content: space-between;
}
#contact .width .left form .wrapper {
  width: 47%;
}
#contact .width .left form .form-flex {
  display: flex;
  text-align: left;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 50px;
  width: 47%;
}
#contact .width .left form .form-flex div {
  width: 100%;
}
#contact .width .left form .form-flex input:not([type="submit"]),
#contact .width .left form .form-flex textarea {
  background: #f8fafc;
  outline: none;
  border: 1px solid #abc7d6;
  font-size: var(--fs-16);
  text-align: left;
  color: #abc7d6;
  font-weight: bold;
  padding: 14px;
  width: 100%;
  margin-bottom: 24px;
  max-width: 675px;
}
#contact
  .width
  .left
  form
  .form-flex
  input:not([type="submit"])::-moz-placeholder,
#contact .width .left form .form-flex textarea::-moz-placeholder {
  font-family: "cofo-sans-variable", sans-serif;
  color: #abc7d6;
  font-size: var(--fs-14);
  font-weight: 400;
}
#contact .width .left form .form-flex input:not([type="submit"])::placeholder,
#contact .width .left form .form-flex textarea::placeholder {
  font-family: "cofo-sans-variable", sans-serif;
  color: #abc7d6;
  font-size: var(--fs-14);
  font-weight: 400;
}
#contact .width .left form .interesse,
#contact .width .left form .appartements,
#contact .width .left form .en,
#contact .width .left form .besoin {
  max-width: 675px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: var(--gap-32);
  flex-direction: column;
}
#contact .width .left form .interesse legend,
#contact .width .left form .appartements legend,
#contact .width .left form .en legend,
#contact .width .left form .besoin legend {
  font-family: "cofo-sans-variable", sans-serif;
  font-size: var(--fs-16);
  color: #c7ab94;
}
#contact .width .left form .interesse .checkboxes,
#contact .width .left form .appartements .checkboxes,
#contact .width .left form .en .checkboxes,
#contact .width .left form .besoin .checkboxes {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 36px;
  flex-wrap: wrap;
}
#contact .width .left form .interesse .checkboxes label,
#contact .width .left form .appartements .checkboxes label,
#contact .width .left form .en .checkboxes label,
#contact .width .left form .besoin .checkboxes label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--gap-24);
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
#contact .width .left form .interesse .checkboxes label input,
#contact .width .left form .appartements .checkboxes label input,
#contact .width .left form .en .checkboxes label input,
#contact .width .left form .besoin .checkboxes label input {
  display: none;
}
#contact
  .width
  .left
  form
  .interesse
  .checkboxes
  label
  input:checked
  + .checkmark,
#contact
  .width
  .left
  form
  .appartements
  .checkboxes
  label
  input:checked
  + .checkmark,
#contact .width .left form .en .checkboxes label input:checked + .checkmark,
#contact
  .width
  .left
  form
  .besoin
  .checkboxes
  label
  input:checked
  + .checkmark {
  background-color: #969696;
  border-color: #969696;
}
#contact .width .left form .interesse .checkboxes label span,
#contact .width .left form .appartements .checkboxes label span,
#contact .width .left form .en .checkboxes label span,
#contact .width .left form .besoin .checkboxes label span {
  color: #393939;
  font-size: var(--fs-16);
  font-family: "cofo-sans-variable", sans-serif;
  white-space: nowrap;
}
#contact .width .left form .interesse .checkboxes label .checkmark,
#contact .width .left form .appartements .checkboxes label .checkmark,
#contact .width .left form .en .checkboxes label .checkmark,
#contact .width .left form .besoin .checkboxes label .checkmark {
  width: 16px;
  height: 16px;
  border: 1px solid transparent;
  display: block;
  position: relative;
  transition: all 0.2s ease-in-out;
  box-sizing: border-box;
  padding: 2px;
  outline: 1px solid #969696;
  outline-offset: 2px;
  flex-shrink: 0;
}
#contact .width .left form .interesse {
  padding-bottom: 30px;
  padding-left: 24px;
  border-bottom: 1px solid #393939;
}
#contact .width .left form .appartements {
  padding-bottom: 30px;
  padding-left: 24px;
  padding-top: 30px;
  border-bottom: 1px solid #393939;
}
#contact .width .left form .en {
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 24px;
  border-bottom: 1px solid #393939;
}
#contact .width .left form .besoin {
  padding-top: 30px;
  padding-left: 24px;
}
#contact .width .left form #submit {
  width: 243px;
  margin: 0 auto;
}

#contact .acteurs {
  margin-top: 100px;
  /* background-color: #f8fafc; */
  padding-top: 100px;
  padding-bottom: 0px;
  padding-left: 10%;
  padding-right: 10%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

#contact .acteurs h2 {
  margin-bottom: 100px;
}
#contact .acteurs h2::before {
  display: none;
}
#contact .acteurs .wrapper {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
#contact .acteurs .wrapper:first-of-type {
  margin-bottom: 60px;
}
#contact .acteurs .wrapper > div {
  width: 33%;
  text-align: center;
}
#contact .acteurs .wrapper > div .logo {
  display: block;
  width: 233px;
  height: 76px;
  margin: 30px auto 30px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
#contact .acteurs .wrapper > div .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
#contact .acteurs .wrapper > div .logo span {
  font-size: 24px;
  color: #393939;
  text-align: center;
}

#contact .acteurs .wrapper > div .logo.last-child  {
 display: flex;
 align-items: center;
 justify-content: center;
 flex-direction: column;
}
#contact .acteurs .wrapper p.acteur-title {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 16px;
  font-weight: bold;
  line-height: 17.5px;
  letter-spacing: 2px;
  color: #9c9c9c;
  margin-bottom: 12px;
}
#contact .acteurs .wrapper p.acteur-name {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 16px;
  font-weight: bold;
  line-height: 17.5px;
  letter-spacing: 2px;
  color: #393939;
  margin-bottom: 12px;
}
#contact .acteurs .wrapper p,
#contact .acteurs .wrapper a {
  font-weight: 400;
  letter-spacing: 0px;
  text-align: center;
  color: #393939;
  transition: all 0.3s linear;
  display: block;
}
#contact .acteurs .wrapper a:hover {
  color: #c7ab94;
}

footer {
  background-color: #f8fafc;
  padding-top: 50px;
  padding-bottom: 30px;
  border-top: 1px solid #abc7d6;
}
footer * {
  color: #393939;
}
footer .width {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 8%;
  padding-right: 8%;
}
footer .width .left {
  width: 30%;
  flex-shrink: 0;
}
footer .width .left a {
  width: 250px;
  transition: all 0.3s linear;
  padding: 14px;
}
footer .width .left a img {
  transition: all 0.3s linear;
  -o-object-fit: contain;
  object-fit: contain;
}
footer .width .center {
  width: 35%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  gap: 10px;
}
footer .width .center p {
  font-size: 14px;
  max-width: initial;

  align-items: center !important;
}

footer .width .center p a {
  margin: 5px 0;
  display: inline-block;
  text-decoration: underline;
}
footer .width .right {
  width: -moz-max-content;
  width: max-content;
  display: flex;
  width: 30%;
  flex-direction: column;
  align-items: flex-end;
}
footer .width .right .top {
  min-width: 240px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  flex-direction: column;
  text-align: left;
  margin-bottom: 0px;
}
footer .width .right .top h3 {
  font-size: var(--fs-20);
  text-transform: uppercase;
  margin-bottom: 24px;
  align-self: flex-start;
}
footer .width .right .top .acteurs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: var(--gap-24);
}
footer .width .right .top .acteurs .acteur {
  max-width: 20ch;
}
footer .width .right .top .acteurs .acteur:first-of-type a {
  margin-left: 0;
}
footer .width .right .top .acteurs .acteur span,
footer .width .right .top .acteurs .acteur a {
  color: #393939;
  font-size: var(--fs-16);
  font-weight: 700;
  margin-bottom: 32px;
}
footer .width .right .top .acteurs .acteur a {
  transition: all 0.3s linear;
  border-bottom: 1px solid transparent;
  width: -moz-max-content;
  width: max-content;
  margin-right: 0;
  margin-left: auto;
}
footer .width .right .top .acteurs .acteur a:hover {
  border-bottom: 1px solid #393939;
}
footer .width .right .top .acteurs .acteur p {
  color: #c7ab94;
  font-size: var(--fs-16);
  line-height: 1.4;
}
footer .width .right .top .acteurs .acteur:last-of-type * {
  text-align: right;
}
footer .width .right .bottom * {
  text-align: right;
}
footer .width .right .bottom p {
  color: #c7ab94;
  font-size: 12px;
  line-height: 1.6;
  font-weight: 400;
}
footer .width .right .bottom p:last-of-type {
  font-weight: bold;
  color: #c7ab94;
}
footer .width .right .bottom p:last-of-type a {
  display: inline-block;
  font-weight: bold;
  font-size: 12px;
  color: #c7ab94;
  transition: all 0.3s linear;
  border-bottom: 1px solid transparent;
}
footer .width .right .bottom p:last-of-type a:hover {
  border-bottom: 1px solid #c7ab94;
}

/******************************/
@media only screen and (max-width: 1600px) {
  #accueil .width .box h1 {
    color: #ffffff;
    font-size: 72px;
    font-weight: 400;
    line-height: 110%;
    max-width: 10ch;
  }
  #accueil .width .box .icons {
    margin-top: 0px;
  }
  #accueil .width .box .icons ul {
    flex-wrap: wrap;
    margin-left: -10%;
  }
  #accueil .width .box .icons ul li {
    width: 100%;
    margin-top: 30px;
  }
  #accueil .width .box .icons ul li img {
    margin-bottom: 10px;
  }
  #accueil .width .box .icons ul li span {
    max-width: 15ch;
    text-align: left;
    margin-left: 0;
  }
}
@media only screen and (max-width: 1440px) {
  #contact .width {
    padding-left: 4%;
    padding-right: 4%;
  }
  footer .width {
    padding-left: 4%;
    padding-right: 4%;
  }
}
@media only screen and (max-width: 1200px) {
  header {
    height: 180px;
  }
  header .width .timer .data-counter {
    gap: 15px;
    height: auto;
  }
  header .width .logo {
    height: 80px;
  }
  footer .width .left a img {
    max-width: 250px;
  }
  footer .width .center img {
    max-width: 200px;
  }
}
@media only screen and (max-width: 1060px) {
  #contact .acteurs {
    margin-top: 0px;
    padding-top: 0px;
  }
  #contact .acteurs .wrapper {
    flex-wrap: wrap;
    gap: 50px;
  }
  #contact .acteurs .wrapper > div {
    width: 100%;
  }
  #contact .acteurs .wrapper:first-of-type {
    gap: 16px;
  }
  #contact .acteurs .wrapper:last-of-type .acteur-title {
    margin-bottom: 0;
  }

  #contact {
    padding-bottom: 0px;
  }
}
@media only screen and (max-width: 992px) {
  :root {
    --padding-100: 100px;
    --padding-100: 80px;
    --fs-14: 14px;
    --fs-16: 16px;
    --fs-20: 18px;
    --fs-32: 24px;
  }
  header {
    height: auto;
    padding-top: 16px;
    padding-bottom: 16px;
  }
  header .width .logo {
    height: 60px;
  }
  header .width .timer .data-counter {
    gap: 3px;
  }
  header .width .timer .data-counter .item {
    min-width: auto;
    width: auto;
  }
  header .width .timer .data-counter .item .value {
    margin-bottom: 5px;
    font-size: 20px;
  }
  header .width .timer .data-counter .item .value:after {
    border: 2px solid #abc7d6;
    width: 70px;
    height: 70px;
  }
  .subtitle {
    width: -moz-max-content;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
    position: relative;
  }
  .subtitle::before {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -65px;
  }
  #loading svg {
    width: 60%;
  }
  #accueil .width:after {
    display: none;
  }
  #accueil .width .top {
    height: 63vw;
    min-height: initial;
  }
  #accueil .width .top img {
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: top;
    object-position: top;
  }
  #accueil .width .box {
    background-color: #abc7d6;
    display: block;
    width: 90%;
    height: auto;
    padding: 50px 5%;
    margin: -40px auto 0 auto;
    position: relative;
    z-index: 5;
    left: 0;
  }
  #accueil .width .box h1 {
    text-align: center;
    font-size: 52px;
    max-width: initial;
  }
  #accueil .width .box .icons {
    margin-left: initial;
  }
  #accueil .width .box .icons ul {
    margin-left: initial;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  #accueil .width .box .icons ul li {
    width: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  #accueil .width .box .icons ul li:before {
    transform: initial;
    left: initial;
    margin-left: -60px;
  }
  #accueil .width .box .icons ul li span {
    text-align: center;
  }
  #contact {
    padding-bottom: 0px;
  }
  #contact .width {
    flex-direction: column;
  }
  #contact .width .left {
    width: 100%;
  }
  #contact .width .left .title {
    margin-left: 0;
  }
  #contact .width .left .title::before {
    height: 1px;
  }
  #contact .width .left form {
    margin-bottom: var(--padding-100);
    flex-direction: column;
  }
  #contact .width .left form .wrapper {
    width: 100%;
  }
  #contact .width .left form .form-flex {
    width: 100%;
  }
  #contact .width .left form .form-flex input:not([type="submit"]) {
    max-width: none;
  }
  #contact .width .left form .interesse,
  #contact .width .left form .appartements,
  #contact .width .left form .en,
  #contact .width .left form .besoin {
    max-width: none;
    padding-left: 0;
  }
  #contact .width .left form .interesse *,
  #contact .width .left form .appartements *,
  #contact .width .left form .en *,
  #contact .width .left form .besoin * {
    margin-left: 0;
    margin-right: auto;
    text-align: center;
  }
  #contact .width .left form #submit {
    margin-left: auto;
    margin-right: auto;
  }
  #contact .width .right {
    width: -moz-max-content;
    width: max-content;
  }
  #contact .width .right .title {
    margin-left: 0;
    text-align: center;
  }
  #contact .width .right .title a {
    text-align: center;
  }
  #contact .width .right .title span {
    width: -moz-max-content;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
  }
  #contact .width .right .title::before {
    display: none;
  }
  footer .width {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  footer .width .center {
    width: 100%;
  }
  footer .width .left {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
  }
  footer .width .left a {
    width: auto;
  }
  footer .width * {
    text-align: center;
  }
  footer .width .right .top .acteurs {
    flex-direction: column;
    gap: 0;
  }
  footer .width .right .top .acteurs .acteur:last-of-type * {
    text-align: center;
  }

  footer .width .right .top .acteurs .acteur span,
  footer .width .right .top .acteurs .acteur a {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 768px) {
  #contact .width .left form .interesse .checkboxes,
  #contact .width .left form .appartements .checkboxes,
  #contact .width .left form .en .checkboxes,
  #contact .width .left form .besoin .checkboxes {
    flex-wrap: wrap;
  }

  #contact .acteurs h2 {
    margin-bottom: 50px;
  }

  #contact .acteurs {
    padding-top: 20px;
    flex-wrap: wrap;
  }
  #contact .acteurs > div {
    margin-bottom: 50px;
    width: 100%;
  }
  footer .width {
    flex-direction: column;
  }
  footer .width .right .top .acteurs {
    justify-content: center;
  }
  footer .width .right .top .acteurs .acteur a {
    margin-bottom: 16px;
    margin-top: 16px;
  }
  footer .width .right .bottom {
    width: 100%;
    text-align: center;
  }
  footer .width .right .bottom p {
    text-align: center;
  }
}
@media only screen and (max-width: 650px) {
  header .width .logo {
    height: 50px;
  }
  header .width .timer .data-counter .item .value {
    font-size: 16px;
    margin-bottom: 0;
    padding: 25px;
  }
  header .width .timer .data-counter .item .unit {
    font-size: 13px;
  }
  header .width .timer .data-counter .item .value:after {
    border: 1px solid #abc7d6;
    width: 50px;
    height: 50px;
  }
  #accueil .width .box h1 {
    font-size: 42px;
  }
  #accueil .width .box .icons ul li span {
    font-size: 16px;
    margin-left: 0%;
  }
  footer .width .left {
    width: 80%;
  }

  footer .width .right {
    width: 100%;
    text-align: center;
  }

  footer .width .right .top {
    min-width: 100%;
    text-align: center;
  }

  footer .width .right .top .acteurs {
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }

  footer .width .right .top .acteurs .acteur {
    max-width: initial;
    width: 100%;
  }

  footer .width .right .top .acteurs .acteur a {
    margin: 0 auto;
  }

  #contact .acteurs .wrapper:first-of-type {
    margin-bottom: 0px;
  }
}
@media only screen and (max-width: 500px) {
  header .width {
    justify-content: center;
    flex-direction: column;
  }
  header .width .logo {
    order: -1;
    height: 80px;
    margin-bottom: 20px;
  }
  #accueil .width .box .icons ul {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #accueil .width .box .icons ul li {
    width: 100%;
  }
  #accueil .width .box h1 {
    font-size: 35px;
  }

    #contact .width .left form .interesse *, #contact .width .left form .appartements *, #contact .width .left form .en *, #contact .width .left form .besoin * {
        margin-left: 0;
        margin-right: initial;
        text-align: center;
    }


} /*# sourceMappingURL=style.css.map */
