@charset "UTF-8";
@import url(https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap);
a,
a:hover {
  text-decoration: none;
}
#menu__toggle,
.menu__btn {
  right: 0;
  position: absolute;
}
.hidden,
.menu__box {
  visibility: hidden;
}
*,
.menu__box {
  box-sizing: border-box;
}
.menu__box,
.menu__item {
  transition-duration: 0.25s;
  color: #fff;
}
.footer__link:hover,
.link-underline,
.menu__item.active {
  text-decoration: underline;
}
* {
  margin: 0;
  padding: 0;
}
body {
  font-family: Poppins, sans-serif;
}
a {
  background-color: transparent;
  color: unset;
}
button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}
button {
  all: unset;
}
ol,
ul {
  padding-left: 0;
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 400;
}
fieldset {
  border: none;
  margin: 0;
  padding: 0;
}
.home ::-moz-placeholder {
  color: #fff;
  opacity: 1;
  font-size: 16px;
}
.home ::placeholder {
  color: #fff;
  opacity: 1;
  font-size: 16px;
}
.home :-ms-input-placeholder {
  color: #fff;
  opacity: 1;
  font-size: 16px;
}
.home ::-ms-input-placeholder {
  color: #fff;
  opacity: 1;
  font-size: 16px;
}
.bold__item {
  font-weight: 700;
}
.footer__text,
p {
  line-height: 1.5;
}
.header {
  padding: 20px 0 0 20px;
}
.menu__logo {
  display: inline-block;
}
@media screen and (min-width: 992px) {
  p {
    font-size: 18px;
  }
  .header {
    padding: 20px 0 0;
  }
  .menu__logo {
    width: 20%;
  }
}
.menu__logo--img {
  width: 100%;
  max-width: 350px;
  height: 90px;
  -o-object-fit: contain;
  object-fit: contain;
}
.banner,
.glide__img {
  -o-object-fit: cover;
}
#menu__toggle {
  opacity: 0;
  height: 100%;
  width: 100%;
}
#menu__toggle:checked ~ .menu__btn > span {
  transform: rotate(45deg);
}
#menu__toggle:checked ~ .menu__btn > span::before {
  top: 0;
  transform: rotate(0);
}
#menu__toggle:checked ~ .menu__btn > span::after {
  top: 0;
  transform: rotate(90deg);
}
#menu__toggle:checked ~ .menu__box {
  visibility: visible;
  left: 0;
}
.menu__btn {
  display: flex;
  align-items: center;
  top: 25px;
  width: 35px;
  height: 35px;
  cursor: pointer;
  z-index: 10;
}
.menu__btn > span,
.menu__btn > span::after,
.menu__btn > span::before {
  display: block;
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #2b2b2b;
  transition-duration: 0.25s;
}
.menu__btn > span::before {
  content: '';
  top: -12px;
}
.menu__btn > span::after {
  content: '';
  top: 12px;
}
.menu__box {
  display: block;
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 80px 0;
  list-style: none;
  box-shadow: 1px 0 6px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #374571;
  z-index: 5;
}
.nav {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .nav {
    margin-bottom: 30px;
  }
}
.hamburger-menu {
  position: relative;
  height: 35px;
  width: 35px;
  margin-right: 30px;
}
.menu__item {
  display: block;
  padding: 12px 24px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
}
.menu__item--contact {
  background-color: #2b2b2b;
  border-radius: 8px;
}
.form__container {
  position: absolute;
  top: 58%;
  left: 47%;
}
@media screen and (min-width: 992px) {
  .menu__logo--img {
    max-width: unset;
    width: 350px;
    height: 100px;
  }
  .menu__btn {
    display: none;
  }
  .menu__box {
    visibility: visible;
    left: 0;
    background-color: #fff;
    flex-direction: row;
    justify-content: space-between;
    padding: 0;
    position: unset;
    box-shadow: none;
    width: 50%;
  }
  .nav {
    justify-content: space-around;
    padding: 0 0 20px;
    margin-bottom: 0;
    align-items: center;
  }
  .hamburger-menu {
    display: flex;
    justify-content: center;
    width: 42%;
    height: auto;
  }
  .menu__item {
    color: #5f1717;
  }
  .menu__item:not(.menu__item--contact):hover {
    color: #5f1717;
    background-color: rgba(0, 0, 0, 0.02);
    border-radius: 10px;
    transition: 0.3s ease-in;
  }
  .menu__item--contact {
    background-color: #2b2b2b;
    color: #fff;
    padding: 5px 30px;
    font-weight: 500;
    border-radius: 5px;
  }
  .menu__item--contact:hover {
    filter: brightness(110%);
    transition: 0.3s ease-in;
  }
  .form__container {
    left: auto;
    top: 5%;
    right: 10%;
    height: 90%;
    width: 300px;
  }
}
@media screen and (min-width: 1200px) {
  .form__container {
    top: 14%;
  }
}
@media screen and (min-width: 1400px) {
  .form__container {
    top: 12%;
  }
}
@media screen and (min-width: 1600px) {
  .form__container {
    top: 9%;
  }
}
@media screen and (min-width: 1800px) {
  .form__container {
    top: 10%;
  }
}
.banner {
  height: 580px;
  width: calc(100% + 20px);
  object-fit: cover;
  margin-left: -20px;
  margin-right: -20px;
}
@media screen and (min-width: 992px) {
  .banner {
    filter: brightness(60%);
    width: 100%;
    color: #000;
    z-index: 1;
    margin-left: 0;
    margin-right: 0;
    aspect-ratio: 16/9;
    height: unset;
  }
  .banner__container {
    width: 100%;
  }
}
@media screen and (min-width: 992px) and (min-width: 1400px) {
  .banner {
    aspect-ratio: 20/9;
  }
}
@media screen and (min-width: 992px) and (min-width: 1600px) {
  .banner {
    aspect-ratio: 24/9;
  }
}
@media screen and (min-width: 992px) and (min-width: 1800px) {
  .banner {
    aspect-ratio: 26/9;
  }
}
@media screen and (min-width: 992px) and (min-width: 2000px) {
  .banner {
    aspect-ratio: 28/9;
  }
}
.banner__form {
  min-width: 330px;
  width: 60%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #443e3e;
  border-radius: 10px;
  padding: 20px 20px 0;
  border: 3px solid #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.banner__form__h1 {
  color: #5f1717;
  padding: 0 40px 20px 20px;
  font-size: 18px;
  font-weight: 700;
  text-align: left;
  width: 80%;
  min-width: 350px;
  z-index: 2;
}
.banner__form__input {
  cursor: pointer;
  padding: 10px;
  margin-bottom: 20px;
  border: 2px solid #fff;
  background-color: transparent;
  border-radius: 10px;
  color: #fff;
  width: 100%;
}
.banner__form__input:focus {
  box-shadow: 0 0 2pt 1pt #d3d3d3;
  outline-width: 0;
}
.banner__form__input--submit {
  background-color: #2b2b2b;
  font-size: 16px;
  font-weight: 500;
  border: none;
  margin: 30px 0;
  padding: 10px;
}
.banner__form__title {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}
.banner__form__section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.banner__form label {
  width: 90%;
}
.form-group .cta:hover {
  color: green;
  background-color: #fff;
  box-shadow: 0 0 3px #fff;
}
.form-group .banner__form__input--submit {
  color: #443e3e;
  border: none;
}
.cta {
  background-color: #fff;
  border: 1px solid #5f1717;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 16px;
  color: #5f1717;
  margin-top: 30px;
  text-align: center;
  font-weight: 500;
  cursor: pointer;
}
.cta:hover {
  box-shadow: 0 0 5px #5f1717;
  filter: brightness(110%);
  font-weight: 600;
  transition: 0.3s ease-out;
  color: #fff;
  background-color: #5f1717;
}
.cta__container {
  display: flex;
  justify-content: center;
}
.glide__img {
  width: 100%;
  height: 70vh;
  object-fit: cover;
  filter: brightness(70%);
}
.glide__arrow {
  color: #d2d2e7 !important;
  font-size: 1rem;
  font-weight: 700;
}
.blogPage__collapse,
.collapse {
  margin: 50px 0;
  padding: 0 20px;
}
@media screen and (min-width: 991px) {
  .blogPage__collapse,
  .collapse {
    padding: 0 15%;
  }
}
.blogPage__collapse__item,
.collapse__item {
  border: solid #f4f3f3;
  box-shadow: 0 0 1px #dcdbdb;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
  padding: 0 20px;
  margin-bottom: 20px;
  border-radius: 10px;
}
.card,
.complements__item {
  box-shadow: 0 0 5px #f0e6e6;
}
.blogPage__collapse__btn,
.collapse__btn {
  background: 0 0;
  border: none;
  color: #686262;
  width: 100%;
  font-weight: 700;
  font-size: 16px;
  text-align: left;
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.blogPage__collapse__btn:focus,
.blogPage__collapse__btn:hover,
.collapse__btn:focus,
.collapse__btn:hover {
  cursor: pointer;
  outline: 0;
}
.blogPage__collapse__icon,
.collapse__icon {
  transition: transform 0.3s ease-in-out;
  color: #2b2b2b;
}
.blogPage__collapse__content,
.collapse__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
  font-size: 16px !important;
  font-weight: 400;
}
.blogPage__collapse__inner p,
.collapse__inner p {
  padding-bottom: 20px;
  line-height: 1.4;
}
.blogPage__collapse__h6,
.collapse__h6 {
  font-weight: 700;
  font-size: 16px;
  padding-right: 10px;
}
.collapse__h3 {
  font-weight: 700;
  font-size: 16px;
}
.footer {
  margin-top: 20px;
  padding-bottom: 30px;
}
.footer__logosx2 {
  display: flex;
  justify-content: space-around;
  margin-bottom: 20px;
}
.footer__logo {
  width: 70px;
  height: 80px;
  -o-object-fit: cover;
  object-fit: cover;
}
.footer__logo--large {
  min-width: 210px;
}
.footer__bottom__container {
  margin-top: 20px;
  background-color: #28242c;
  color: #fff;
  display: flex;
  flex-direction: column;
  padding: 40px 20px 20px;
}
.footer__link {
  margin-bottom: 20px;
  color: #fff;
}
.card__title,
.comprendre__title,
.publics__title {
  font-weight: 700;
  color: #686262;
}
.footer__link:hover {
  color: azure;
}
.footer__img {
  -o-object-fit: contain;
  object-fit: contain;
  height: 90px;
  margin-top: 20px;
  margin-left: -20px;
}
.footer__img__container {
  padding-left: 20px;
}
.footer__img__container a {
  padding-bottom: 20px;
}
#backToTopBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 100px;
  z-index: 1000;
  padding: 10px 15px;
  background-color: #2b2b2b;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  opacity: 0.7;
  transition: opacity 0.4s;
}
#backToTopBtn:active,
#backToTopBtn:focus {
  opacity: 1;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.5);
}
#backToTopBtn:hover {
  opacity: 1;
}
.main {
  background-color: #fffefd;
}
.complements,
.comprendre {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.comprendre__title {
  font-size: 18px;
  margin-bottom: 30px;
  border-bottom: 3px solid #5f1717;
}
.comprendre__content {
  line-height: 1.4;
}
.comprendre__content__and__image__container,
.comprendre__content__container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.comprendre__image {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
}
.comprendre__image__container {
  width: 60%;
}
.card {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
  min-width: 300px;
  width: 100%;
  padding: 20px;
  background-color: #fff;
  border: 3px solid #f5f0f0;
  border-radius: 8px;
  text-align: center;
}
.complements__h2,
.publics__title {
  text-align: center;
  border-bottom: 3px solid #5f1717;
}
.card__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 50px 0;
}
.card__title {
  font-size: 25px;
  text-align: center;
  margin-bottom: 20px;
}
.card__content {
  text-align: center;
  line-height: 1.7;
}
.legal__main,
.privacy__main,
.publics {
  padding: 0 20px;
}
.publics__title {
  font-size: 18px;
  position: relative;
  display: table;
  margin: 0 auto;
}
.underline {
  position: absolute;
  bottom: -8px;
  left: 39%;
  height: 3px;
  width: 25%;
  background-color: #5f1717;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .banner__form {
    position: relative;
    width: 60%;
    left: 4%;
  }
  .banner__form__h1 {
    text-align: center;
    padding: 20px 0;
  }
  .footer__logos {
    padding: 0 5%;
  }
  .footer__logosx2 {
    margin-bottom: 50px;
  }
  .footer__logo {
    width: 90px;
    height: 110px;
  }
  .footer__logo--large {
    min-width: 300px;
  }
  .footer__bottom__container {
    padding: 30px;
  }
  .footer__img__container {
    padding-left: 30px;
  }
  .comprendre {
    margin-top: 20px;
  }
  .comprendre__content {
    width: 80%;
    margin-bottom: 50px;
  }
  .comprendre__image__container {
    margin-top: 80px;
    display: flex;
    justify-content: center;
  }
  .card__content {
    text-align: center;
  }
  .underline {
    width: 13%;
    left: 44%;
  }
}
@media screen and (min-width: 992px) {
  .banner__form {
    transform: none;
    width: 100%;
    min-width: 0;
    top: 0;
  }
  .banner__form__h1 {
    position: absolute;
    left: 20%;
    top: 46%;
    text-align: left;
    font-size: 36px;
    font-weight: 600;
    width: 65%;
    padding-left: 10%;
    color: #fff;
    z-index: 1;
    text-shadow: 1px 0 1px #5f1717;
  }
  .banner__form__title {
    font-size: 20px;
    font-weight: 600;
  }
  .banner__form__section {
    align-items: unset;
    margin-bottom: 30px;
  }
  .glide__arrow {
    font-size: 2.5rem;
  }
  .blogPage__collapse__content,
  .collapse__content {
    font-size: 20px !important;
  }
  .blogPage__collapse__inner,
  .collapse__inner {
    padding-right: 10%;
  }
  .blogPage__collapse__h6,
  .collapse__h3,
  .collapse__h6 {
    font-size: 18px;
  }
  .footer {
    padding-bottom: 0;
  }
  .footer__logos {
    padding: 30px 15% 0;
    display: flex;
    justify-content: space-between;
  }
  .footer__logosx2 {
    width: 100%;
  }
  .footer__bottom__container {
    flex-direction: row;
    justify-content: space-around;
    padding: 30px 15%;
  }
  .footer__link {
    margin-bottom: 0;
  }
  .footer__img {
    width: 350px;
    height: 100px;
  }
  .footer__img__container {
    padding: 0 15%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .responsive-break {
    display: none;
  }
  .comprendre {
    margin-top: 0;
    padding: 30px 15% 0;
  }
  .comprendre__title {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .comprendre__content {
    margin-bottom: 0;
    line-height: 1.1;
  }
  .comprendre__content__and__image__container {
    display: flex;
    flex-direction: row;
  }
  .comprendre__content__container {
    align-items: flex-start;
  }
  .comprendre__image {
    width: 300px;
    height: 300px;
  }
  .comprendre__image__container {
    margin-top: 0;
    width: 50%;
  }
  .card {
    width: 30%;
    min-width: 231px;
    height: 250px;
    justify-content: space-around;
    padding: 2%;
  }
  .card__container {
    flex-direction: row;
    justify-content: space-between;
    margin: 100px 0;
  }
  .publics__title {
    font-size: 24px;
  }
  .underline {
    bottom: -15px;
    left: 44.5%;
    width: 140px;
    height: 5px;
  }
}
@media screen and (min-width: 1200px) {
  .underline {
    left: 45.5%;
  }
}
@media screen and (min-width: 1400px) {
  .underline {
    left: 46%;
  }
}
@media screen and (min-width: 1600px) {
  .underline {
    left: 46.5%;
  }
}
.cta-section {
  margin-top: 50px;
  position: relative;
}
.cta-section__banner {
  width: 100%;
  height: 330px;
  -o-object-fit: cover;
  object-fit: cover;
  filter: brightness(55%);
}
.cta-section__container {
  position: absolute;
  color: #fff;
  top: 55px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cta-section__container__title {
  font-weight: 500;
  font-size: 18px;
}
.cta-section__container__text {
  font-weight: 500;
  text-shadow: 1px 1px 3px #181818;
  font-size: 16px;
}
.cta-section__btn {
  width: 350px;
}
.privacy__policy__p--homepage {
  font-size: 11px;
  width: 90%;
  color: #fff;
}
.privacy__policy__link--homepage {
  color: #2b2b2b;
}
.complements__h2 {
  font-size: 18px;
  font-weight: 700;
  color: #686262;
  display: table;
  margin: 0 auto;
}
.complements__itemTitle {
  color: #5f1717;
  font-weight: 500;
}
.complements__item {
  margin-bottom: 30px;
  padding: 10px 20px;
  border-radius: 5px;
}
.complements__item--destrat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.complements__itemImg {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  height: auto;
  margin-bottom: 20px;
}
.contact {
  padding: 20px 10px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: left;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .cta-section {
    margin-top: 100px;
  }
  .cta-section__container {
    top: 80px;
    left: 10%;
    width: 80%;
  }
  .complements__container {
    padding: 20px;
    width: 80%;
  }
  .contact {
    padding: 20px 20px 20px 40px;
    font-size: 18px;
  }
}
.privacy__section {
  margin-bottom: 30px;
}
.privacy__h2 {
  font-size: 20px;
}
.legal__section {
  margin-bottom: 20px;
}
@media screen and (min-width: 992px) {
  .cta-section__container {
    top: 50px;
    left: 25%;
    width: 50%;
  }
  .cta-section__container__title {
    font-size: 22px;
  }
  .cta-section__container__text {
    font-size: 20px;
  }
  .cta-section__btn {
    margin-top: 50px;
  }
  .complements__container {
    padding-top: 30px;
    width: 100%;
  }
  .complements {
    margin-top: 0;
    padding: 30px 15% 0;
  }
  .complements__h2 {
    font-size: 24px;
    margin-bottom: 50px;
    text-align: left;
  }
  .complements__itemTitle {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .complements__item {
    margin-bottom: 50px;
    padding: 30px 50px;
  }
  .complements__itemImg {
    height: 400px;
    width: 530px;
    align-self: center;
    margin-bottom: 50px;
  }
  .contact {
    padding: 0 15%;
    margin: 50px 0;
    font-size: 18px;
  }
  .legal__main,
  .privacy__main {
    padding: 0 15%;
  }
  .legal__section,
  .privacy__section {
    margin-bottom: 50px;
  }
}
