*,
*::after,
*::before {
  box-sizing: border-box;
  margin: 0;
}
:root {
  --header-height: 80px;
}
.page {
  font-size: 17px;
  line-height: 1.45;
  font-family: Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
  -ms-font-feature-settings: "kern" 1;
  font-feature-settings: "kern";
}
.container {
  margin: 0 auto;
  padding: 0 16px;
}
.header {
  background-color: #003ca4;
  height: var(--header-height);
}
.header__container {
  height: 100%;
}
.header__content {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-block: 8px;
}
.header__logo {
  height: 100%;
  width: auto;
  border-radius: 50%;
}
.header__name {
  font-size: 32px;
  color: #fff;
  display: flex;
  align-items: center;
  height: 100%;
}
.content {
  min-height: calc(100vh - var(--header-height));
}
.content__link {
  color: #00286e;
  text-decoration: none;
}
.content__link--dark {
  color: #7da9f6;
}
.hero {
  padding: 50px 0;
  background-color: #d9e7fe;
}
.hero__title {
  font-size: 36px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  text-align: center;
}
.hero__item {
  margin-bottom: 1.5rem;
  text-align: justify;
}
.section {
  padding: 40px 0;
}
.section--info {
  background-color: #132646;
  color: #fff;
}
.section--appli {
  background-color: #c7d2e4;
  color: #000;
}
.section--meetings {
  background-color: #00286e;
  color: #fff;
}
.section__title {
  font-size: 28px;
  margin-bottom: 1.25rem;
  text-align: center;
}
.section__item {
  margin-bottom: 1.5rem;
  /* text-align: justify; */
}
.links {
  display: flex;
  gap: 16px;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.links__item {
  width: 100%;
}
.links__link {
  text-decoration: none;
  color: #003ca4;
  transition: all 0.3s ease-in-out;
  display: inline-block;
}
.links__link:hover {
  color: #0d47a4;
  transform: translateX(10px);
}
.footer {
  background-color: #042050;
  color: #ececec;
  padding: 70px 0;
}

@media (min-width: 600px) {
  .header__content {
    gap: 16px;
    padding-block: 24px;
  }
  .hero {
    padding: 100px 0;
  }
  .section {
    padding: 80px 0;
  }
  .container {
    padding: 0 32px;
  }
  .links__item {
    width: 50%;
  }
}

@media (min-width: 900px) {
  .hero__title,
  .section__title {
    text-align: left;
  }
  .container {
    max-width: 1000px;
  }
  .links__item {
    width: 50%;
  }
}
