@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");

:root {
  --basicColor1: #5f9b86;
  --basicColor2: #de9c75;
  --basicColor3: #28564d;
  --basicColor4: #2d2f2d;
  --basicColor5: #f2e6d8;
  --basicWhite: #ffffff;
  --basicBlack: #000000;
  --basicColorLight: #cccccc;
  --smallRadius: 10px;
  --mediumRadius: 20px;
  --basicRadius: 30px;
  --defaultSpacing: 2rem;
  font-size: 20px;
}

body *,
body,
button,
input,
textarea {
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  margin: 0;
}

body {
  max-width: 1920px;
  margin: 0 auto;
  background: #fffbf8;
  color: var(--basicColor4);
  box-shadow: 0 0 42px 44px rgba(0, 0, 0, 0.09);
}

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

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font-size: 1rem;
}

p {
  color: rgba(45, 47, 45, 0.72);
  font-weight: 300;
  line-height: 1.45;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--basicColor4);
  font-weight: 500;
  line-height: 1.2;
}

ul {
  padding: 0;
  margin: 0;
}

.site-shell {
  min-height: 100vh;
}

.container,
.uniformSpacing {
  max-width: 1500px;
  margin: 0 auto;
  width: calc(100% - (var(--defaultSpacing) * 4));
}

.section {
  padding: calc(var(--defaultSpacing) * 2) 0;
}

.section-tight {
  padding: calc(var(--defaultSpacing) * 1.5) 0 calc(var(--defaultSpacing) * 2);
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 0.75em;
  max-width: 60em;
  margin-bottom: 1.5em;
}

.section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  color: var(--basicColor1);
  font-size: 0.75em;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  font-size: 2.9em;
}

h2 {
  font-size: 2.1em;
}

h3 {
  font-size: 1.2em;
}

.lead {
  font-size: 1em;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15em;
  padding: 0.85em 1.4em;
  border: 1px solid transparent;
  border-radius: var(--basicRadius);
  cursor: pointer;
  transition: ease all 0.3s;
  font-size: 0.95em;
  font-weight: 500;
}

.btn:hover {
  opacity: 0.85;
}

.btn-primary {
  background-color: var(--basicColor1);
  border-color: var(--basicColor1);
  color: var(--basicWhite);
}

.btn-secondary {
  background-color: var(--basicWhite);
  border-color: rgba(0, 0, 0, 0.08);
  color: var(--basicColor4);
}

.radius {
  border-radius: var(--basicRadius);
}

.smallRadius {
  border-radius: var(--smallRadius);
}

.mediumRadius {
  border-radius: var(--mediumRadius);
}

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  background-color: var(--basicWhite);
}

.menu {
  position: relative;
  z-index: 10;
}

.menu .mainMenu {
  padding: 0 calc(var(--defaultSpacing) * 2);
}

.menu .uniformSpacing {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  position: relative;
}

.menu #navLogo {
  width: 20%;
  min-width: 12em;
  position: relative;
  display: flex;
  align-items: center;
}

.menu #navLogo a {
  display: flex;
  align-items: center;
  width: fit-content;
  height: calc(100% + 2.5em);
  padding: 1em 1.15em;
  border-radius: var(--basicRadius);
  background-color: var(--basicWhite);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.12);
  transform: translateY(0.9em);
}

.menu #navLogo a img {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.menu #navMenu {
  display: flex;
  justify-content: center;
  flex: 1;
}

.menu #navMenu ul {
  display: flex;
  gap: 1.35em;
  align-items: center;
}

.menu #navMenu li,
.menu .rightMenu li {
  list-style: none;
}

.menu #navMenu a {
  display: flex;
  align-items: center;
  padding: 1.5em 0;
  font-size: 0.95em;
  color: var(--basicBlack);
  border-bottom: 2px solid transparent;
  transition: ease all 0.3s;
}

.menu #navMenu a:hover {
  opacity: 0.55;
}

.menu #navMenu a.activeLink {
  border-bottom-color: var(--basicColor1);
}

.menu .rightMenu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1em;
  width: 20%;
  min-width: fit-content;
}

.menu .rightMenu .mainLink {
  padding: 0.85em 1.35em;
  border-radius: var(--basicRadius);
  background-color: var(--basicColor1);
  border: 1px solid var(--basicColor1);
  color: var(--basicWhite);
  transition: ease all 0.3s;
}

.menu .rightMenu .mainLink:hover {
  background-color: var(--basicWhite);
  color: var(--basicColor4);
}

.menu .mobileBtnMenu {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.25em;
  height: 2.25em;
  cursor: pointer;
}

.menu .mobileBtnMenu svg {
  width: 100%;
  height: 100%;
}

.menu .mobileBtnMenu path {
  fill: var(--basicBlack);
}

.hero {
  overflow: hidden;
  padding: calc(var(--defaultSpacing) * 2.5) 0 calc(var(--defaultSpacing) * 2);
}

.hero-grid {
  display: flex;
  align-items: center;
  gap: 2em;
}

.hero-copy,
.hero-media {
  width: 50%;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 0.8em;
}

.hero-copy .button-row {
  margin-top: 0.6em;
}

.hero-stats {
  display: flex;
  gap: 1em;
  margin-top: 0.8em;
}

.stat-card,
.card,
.panel,
.service-card,
.contact-card,
.team-card,
.process-card,
.quote-card,
.logo-chip,
.article-card,
.image-card,
.page-hero-copy {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.14);
}

.stat-card {
  flex: 1;
  padding: 1.3em;
  border-radius: var(--basicRadius);
  background-color: var(--basicWhite);
}

.stat-card strong {
  display: block;
  margin-bottom: 0.35em;
  color: var(--basicColor1);
  font-size: 1.7em;
  font-weight: 700;
}

.stat-card span {
  color: rgba(45, 47, 45, 0.7);
  font-size: 0.85em;
  line-height: 1.4;
}

.hero-media,
.image-card,
.page-hero-media {
  overflow: hidden;
  position: relative;
  border-radius: var(--basicRadius);
}

.hero-media {
  min-height: 32em;
}

.hero-media img,
.image-card img,
.page-hero-media img,
.article-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay,
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 15%, rgba(0, 0, 0, 0.35) 100%);
}

.media-note {
  position: absolute;
  left: 1.5em;
  right: 1.5em;
  bottom: 1.5em;
  padding: 1.2em 1.3em;
  border-radius: var(--mediumRadius);
  background-color: rgba(255, 255, 255, 0.94);
}

.media-note strong {
  display: block;
  margin-bottom: 0.35em;
  color: var(--basicColor4);
  font-size: 1em;
  font-weight: 600;
}

.grid-2,
.grid-3,
.grid-4,
.logo-wall {
  display: grid;
  gap: 1.25em;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.service-card,
.contact-card,
.team-card,
.process-card,
.panel,
.quote-card {
  padding: 1.8em;
  border-radius: var(--basicRadius);
  background-color: var(--basicWhite);
}

.feature-card {
  position: relative;
  padding-top: 3.2em;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 1.4em;
  left: 1.8em;
  width: 0.85em;
  height: 0.85em;
  border-radius: 100%;
  background-color: var(--basicColor1);
}

.feature-card h3,
.service-card h3,
.offer-card h3,
.article-card h3,
.team-card h3,
.contact-card h3,
.process-card h3 {
  margin-bottom: 0.65em;
}

.split {
  display: flex;
  align-items: center;
  gap: 2.5em;
}

.split > * {
  width: 50%;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 1.25em;
}

.duo-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.25em;
}

.panel.dark,
.newsletter {
  background-color: var(--basicColor3);
}

.panel.dark h2,
.panel.dark h3,
.panel.dark p,
.panel.dark li,
.newsletter h3,
.newsletter p {
  color: var(--basicWhite);
}

.panel.dark p,
.panel.dark li,
.newsletter p {
  opacity: 0.8;
}

.check-list,
.number-list,
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.85em;
  list-style: none;
}

.check-list li,
.number-list li {
  display: flex;
  gap: 0.7em;
  align-items: flex-start;
  color: rgba(45, 47, 45, 0.78);
  line-height: 1.45;
}

.panel.dark .check-list li,
.panel.dark .number-list li {
  color: rgba(255, 255, 255, 0.82);
}

.check-list li::before,
.number-list li::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6em;
  height: 1.6em;
  margin-top: 0.1em;
  border-radius: 100%;
  background-color: rgba(95, 155, 134, 0.15);
  color: var(--basicColor1);
  font-size: 0.75em;
  font-weight: 700;
  flex: 0 0 auto;
}

.panel.dark .check-list li::before,
.panel.dark .number-list li::before {
  background-color: rgba(255, 255, 255, 0.14);
  color: var(--basicWhite);
}

.check-list li::before {
  content: "✓";
}

.number-list li:nth-child(1)::before { content: "1"; }
.number-list li:nth-child(2)::before { content: "2"; }
.number-list li:nth-child(3)::before { content: "3"; }
.number-list li:nth-child(4)::before { content: "4"; }

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  margin-bottom: 0.85em;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.55em 0.9em;
  border-radius: var(--basicRadius);
  background-color: rgba(95, 155, 134, 0.12);
  color: var(--basicColor1);
  font-size: 0.78em;
  font-weight: 600;
}

.tag.secondary {
  background-color: rgba(222, 156, 117, 0.16);
  color: #c37948;
}

.offer-card {
  display: flex;
  flex-direction: column;
  gap: 0.85em;
}

.offer-price {
  color: var(--basicColor1);
  font-size: 1.8em;
  font-weight: 700;
}

.offer-card.highlight {
  background: linear-gradient(180deg, #5f9b86 0%, #87b5a4 100%);
}

.offer-card.highlight .tag,
.offer-card.highlight h3,
.offer-card.highlight p,
.offer-card.highlight li,
.offer-card.highlight .offer-price {
  color: var(--basicWhite);
}

.offer-card.highlight .tag {
  background-color: rgba(255, 255, 255, 0.14);
}

.offer-card.highlight .check-list li::before {
  background-color: rgba(255, 255, 255, 0.14);
  color: var(--basicWhite);
}

.quote-card {
  border-left: 0.4em solid var(--basicColor2);
}

.quote-card p:first-child {
  color: var(--basicColor4);
  font-weight: 500;
}

.page-hero {
  padding: calc(var(--defaultSpacing) * 2.2) 0 calc(var(--defaultSpacing) * 1.6);
}

.page-hero-shell {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 1.5em;
  align-items: stretch;
}

.page-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75em;
  padding: 2.2em;
  background-color: var(--basicWhite);
  border-radius: var(--basicRadius);
}

.page-hero-copy h1 {
  font-size: 2.5em;
}

.page-hero-media {
  min-height: 100%;
}

.article-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--basicRadius);
  background-color: var(--basicWhite);
}

.article-card img {
  height: 15em;
}

.article-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.8em;
  padding: 1.6em;
}

.logo-wall {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.logo-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 5.5em;
  padding: 1em;
  border-radius: var(--basicRadius);
  background-color: var(--basicWhite);
  color: rgba(45, 47, 45, 0.76);
  text-align: center;
  font-size: 0.85em;
  font-weight: 500;
}

.newsletter {
  padding: 2em;
  border-radius: var(--basicRadius);
}

.newsletter .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.newsletter-form {
  display: flex;
  gap: 0.75em;
  margin-top: 1.2em;
}

.input,
.textarea {
  width: 100%;
  padding: 0.95em 1em;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--mediumRadius);
  background-color: var(--basicWhite);
  color: var(--basicColor4);
}

.textarea {
  min-height: 10em;
  resize: vertical;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 1.25em;
}

.contact-list strong {
  display: block;
  margin-bottom: 0.25em;
  color: var(--basicColor4);
  font-size: 0.78em;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-list a,
.contact-list span {
  color: rgba(45, 47, 45, 0.72);
}

.subtle {
  color: rgba(45, 47, 45, 0.55);
}

.site-footer {
  background-color: var(--basicBlack);
  margin-top: calc(var(--defaultSpacing) * 2);
}

.site-footer .containerFooter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4em;
  padding: calc(var(--defaultSpacing) * 2) 0 1.2em;
}

.site-footer .footerGauche {
  width: 40%;
}

.site-footer .footerDroite {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 50%;
}

.site-footer .footerGauche img {
  width: 11em;
  margin-bottom: 1em;
}

.site-footer .footerGauche h2,
.site-footer .footerGauche p,
.site-footer .footerDroite a,
.site-footer .footerDroite p,
.site-footer .footerDroite span,
.site-footer .endFooter p {
  color: var(--basicWhite);
}

.site-footer .footerGauche p,
.site-footer .footerDroite a,
.site-footer .footerDroite p,
.site-footer .endFooter p {
  opacity: 0.65;
  font-weight: 300;
}

.site-footer .footerLink {
  display: flex;
  gap: 3em;
  justify-content: flex-end;
  width: fit-content;
  padding-top: 1.5em;
}

.site-footer .footerLink > div {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  min-width: 12em;
}

.site-footer .footerTitle {
  color: var(--basicWhite);
  font-size: 0.9em;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 1;
}

.site-footer .endFooter {
  display: flex;
  justify-content: space-between;
  gap: 1em;
  padding: 1em 0 calc(var(--defaultSpacing) * 1.25);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media screen and (max-width: 1250px) {
  :root {
    font-size: 18px;
  }

  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-3,
  .contact-layout,
  .page-hero-shell,
  .duo-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .split,
  .site-footer .containerFooter {
    flex-direction: column;
  }

  .hero-copy,
  .hero-media,
  .split > *,
  .site-footer .footerGauche,
  .site-footer .footerDroite {
    width: 100%;
  }

  .site-footer .footerDroite {
    align-items: flex-start;
  }

  .site-footer .footerLink {
    justify-content: flex-start;
  }
}

@media screen and (max-width: 1100px) {
  .menu .mainMenu {
    padding: 0 1.25em;
  }

  .menu .uniformSpacing {
    padding: 0.85em 0;
    align-items: center;
  }

  .menu #navLogo {
    width: 9em;
    min-width: 9em;
  }

  .menu #navLogo a {
    height: auto;
    transform: none;
  }

  .menu #navLogo a img {
    width: 100%;
    height: auto;
  }

  .menu #navMenu {
    display: none;
    width: 100%;
    order: 3;
  }

  .menu .rightMenu {
    width: fit-content;
    margin-left: auto;
  }

  .menu .rightMenu li {
    display: none;
  }

  .menu .mobileBtnMenu {
    display: flex;
  }

  .menu.is-open #navMenu {
    display: flex;
  }

  .menu.is-open #navMenu ul {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2em;
    padding: 1em 0 0;
  }

  .menu.is-open #navMenu ul li {
    width: 100%;
  }

  .menu.is-open #navMenu ul li a {
    width: 100%;
    padding: 0.75em 0;
  }

  .hero-stats,
  .grid-2,
  .logo-wall,
  .site-footer .footerLink {
    grid-template-columns: 1fr;
    flex-direction: column;
  }
}

@media screen and (max-width: 800px) {
  :root {
    font-size: 16px;
  }

  .container,
  .uniformSpacing {
    width: calc(100% - (var(--defaultSpacing) * 2));
  }

  .grid-4,
  .grid-3,
  .grid-2,
  .logo-wall {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: calc(var(--defaultSpacing) * 1.5);
  }

  .hero-stats {
    flex-direction: column;
  }

  .hero-media {
    min-height: 24em;
  }

  .newsletter-form,
  .button-row,
  .site-footer .endFooter {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: 100%;
  }
}
