:root {
  --text-color: #111;
  --yellow: #ffee00;
  --yellow-light: #ff9;
  --white: #fff;
  --grey: #888380;
  --grey-light: #e0dbd8;
/*  --grey-ultra-light: #ffe;*/

  --pink: #ddb5bd;
  --pink-light: #e5cccf;

  --accent: var(--yellow);
  --accent-light: var(--yellow-light);
  --accent: var(--pink);
  --accent-light: var(--pink-light);

  --bold: 600;
  --font-bold: archivo_blackregular;
}

@font-face {
    font-family: 'archivo_blackregular';
    src: url('../fonts/archivoblack-regular-webfont.woff2') format('woff2'),
         url('../fonts/archivoblack-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}


html {
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  font-size: 62.5%;
}

body {
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  padding: 0;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.25;
  color: var(--text-color);
  background: var(--white);
}

h1,h2,h3,strong,b {
  font-family: var(--font-bold);
  font-weight: normal;
}


.container {
/*  max-width: 120rem;*/
/*  margin-inline: auto;*/

}
.inner {
  max-width: 120rem;
  margin-inline: auto;
}





navigation {
  font-family: var(--font-bold);
  text-transform: uppercase;
  padding-block: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: flex-end;
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--white);
}
navigation a {
  display: inline-block;
  color: var(--text-color);
  text-decoration: none;
  padding: 0.5rem 1rem;
}
navigation a:hover,
navigation a:focus {
  background: var(--accent);
}
@media screen and (min-width: 30rem) {
  navigation {
    flex-direction: row;
    gap: 3rem;
  }

}




header {
  background: url(../images/hero.jpg) center center no-repeat;
  background-size: no-repeat;
  min-height: 75vh;
/*  height: 0;*/
/*  padding-top: 56.25%;*/
/*  width: 100%;*/
}

header h1 {
  padding-top: 30vh;
  padding-inline: 1rem;
  margin: 0 3rem;
  text-align: right;
}

header h1 div {
  margin-block: 1rem;
}
header h1 span {
  display: inline-block;
  padding: 1rem;
  background: #fff;
  font-size: 4rem;
}

@media screen and (min-width: 32rem) {
  header h1 {
    margin: 0 6rem;
  }
  header h1 span {
    font-size: 6rem;
  }
}


h1.page-title {
  margin-block: 9rem;
}





footer {
  margin-top: 6rem;
}

footer > section {}

.footer-public {
  background: var(--accent);
  padding: 6rem 3rem;
  font-size: 3rem;
  line-height: 1.5;

}

.footer-contact {
  padding-block: 6rem;
  text-align: center;
}
.footer-contact p {

}
.footer-contact .contacts {
  margin-top: 6rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}
.footer-contact .contacts a {
  display: inline-block;
  text-decoration: none;
  color: var(--text-color);
  font-family: var(--font-bold);
  padding: 1rem 2rem;
  line-height: 3rem;
  background-color: var(--accent);
}
.footer-contact .contacts a svg {
  display: inline-block;
  vertical-align: bottom;
  margin-right: 1rem;
  height: 3rem;
}

.footer-contact .contacts a:focus,
.footer-contact .contacts a:hover {
  background-color: var(--accent-light);
}

@media screen and (min-width: 32rem) {
  .footer-contact .contacts {
    font-size: 2rem;
  }
}

@media screen and (min-width: 48rem) {
  .footer-contact .contacts {
    flex-direction: row;
  }
}











.frontpage {
  padding-inline: 1rem;
}

.frontpage__headline {}
.frontpage__headline p {
  max-width: 90rem;
  margin-inline: auto;
  text-align: center;
  font-size: 4rem;
  padding: 3rem 0;
}


.separator {
  text-align: center;
  padding: 3rem 0;
  font-size: 6rem;
  color: var(--accent);
}



blockquote {
  margin: 0;
  padding-right: 20%;
/*  padding-left: 6rem;*/
  padding-bottom: 3rem;
}
.frontpage__quote {}
.frontpage__quote blockquote {
  padding-right: 0;
  max-width: 96rem;
  margin-inline: auto;
}

blockquote p {
  font-size: 2.2rem;
  line-height: 1.5;
}

blockquote footer {
  color: var(--grey);
  margin-top: 3rem;
}
blockquote footer cite {
  font-family: var(--font-bold);
}



.frontpage__concept {
  padding-block: 6rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}
@media screen and (min-width: 48rem) {
  .frontpage__concept {
    flex-direction: row;
  }
}

.frontpage__concept__detail {
  background: var(--grey-light);
  padding: 3rem;
  width: 30rem;
  min-height: 30rem;
  display: flex;
  align-items: center;
  position: relative;
  font-size: 2.2rem;
}
/*.frontpage__concept__detail strong {display: inline;}*/

.frontpage__concept__detail::before,
.frontpage__concept__detail::after {
  content: '';
  display: block;
  height: 3rem;
  width: 3rem;
  background: var(--white);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.frontpage__concept__detail::after {
  left: auto;
  top: auto;
  bottom: 0;
  right: 0;
  
}

.frontpage__concept__cta {
  flex: 1;
  padding: 1rem;
  text-align: center;
}
.frontpage__concept__cta a {
  display: inline-block;
  font-size: 2.2rem;
  font-family: var(--font-bold);
  color: var(--text-color);
  text-decoration: none;
  padding: 0.5rem 1rem;
  text-transform: uppercase;
}
.frontpage__concept__cta a:focus,
.frontpage__concept__cta a:hover {
  background-color: var(--accent);
}



.offre {
  padding-inline: 1rem;
}

.offre details {
  background: var(--grey-light);
  padding: 3rem;
  margin-block: 9rem;
  position: relative;
}
.offre details::before,
.offre details::after {
  content: '';
  display: block;
  height: 3rem;
  width: 3rem;
  background: var(--white);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.offre details::after {
  left: auto;
  top: auto;
  bottom: 0;
  right: 0;
}



.offre details summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 1rem;
}
.offre details summary::after {
  content: '▼'; /* 👇 🖣 ☟ */
  display: block;
  margin: 1rem auto;
  width: 6rem;
  height: 6rem;
  font-size: 3rem;
  background: var(--accent);
  border-radius: 3rem;
  text-align: center;
  line-height: 6rem;

  transform: rotate(0deg);
}
.offre details[open] summary::after {
  transform: rotate(180deg);
}
.offre details:focus summary::after,
.offre details:hover summary::after {
  background: var(--white);
}

.offre details summary::-webkit-details-marker {display: none}
.offre details summary h2 {
  max-width: 80rem;
  margin: 0;
}
.offre details summary p {
  max-width: 95rem;
}

.offre details .detail__content {
  text-align: center;
  font-size: 2.2rem;
  line-height: 1.5;
}
.offre details .detail__content .keywords {
  font-style: italic;
}




.a-propos {
  padding-inline: 1rem;
}

.a-propos img {
  display: block;
  margin: 3rem auto;
  width: 30rem;
  height: 30rem;
  border-radius: 15rem;
  border: 2px solid var(--accent);
}
@media screen and (min-width: 48rem) {
  .a-propos img {
    float: right;
    margin: -15rem 0 6rem 6rem;
  }
}
@media screen and (min-width: 48rem) {
  .a-propos img {
    float: right;
    margin: -15rem 0 6rem 6rem;
  }
}

.a-propos .headline {
  font-size: 2.2rem;
  font-size: 2.2rem;
}
