:root {
  --site-width: min(1280px, 89vw);
  --header-bg: #121212;
  --header-height: 70px;
  --link-color: #5a9eaa;
}
@media (max-width: 767px) {
  :root {
    --site-width: calc(100vw - 24px);
  }
}

html {
  scroll-behavior: smooth;
}

html:has(.mobile-opened) {
  overflow: hidden;
}

[id] {
  scroll-margin-top: calc(var(--header-height) + 20px);
}

body.single-domain-occupation,
body.tax-area,
body.tax-case {
  padding-top: 70px;
}

p:not([class]) {
  color: #555555;
}

@media (max-width: 767px) {
  body.single-domain-occupation.logged-in,
  body.tax-area.logged-in,
  body.tax-case.logged-in {
    padding-top: 24px;
  }
}
/* Buttons */
.button {
  --bg-color: black;
  --bg-color-hover: #333;
  --text-color: white;
  background: var(--bg-color) calc(100% - 20px) center no-repeat;
  color: var(--text-color);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  font-weight: bold;
  padding: 15px 30px;
  border-radius: 2px;
  font-size: 1.6rem;
  transition: all 0.15s ease-in-out 0s;
  border: none;
  line-height: 1.25;
  text-align: left;
  min-height: 59px;
}
.button.button--small {
  font-size: 1.4rem;
  min-height: 53px;
  padding: 12px;
}
.button:hover {
  background-color: var(--bg-color-hover);
  text-decoration: none;
  color: var(--text-color);
}
.button[target=_blank]::after {
  content: "";
  width: 29px;
  height: 29px;
  background-color: currentColor;
  -webkit-mask-image: url("../../img/icon-external.svg");
  mask-image: url("../../img/icon-external.svg");
  transform: none;
  background-size: contain;
  transition: inherit;
}
.button[target=_blank]:hover {
  transform: none;
}
@media (max-width: 767px) {
  .button {
    display: flex;
    width: 100%;
    font-size: 1.4rem;
    min-height: 53px;
    padding: 12px;
  }
}

.button--secondary,
.button--secondary-with-pictogram {
  --bg-color: white;
  --bg-color-hover: #EDEDED;
  --text-color: black;
}

.button--primary-with-pictogram::after,
.button--secondary-with-pictogram::after {
  content: "";
  width: 29px;
  height: 29px;
  background-color: currentColor;
  -webkit-mask: url("../../img/icon-arrow.svg") no-repeat center;
  mask: url("../../img/icon-arrow.svg") no-repeat center;
  background-size: contain;
  transform: none;
  transition: inherit;
}
.button--primary-with-pictogram:hover::after,
.button--secondary-with-pictogram:hover::after {
  transform: translateX(6px);
}

.documents-section {
  margin: 45px auto;
}
.documents-section h2 {
  margin-bottom: 20px;
  text-transform: inherit;
}
.documents-section__desc {
  color: #555555;
}
.documents-section__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 20px;
  padding: 0;
}
.documents-section__item {
  position: relative;
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.2196078431);
  padding: 20px;
  border-radius: 8px;
  list-style: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.documents-section__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
.documents-section__item__details {
  display: flex;
  align-items: center;
  gap: 15px;
}
.documents-section__item__details:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 32px;
  width: 24px;
  background-color: currentColor;
  -webkit-mask: url(../../img/icon-reader.svg) no-repeat center;
  mask: url(../../img/icon-reader.svg) no-repeat center;
  mask-size: contain;
}
.documents-section__item__weight {
  font-size: 12px;
  margin-bottom: 0;
}
.documents-section__item__download {
  color: var(--link-color);
  font-weight: 700;
  font-size: 14px;
}
.documents-section__item h3 {
  font-size: 15px;
  margin: 0;
}
.documents-section__item a {
  font-weight: 600;
  color: black;
}
.documents-section__item a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}
.documents-section__item a:hover {
  color: black;
  text-decoration: none;
}
.documents-section__item__download {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 0;
}
.documents-section__item__download:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 30px;
  width: 30px;
  background-color: currentColor;
  -webkit-mask: url(../../img/icon-download.svg) no-repeat center;
  mask: url(../../img/icon-download.svg) no-repeat center;
}

/* Responsive adjustments */
@media (max-width: 576px) {
  .documents-section__list {
    grid-template-columns: 1fr;
  }
}
.projects-section {
  margin: 45px auto;
}
.projects-section h2 {
  margin-bottom: 20px;
  text-transform: inherit;
}
.projects-section__desc {
  color: #555555;
}
.projects-section__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 10px;
  margin-top: 20px;
  padding: 0;
}
.projects-section__item {
  position: relative;
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2196078431);
  padding: 20px;
  border-radius: 8px;
  list-style: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.projects-section__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
.projects-section__item__header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  margin-bottom: 8px;
}
.projects-section__item h3 {
  font-size: 22px;
  margin: 0;
}
.projects-section__item a {
  color: black;
}
.projects-section__item a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}
.projects-section__item a:hover {
  color: black;
  text-decoration: none;
}
.projects-section__item .badge {
  min-height: 24px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  font-weight: 600;
  font-size: 12px;
  border-radius: 100px;
  border: 1px solid;
}
.projects-section__item .badge--new {
  color: #9FB935;
  border-color: #9FB935;
}
.projects-section__item .badge--limit {
  color: #CF7A26;
  border-color: #CF7A26;
}
.projects-section__item__address:before, .projects-section__item__type:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 20px;
  width: 20px;
  background-color: currentColor;
  margin-right: 5px;
}
.projects-section__item__address {
  margin-top: 20px;
}
.projects-section__item__address:before {
  -webkit-mask: url(../../img/icon-pin.svg) no-repeat center;
  mask: url(../../img/icon-pin.svg) no-repeat center;
  mask-size: contain;
}
.projects-section__item__type:before {
  -webkit-mask: url(../../img/icon-home.svg) no-repeat center;
  mask: url(../../img/icon-home.svg) no-repeat center;
  mask-size: contain;
}
.projects-section__item__more {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 0;
  color: var(--link-color);
  font-weight: 700;
  font-size: 14px;
}
.projects-section__item__more:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 30px;
  width: 30px;
  background-color: currentColor;
  -webkit-mask: url(../../img/icon-arrow-right.svg) no-repeat center;
  mask: url(../../img/icon-arrow-right.svg) no-repeat center;
  mask-size: contain;
}

/* Responsive adjustments */
@media (max-width: 576px) {
  .projects-section__list {
    grid-template-columns: 1fr;
  }
}
.protest-section {
  margin: 45px auto;
}
.protest-section__bloc {
  background-color: #366068;
  gap: 20px;
  border-radius: 8px;
  padding: 32px;
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.protest-section__bloc h3, .protest-section__bloc p {
  color: white;
}
.protest-section__bloc h3 {
  font-size: 18px;
  margin: 0 0 5px;
}
.protest-section__bloc p {
  margin: 0;
  line-height: 1.5;
  color: #EDEDED;
}
.protest-section__bloc a {
  flex: none;
}
.protest-section__bloc a:hover {
  background-color: #368093;
}

/* Responsive adjustments */
@media (max-width: 576px) {
  .protest-section__bloc {
    flex-direction: column;
    align-items: flex-start;
  }
}
.contacts-section {
  margin: 45px auto;
}
.contacts-section h2 {
  margin-bottom: 20px;
  text-transform: inherit;
}
.contacts-section h3 {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 10px;
}
.contacts-section__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 20px;
  padding: 0;
}
.contacts-section__item {
  position: relative;
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.2196078431);
  padding: 20px;
  border-radius: 8px;
  list-style: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contacts-section__contact {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 5px;
}
.contacts-section__contact:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 20px;
  width: 20px;
  background-color: currentColor;
  mask-size: contain;
  margin-right: 5px;
}
.contacts-section__contact:last-of-type {
  margin-bottom: 0;
}
.contacts-section__contact--phone:before {
  -webkit-mask: url(../../img/icon-phone.svg) no-repeat center;
  mask: url(../../img/icon-phone.svg) no-repeat center;
  mask-size: contain;
}
.contacts-section__contact--mail:before {
  -webkit-mask: url(../../img/icon-mail.svg) no-repeat center;
  mask: url(../../img/icon-mail.svg) no-repeat center;
  mask-size: contain;
}

/* Responsive adjustments */
@media (max-width: 576px) {
  .contacts-section__list {
    grid-template-columns: 1fr;
  }
}
.infos-section {
  margin: 45px auto;
}
.infos-section h2 {
  margin-bottom: 20px;
  text-transform: inherit;
}
.infos-section p:not([class]) {
  margin-top: 20px;
}
.infos-section__details {
  font-size: 16px;
}
.infos-section__details:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 20px;
  width: 20px;
  background-color: currentColor;
  margin-right: 5px;
}
.infos-section__details--type span {
  padding-left: 3px;
}
.infos-section__details--type:before {
  display: none;
}
.infos-section__details--address:before {
  -webkit-mask: url(../../img/icon-pin.svg) no-repeat center;
  mask: url(../../img/icon-pin.svg) no-repeat center;
}
.infos-section__details--dateCreate:before {
  -webkit-mask: url(../../img/icon-hour.svg) no-repeat center;
  mask: url(../../img/icon-hour.svg) no-repeat center;
}
.infos-section__details--dateLimit:before {
  -webkit-mask: url(../../img/icon-information.svg) no-repeat center;
  mask: url(../../img/icon-information.svg) no-repeat center;
  mask-size: contain;
}

.further-section {
  margin: 45px auto;
}
.further-section h2 {
  margin-bottom: 20px;
  text-transform: inherit;
}
.further-section h3 {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 10px;
}
.further-section__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 20px;
  padding: 0;
}
.further-section__item {
  position: relative;
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.2196078431);
  padding: 20px;
  border-radius: 8px;
  list-style: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.further-section__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
.further-section__item a {
  font-weight: 600;
  color: black;
}
.further-section__item a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}
.further-section__item a:hover {
  color: black;
  text-decoration: none;
}
.further-section__item__more {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 0;
  color: var(--link-color);
  font-weight: 700;
  font-size: 14px;
}
.further-section__item__more:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 30px;
  width: 30px;
  background-color: currentColor;
  -webkit-mask: url(../../img/icon-arrow-right.svg) no-repeat center;
  mask: url(../../img/icon-arrow-right.svg) no-repeat center;
  mask-size: contain;
}

/* Responsive adjustments */
@media (max-width: 576px) {
  .further-section__list {
    grid-template-columns: 1fr;
  }
}
.domain-area-header {
  background-color: #FAFAFA;
}
.domain-area-header nav {
  padding: 16px 0;
  text-align: left;
}
.domain-area-header nav a {
  color: #000;
  text-decoration: underline;
}

.domain-area-header__content {
  width: calc(100vw - 20px);
  max-width: var(--site-width);
  margin: auto;
  text-align: center;
  padding-bottom: 65px;
}

.domain-area-header h1 {
  margin: 45px auto 10px;
  max-width: 880px;
}

.domain-area-header__intro {
  max-width: 630px;
  margin: auto;
  color: #555555;
}

.domain-area {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 55px;
  margin-bottom: 80px;
  width: calc(100vw - 20px);
  max-width: var(--site-width);
}
.domain-area__item {
  position: relative;
  display: flex;
  column-gap: 40px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 45px 30px;
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.1607843137);
  height: 100%;
}
.domain-area__item__img {
  flex: none;
}
.domain-area__item__title {
  margin: 0 0 10px;
  font-weight: 700;
  font-size: 22px;
}
.domain-area__item__desc {
  color: #555555;
}
.domain-area__item a {
  margin: 20px 0 0;
  display: inline-block;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .domain-area {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .domain-area-header nav {
    width: 90%;
    margin: auto;
  }
}
@media (max-width: 576px) {
  .domain-area__item {
    padding: 20px;
  }
}
.tax-area-header {
  position: relative;
  height: calc(100vh - 70px);
}
.tax-area-header:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), radial-gradient(56.9% 33.58% at 49.87% 40.42%, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 38.63%);
  z-index: 1;
}
.tax-area-header h1 {
  z-index: 2;
  text-align: center;
  position: absolute;
  max-width: 680px;
  margin: auto;
  width: 100%;
  left: 0;
  right: 0;
  /* bottom: 0; */
  top: 50%;
  transform: translateY(-50%);
}
.tax-area-header picture, .tax-area-header img {
  position: absolute;
  top: 0;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}
.tax-area-header .btn-scroll {
  position: absolute;
  bottom: 25px;
  left: 50%;
  height: 40px;
  width: 40px;
  margin-left: -20px;
  z-index: 10;
  transition: 0.3s ease-in-out;
}
@media (max-width: 650px) {
  .tax-area-header .btn-scroll {
    bottom: 15px;
  }
}
.tax-area-header .btn-scroll:before, .tax-area-header .btn-scroll:after {
  content: "";
  position: absolute;
  top: 75%;
  left: 50%;
  width: 22px;
  height: 3px;
  margin-left: -11px;
  background: #fff;
  border-radius: 2px;
}
.tax-area-header .btn-scroll:before {
  transform: rotate(-45deg) translateX(45%);
}
.tax-area-header .btn-scroll:after {
  transform: rotate(45deg) translateX(-45%);
}
.tax-area-header .btn-scroll:hover {
  transform: scale(1.1) translateY(2px);
}

.tax-area-breadcrumb {
  position: relative;
  z-index: 2;
  padding: 16px 0;
}
.tax-area-breadcrumb nav {
  width: calc(100vw - 20px);
  max-width: var(--site-width);
  margin: auto;
  color: white;
}
.tax-area-breadcrumb nav a {
  color: white;
  text-decoration: underline;
}

.domain-posts__chapo {
  margin: 65px 0 45px;
  font-weight: 600;
  font-size: 15px;
}

.hero__img .credit {
  position: absolute;
  bottom: 15px;
  right: 20px;
  color: #fff;
  font-size: 1rem;
  font-style: italic;
  z-index: 1;
}

html body main .domain-posts h2 {
  text-transform: initial;
  margin-bottom: 10px;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .tax-area-breadcrumb nav {
    width: 90%;
  }
}
.single-domain-occupation main {
  padding-top: 50px;
  padding-bottom: 120px;
}

.single-domain-occupation-breadcrumb {
  padding: 16px 0;
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2196078431);
}
.single-domain-occupation-breadcrumb nav {
  width: calc(100vw - 20px);
  max-width: var(--site-width);
  margin: auto;
}
.single-domain-occupation-breadcrumb nav a {
  color: #000;
  text-decoration: underline;
}

.single-domain-heading {
  position: relative;
  margin-bottom: 60px;
}

.single-domain-dates {
  font-size: 13px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  border-radius: 6px;
  padding: 20px;
}
.single-domain-dates p i {
  margin-right: 5px;
}

.single-domain-tag {
  background: #5A9EAA;
  color: white;
  min-height: 34px;
  padding: 5px 20px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  font-size: 12px;
}

.single-domain-socials {
  margin: 0;
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.single-domain-socials__item {
  list-style: none;
}
.single-domain-socials__separator {
  list-style: none;
  margin: 0;
}
.single-domain-socials__separator span {
  display: block;
  background-color: black;
  height: 2px;
  width: 30px;
}
.single-domain-socials__link {
  border-radius: 50%;
  background-color: var(--link-color);
  color: white;
  height: 35px;
  width: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.single-domain-socials__link:hover {
  color: white;
  background-color: #444;
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .single-domain-breadcrumb .breadcrumb {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .single-domain-socials {
    flex-direction: row;
    padding: 0;
  }
  .single-domain-socials__separator span {
    width: 2px;
    height: 30px;
  }
}
@media (max-width: 767px) {
  .single-domain-occupation-breadcrumb nav {
    width: 90%;
  }
  .single-domain-socials {
    flex-wrap: wrap;
  }
}

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