@charset "UTF-8";
/*Theme Name: avp
Theme URI: https://atelier-vert-pomme.com/
Author: avp

Description: avp theme.
Version: 1.0
Requires at least: 5.2
Tested up to: 6.2
Requires PHP: 7.4
*/
@font-face {
  font-family: "agenda";
  src: url(fonts/ufonts.com_agenda-light.ttf);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  scroll-padding-top: 180px;
}

body {
  max-width: 1920px;
  margin: auto;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
  height: 100%;
  background-color: #fdfcf5;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 100%;
  margin: 0;
  padding: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  font-family: "agenda";
  color: #c5e2eb;
}

#succes {
  z-index: 9999;
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: fixed;
  width: 100%;
  height: 100%;
  margin-top: 75px;
  background-color: #3f9ebd;
  -webkit-transition-duration: 0.6s;
  transition-duration: 0.6s;
}

#succes > div {
  text-align: center;
  font-size: 24px;
  z-index: 1;
  color: #2e2c28;
  padding: 60px;
  line-height: 1.5;
  position: relative;
}

#succes.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#succes.hidden {
  visibility: hidden !important;
  opacity: 0 !important;
}

.succes {
  margin-top: 80px;
  padding: 50px;
  min-height: 50vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.succes h2 {
  font-size: 36px;
  color: #1c4755;
}

.succes p {
  font-size: 22px;
  color: #1c4755;
}

.succes .icon-sent {
  margin-bottom: 40px;
}

.succes .icon-sent img {
  background-color: #1c4755;
  color: #fff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
}

.close {
  position: absolute;
  cursor: pointer;
  top: 0;
  right: 0;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  font-size: 40px;
  color: #2e2c28;
  z-index: 9999;
}

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

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

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

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

.width {
  padding-left: 10%;
  padding-right: 10%;
  margin: 0 auto;
  width: 100%;
}

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

a,
p,
li {
  font-style: normal;
  font-weight: 400;
}

a {
  text-decoration: none;
  display: inline-block;
}

span {
  display: inline-block;
}

p {
  line-height: 27px;
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 16px;
}

h1,
h2,
h3 {
  font-family: "agenda";
  font-style: normal;
}

h2 {
  font-weight: 600;
  font-size: 43px;
  line-height: 53px;
  margin-bottom: 20px;
}

.btn {
  padding: 15px 40px 15px 25px;
  font-weight: 400;
  font-size: 18px;
  margin-top: 30px;
  cursor: pointer;
  font-family: "agenda";
  background-color: #3f9ebd;
  border: 1px solid #3f9ebd;
  color: #2e2c28;
  position: relative;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.btn:hover {
  background-color: transparent;
  color: #3f9ebd;
}

.btn span {
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -25px;
  width: 46px;
  z-index: 99;
  opacity: 1;
  -webkit-animation: moveArrow 0.6s linear infinite alternate;
  animation: moveArrow 0.6s linear infinite alternate;
}

.btn span img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.btn-black {
  background-color: #2e2c28;
  color: #f9f0dc;
  border: 1px solid #2e2c28;
}

.btn-black:hover {
  background-color: transparent;
  color: #2e2c28;
}

@-webkit-keyframes moveArrow {
  from {
    right: -25px;
  }
  to {
    right: -28px;
  }
}

@keyframes moveArrow {
  from {
    right: -25px;
  }
  to {
    right: -30px;
  }
}

#menu-btn {
  display: none;
}

header {
  position: fixed;
  z-index: 101;
  top: 0;
  left: 0;
  -webkit-transition-duration: 0.6s;
  transition-duration: 0.6s;
  height: 120px;
  width: 100vw;
  background: #1c4755;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

header .width {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

header .width .logo {
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  width: 120px;
}

header .width .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

header .width .logo-immocloud {
  width: 190px;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

header .width nav.menu {
  width: 100%;
  margin: 0 auto;
}

header .width nav.menu ul.menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  list-style: none;
  width: 80%;
  margin: 0 auto;
}

header .width nav.menu ul.menu li a {
  color: #c5e2eb;
  font-size: 16px;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

header .width nav.menu ul.menu li a:hover {
  color: #3f9ebd;
  border-bottom: 1px solid #3f9ebd;
}

header.active {
  height: 80px;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

header.active .width .menu li a {
  font-size: 16px;
}

header.active .width .logo {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  width: 100px;
}

header.active .width .logo img {
  height: 100%;
  width: 100%;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  -o-object-fit: contain;
  object-fit: contain;
}

header.active .width .logo-immocloud {
  width: 150px;
}

.title span {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  color: #c5e2eb;
  opacity: 0.4;
  margin-bottom: 10px;
}

.title h2 {
  position: relative;
}

.title h2:after {
  position: absolute;
  content: "";
  height: 2px;
  bottom: -10px;
  background-color: #1c4755;
}

.main {
  height: 100vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.main .slider {
  height: 100vh;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.main .slider .slider-container {
  height: 100%;
}

.main .slider .slider-container .mySlides {
  display: none;
  -webkit-transition: all 1s linear;
  transition: all 1s linear;
}

.main .slider .slider-container img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.main .slider .slider-numbers {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 5%;
  z-index: 44;
}

.main .slider .slider-numbers div span {
  display: inline-block;
  margin-left: 0.5em;
  margin-right: 0.5em;
  width: 20px;
  height: 20px;
  border: 1px solid #1c4755;
  border-radius: 50%;
}

.main .slider .slider-numbers div span:after {
  display: none;
}

.main .slider .slider-numbers div span.active-dot {
  background-color: #3f9ebd;
  border: 1px solid #3f9ebd;
}

.main .slider-controlers {
  cursor: pointer;
  position: absolute;
  left: 0%;
  top: 50%;
  z-index: 44;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.main .slider-controlers .slider-arrows {
  width: 100vw;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.main .slider-controlers .slider-arrows p {
  font-size: 4rem;
}

.main .slider-controlers .slider-arrows img {
  width: 50px;
  height: 100%;
}

.main .dot {
  display: none;
}

.main .dot-active {
  display: inline-block;
}

.icons {
  background-color: #c5e2eb;
  margin-bottom: 150px;
}

.icons .width {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 44;
}

.icons .width > div {
  width: 20%;
  padding: 130px 0;
  text-align: center;
}

.icons .width > div img {
  opacity: 0.8;
  height: 65px;
  width: auto;
  margin-bottom: 22px;
}

.icons .width > div p {
  margin-bottom: initial;
  color: #1c4755;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 100px;
}

.flex .img {
  height: 600px;
}

.flex .txt {
  width: 42%;
  background-color: #1c4755;
  position: relative;
}

.flex .txt p {
  text-align: justify;
}

.flex .txt .subtitle {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  color: #c5e2eb;
  opacity: 0.4;
}

.flex .txt:before {
  content: "";
  position: absolute;
  background-color: #1c4755;
  height: 100%;
  width: 100%;
  z-index: -1;
}

.flex .txt h2 {
  position: relative;
}

.flex .txt h2:after {
  position: absolute;
  content: "";
  width: 200%;
  height: 2px;
  bottom: -10px;
  left: -20px;
  background-color: #3f9ebd;
}

.flex1 {
  padding-right: 11%;
}

.flex1 .img {
  width: 56%;
}

.flex1 .txt {
  padding: 120px;
}

.flex1 .txt:before {
  top: 0;
  left: -80%;
}

.flex2 {
  padding-left: 11%;
}

.flex2 .img {
  width: 60%;
}

.flex2 .txt {
  padding: 100px 120px;
}

.flex2 .txt:before {
  content: "";
  top: 0;
  right: -80%;
}

.flex2 .txt h2:after {
  left: -100%;
}

.flex-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 100px;
}

#distances.flex2 .txt {
  width: 100%;
}

#distances.flex2 .txt:before {
  display: none;
}

#distances.flex2 .txt h2:after {
  width: 130%;
}

#distances--old .distances {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

#distances--old .distances > div {
  width: 33%;
  margin-right: 5rem;
}

#distances--old .distances > div > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 70px;
}

#distances--old .distances > div > div p {
  margin-bottom: initial;
}

#distances--old .distances > div.icon > div img {
  width: 50px;
  margin-right: 10px;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

#distances .txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

#distances .txt .distances {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

#distances .txt .distances:first-child {
  width: 50%;
}

#distances .txt .distances:last-child {
  width: 35%;
  margin-top: 60px;
}

#distances .txt .distances .distance-title {
  margin: 40px 0;
}

#distances .txt .distances .icon1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#distances .txt .distances .icon1 > div {
  width: 45%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin: 30px 10px 30px 0;
}

#distances .txt .distances .icon1 > div img {
  width: 55px;
  height: 55px;
  margin-right: 10px;
  -o-object-fit: contain;
  object-fit: contain;
}

#distances .txt .distances .icon1 > div p {
  font-size: 16px;
  text-align: left;
  line-height: 20px;
  margin-bottom: initial;
}

#distances .txt .distances .icon1 > div p b {
  display: block;
}

#distances .txt .distances .icon2 > div {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-bottom: 40px;
  position: relative;
}

#distances .txt .distances .icon2 > div:after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: 0;
  width: 100%;
  height: 2px;
  background-color: #3f9ebd;
}

#distances .txt .distances .icon2 > div:last-child p {
  border-bottom: none;
}

#distances .txt .distances .icon2 > div img {
  width: 45px;
  margin-right: 20px;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

#distances .txt .distances .icon2 > div p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: initial;
  line-height: initial;
  width: 100%;
}

#distances .txt .distances .icon2 > div p span {
  display: block;
  color: #c5e2eb;
  text-transform: initial;
  opacity: 1;
  font-size: 16px;
}

#distances .txt .distances-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#distances .txt .distances-container .icon2 {
  width: 40%;
}

#distances .txt .distances-container .icon2 > div {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-bottom: 40px;
  position: relative;
}

#distances .txt .distances-container .icon2 > div:after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: 0;
  width: 100%;
  height: 2px;
  background-color: #3f9ebd;
}

#distances .txt .distances-container .icon2 > div:last-child p {
  border-bottom: none;
}

#distances .txt .distances-container .icon2 > div img {
  width: 45px;
  margin-right: 20px;
  height: auto;
  -webkit-filter: contrast(0) brightness(12);
  filter: contrast(0) brightness(12);
  -o-object-fit: contain;
  object-fit: contain;
}

#distances .txt .distances-container .icon2 > div p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: initial;
  line-height: initial;
  width: 100%;
}

#distances .txt .distances-container .icon2 > div p span {
  display: block;
  color: #c5e2eb;
  text-transform: initial;
  opacity: 1;
  font-size: 16px;
}

.fullImg {
  margin-bottom: 100px;
}

.googlemap {
  height: 70vh;
  margin-bottom: 100px;
}

#architecte .txt {
  padding: 60px 120px;
}

/*  GALERIE **********************************/
#galerie {
  margin-bottom: 150px;
}

#galerie .title {
  margin-bottom: 50px;
}

#galerie .title span,
#galerie .title h2 {
  color: #1c4755;
}

#galerie .title h2:after {
  width: 40%;
  left: -20%;
}

#galerie .img-container {
  position: relative;
}

#galerie .img-container:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 80%;
  background-color: #3f9ebd4f;
  height: 103%;
  z-index: -1;
}

#galerie .img-container .gallery-flex {
  margin-bottom: 30px;
}

#galerie .img-container .gallery-flex > div {
  overflow: hidden;
}

#galerie .img-container .gallery-flex > div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  cursor: pointer;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
}

#galerie .img-container .gallery-flex > div img:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

#galerie .img-container .gallery-flex .gallery-flex-full {
  width: 100%;
  height: 350px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 2.5em;
}

#galerie .img-container .gallery-flex .gallery-flex-full > div {
  width: 50%;
}

#galerie .img-container .gallery-flex .gallery-flex-1 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 30px;
}

#galerie .img-container .gallery-flex .gallery-flex-1 > div {
  width: 49%;
}

#galerie .img-container .gallery-flex .gallery-flex-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 30px;
}

#galerie .img-container .gallery-flex .gallery-flex-2 > div {
  width: 32%;
  overflow: hidden;
}

/*  PLANS **********************************/
#plans {
  background-color: #c5e2eb;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-top: 100px;
  padding-bottom: 100px;
}
#plans .wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  display: flex;
}

#plans .logos {
  width: 200px;
  height: auto;
  margin: 0 auto 50px auto;
}

#plans table {
  width: 100%;
  text-align: left;
  color: #2e2c28;
}

#plans table tr:nth-child(odd) {
  background-color: #1c4755;
}

#plans table tr:nth-child(odd) th,
#plans table tr:nth-child(odd) td {
  color: #c5e2eb;
}

#plans table tr:first-child {
  background-color: #1c4755;
}

#plans table tr:first-child th,
#plans table tr:first-child td {
  color: #c5e2eb;
}

#plans table tr th {
  padding: 0.5em;
  font-size: 18px;
  width: 13%;
  color: #1c4755;
}

#plans table tr td {
  text-align: center;
  padding: 0.5em;
  font-size: 16px;
  color: #1c4755;
}

#plans table tr td span {
  border-radius: 50%;
  width: 15px;
  height: 15px;
}

#plans .d span {
  background-color: #85c495;
}

#plans .r span {
  background-color: #f8e697;
}

#plans .v span {
  background-color: #e3575e;
}

#plans .legende {
  width: 100%;
  text-align: left;
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

#plans .legende > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-right: 50px;
}

#plans .legende > div p {
  margin-bottom: initial;
  margin-left: 10px;
  color: #1c4755;
}

#plans .legende > div span {
  border-radius: 50%;
  width: 15px;
  height: 15px;
}

#plans .table-data {
  cursor: pointer;
  -webkit-transition: all 0.4s linear;
  transition: all 0.4s linear;
  font-weight: bold;
}

#plans .table-data:hover {
  color: white;
  text-decoration: underline;
}

/*  FINANCIAL PROCESS **********************************/
#financement {
  padding-bottom: 150px;
}

#financement .title {
  margin-bottom: 50px;
}

#financement .title span,
#financement .title h2 {
  color: #1c4755;
}

#financement .title h2:after {
  width: 60%;
  left: -20%;
}

#financement .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

#financement .container > div {
  width: 20%;
  margin: 20px 40px 0px 0;
}

/* fullscreen ***********************************/
#fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: #2e2c28;
  -webkit-transition-duration: 1s;
  transition-duration: 1s;
  opacity: 0;
  visibility: hidden;
}

#fullscreen * {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

#fullscreen > div > div {
  opacity: 0;
  visibility: hidden;
}

#fullscreen .full-img-wrap {
  position: relative;
  padding: 10px;
}

#fullscreen #full-img {
  background-position: center;
  background-size: cover;
  -webkit-transform: scale(0.7);
  transform: scale(0.7);
}

#fullscreen .close {
  position: absolute;
  top: 0px;
  right: 1%;
  background: none;
  border: none;
  width: 50px;
  height: 50px;
  padding: 0 10px;
  font-weight: bold;
  font-size: 20px;
  color: #fdfcf5;
  display: none;
  cursor: pointer;
}

#fullscreen.active {
  opacity: 1;
  visibility: visible;
}

#fullscreen.active > div > div {
  opacity: 1;
  visibility: visible;
  -webkit-transition-duration: 1s;
  transition-duration: 1s;
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
}

#fullscreen.active #full-img {
  -webkit-transform: scale(1);
  transform: scale(1);
}

#fullscreen.active .full-border {
  -webkit-transform: scale(1);
  transform: scale(1);
}

#fullscreen .full-border {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  position: absolute;
  padding: 0;
  left: 0;
  top: 0;
}

#fullscreen .nav-btn {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 60px;
  height: 60px;
  font-size: 32px;
  color: #fdfcf5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
}

#fullscreen .next {
  right: 0;
}

#fullscreen .prev {
  left: 0;
}

#contact {
  background-color: #1c4755;
  padding-top: 100px;
  padding-bottom: 100px;
}

#contact .width .client-details {
  text-align: center;
}

#contact .width .client-details .img-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 30px;
}

#contact .width .client-details .img-box .img {
  width: 250px;
  height: 250px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

#contact .width .client-details .img-box .img:after {
  content: "David Andereggen, Brevet Fédéral, Co-fondateur";
  position: absolute;
  top: 85%;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  left: 50%;
  width: 100%;
  padding: 10px;
  overflow: hidden;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 15px;
  background-color: #c5e2eb;
  color: #1c4755;
  opacity: 0;
}

#contact .width .client-details .img-box .img:hover:after {
  opacity: 1;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

#contact .width .client-details .img-box .img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-position: top;
  object-position: top;
}

#contact .width .client-details .img-box .txt p,
#contact .width .client-details .img-box .txt a {
  font-family: "agenda";
  font-size: 18px;
  text-align: left;
  color: #c5e2eb;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

#contact .width .client-details .img-box .txt p:hover,
#contact .width .client-details .img-box .txt a:hover {
  color: #3f9ebd;
}

#contact .width .client-details h3 {
  text-transform: uppercase;
  font-family: "agenda";
  font-weight: normal;
  max-width: 70ch;
  font-size: 26px;
  margin: 20px auto 40px auto;
}

#contact .width hr {
  width: 70%;
  margin: 0 auto;
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #3f9ebd;
}

#contact .width .form {
  width: 70%;
  margin: 50px auto;
}

#contact .width .form h2 {
  text-transform: uppercase;
  text-align: center;
}

#contact .width .form form {
  padding-top: 50px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#contact .width .form form > div {
  background-color: #3f9ebd57;
  margin-bottom: 20px;
  width: 49%;
}

#contact .width .form form > div.textarea {
  width: 100%;
}

#contact .width .form form > div input,
#contact .width .form form > div textarea {
  background-color: #23596b;
  border: none;
  width: 100%;
  outline: none;
  padding: 13px 20px;
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  color: #c5e2eb;
  opacity: 0.9;
}

#contact .width .form form > div ::-webkit-input-placeholder {
  color: #c5e2eb;
  opacity: 1;
}

#contact .width .form form > div :-ms-input-placeholder {
  color: #c5e2eb;
  opacity: 1;
}

#contact .width .form form > div ::-ms-input-placeholder {
  color: #c5e2eb;
  opacity: 1;
}

#contact .width .form form > div ::placeholder {
  color: #c5e2eb;
  opacity: 1;
}

#contact .width .form form > div textarea {
  height: 220px;
}

#contact .width .form form .btn {
  background-color: #3f9ebd57;
  border: 1px solid #3f9ebd;
  color: #c5e2eb;
}

#contact .width .form form .btn:hover {
  background-color: transparent !important;
  color: #3f9ebd;
}

footer {
  background-color: #3f9ebd;
  padding-top: 60px;
  padding-bottom: 3px;
}

footer .details-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: flex-start;
  margin: 0 auto;
  width: 80%;
  text-align: center;
}

footer .details-contact .img {
  width: 30%;
}

footer .details-contact .img img {
  width: 200px;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

footer .details-contact .img .logo-id {
  width: 250px;
  margin-top: 30px;
}

footer .details-contact .txt {
  width: 30%;
  position: relative;
  z-index: 5;
  margin-top: 40px;
}

footer .details-contact .txt p,
footer .details-contact .txt a {
  color: #c5e2eb;
  font-size: 16px;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

footer .details-contact .txt a:hover {
  color: #1c4755;
}

footer .width {
  margin-top: 50px;
}

footer .width nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  list-style: none;
}

footer .width nav ul li {
  padding: 0 20px;
}

footer .width nav ul li a {
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  color: #c5e2eb;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

footer .width nav ul li a:hover {
  color: #1c4755;
}

footer .avp {
  padding-top: 30px;
  text-align: center;
}

footer .avp p,
footer .avp a {
  font-weight: 300;
  line-height: initial;
  font-size: 13px;
  color: #c5e2eb;
}

footer .avp a {
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

footer .avp a:hover {
  color: #1c4755;
}
footer .txt {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#mentions-legales .width {
  padding-top: 150px;
  padding-bottom: 150px;
}

#mentions-legales .width h2 {
  font-size: 34px;
  margin-bottom: 20px;
}

#mentions-legales .width p {
  font-size: 18px;
}

@media only screen and (max-width: 1700px) {
  .width {
    padding-left: 7%;
    padding-right: 7%;
  }
  header .width nav.menu ul.menu {
    width: 90%;
  }
  .flex1 .txt {
    padding: 120px 120px 120px 80px;
  }
  .flex2 .txt {
    padding: 120px 80px 120px 100px;
  }
  #architecte .txt {
    padding: 100px 80px;
  }
  #plans-et-prix .facade #prix {
    margin-top: 50px;
  }
  #plans-et-prix .facade .table .btn-container {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 20px;
  }
  #plans-et-prix .facade .table .btn-container .btn {
    width: 45%;
    margin: 10px;
  }
  #contact .width .details {
    width: 45%;
  }
}

@media only screen and (max-width: 1302px) {
  h2 {
    font-size: 36px;
    line-height: 43px;
  }
  p {
    margin-bottom: 15px;
  }
  .btn {
    font-size: 18px;
    margin-top: 20px;
  }
  .width {
    padding-left: 11%;
    padding-right: 11%;
  }
  #distances:after {
    width: 200px;
    right: 13%;
    bottom: 0%;
  }
  header {
    height: 80px;
  }
  header.active .width .logo {
    width: 75px;
  }
  header.active .width .logo-immocloud {
    width: 120px;
  }
  header .width .logo {
    position: relative;
    z-index: 9999;
    width: 75px;
  }
  header .width .logo-immocloud {
    width: 120px;
  }
  header .width .menu {
    display: none;
  }
  header .width .menu.active {
    right: 0;
    -webkit-transition: all 0.6s linear;
    transition: all 0.6s linear;
  }
  header .width .menu {
    position: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: #1c4755;
    padding: 15px 0px;
    width: 100%;
    height: 100vh;
    right: -100%;
    -webkit-transition-duration: 0.6s;
    transition-duration: 0.6s;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  header .width .menu li a {
    font-size: 18px;
    margin-bottom: 1.5em;
  }
  header .width nav.menu ul.menu {
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  #menu-btn {
    display: block;
    background-color: transparent;
    position: fixed;
    cursor: pointer;
    z-index: 999;
    height: 50px;
    border: none;
    width: 50px;
    right: 50%;
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
    top: 15px;
    padding: 0 5px;
  }
  #menu-btn span,
  #menu-btn span::before,
  #menu-btn span::after {
    content: "";
    width: 40px;
    height: 1px;
    display: block;
    position: absolute;
    background-color: #3f9ebd;
    -webkit-transition: all 0.4s linear;
    transition: all 0.4s linear;
  }
  #menu-btn span::before {
    top: 10px;
  }
  #menu-btn span::after {
    bottom: 10px;
  }
  .icons {
    margin-bottom: 100px;
  }
  .icons .width {
    padding-left: 5%;
    padding-right: 5%;
  }
  .icons > div img {
    height: 50px;
  }
  .flex1 .txt {
    padding: 100px 80px 100px 60px;
  }
  .flex2 .txt {
    padding: 120px 60px 120px 80px;
  }
  .fullImg {
    margin-bottom: 100px;
    height: 70vh;
  }
  #architecte .txt {
    padding: 100px 60px;
  }
  #plans table tr th {
    font-size: 15px;
  }
  #plans table tr td {
    font-size: 14px;
  }
  #financement {
    padding-bottom: 100px;
  }
  #financement .container {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  #financement .container > div {
    width: 25%;
    padding: 10px;
    margin: 20px;
  }
  #fullscreen .nav-btn {
    top: initial;
  }
  #contact .width .client-details h3 {
    font-size: 22px;
  }
  #contact .width .form {
    width: 80%;
  }
  .details-contact {
    width: 80%;
  }

  footer .details-contact {
    width: 100%;
  }
}

@media only screen and (max-width: 1190px) {
  .icons .width > div {
    padding: 80px 0;
    width: 25%;
  }
  .icons .width > div img {
    height: 55px;
  }
  .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .flex .txt {
    width: 90%;
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .flex .img {
    width: 100%;
    height: 500px;
  }
  .flex2 {
    padding-left: 8%;
  }
  .flex2 .txt {
    padding: 100px 60px 100px 80px;
  }
  .flex2 .txt .distances > div {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .flex1 {
    padding-right: 8%;
  }
  .flex2 .txt .distances > div p {
    width: auto;
  }
  #distances--old .distances > div {
    width: 50%;
    margin-right: 10px;
  }
  #distances .txt {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  #distances .txt .distances:first-child,
  #distances .txt .distances:last-child {
    width: 100%;
  }
  #distances .txt .distances .icon2 > div:after {
    width: 100%;
  }
  #plans-et-prix .facade {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  #plans-et-prix .facade #prix,
  #plans-et-prix .facade #facade {
    width: 100%;
  }
  #plans-et-prix .facade #facade {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    margin-bottom: 100px;
  }
  #contact .width .client-details .img-box .img {
    width: 200px;
    height: 200px;
  }
  #contact .width .client-details h3 {
    font-size: 20px;
  }
  #contact .width .form {
    width: 100%;
  }
  #contact .width .form .img img {
    width: 200px;
  }
  #plans {
    -webkit-box-pack: initial;
    -ms-flex-pack: initial;
    justify-content: initial;
  }
  .details-contact {
    width: 100%;
  }
  .details-contact .img img {
    width: 200px;
  }

  footer .details-contact {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  footer .details-contact .txt {
    width: 100%;
    margin-top: 30px;
  }
  footer .details-contact .img {
    width: 100%;
    margin-bottom: 30px;
  }

  footer .details-contact .img .logo-id {
    width: 250px;
    margin-top: 0px;
  }
  .distances-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  #distances .txt .distances-container .icon2 {
    width: 90%;
  }
}

@media only screen and (max-width: 850px) {
  #financement .container > div {
    width: 35%;
  }
  .icons .width > div {
    width: 30%;
  }
  .icons .width > div img {
    height: 45px;
  }
  #distances:after {
    width: 180px;
    right: 15%;
    bottom: initial;
    top: 30%;
  }
  #distances--old .distances {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  #distances--old .distances > div {
    width: 100%;
  }
  #distances--old .distances > div > div {
    height: 100px;
  }
  #plans .width {
    padding-left: 5%;
    padding-right: 5%;
  }
  .fullImg {
    height: 400px;
    min-height: initial;
  }
  #galerie {
    margin-bottom: 100px;
  }
  footer .details-contact {
    width: 100%;
  }
  footer .width nav {
    display: none;
  }
  footer .avp p,
  footer .avp a {
    font-size: 13px;
  }
}

@media only screen and (max-width: 650px) {
  #distances:after {
    display: none;
  }
  #mentions-legales .width {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  #mentions-legales .width h2 {
    font-size: 26px;
    margin-bottom: 20px;
  }
  #mentions-legales .width p {
    font-size: 16px;
  }
  .btn {
    font-size: 16px;
  }
  .icons .width {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 60px 0;
  }
  .icons .width > div {
    width: 35%;
    padding: 30px 0;
  }
  .flex .img {
    height: 230px;
  }
  .flex1 .txt {
    padding: 80px 60px;
  }
  .flex2 .txt {
    padding: 80px 60px;
  }
  #distances .txt .distances .icon1 > div {
    width: 100%;
    margin: 10px 10px 10px 0;
  }
  #distances .txt .distances .icon1 > div p {
    font-size: 15px;
  }
  #distances .txt .distances .icon2 div p span {
    font-size: 15px;
  }
  #distances .txt .distances-container .icon2 {
    width: 100%;
  }
  #distances .txt .distances-container .icon2 > div img {
    width: 35px;
    margin-right: 10px;
  }
  #distances .txt .distances-container .icon2 > div p span {
    font-size: 12px;
  }
  #distances.flex2 .txt {
    padding: 80px 40px;
  }
  #plans-et-prix .title h2:after {
    width: 70%;
  }
  #plans-et-prix .facade .lot-btn img {
    height: 30%;
  }
  #plans-et-prix .facade .lot-btn .button {
    font-size: 12px;
  }
  #plans-et-prix {
    padding-bottom: 100px;
  }
  #plans-et-prix .facade .lot-name span {
    font-size: 13px;
  }
  #plans-et-prix .facade #facade {
    margin-bottom: 50px;
    margin-top: -50px;
  }
  #plans {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  #plans .logos {
    width: 150px;
  }
  #plans table tr th,
  #plans table tr td {
    font-size: 14px;
  }
  #financement .title h2:after {
    width: 100%;
  }
  #financement .container > div {
    width: 40%;
    margin: 10px;
    padding: 5px;
  }
  #galerie {
    margin-bottom: 100px;
  }
  #architecte .txt {
    padding: 80px 40px;
  }
  #contact {
    padding-bottom: 50px;
  }
  #contact .width .client-details h3 {
    font-size: 16px;
    max-width: initial;
  }
  #contact .width .client-details .img-box .img {
    width: 130px;
    height: 130px;
    overflow: initial;
  }
  #contact .width .client-details .img-box .img:after {
    font-size: 13px;
  }
  #contact .width .client-details .img-box .txt p,
  #contact .width .client-details .img-box .txt a {
    font-size: 16px;
  }
  #contact .width .form form > div {
    width: 100%;
  }
  #contact .width .form form {
    padding-top: 20px;
  }
  footer {
    padding-top: 50px;
  }
  footer .details-contact {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  footer .details-contact .txt {
    width: 100%;
    margin-top: 30px;
  }
  footer .details-contact .img {
    width: 100%;
  }
  footer .width {
    display: none;
  }
  footer .avp {
    padding-top: 20px;
  }
}

@media only screen and (max-width: 500px) {
  .main {
    height: 450px;
  }
  .main .slider {
    height: 450px;
  }
  h2 {
    font-size: 34px;
    line-height: 40px;
  }
  p,
  a,
  li {
    font-size: 15px;
  }
  header.active .width .logo-bigger img {
    padding: 0px;
    height: 100%;
    width: 50px;
  }
  .flex {
    margin-bottom: 50px;
  }
  .flex img {
    height: 220px;
  }
  .flex1 .txt {
    padding: 60px 40px;
  }
  .flex2 .txt {
    padding: 60px 40px;
  }
  .flex2 .txt .distances > div p {
    font-size: 14px;
  }
  .icons .width > div {
    width: 43%;
  }
  .icons .width > div p {
    font-size: 15px;
  }
  #plans-et-prix.width {
    padding-left: 5%;
    padding-right: 5%;
  }
  #plans-et-prix .facade #facade {
    margin-bottom: 50px;
  }
  #financement .container > div {
    width: 60%;
  }
  #contact {
    padding-top: 60px;
  }
  #contact .width .client-details .img-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }
  #contact .width .client-details .img-box .img {
    width: 180px;
    height: 180px;
    margin-bottom: 20px;
  }
  #contact .width .client-details .img-box .txt p,
  #contact .width .client-details .img-box .txt a {
    text-align: center;
    font-size: 16px;
  }
  .details-contact .txt p,
  .details-contact .txt a {
    font-size: 16px;
  }
}

@media only screen and (max-width: 400px) {
  header .width .logo,
  header.active .width .logo {
    width: 65px;
  }
  header .width .logo-immocloud,
  header.active .width .logo-immocloud {
    width: 90px;
  }
  .main .slider .slider-numbers div span {
    width: 10px;
    height: 10px;
  }
  #distances.flex2 .txt {
    padding: 80px 15px;
  }
  #architecte .txt {
    padding: 60px 20px;
  }
  #plans-et-prix .facade .lot-name span {
    font-size: 11px;
  }
  #plans-et-prix .facade .lot-btn .button {
    font-size: 8px;
  }
  footer {
    padding-left: 5%;
    padding-right: 5%;
  }
}
/*# sourceMappingURL=style.css.map */
