@charset "UTF-8";
body {
  font-family: sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: #444;
}

.title {
  color: #e41612;
}

@font-face {
  font-family: "berkshires";
  src: url(../../assets/fonts/BerkshireSwash-Regular.ttf);
  font-display: swap;
}
@font-face {
  font-family: "roboto_slab";
  src: url(../../assets/fonts/RobotoSlab-VariableFont_wght.ttf);
  font-display: swap;
}
h1, h2, h3 {
  font-family: "berkshires";
  font-size: 38px;
  font-weight: 400;
  line-height: 100%;
  color: #0E1718;
  text-transform: capitalize;
}

p {
  font-family: "roboto_slab";
  font-size: 16px;
  font-weight: 300;
  line-height: 160%;
  color: #000000;
}

.head {
  width: 100vw;
  height: 60px;
  display: flex;
  flex-direction: column;
  background-color: rgba(224, 227, 228, 0.1254901961);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
}
.head--actif {
  height: 100vh;
  background-color: #e0e3e4;
}
.head--none {
  display: none;
}
.head__logo {
  width: 34px;
  height: 31px;
}
.head__sect {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 60px;
  padding: 10px 21px 10px 28px;
}
.head__title {
  font-family: "berkshires";
  font-size: 12px;
  font-weight: 400;
  text-transform: capitalize;
}
.head__btn {
  width: 28px;
  height: 21px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-content: center;
  cursor: pointer;
}
.head__btn > span {
  width: 100%;
  height: 3px;
  border-radius: 2px;
  background-color: #000;
  transition: 0.2s;
}
.head__btn > span:nth-child(2) {
  width: 22px;
  margin: 0 0 0 3px;
}
.head__btn--actif > span {
  transition: 0.2s;
}
.head__btn--actif > span:nth-child(1) {
  transform: rotate(45deg) translateX(6px) translateY(6px);
}
.head__btn--actif > span:nth-child(2) {
  transform: scale(0);
}
.head__btn--actif > span:nth-child(3) {
  transform: rotate(-45deg) translateX(6px) translateY(-6px);
}
.head__nav {
  -webkit-animation: openNav ease 0.6s;
          animation: openNav ease 0.6s;
  height: 100%;
  margin: 51px 0 0 51px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.head__nav--none {
  display: none;
  transform: translateX(100vw);
  transition: 0.6s;
}
.head__el {
  font-family: "berkshires";
  font-size: 28px;
  font-weight: 400;
  text-transform: capitalize;
  margin: 16px 0;
}
.head__el > a {
  color: rgba(0, 0, 0, 0.4509803922);
}
.head__el > a:hover, .head__el > a:checked {
  color: #000000;
}
.head__el > a > svg {
  opacity: 0;
}
.head__el--actif > a {
  color: #000000;
}
.head__el--actif > a > svg {
  opacity: 1;
  margin: 0 0 0 8px;
}
.head__boxFoot {
  width: calc(100% + 51px);
  height: 106px;
  background-color: #617b81;
  padding: 30px 0;
  margin: 0 0 0 -51px;
}
.head__boxFoot > p {
  text-align: center;
  color: #ffffff;
  font-family: "berkshires";
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
}
.head__boxFoot > p:nth-child(2) {
  color: rgba(255, 255, 255, 0.5019607843);
  font-family: "roboto_slab";
  font-size: 16px;
  font-weight: 300;
}

@-webkit-keyframes openNav {
  0% {
    transform: translateX(100vw);
    opacity: 0;
  }
  100% {
    transform: translateX(0vw);
    opacity: 1;
  }
}

@keyframes openNav {
  0% {
    transform: translateX(100vw);
    opacity: 0;
  }
  100% {
    transform: translateX(0vw);
    opacity: 1;
  }
}
.main {
  width: 100vw;
  min-height: 100vh;
  padding: 60px 28px 0;
  position: relative;
  overflow-x: hidden;
}

.sect__first {
  min-height: 100vh;
  height: 100vh;
  width: 100%;
}
.sect__first--small {
  height: 60vh;
}
.sect__first--contact {
  min-height: auto;
  height: auto;
}
.sect__second {
  position: relative;
}
.sect__third {
  margin: 122px 0 168px;
  position: relative;
}

@media (min-width: 1100px) {
  .sect__first--chat {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .sect__second {
    margin: 160px 0;
    max-height: 350px;
    height: 100vh;
    width: 40vw;
    max-width: 420px;
    margin: 0 0 0 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 18px;
  }
  .sect__second > a {
    width: 100%;
    transform: translateX(0);
    margin: -18px 0 0 0;
  }
  .sect__second--big {
    width: 100vw;
    margin: 160px auto 90px;
    padding: 0 3vw;
    max-width: 1440px;
    max-height: 90vh;
  }
  .sect__second--row {
    display: flex;
    flex-direction: row;
    -moz-column-gap: 28px;
         column-gap: 28px;
    justify-content: space-around;
    align-items: flex-start;
    width: 100vw;
    height: 74vh;
    max-width: none;
    margin: 160px auto 90px;
    padding: 120px 3vw 0;
    max-height: none;
  }
  .sect__third {
    margin: 122px 0 168px;
    position: relative;
    padding: 0 3vw;
  }
  .sect__third--column {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .sect__third--contact {
    height: 800px;
  }
  .sect__boxPc {
    padding: 51px 0;
  }
  .sect__pcDisplay {
    display: flex;
    flex-direction: row;
    -moz-column-gap: 28px;
         column-gap: 28px;
    justify-content: space-around;
    margin: 122px 0;
  }
  .sect__four {
    padding: 0 3vw;
  }
}
.sect__img--big {
  border-radius: 12px;
  min-width: 314px;
  width: 83.8vw;
  min-height: 475px;
  height: 71.4vh;
  filter: saturate(10%);
  -o-object-fit: cover;
     object-fit: cover;
}
.sect__img--small {
  width: 189px;
  height: 281px;
  border-radius: 6px;
  margin: -277px 0 0 180px;
  position: -webkit-sticky;
  position: sticky;
  top: 120px;
  left: 60px;
  transition: 3s;
  z-index: 2;
  border: 6px solid rgba(247, 248, 249, 0.6);
}
.sect__img--carré {
  height: 256px;
  width: 265px;
  border-radius: 12px;
  filter: saturate(10%);
  -o-object-fit: cover;
     object-fit: cover;
}
.sect__img--center {
  margin: 28px 0% 28px 15%;
}
.sect__svgBg {
  position: absolute;
  top: 0;
  right: -28px;
  opacity: 0.8;
  z-index: -2;
}

@media (min-width: 1100px) {
  .sect__img--big {
    width: 100%;
    height: 85.4vh;
  }
  .sect__img--small {
    width: 300px;
    height: 381px;
    margin: -277px 0 0 180px;
    position: -webkit-sticky;
    position: sticky;
    top: 40px;
    right: 60px;
    border: 6px solid rgba(247, 248, 249, 0.2);
  }
  .sect__img--carré {
    height: 620px;
    width: 830px;
    margin: 0 auto 38px;
  }
  .sect__svgBg {
    position: absolute;
    top: 0;
    right: -28px;
    opacity: 0.8;
    z-index: -2;
    width: 60vw;
    max-height: 180vh;
  }
  .sect__svgBg--contact {
    height: 80vh;
    max-height: 80vh;
  }
}
.sect__title {
  font-size: 28px;
  text-align: right;
  text-transform: capitalize;
  line-height: 140%;
}
.sect__title--intro {
  line-height: 47px;
}
.sect__title--big {
  font-size: 38px;
  line-height: 90%;
  position: relative;
}
.sect__txt {
  max-width: 60ch;
}
.sect__txt--margin {
  margin: 21px 0 38px;
}
.sect__txt--color {
  font-weight: 600;
  color: #617B81;
}
.sect__linkB {
  color: #617b81;
  transition: 0.3s;
}
.sect__linkB:hover {
  transition: 0.3s;
  color: #263133;
}
.sect__link {
  font-family: "roboto_slab";
  font-weight: 800;
  font-size: 16px;
  line-height: 140%;
  display: inline-block;
  width: 248px;
  height: 43px;
  background-color: #E9F3F5;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  transform: translateX(25%);
  transition: 0.3s ease-in;
  position: relative;
}
.sect__link > span:nth-child(1) {
  position: absolute;
  top: 20px;
  left: 0;
}
.sect__link > span:nth-child(2) {
  position: absolute;
  top: -6px;
  right: 0;
  transform: rotate(175deg);
}
.sect__link:hover {
  background-color: #617B81;
  transition: 0.3s ease-out;
  color: #fff;
  font-weight: 300;
}
.sect__link:hover > span > svg > g > path {
  fill: #E9F3F5;
}
.sect__link:hover > span > svg > g > ellipse {
  fill: #fff;
}
.sect__link--clair {
  background-color: #F9F9F9;
  color: #000;
}
.sect__linkTxt {
  font-weight: 500;
  color: #617B81;
  text-decoration: underline;
}

@media (min-width: 1100px) {
  .sect__title {
    font-size: 38px;
  }
  .sect__title--big {
    font-size: 51px;
  }
  .sect__txt {
    font-size: 18px;
  }
  .sect__link {
    width: 90%;
    transform: translateX(5%);
  }
}
.sect__boxDecor {
  padding: 91px 0 38px 0;
  position: relative;
}
.sect__boxDecor--small {
  padding: 38px 0 38px 0;
}
.sect__boxDecor--small > svg:nth-child(1) {
  top: 12px;
}
.sect__boxDecor--small > svg:nth-child(2) {
  top: 12px;
}
.sect__boxDecor--small > svg:nth-child(3) {
  top: 68px;
}
.sect__patteMiniDecor {
  position: absolute;
}
.sect__patteMiniDecor:nth-child(1) {
  left: 0;
  top: 71px;
}
.sect__patteMiniDecor:nth-child(2) {
  left: 50px;
  top: 71px;
  transform: rotate(175deg);
}
.sect__patteMiniDecor:nth-child(3) {
  left: 0;
  top: 126px;
  transform: rotate(175deg);
}
.sect__decorSpan {
  position: absolute;
  left: 50%;
  font-size: 68px;
  color: rgba(0, 0, 0, 0.1882352941);
  z-index: 2;
}

@media (min-width: 1100px) {
  .sect__boxDecor {
    padding: 122px 0 51px 0;
    position: relative;
  }
  .sect__boxDecor > h2 {
    text-align: left;
    padding: 0 0 0 51px;
  }
  .sect__boxDecor--small {
    padding: 38px 0 38px 0;
    max-width: 60ch;
    width: 90%;
  }
  .sect__boxDecor--small > h1 {
    padding: 0;
  }
  .sect__boxDecor--small > svg:nth-child(1) {
    top: 12px;
    left: 10%;
  }
  .sect__boxDecor--small > svg:nth-child(2) {
    top: 12px;
    left: 0%;
  }
  .sect__boxDecor--small > svg:nth-child(3) {
    top: 68px;
    left: 0%;
  }
  .sect__boxDecor--introPapier {
    padding: 38px 0 38px 0;
    margin: 0;
    max-width: 94ch;
    width: 90%;
  }
  .sect__boxDecor--introPapier > h1 {
    padding: 0;
  }
  .sect__boxDecor--introPapier > svg:nth-child(1) {
    top: 12px;
    left: 10%;
  }
  .sect__boxDecor--introPapier > svg:nth-child(2) {
    top: 12px;
    left: 0%;
  }
  .sect__boxDecor--introPapier > svg:nth-child(3) {
    top: 68px;
    left: 0%;
  }
  .sect__patteMiniDecor {
    position: absolute;
  }
  .sect__patteMiniDecor:nth-child(1) {
    left: 0;
    top: 98px;
  }
  .sect__patteMiniDecor:nth-child(2) {
    left: 50px;
    top: 98px;
    transform: rotate(175deg);
  }
  .sect__patteMiniDecor:nth-child(3) {
    left: 0;
    top: 150px;
    transform: rotate(175deg);
  }
  .sect__decorSpan {
    left: 263px;
  }
}
.slider {
  margin: 0 12px 0 0;
  position: relative;
}
.slider:nth-child(1) {
  margin: 0 12px 0 28px;
}
.slider__list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  overflow: scroll;
}
.slider__img {
  width: 358px;
  height: 206px;
  border-radius: 10px;
  filter: saturate(10%);
}
.slider__txt {
  position: absolute;
  bottom: 8px;
  left: 10px;
  font-size: 14px;
}

.sect__sliderImg {
  height: 206px;
  width: 100vw;
  margin: 38px 0 0 -28px;
}

@media (min-width: 1100px) {
  .sect__sliderImg {
    width: 40%;
    min-width: 450px;
    height: 100%;
  }

  .slider {
    margin: 0 12px 0 0;
    position: relative;
  }
  .slider:nth-child(1) {
    margin: 0 12px 0 0px;
  }
  .slider__list {
    flex-direction: column;
    align-items: center;
  }
  .slider__img {
    width: 35vw;
    height: 206px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .slider__txt {
    position: absolute;
    bottom: 8px;
    left: 10px;
    font-size: 14px;
  }
}
.sect__groupeCouple {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: relative;
  height: 206px;
  width: 100%;
}
.sect__montagePhotoCat {
  width: 100%;
  height: 260px;
  display: grid;
  grid-template-columns: 183px 1fr 1fr;
  grid-template-rows: auto;
  grid-template-areas: "im1 im2 im3" "im1 im4 im4";
  margin: 21px 0 0 -28px;
}

.montagePhotoCat {
  border-radius: 6px;
  -o-object-fit: cover;
     object-fit: cover;
  filter: saturate(10%);
  margin: 3px;
}
.montagePhotoCat:nth-child(1) {
  height: 260px;
  width: 180px;
}
.montagePhotoCat:nth-child(2) {
  height: 163px;
  width: 23.5vw;
}
.montagePhotoCat:nth-child(3) {
  height: 163px;
  width: 23.5vw;
}
.montagePhotoCat:nth-child(4) {
  height: 93px;
  width: 50vw;
}

.groupeCouple {
  display: flex;
  position: relative;
}
.groupeCouple__img {
  border-radius: 10px;
  filter: saturate(10%);
  height: 100%;
  max-height: 206px;
  width: 152px;
  -o-object-fit: cover;
     object-fit: cover;
}
.groupeCouple__txt {
  font-weight: 600;
  font-size: 10px;
  color: rgba(0, 0, 0, 0.7882352941);
  line-height: 100%;
  margin: 4px 0 0 0;
}
.groupeCouple__title {
  font-weight: 400;
  font-size: 21px;
  font-family: "berkshires";
  color: #fafafa;
  line-height: 80%;
}
.groupeCouple__box {
  position: absolute;
  bottom: 8px;
  left: 8px;
}
.groupeCouple__deco {
  position: absolute;
  font-family: "berkshires";
  line-height: 100%;
  font-size: 120px;
  color: rgba(141, 164, 169, 0.6);
  top: 62px;
  left: 33vw;
  z-index: 2;
}

.im1 {
  grid-area: im1;
}

.im2 {
  grid-area: im2;
}

.im3 {
  grid-area: im3;
}

.im4 {
  grid-area: im4;
}

@media (min-width: 1100px) {
  .sect__groupeCouple {
    flex-direction: column;
    height: 300px;
    width: 35vw;
  }
  .sect__montagePhotoCat {
    width: 100%;
    height: 60vh;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin: 51px 0 0 -28px;
  }

  .groupeCouple {
    transform: translateY(40px);
  }
  .groupeCouple:nth-child(2) {
    transform: translateX(320px) translateY(-120px);
  }
  .groupeCouple__img {
    max-height: 380px;
    width: 274px;
  }
  .groupeCouple__txt {
    color: rgba(0, 0, 0, 0.7882352941);
    margin: 4px 0 0 0;
  }
  .groupeCouple__box {
    position: absolute;
    bottom: 8px;
    left: 8px;
  }
  .groupeCouple__deco {
    font-size: 180px;
    top: 222px;
    left: 241px;
  }

  .montagePhotoCat {
    border-radius: 6px;
    -o-object-fit: cover;
       object-fit: cover;
    filter: saturate(10%);
    margin: 3px;
  }
  .montagePhotoCat:nth-child(1) {
    height: 60vh;
    width: 33vw;
  }
  .montagePhotoCat:nth-child(2) {
    height: 30vh;
    width: 33vw;
  }
  .montagePhotoCat:nth-child(3) {
    height: 30vh;
    width: 23.5vw;
  }
  .montagePhotoCat:nth-child(4) {
    height: 30vh;
    width: 57vw;
  }
}
.cardCat__img {
  width: 180px;
  max-width: 180px;
  height: 271px;
  max-height: 271px;
  border-radius: 6px;
  -o-object-fit: cover;
     object-fit: cover;
  filter: saturate(10%);
}
.cardCat__box {
  display: flex;
  flex-direction: column;
  width: 180px;
  height: 271px;
  color: red;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.cardCat__box:hover > img {
  transition: 0.8s;
  filter: saturate(40%);
  transform: scale(1.2);
  border-radius: 12px;
}
.cardCat__overlayBox {
  width: 100vw;
  height: 100vh;
  position: absolute;
  z-index: 55;
  left: 0;
  border-radius: 20px;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
}
.cardCat__overlayBox--none {
  display: none;
}

.sect__cardCat {
  width: calc(100vw - 16px);
  margin: 21px 8px 0 -20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 28px;
}
.sect__boxSelcetCat {
  width: 100%;
  height: 32px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 28px 0 0 0;
}

.boxSelectCat__btn {
  border: none;
  margin: 0 16px 0 0;
  cursor: pointer;
  transition: 0.3s ease-out;
}
.boxSelectCat__btn:nth-child(2) {
  opacity: 50%;
  margin: 0;
}
.boxSelectCat__btn:hover {
  transition: 0.3s ease-in;
  transform: scale(0.6);
}

@media (min-width: 1100px) {
  .sect__cardCat {
    width: calc(100% - 12vw);
    justify-content: space-evenly;
  }
  .sect__boxSelcetCat {
    width: 120px;
    margin: 28px 0 0 60%;
  }
  .sect__boxSelcetCat--big {
    width: 80%;
    margin: 28px 0 0 0;
    display: flex;
    flex-direction: row;
  }

  .cardCat__img {
    width: 100%;
    max-width: none;
    height: 100%;
    max-height: none;
  }
  .cardCat__box {
    display: flex;
    flex-direction: column;
    width: 30vw;
    max-width: 480px;
    height: 380px;
    color: red;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
  }
  .cardCat__box:hover > img {
    transition: 0.8s;
    filter: saturate(40%);
    transform: scale(1.2);
    border-radius: 12px;
  }
  .cardCat__overlayBox {
    width: 100vw;
    height: 100vh;
    position: absolute;
    z-index: 55;
    left: 0;
    border-radius: 20px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
  }
  .cardCat__overlayBox--none {
    display: none;
  }
}
.sect__boxSelcetCat {
  display: flex;
  align-items: center;
}

.boxSelectCat__button {
  border: none;
  width: 73px;
  height: 32px;
  font-family: "roboto_slab";
  font-weight: 400;
  font-size: 16px;
  color: #000;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
}
.boxSelectCat__button--actif > svg {
  transform: rotate(180deg);
  transition: 0.6s;
}
.boxSelectCat__box {
  width: 100%;
  height: 192px;
  border-radius: 12px;
  background-color: rgba(224, 227, 228, 0.3764705882);
  margin: 8px 0;
  display: block;
  transition: 0.3s;
}
.boxSelectCat__box--dead {
  display: none;
  transition: 0.3s;
}
.boxSelectCat__row {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  margin: 6px 0 6px 18px;
}
.boxSelectCat__row:nth-child(1) {
  padding: 16px 0 0 0;
}
.boxSelectCat__row > div {
  margin: 0 0 0 5vw;
}
.boxSelectCat__row > div > label {
  padding: 3px;
  margin: 0 8px;
  font-weight: 200;
}
.boxSelectCat__row > div:nth-child(3) {
  margin: 0 0 0 1.5vw;
}
.boxSelectCat__inputBox {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.boxSelectCat__buttonSelect {
  height: 30px;
  width: 183px;
  border-radius: 8px;
  background-color: #8DA4A9;
  font-family: "roboto_slab";
  font-weight: 300;
  font-size: 16px;
  color: #fff;
  border: none;
  margin: 10px 0 0;
  transform: translateX(50%);
}

.overlay__img {
  width: 292px;
  height: 384.99px;
  margin: 21px auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  position: relative;
  z-index: 2;
}
.overlay__croix {
  position: absolute;
  right: 23px;
  top: 18px;
}

.foot {
  width: 100vw;
  height: 214px;
  background-color: #617b81;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 222px 0 0 0;
}
.foot__link {
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #E9F3F5;
  position: relative;
  margin: 28px 0 0 0;
}
.foot__link > svg {
  position: absolute;
  width: 34px;
  height: 34px;
  bottom: 0;
  left: 8px;
  z-index: 2;
}
.foot__title {
  font-size: 16px;
  font-family: "berkshires";
  color: #E9F3F5;
  line-height: 120%;
  text-transform: capitalize;
}
.foot__txt {
  font-weight: 300;
  color: rgba(255, 255, 255, 0.3764705882);
}

@media (min-width: 1100px) {
  .foot {
    margin: 380px 0 0 0;
  }
  .foot--small {
    margin: 160px 0 0 0;
  }
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}

@media (min-width: 1100px) {
  body {
    overflow-x: hidden;
  }
}

/*# sourceMappingURL=app.css.map*/