@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300;
  src: url(https://fonts.gstatic.com/s/montserrat/v30/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCs16Hw5aX8.ttf) format('truetype');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/montserrat/v30/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Hw5aX8.ttf) format('truetype');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  src: url(https://fonts.gstatic.com/s/montserrat/v30/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Hw5aX8.ttf) format('truetype');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: url(https://fonts.gstatic.com/s/montserrat/v30/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCuM73w5aX8.ttf) format('truetype');
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Montserrat, sans-serif;
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-size: 20px;
}
.header-accueil-portail {
  display: flex;
  padding-top: 10vh;
  padding-bottom: 10vh;
  min-height: 50vh;
  background: url('../../images/background/bg-accueil-portail.png') center / cover no-repeat;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  flex-direction: column;
}
.header-accueil-portail h1 {
  font-size: 3em;
  font-weight: bold;
}
.header-accueil-portail .sous-titre {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 10px;
}
.header-accueil-portail h1,
.header-accueil-portail .sous-titre {
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}
.header-accueil-portail .description {
  margin-bottom: 15px;
}
.header-accueil-portail .barre-recherche {
  display: flex;
  margin: auto;
  align-items: center;
  background: white;
  padding: 12px;
  border-radius: 30px;
  border: 1px solid #767676;
  width: 80%;
  max-width: 600px;
  height: auto;
  color: black;
}
.header-accueil-portail .barre-recherche #collectivite_input {
  font-size: 16px;
  border: none;
  outline: none;
  padding: 8px;
  flex-grow: 1;
  background: white;
  color: black;
}
.header-accueil-portail .barre-recherche #rechercher_collectivite {
  cursor: pointer;
}
.header-accueil-portail .barre-recherche i {
  color: black;
}
.ui-menu-item-wrapper {
  border: none !important;
  font-size: 16px !important;
}
.ui-menu-item-wrapper:hover,
.ui-state-active {
  background-color: #eaedcb !important;
  color: black !important;
  border: none !important;
}
.fonctionnalites {
  height: auto;
  background: #92a632;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 20px;
  color: white;
  flex-wrap: wrap;
}
.fonctionnalites .fonctionnalites-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
}
.footer {
  flex-grow: 1;
  background: black;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.footer .footer-top {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  flex-wrap: wrap;
  width: 100%;
}
.footer .footer-top .video-container {
  display: flex;
  min-width: 300px;
  margin-right: 20px;
  margin-bottom: 20px;
}
.footer .footer-top .video-container iframe {
  width: 480px;
  height: 270px;
  max-width: 480px;
  aspect-ratio: 16/9;
}
.footer .footer-top .text-footer-container {
  display: flex;
  flex-direction: column;
  max-width: 700px;
}
.footer .footer-top .text-footer-container h1 {
  font-size: 2em;
  margin-bottom: 10px;
}
.footer .footer-top .text-footer-container p {
  font-size: 1em;
  margin-bottom: 10px;
}
.footer .footer-top .text-footer-container #plus_infos {
  font-size: 1em;
  color: white;
  background: #748a06;
  border-radius: 30px;
  text-decoration: none;
  padding: 8px 15px;
  display: inline-block;
  max-width: fit-content;
  white-space: nowrap;
}
.footer .footer-top .text-footer-container a:hover {
  text-decoration: underline;
}
.footer .footer-bottom {
  text-align: center;
  margin-bottom: 0;
  font-size: 16px;
}
.footer .footer-bottom img {
  max-width: 200px;
}
@media (max-width: 768px) {
  .header-accueil-portail h1 {
    font-size: 2em;
  }
  .header-accueil-portail .sous-titre {
    font-size: 1em;
  }
  .header-accueil-portail .description {
    font-size: 0.9em;
  }
  .header-accueil-portail .barre-recherche {
    width: 90%;
  }
  .fonctionnalites {
    flex-direction: column;
    padding: 10px;
  }
  .fonctionnalites .fonctionnalites-item {
    flex-direction: column;
    text-align: center;
  }
  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-top .video-container {
    padding-right: 0 !important;
    margin-right: 0 !important;
  }
  .footer-top .video-container iframe {
    width: 100% !important;
    height: auto !important;
  }
  .footer-top .text-footer-container {
    text-align: center;
    padding: 0 20px;
  }
  .footer-top .text-footer-container #plus_infos {
    text-align: center;
    margin: 0 auto;
  }
}
@media (max-width: 480px) {
  .header-accueil-portail h1 {
    font-size: 1.5em;
  }
  .header-accueil-portail .sous-titre {
    font-size: 0.8em;
  }
  .header-accueil-portail .description {
    font-size: 0.8em;
  }
  .header-accueil-portail .barre-recherche {
    width: 95%;
  }
  .footer-top .text-footer-container h1 {
    font-size: 1.5em;
  }
  .footer-top .text-footer-container p {
    font-size: 0.9em;
  }
  .footer-top .text-footer-container #plus_infos {
    font-size: 0.9em;
    text-align: center;
    margin: 0 auto;
  }
  .footer-top .text-footer-container .video-container iframe {
    width: 100% !important;
    height: auto !important;
  }
  .ui-menu.ui-widget.ui-widget-content.ui-autocomplete {
    width: 300px !important;
  }
}
