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

  @font-face {
    font-family: 'Reader-Regular';
    src: url('https://placepubliquegrenoble.fr/assets/Reader/Reader-Regular.woff2') format('woff2'),
         url('https://placepubliquegrenoble.fr/assets/Reader/Reader-Regular.woff') format('woff'),
         url('https://placepubliquegrenoble.fr/assets/Reader/Reader-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
  }

  @font-face {
    font-family: 'Reader-Bold';
    src: url('https://placepubliquegrenoble.fr/assets/Reader/Reader-Bold.woff2') format('woff2'),
         url('https://placepubliquegrenoble.fr/assets/Reader/Reader-Bold.woff') format('woff'),
         url('https://placepubliquegrenoble.fr/assets/Reader/Reader-Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
  }

  body {
    background: #fff;
    font-family: 'Reader-Regular', 'Helvetica', sans-serif;
    font-weight: normal;
    font-style: normal;
    color: #000;
  }
  
  header {
    margin-left: 20%;
    margin-right: 20%;
  }

  .titre {
    margin-top: 0.5%;
    margin-bottom: 0.5%;
    text-align: left;
  }

  .titre h1 {
    font-family: 'Reader-Bold', 'Helvetica', sans-serif;
    font-style: normal;
    font-size: 45px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-thickness: 10px;
    text-underline-offset: -5px;
    text-decoration-color: #fff100;
    text-decoration-skip-ink: none;
    text-decoration-skip: none;
  }

  .titre a {
    text-decoration: none;
    color: #000;
  }

  .menu-header {
    display: flex;
    gap: 5px;
    justify-content: flex-end;
    align-items: center;
  }

  .nav-menu {
    text-align: right;
    margin-bottom: 2%;
  }
  
  .nav-menu a {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    font-family: 'Reader-Regular', 'Helvetica', sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size: 20px;
    margin-right: 15px;
  }
  
  .nav-menu a:last-child {
      margin-right: 0;
  }
  
  .nav-menu a:hover {
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-thickness: 7px;
    text-underline-offset: -5px;
    text-decoration-color: #fff100;
    text-decoration-skip-ink: none;
    text-decoration-skip: none;
  }

  .full-body {
    margin-left: 20%;
    margin-right: 20%;
    margin-top: 2%;
    margin-bottom: 2%;
  }
  
  .body-image-banner {
    background: url("../assets/body-image-banner.jpg");
    padding: 15em 5em;
    background-repeat: no-repeat;
    background-position: 50% 40%;
    background-size: cover;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 0.5%;
    margin-left: 20%;
    margin-right: 20%;
  }

  .body-image-banner-container {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .maxence-image-banner {
    background: url("../assets/img-groupe/maxence-image-banner.jpg");
    padding: 15em 5em;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 0.5%;
    margin-left: 20%;
    margin-right: 20%;
  }

  .maxence-image-banner-container {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .barbara-image-banner {
    background: url("../assets/img-groupe/barbara-image-banner.jpg");
    padding: 15em 5em;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 0.5%;
    margin-left: 20%;
    margin-right: 20%;
  }

  .barbara-image-banner-container {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .anouche-image-banner {
    background: url("../assets/img-groupe/anouche-image-banner.jpg");
    padding: 15em 5em;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 0.5%;
    margin-left: 20%;
    margin-right: 20%;
  }

  .anouche-image-banner-container {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .video-banner {
    position: relative;
    width: 100%;
    height: 450px;
    background: url('../assets/video-banners/video-banner.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .video-container {
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  }

  .video-banner:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); 
    z-index: 1;
  }

  .banner {
    display: flex;
    justify-content: flex-end; 
    align-items: center;
    gap: 15px; 
    padding: 0.5em 1em;
    margin: 0.5% 0 1%;
  }

  .rs {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .nl {
    background-color: #fff100;
    border-radius: 25px;
    padding: 1em 1.5em;
    white-space: nowrap; 
    text-decoration: none;
    transition: all 0.2s ease-in-out;
  }

  .nl:hover {
    background-color: #fff767;
  }

  .nl a {
    color: #000;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
  }

  .rs a {
    margin-left: 10px;
    margin-right: 10px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
  }

  .rs i {
    color: #000;
    font-size: 22.5px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
  }

  .rs i:hover {
    color: #fff100;
  }

  .rs-articles {
    text-align: left;
    margin-top: 1.5%;
    margin-bottom: 1.5%;
    margin-left: -10px;
  }

  .rs-articles a {
    margin-left: 10px;
    margin-right: 10px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
  }

  .rs-articles i {
    color: #000;
    font-size: 25px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
  }

  .rs-articles i:hover {
    color: #fff100;
  }
  
  h2 {
    font-family: 'Reader-Bold', 'Helvetica', sans-serif;
    font-weight: normal;
    font-style: normal;
    color: #000;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-thickness: 7px;
    text-underline-offset: -5px;
    text-decoration-color: #fff100;
    text-decoration-skip-ink: none;
    text-decoration-skip: none;
  }

  .date {
    margin-top: 1%;
    font-family: 'Reader-Regular', 'Helvetica', sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size: 15px;
    color: #000;
  }

  .first-last-news {
    margin-left: 12.5%;
    margin-right: 12.5%;
  }

  .last-news {
    margin-top: 3%;
    margin-bottom: 1%;
    display: flex;
    justify-content: space-between; 
    align-items: flex-start;
    gap: 1em;
    align-items: center;
  }

  .last-news>* {
    flex: 1;
  }

  .last-news img {
    width: 100%;
    height: auto;
    border-radius: 5px; 
  }

  .news-1 {
    padding: 1em 1em;
    border: 1px solid;
    border-color: #000;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
    color: #000;
    border-radius: 5px;
    border-color: #eee;
    box-shadow: 3px 1px 5px #eee;
  }

  .news-1:hover {
    color: #BEBEBE;
  }

  .news-2 {
    padding: 1em 1em;
    border: 1px solid;
    border-color: #000;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
    color: #000;
    border-radius: 5px;
    border: 1px solid;
    border-color: #eee;
    box-shadow: 3px 1px 5px #eee;
  }

  .news-2:hover {
    color: #BEBEBE;
  }

  .news-3 {
    padding: 1em 1em;
    border: 1px solid;
    border-color: #000;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
    color: #000;
    border-radius: 5px;
    border: 1px solid;
    border-color: #eee;
    box-shadow: 3px 1px 5px #eee;
  }

  .news-3:hover {
    color: #BEBEBE;
  }

  .news-4 {
    padding: 1em 1em;
    border: 1px solid;
    border-color: #000;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
    color: #000;
    border-radius: 5px;
    border: 1px solid;
    border-color: #eee;
    box-shadow: 3px 1px 5px #eee;
  }

  .news-4:hover {
    color: #BEBEBE;
  }

  .button-voir-plus {
    background-color: #fff100;
    border-radius: 25px;
    padding: 1em 1.5em;
    white-space: nowrap; 
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    margin-top: 3%;
    text-align: center;
  }

  .button-voir-plus:hover {
    background-color: #fff767;
  }

  .button-voir-plus a {
    color: #000;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
  }

  .grp-elus {
    background-color: #fff100;
    border-radius: 5px;
    padding: 1em 3em;
  }

  .grp-elus h2 {
    text-decoration-color: #fff;
  }

  .grp-elus i:hover {
    color: #2b2b2b;
  }

  .grp-bi {
    display: flex;
    gap: 5em;
    align-items: stretch;
  }
  
  .grp {
    flex: 1 1 300px;
    max-width: 25em;
    display: flex;
  }
  
  .grp-nom-bio {
    display: flex;
    flex-direction: column;
    gap: 1.5em;
    flex: 1;
  }
 
  .grp-img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 5%;
    flex-shrink: 0;
    align-self: flex-start; 
  }

  .rs-contact {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .rs-contact-clickable {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; 
    gap: 5px;
    width: fit-content; 
  }

  .space {
    margin-top: 2.5%;
    margin-bottom: 2.5%;
  }

  .contact {
    margin-left: 20%;
    margin-right: 20%;
  }

  .contact-form {
    border: 2px solid;
    border-radius: 15px;
    border-color: #000;
    padding: 2em;
    position: relative;
  }
  
  .contact-form input {
    border: 1px solid;
    border-radius: 2px;
    border-color: #cbcbcb;
    background-color: #fff;
    color: #000;
    padding: 1.5em 0.5em;
    font-family: 'Reader-Regular', 'Helvetica', sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size: 12px;
    width: 100%;
    height: 25px;
    box-sizing: border-box;
  }

  .contact-form textarea {
    border: 1px solid;
    border-radius: 2px;
    border-color: #cbcbcb;
    background-color: #fff;
    color: #000;
    padding: 0.5em 0.5em;
    font-family: 'Reader-Regular', 'Helvetica', sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size: 12px;
    width: 100%;
    height: 100px;
    box-sizing: border-box;
  }

  .contact-form input::placeholder {
    font-family: 'Reader-Regular', 'Helvetica', sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size: 15px;
    color: #000;
    text-align: right;
  }

  .contact-form textarea::placeholder {
    font-family: 'Reader-Regular', 'Helvetica', sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size: 15px;
    color: #000;
    text-align: right;
  }
  
  .mail {
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    color: #000;
  }
  
  .mail:hover {
    color: #BEBEBE;
  }

  .link {
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    color: #000;
  }
  
  .link:hover {
    color: #BEBEBE;
  }

  .contact-form button {
    border-radius: 4px;
    border: none;
    background-color: #000;
    color: #fff;
    padding: 0.8em 1em;
    font-family: 'Reader-Bold', 'Helvetica', sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size: 15px;
    text-decoration: none;
    cursor: pointer;
    position: absolute;
    bottom: 2em;
    right: 2em;
  }
  
  .footer-elements {
    text-align: center;
    margin-top: 2%;
    margin-bottom: 0.5%;
  }

  .footer-elements p {
    font-size: 15px;
  }

  .footer-elements a {
    text-decoration: none;
    color: #000;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
  }

  .footer-elements a:hover {
    color: #BEBEBE;
  }

  @media only screen and (max-width: 1199px) {
  header {
    margin-left: 5%;
    margin-right: 5%;
  }

  .maxence-image-banner {
    background: url("../assets/img-groupe/grp2.jpg");
    padding: 15em 5em;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 0.5%;
    margin-left: 5%;
    margin-right: 5%;
  }

  .barbara-image-banner {
    background: url("../assets/img-groupe/grp3.jpg");
    padding: 15em 5em;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 0.5%;
    margin-left: 5%;
    margin-right: 5%;
  }

  .anouche-image-banner {
    background: url("../assets/img-groupe/grp1.jpg");
    padding: 15em 5em;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 0.5%;
    margin-left: 5%;
    margin-right: 5%;
  }

  .titre {
    margin-top: 5%;
    margin-bottom: 2%;
  }

  .titre h1 {
    font-size: 90px;
    text-decoration-thickness: 20px;
  }

  .titre p {
    font-size: 25px;
  }

  .menu-header {
    text-align: center;
    margin-top: 10%;
    margin-bottom: 3%;
    justify-content: center;
  }

  .nav-menu a {
    margin-right: 30px;
    font-size: 22px;
  }

  .rs i {
    font-size: 30px;
  }

  .rs-articles i {
    font-size: 50px;
  }

  .banner {
    margin-top: 1%;
  }

  .space {
    margin-top: 5%;
    margin-bottom: 5%;
  }

  .body-image-banner {
    margin-left: 5%;
    margin-right: 5%;
  }

  .grp-elus {
    display: flex;
    justify-content: center; 
    align-items: center;
    width: 100%;
  }

  .grp-bi {
    display: flex;
    flex-direction: column;
    align-items: center; 
    gap: 1em;
    width: 100%;
    max-width: 800px;
  }

  .grp {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .grp-img {
    width: 650px;
    height: auto; 
  }

  .full-body {
    margin-left: 5%;
    margin-right: 5%;
    margin-top: 5%;
    margin-bottom: 5%;
    font-size: 25px;
  }

  .first-last-news {
    margin-left: 0%;
    margin-right: 0%;
  }

  .last-news {
    margin-top: 3%;
    margin-bottom: 3%;
    flex-direction: column;
  }

  .button-voir-plus {
    border-radius: 50px;
  }

  .date {
    margin-top: 2%;
    font-size: 25px;
  }

  .contact {
    margin-left: 0%;
    margin-right: 0%;
  }

  .footer-elements {
    margin-top: 5%;
    margin-bottom: 5%;
  }

  .footer-elements p {
    font-size: 25px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1699px) {
  header {
    margin-left: 10%;
    margin-right: 10%;
  }
  
  .full-body {
    margin-left: 10%;
    margin-right: 10%;
  }
  
  .body-image-banner {
    margin-left: 10%;
    margin-right:10%;
  }

  .first-last-news {
    margin-left: 0%;
    margin-right: 0%;
  }
  
  .nav-menu {
    margin-top: 4%;
  }

  .footer-elements {
    margin-top: 4%;
    margin-bottom: 4%;
  }
}

@media only screen and (min-width: 1700px) {
}