/* 
    font-family: 'Playfair Display', serif;
    font-family: 'Poppins', sans-serif;
*/
/* ------------------------ Functions ------------------------ */
/* ------------------------ Mixins ------------------------ */
/* ------------------------ Extensions ------------------------ */
.dispositif {
  z-index: 1;
  padding: 4rem 6vw;
  border-bottom: 1px solid #282828;
}
@media screen and (min-width: 1024px) {
  .dispositif {
    padding: 5rem 6vw;
  }
}
@media screen and (min-width: 1224px) {
  .dispositif {
    padding: 6rem 8vw;
  }
}

article > h1 {
  font-size: 2.4414rem;
  font-weight: 400;
  margin-bottom: 3rem;
}
@media screen and (min-width: 1224px) {
  article > h1 {
    font-size: 3.052rem;
  }
}

article > h2 {
  font-size: 1.5625rem;
  font-weight: 400;
  margin-bottom: 2rem;
}
@media screen and (min-width: 1224px) {
  article > h2 {
    font-size: 1.953125rem;
  }
}

article > h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* ------------------------ Resets ------------------------ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
  font-family: "Noto Serif", serif;
}

a {
  text-decoration: none;
  cursor: pointer;
  font-family: "Noto Serif", serif;
}
a:focus {
  outline: none;
}

input {
  font-family: "Noto Serif", serif;
}

/* ------------------------ Layout ------------------------ */
.layout {
  background-color: #EEEBE5;
  color: #282828;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  font-family: "Noto Serif", serif;
}

.main {
  flex: 1;
  padding-top: 4rem;
}

/* ------------------------ Components ------------------------ */
.button {
  font-size: 1.25rem;
  font-weight: 400;
  padding: 1rem 2rem;
  border: 1px solid;
  background: none;
}
.button-light {
  color: #EEEBE5;
  border-color: #EEEBE5;
}
.button-dark {
  color: #282828;
  border-color: #282828;
}

.lmnp {
  background-image: url(../images/lmnp.jpg);
}

.pinel {
  background-image: url(../images/investissement_pinel.png);
}

.malraux {
  background-image: url(../images/loi_malraux.jpg);
}

.residence-principale {
  background-image: url(../images/residence_principale.jpg);
}

.monuments-historiques {
  background-image: url(../images/monuments_historiques.jpg);
}

.deficit-foncier {
  background-image: url(../images/deficit_foncier.jpg);
}

.header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 4rem;
  padding: 1rem 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #EEEBE5;
  border-bottom: 1px solid #282828;
  font-size: 1.5625rem;
  line-height: 1;
  z-index: 2;
}

.home {
  color: #282828;
}
.home-desktop {
  display: none;
}

.nav {
  height: 4rem;
  position: fixed;
  right: 2vw;
  bottom: 2vw;
  left: 2vw;
  display: grid;
  grid-auto-flow: column;
  border: 1px solid #282828;
  border-right: none;
  background-color: #EEEBE5;
  z-index: 10;
}
.nav-link {
  border-right: 1px solid #282828;
  color: #282828;
  font-size: 1.5625rem;
  line-height: 1;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-banner {
  border-bottom: none;
  display: grid;
  row-gap: 4rem;
  margin-bottom: 4rem;
}
.contact-banner-title {
  font-size: 1.5625rem;
  font-weight: 400;
  margin-bottom: 1rem;
}
.contact-banner-list {
  list-style: none;
}
.contact-banner-list > li {
  font-size: 1rem;
  margin-bottom: 1rem;
}
.contact-banner-link {
  display: inline-block;
  color: #282828;
  border-bottom: 1px solid #282828;
}
.contact-banner > p {
  font-size: 1rem;
  line-height: 1.75;
}

.footer {
  padding: 4rem 6vw 6rem 6vw;
  font-size: 1rem;
  font-weight: 400;
}
.footer-link {
  display: inline-block;
  color: #282828;
  border-bottom: 1px solid #282828;
  margin-bottom: 1rem;
}

@media screen and (min-width: 600px) {
  .header {
    position: fixed;
    height: 5rem;
    padding: 0.5rem 4vw;
  }

  .nav {
    position: initial;
    bottom: unset;
    border: none;
    background: none;
    justify-content: right;
    align-content: center;
    align-items: center;
  }
  .nav-link {
    border-right: none;
    margin-left: 3rem;
    color: #282828;
  }

  .contact-banner-content {
    display: initial;
  }
  .contact-banner-link {
    margin: 0;
  }

  .footer {
    padding-bottom: 2rem;
  }
}
@media screen and (min-width: 800px) {
  .home-desktop {
    display: initial;
  }
  .home-mobile {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .header {
    padding-left: 6vw;
    padding-right: 6vw;
  }

  .contact-banner {
    column-gap: 8rem;
    grid-template-columns: auto 1fr;
  }

  .footer {
    padding: 4rem 6vw 4rem 6vw;
  }
}
@media screen and (min-width: 1224px) {
  .header {
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .footer {
    padding-left: 8vw;
    padding-right: 8vw;
  }
}
article {
  overflow: hidden;
}

article > h1 {
  margin-bottom: 2rem;
  text-align: center;
}

article > h2 {
  border-bottom: 1px solid #282828;
  padding-bottom: 1rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
}

article > h3 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

article p, article li {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

article ul li {
  margin-left: 1em;
}

.table-container {
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.table-container::-webkit-scrollbar {
  display: none;
}

article table {
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  text-align: left;
  margin: 2rem 0rem;
  background-color: #91A79B33;
}

article tr:not(:last-child) th, article tr:not(:last-child) td {
  border-bottom: 1px solid #282828;
}

article tr th:first-child {
  width: 16rem;
}

article tr th:not(:first-child), article tr td {
  width: 8rem;
}

article th, article td {
  padding: 1rem;
}

.bold {
  font-weight: 600;
}

.underline {
  text-decoration: underline;
}

/*--------------------------------
------------- SM ---------------*/
@media screen and (min-width: 800px) {
  article {
    max-width: 45rem;
    margin: auto;
  }
}

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