*, :after, :before, ::backdrop {
  box-sizing: border-box;
  border: 0 solid;
  margin: 0;
  padding: 0;
}

::file-selector-button {
  box-sizing: border-box;
  border: 0 solid;
  margin: 0;
  padding: 0;
}

html, :host {
  -webkit-text-size-adjust: 100%;
  tab-size: 4;
  line-height: 1.5;
  font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
  font-feature-settings: var(--default-font-feature-settings, normal);
  font-variation-settings: var(--default-font-variation-settings, normal);
  -webkit-tap-highlight-color: transparent;
}

body {
  line-height: inherit;
}

hr {
  color: inherit;
  border-top-width: 1px;
  height: 0;
}

abbr:where([title]) {
  text-decoration: underline dotted;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

a {
  color: inherit;
  -webkit-text-decoration: inherit;
  -webkit-text-decoration: inherit;
  text-decoration: inherit;
}

b, strong {
  font-weight: bolder;
}

code, kbd, samp, pre {
  font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
  font-feature-settings: var(--default-mono-font-feature-settings, normal);
  font-variation-settings: var(--default-mono-font-variation-settings, normal);
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub, sup {
  vertical-align: baseline;
  font-size: 75%;
  line-height: 0;
  position: relative;
}

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

table {
  text-indent: 0;
  border-color: inherit;
  border-collapse: collapse;
}

button, input, optgroup, select, textarea {
  font: inherit;
  font-feature-settings: inherit;
  font-variation-settings: inherit;
  letter-spacing: inherit;
  color: inherit;
  background: none;
}

::file-selector-button {
  font: inherit;
  font-feature-settings: inherit;
  font-variation-settings: inherit;
  letter-spacing: inherit;
  color: inherit;
  background: none;
}

input:where(:not([type="button"], [type="reset"], [type="submit"])), select, textarea {
  border: 1px solid;
}

button, input:where([type="button"], [type="reset"], [type="submit"]) {
  appearance: button;
}

::file-selector-button {
  appearance: button;
}

:-moz-focusring {
  outline: auto;
}

:-moz-ui-invalid {
  box-shadow: none;
}

progress {
  vertical-align: baseline;
}

::-webkit-inner-spin-button {
  height: auto;
}

::-webkit-outer-spin-button {
  height: auto;
}

::-webkit-search-decoration {
  -webkit-appearance: none;
}

summary {
  display: list-item;
}

ol, ul, menu {
  list-style: none;
}

textarea {
  resize: vertical;
}

::placeholder {
  opacity: 1;
  color: color-mix(in srgb, currentColor 50%, transparent);
}

:disabled {
  cursor: default;
}

img, svg, video, canvas, audio, iframe, embed, object {
  vertical-align: middle;
  display: block;
}

img, video {
  max-width: 100%;
  height: auto;
}

[hidden] {
  display: none !important;
}

.text-h1 {
  margin-bottom: 2rem;
  font-size: 3.75rem;
  font-weight: 600;
  line-height: 1.1;
}

@media (width < 768px) {
  .text-h1 {
    font-size: 2.25rem;
  }
}

.subtitles {
  max-width: 60ch;
  font-size: 1.125rem;
  line-height: 1.7;
}

.text-h2 {
  margin-bottom: 1rem;
  font-size: 2.25rem;
  font-weight: 600;
}

@media (width < 768px) {
  .text-h2 {
    font-size: 1.5rem;
  }
}

h1, h2, h3 {
  font-family: Montserrat, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body  {
  font-family: Inter, sans-serif;
  overflow: hidden;
}

.header {
  color: #fff;
  background-color: #000;
  padding-block: .5rem;
}

.header-container {
  justify-content: space-between;
  align-items: center;
  height: 100%;
  display: flex;
}

.nav {
  z-index: 5;
  align-items: center;
  gap: 1rem;
  transition: all .3s;
  display: flex;
}

@media (width < 768px) {
  .nav {
    opacity: 0;
    background-color: #171717;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
    position: absolute;
    inset: 0;
    transform: translateY(-100%);
  }
}

.nav-active {
  opacity: 1;
  transform: translateY(0);
}

.nav-link {
  color: #a3a3a3;
  font-size: .875rem;
  transition: color .3s;
}

.nav-link:hover, .nav-link[data-active] {
  color: #fff;
}

.logo {
  width: auto;
  height: 40px;
}

#hamburger {
  z-index: 10;
}

@media (width > 768px) {
  #hamburger {
    display: none;
  }
}

.header-sticky {
  z-index: 50;
  width: 100%;
  position: sticky;
  top: 0;
}

.header-left {
  align-items: center;
  gap: 1.5rem;
  height: 100%;
  display: flex;
}

.header-contact {
  border-left: 1px solid #262626;
  gap: 1.5rem;
  height: 100%;
  padding-left: 1.5rem;
  font-size: .75rem;
  display: flex;
}

@media (width < 640px) {
  .header-contact {
    display: none;
  }
}

@media (768px < width < 1024px) {
  .header-contact {
    flex-direction: column;
    gap: .25rem;
  }
}

.header-contact-infos {
  align-items: center;
  gap: .25rem;
  transition: color .3s;
  display: flex;
}

.header-contact-infos:hover {
  color: #f59e0b;
}

.archive-header {
  margin-block: 3.5rem;
}

.paginator {
  justify-content: end;
  align-items: center;
  gap: 1rem;
  margin-block: 3.5rem;
  display: flex;
}

.paginator-link {
  background-color: #f5f5f5;
  border-radius: .125rem;
  padding: .25rem;
}

.paginator-link:hover {
  background-color: #e5e5e5;
}

.paginator-current {
  font-size: .875rem;
}

.single-header {
  color: #fff;
  background-color: #000;
  align-items: center;
  min-height: 60vh;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  display: flex;
  position: relative;
}

@media (width < 768px) {
  .single-header {
    flex-direction: column;
    height: auto;
    padding-top: 0;
  }
}

.single-thumbnail {
  object-fit: cover;
  width: auto;
  height: 100%;
}

.single-thumbnail-container {
  z-index: 0;
  width: auto;
  height: 60vh;
  position: absolute;
  right: 0;
}

@media (width < 768px) {
  .single-thumbnail-container {
    width: 100%;
    height: auto;
    position: relative;
  }
}

.single-thumbnail-container:before {
  content: "";
  background: linear-gradient(to right, #000, #0000);
  width: 100%;
  height: 100%;
  position: absolute;
}

@media (width < 768px) {
  .single-thumbnail-container:before {
    background: linear-gradient(to top, #000, #0000);
  }
}

.single-titles {
  z-index: 0;
  position: relative;
}

.single-main {
  justify-content: space-between;
  gap: 3.5rem;
  padding-block: 5rem;
  display: flex;
}

.suggested-posts {
  margin-top: 1.5rem;
}

.single-aside {
  white-space: nowrap;
  border-left: 1px solid #e5e5e5;
  padding-left: 2.5rem;
  position: relative;
}

@media (width < 768px) {
  .single-aside {
    display: none;
  }
}

.single-cta {
  font-size: .875rem;
  font-weight: 500;
}

.single-cta-data {
  color: #737373;
  font-size: .75rem;
}

.single-cta-boxes {
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
  display: flex;
}

.single-cta-box {
  border: 1px solid #e5e5e5;
  border-radius: .375rem;
  align-items: center;
  font-size: .875rem;
  display: flex;
}

.single-cta-box:hover {
  background: #fafafa;
}

.single-cta-box-infos {
  flex-direction: column;
  padding: .5rem .5rem .5rem 1rem;
  display: flex;
}

.single-cta-box-icon {
  border-right: 1px solid #e5e5e5;
  padding-inline: .5rem;
}

.cms-content * {
  line-height: 1.7;
}

.cms-content p:not(:last-child) {
  margin-bottom: 1.5rem;
}

.cms-content h2 {
  margin-top: 5rem;
  margin-bottom: 2.5rem;
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.3;
}

@media (width < 768px) {
  .cms-content h2 {
    font-size: 1.875rem;
  }
}

.cms-content ul {
  padding-inline-start: 3.5rem;
  list-style: disc;
}

.cms-content ul:not(:last-child) {
  margin-bottom: 1.5rem;
}

.cms-content li:not(:last-child) {
  margin-bottom: .5rem;
}

.cms-content h3 {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.cms-content a {
  font-weight: 500;
  text-decoration: underline;
  transition: color .3s;
}

.cms-content a:hover {
  color: #f59e0b;
}

.legal-cms {
  background-color: #fff;
  padding: 2.5rem;
}

.about-container {
  width: min(100% - 2rem, 70rem);
  margin-inline: auto;
}

@media (width < 768px) {
  .about-container {
    width: 100%;
  }
}

.about-header {
  color: #fff;
  background-position: center;
  border-radius: .375rem;
  align-items: center;
  height: 50vh;
  margin-top: 3.5rem;
  padding-inline: 3.5rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

@media (width < 768px) {
  .about-header {
    border-radius: 0;
    height: auto;
    margin-top: 0;
    padding-inline: 0;
  }
}

.about-header:before {
  content: "";
  z-index: 0;
  opacity: .8;
  background-color: #000;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.about-header-text {
  z-index: 1;
  position: relative;
}

@media (width < 768px) {
  .about-header-text {
    max-width: min(100% - 2rem, 70rem);
    margin-inline: auto;
  }
}

.about-img {
  object-fit: cover;
  object-position: center;
  border-radius: .375rem;
  width: 100%;
  height: 100%;
}

.about-text {
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  min-width: 50%;
  padding-block: 2.5rem;
  line-height: 1.7;
  display: flex;
}

.quote {
  grid-column: 1 / -1;
  padding-block: 3.5rem;
  padding-inline: 1.5rem;
  font-size: 1.25rem;
  font-weight: 500;
}

@media (width < 768px) {
  .quote {
    font-size: 1.125rem;
  }
}

.quote > p {
  text-align: center;
  max-width: 50ch;
  margin-inline: auto;
}

.method-cards {
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  display: grid;
}

@media (width < 768px) {
  .method-cards {
    grid-template-columns: 1fr;
    width: min(100% - 2rem, 70rem);
    margin-inline: auto;
  }
}

.method-card {
  border: 1px solid #e5e5e5;
  border-radius: .375rem;
  padding: 1.5rem;
}

.method-card-title {
  margin-top: .25rem;
  margin-bottom: .5rem;
  font-weight: 600;
}

.method-card-text {
  line-height: 1.7;
}

.about-flex {
  grid-template-columns: repeat(2, 1fr);
  gap: 3.5rem;
  margin-block: 3.5rem;
  display: grid;
}

@media (width < 768px) {
  .about-flex {
    grid-template-columns: 1fr;
    gap: 1rem;
    width: min(100% - 2rem, 70rem);
    margin-block: 1rem;
    margin-inline: auto;
  }
}

.about-btn {
  width: min-content;
  margin-top: 1rem;
}

.consent {
  font-size: .75rem;
}

.consent a {
  text-decoration: underline;
}

.footer {
  color: #fff;
  background-color: #000;
  padding-block-start: 3.5rem;
}

.footer-label {
  margin-bottom: .5rem;
}

.footer-flex {
  gap: 2.5rem;
  display: flex;
}

@media (width < 1024px) {
  .footer-flex {
    flex-direction: column;
    gap: 3.5rem;
  }
}

.footer-nav {
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  display: flex;
}

@media (width < 768px) {
  .footer-nav {
    flex-direction: column;
  }
}

.footer-nav-group {
  flex-direction: column;
  display: flex;
}

.footer-nav-link {
  color: #a3a3a3;
  font-size: .875rem;
  transition: color .3s;
}

.footer-nav-link:hover {
  color: #fff;
}

.legal-text {
  color: #a3a3a3;
  max-width: 60ch;
  font-size: .875rem;
  line-height: 1.7;
}

@media (width < 1024px) {
  .legal-text {
    max-width: 100%;
  }
}

.copywright {
  border-top: 1px solid #262626;
  justify-content: center;
  margin-top: 3.5rem;
  padding-block: .25rem;
  display: flex;
}

.copywright > span {
  font-size: .75rem;
}

.hero {
  background-color: red;
  align-items: center;
  height: calc(100vh - 55px);
  padding-block: 3.5rem;
  display: flex;
}

@media (width < 768px) {
  .hero {
    align-items: end;
    height: calc(90vh - 55px);
  }
}

.hero-text {
  color: #fff;
  max-width: 60ch;
}

.localisation {
  justify-content: space-between;
  gap: 3.5rem;
  margin-top: 3.5rem;
  display: flex;
}

@media (width < 768px) {
  .localisation {
    flex-direction: column;
  }
}

.localisation-map {
  width: 100%;
  height: 100%;
}

.localisation-map-img {
  object-fit: cover;
  object-position: center;
  border-radius: .375rem;
  width: 100%;
  height: 60vh;
}

@media (width < 768px) {
  .localisation-map-img {
    aspect-ratio: 1;
    height: auto;
  }
}

.home-cta {
  justify-content: end;
  padding-block-start: 2.5rem;
  display: flex;
}

.contact-form {
  flex-direction: column;
  gap: 1rem;
  display: flex;
}

.contact-others {
  border-top: 1px solid #000;
}

.contact-content {
  justify-content: space-between;
  gap: 3.5rem;
  margin-top: 2.5rem;
  display: flex;
}

@media (width < 768px) {
  .contact-content {
    flex-direction: column;
  }
}

.contact-form {
  width: 100%;
}

.contact-img {
  max-width: 20%;
}

.contact-aside {
  border-left: 1px solid #e5e5e5;
  flex-direction: column;
  gap: 2.5rem;
  width: max-content;
  padding-left: 3.5rem;
  display: flex;
}

@media (width < 768px) {
  .contact-aside {
    border-left: unset;
    padding-top: 3.5rem;
    padding-left: unset;
    border-top: 1px solid #e5e5e5;
    width: 100%;
  }
}

.contact-canal-title {
  font-size: 1.25rem;
  font-weight: 500;
}

.contact-canal-description {
  color: #525252;
  margin-top: .5rem;
  margin-bottom: 1rem;
  font-size: .875rem;
}

.contact-canal-data {
  white-space: nowrap;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  font-weight: 500;
  text-decoration: underline;
  display: flex;
}

.message-error {
  color: #991b1b;
  background-color: #fee2e2;
  margin-block: .5rem;
  padding: 1.5rem;
  font-size: .875rem;
}

.message-success {
  color: #15803d;
  background-color: #dcfce7;
  margin-block: .5rem;
  padding: 1.5rem;
  font-size: .875rem;
}

.legal-container {
  background-color: #fff;
  margin-block: 3.5rem;
}

.legal-text > h2 {
  color: #000;
  margin-bottom: 1rem;
  font-size: 2.25rem;
  font-weight: 600;
}

@media (width < 768px) {
  .legal-text > h2 {
    font-size: 1.875rem;
  }
}

.legal-text > p {
  color: #000;
  margin-bottom: 1rem;
}

.legal-text > ul {
  color: #000;
  padding-left: 2.5rem;
  list-style: disc;
}

.btn {
  white-space: nowrap;
  border-radius: .125rem;
  height: min-content;
}

.btn[data-size="sm"] {
  padding: .25rem 1rem;
  font-size: .875rem;
}

.btn[data-size="md"] {
  text-align: center;
  padding: .25rem 1rem;
  font-size: 1rem;
  display: block;
}

.btn[data-size="lg"] {
  text-align: center;
  padding: .5rem 1.5rem;
  font-size: 1.125rem;
  display: block;
}

.btn-outline {
  color: #fff;
  border: 1px solid #fff;
  transition: all .3s;
}

.btn-outline:hover {
  opacity: .6;
  transform: translateY(-.2rem);
}

.btn-gold {
  color: #000;
  background: linear-gradient(to right, #f59e0b, #fde68a, #d97706) 0 / 200%;
  transition: all .3s ease-in;
}

.btn-gold:hover {
  background-position: 100%;
}

.btn-block {
  gap: 1rem;
  margin-top: 2.5rem;
  display: flex;
}

@media (width < 768px) {
  .btn-block {
    flex-direction: column;
  }
}

.text-link {
  align-items: center;
  gap: .5rem;
  font-size: 1rem;
  font-weight: 500;
  display: flex;
}

.text-link-icon {
  background-color: #f59e0b;
  border-radius: 9999px;
  padding: .25rem;
  transition: all .3s;
}

.text-link:hover {
  text-decoration: underline;
}

.text-link:hover .text-link-icon {
  transform: rotate(-45deg);
}

.accordion {
  gap: 1rem;
  display: flex;
}

@media (width < 768px) {
  .accordion {
    flex-direction: column;
  }
}

.accordion-panel {
  isolation: isolate;
  border-radius: .375rem;
  flex-basis: 10%;
  align-items: end;
  height: 60vh;
  padding: 1.5rem;
  transition: all .3s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.accordion-panel:hover {
  opacity: .7;
}

@media (width < 768px) {
  .accordion-panel {
    flex-basis: 5rem;
  }
}

.accordion-panel:before {
  content: "";
  z-index: 0;
  background: linear-gradient(to top, #000, #0000);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.accordion-panel:not([data-active]) {
  cursor: pointer;
}

.accordion-panel[data-active] {
  flex-basis: 100%;
}

.accordion-panel[data-active]:hover {
  opacity: 1;
}

@media (width < 768px) {
  .accordion-panel[data-active] {
    flex-basis: 20rem;
  }
}

.accordion-panel[data-active] .accordion-content {
  opacity: 1;
  transform: translateY(0);
}

.accordion-img {
  object-fit: cover;
  object-position: center;
  z-index: -1;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.accordion-content {
  color: #fff;
  opacity: 0;
  z-index: 1;
  min-width: 40vw;
  transition: all .4s ease-in;
  position: relative;
  transform: translateY(10rem);
}

.accordion-title {
  margin-bottom: .5rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.accordion-excerpt {
  color: #d4d4d4;
  margin-bottom: 1rem;
  font-size: .875rem;
}

.accordion-link {
  color: #f59e0b;
  font-size: .875rem;
  font-weight: 500;
  transition: color .3s;
}

.accordion-link:hover {
  color: #fde68a;
}

.form-input {
  background-color: #f5f5f5;
  border: none;
  border-radius: .125rem;
  width: 100%;
  padding: .5rem;
  font-size: .875rem;
}

.form-label {
  flex-direction: column;
  flex: 1;
  font-size: .75rem;
  display: flex;
}

.form-group {
  gap: 1.5rem;
  width: 100%;
  display: flex;
}

@media (width < 1024px) {
  .form-group {
    flex-direction: column;
    gap: 1rem;
  }
}

.form-btn {
  margin-top: 1rem;
}

.gallery-grid {
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 40vh;
  gap: 1.5rem;
  display: grid;
}

@media (width < 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.gallery-card {
  border-radius: .375rem;
  flex-direction: column;
  justify-content: end;
  padding: 1.5rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.gallery-card:hover .gallery-card-img {
  transform: scale(1.2);
}

.gallery-card:before {
  content: "";
  z-index: 1;
  background: linear-gradient(to top, #000, #0000);
  position: absolute;
  inset: 0;
}

.gallery-card-img {
  object-fit: cover;
  object-position: center;
  z-index: 0;
  width: 100%;
  height: 100%;
  transition: transform 3s;
  position: absolute;
  inset: 0;
}

.gallery-card-title {
  color: #fff;
  margin-bottom: .5rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.gallery-card-excerpt {
  color: #d4d4d4;
  font-size: .875rem;
}

.gallery-card-content {
  z-index: 1;
  flex-direction: column;
  display: flex;
  position: relative;
}

.gallery-card-link {
  color: #f59e0b;
  margin-top: 1rem;
  font-size: .875rem;
  font-weight: 500;
}

.gallery-card-link:hover {
  color: #fde68a;
}

.container {
  width: min(100% - 2rem, 70rem);
  margin-inline: auto;
}

.bg-gray {
  background-color: #f5f5f5;
}

.padding-section {
  padding-block: 3.5rem;
}

.section-content {
  margin-top: 2.5rem;
}

.before-footer {
  padding-bottom: 5rem;
}

@media (width < 768px) {
  .hide-md {
    display: none;
  }
}
/*# sourceMappingURL=index.css.map */
