@charset "UTF-8";
@font-face {
  font-family: "Oswald";
  src: url("../fonts/Oswald/Oswald-ExtraLight.ttf");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: "Oswald";
  src: url("../fonts/Oswald/Oswald-Light.ttf");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Oswald";
  src: url("../fonts/Oswald/Oswald-Regular.ttf");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Oswald";
  src: url("../fonts/Oswald/Oswald-Medium.ttf");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Oswald";
  src: url("../fonts/Oswald/Oswald-SemiBold.ttf");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Oswald";
  src: url("../fonts/Oswald/Oswald-Bold.ttf");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Roboto Condensed";
  src: url("../fonts/Roboto_Condensed/RobotoCondensed-Light.ttf");
  font-weight: 200 300;
  font-style: normal;
}
@font-face {
  font-family: "Roboto Condensed";
  src: url("../fonts/Roboto_Condensed/RobotoCondensed-Regular.ttf");
  font-weight: 400 500;
  font-style: normal;
}
@font-face {
  font-family: "Roboto Condensed";
  src: url("../fonts/Roboto_Condensed/RobotoCondensed-Bold.ttf");
  font-weight: 600 700;
  font-style: normal;
}
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.8em;
  line-height: 1.6;
  font-family: "Roboto Condensed", sans-serif;
  color: #2B4755;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Oswald";
  font-weight: normal;
  line-height: 1.2;
}

h1 {
  text-align: center;
  font-size: 4rem;
  margin: 50px auto 10px;
}

h2 {
  margin: 50px 0 0;
  padding: 10px 0;
}

a {
  text-decoration: none;
  color: #D9187C;
}

em {
  text-decoration: underline;
  font-weight: 300;
  font-style: normal;
}

img {
  max-width: 100%;
}

hr {
  border: none;
  height: 1px;
  margin: 0;
  background: #76c9f1;
  background: linear-gradient(128deg, #bbe2f7 0%, #fee08c 43%, #f397c7 100%);
}

.center-image {
  display: block;
  margin: auto;
  border: 1px solid #f8f9fa;
  border-radius: 15px;
  box-shadow: 2px 2px 2px rgba(248, 249, 250, 0.25);
}

.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 25px;
}
@media screen and (max-width: 800px) {
  .container {
    padding: 15px;
  }
}
.container.mini {
  max-width: 800px;
}

nav.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: #76c9f1;
  background: linear-gradient(128deg, #d2ecfa 0%, #feeebe 45%, #f9c4df 100%);
  font-family: "Oswald";
  font-size: 2.2rem;
}
nav.main-nav a {
  padding: 10px 15px;
  margin: 0 10px;
  border-radius: 30px 0 30px 0;
  color: #2B4755;
  line-height: 1;
}
nav.main-nav a#logo {
  display: flex;
  align-items: center;
  margin-right: auto;
}
nav.main-nav a#logo img {
  width: 50px;
  padding-right: 10px;
}
nav.main-nav a:not(#logo):hover {
  background-color: rgba(255, 255, 255, 0.5);
}

#tagline {
  font-size: 2rem;
  padding: 75px 250px 50px 75px;
  background: #76c9f1;
  background: url("../images/feuilles-épi.svg") no-repeat bottom right, linear-gradient(128deg, #e9f6fc 0%, #fffbf1 43%, #fef2f8 100%);
  font-weight: 400;
}
#tagline h2 {
  font-weight: 300;
}

.introduction {
  display: flex;
  flex-basis: 33%;
  margin: 0 25px 25px;
}
.introduction h2 {
  font-size: 3rem;
  text-align: center;
  position: relative;
  z-index: 100;
  margin-top: 25px;
}
.introduction article {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-basis: 33%;
  border-radius: 10px;
  border: 1px solid #d4e1e9;
  padding: 30px;
  margin: 10px;
}
.introduction article.intro-autisme:hover {
  border-color: rgba(119, 197, 239, 0.8);
  box-shadow: 0 0 20px rgba(119, 197, 239, 0.1);
}
.introduction article.intro-tdah:hover {
  border-color: #FCBF0E;
  box-shadow: 0 0 20px rgba(252, 191, 14, 0.1);
}
.introduction article.intro-dys:hover {
  border-color: #D9187C;
  box-shadow: 0 0 20px rgba(217, 24, 124, 0.1);
}
.introduction article .button {
  align-self: flex-end;
}

.title {
  margin-top: -60px;
  height: 75px;
  opacity: 0.25;
}

.legend {
  text-align: center;
  font-style: italic;
}

.button {
  display: inline-block;
  padding: 10px 20px;
  color: #2B4755;
  background-color: #d4e1e9;
  border-radius: 10px;
}

table {
  border: 1px solid #d4e1e9;
  border-collapse: collapse;
  font-size: 1.6rem;
}
table thead {
  background-color: #d4e1e9;
  line-height: 1.2;
}
table th {
  padding: 10px;
}
table td {
  border: 1px solid #d4e1e9;
  line-height: 1.2;
  padding: 10px;
  width: 100%;
}
table td.empty {
  background-color: rgba(212, 225, 233, 0.25);
}
table td:not(:first-of-type) {
  width: 155px;
  text-align: center;
}

.grid {
  display: flex;
}

.warning,
.information {
  padding: 10px 20px;
  border-radius: 15px;
}

.warning {
  background-color: #fff5d7;
}

.information {
  background-color: #e9f6fc;
}

.aside {
  flex: 1 0 auto;
  width: 300px;
  padding: 0 25px;
  margin: 0 50px 0 0;
  line-height: 1.5;
  height: calc(100vh - 100px);
  overflow-y: scroll;
  position: sticky;
  top: 25px;
  border-radius: 5px;
  scrollbar-width: 2px;
  scrollbar-color: #6B8A99 #fff;
}
.aside.tsa {
  background-color: #e9f6fc;
}
.aside.tsa a {
  color: #105f8a;
}
.aside.tdah {
  background-color: #fff5d7;
}
.aside.tdah a {
  color: #564101;
}
.aside.dys {
  background-color: #fef2f8;
}
.aside.dys a {
  color: #7d0e48;
}
.aside .sources {
  font-size: 1.4rem;
}

.summary nav a {
  display: block;
}

.arrow {
  display: inline-block;
  width: 15px;
  height: 15px;
  border-top: 2px solid #6B8A99;
  border-right: 2px solid #6B8A99;
}

.arrow-right {
  transform: rotate(45deg);
}

.button.bg-blue {
  background-color: rgba(119, 197, 239, 0.25);
  color: #0b405c;
}
.button.bg-blue:hover {
  background-color: rgba(119, 197, 239, 0.5);
  color: #05202f;
}

.button.bg-yellow {
  background-color: rgba(252, 191, 14, 0.25);
  color: #3d2e01;
}
.button.bg-yellow:hover {
  background-color: rgba(252, 191, 14, 0.5);
  color: #0b0800;
}

.button.bg-pink {
  background-color: rgba(217, 24, 124, 0.25);
  color: #210413;
}
.button.bg-pink:hover {
  background-color: rgba(217, 24, 124, 0.5);
  color: black;
}

footer {
  font-size: 1.6rem;
  padding: 50px 50px 5px;
  background: #76c9f1;
  background: linear-gradient(128deg, #e9f6fc 0%, #fffbf1 43%, #fef2f8 100%);
}

.social {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}
.social a {
  display: inline-flex;
  flex-direction: column;
  color: #2B4755;
  text-align: center;
  margin: 0 20px;
}
.social a:hover {
  color: #6B8A99;
}
.social a i {
  font-size: 300%;
  margin: 20px 0 5px;
}

.cgu {
  color: #6B8A99;
}
.cgu a {
  color: #2B4755;
}

@media screen and (max-width: 1200px) {
  td:not(:first-of-type) {
    width: 100px !important;
  }
}
@media screen and (max-width: 800px) {
  h1 {
    margin: 25px auto 10px;
  }

  nav.main-nav {
    opacity: 0.95;
    flex-wrap: wrap;
    justify-content: center;
  }
  nav.main-nav a {
    padding: 10px;
    margin: 0;
  }
  nav.main-nav a#logo {
    width: 100%;
    font-size: 2.5rem;
    justify-content: center;
  }
  nav.main-nav .menu {
    display: flex;
    text-align: center;
    justify-content: center;
    flex-wrap: wrap;
  }
  nav.main-nav .menu a {
    font-size: 1.8rem;
    border-radius: 10px;
  }

  #tagline {
    background: linear-gradient(90deg, #e9f6fc 0%, #fffbf1 43%, #fef2f8 100%);
    padding: 20px;
  }
  #tagline h2 {
    font-family: "Roboto Condensed";
    font-size: 2rem;
    margin: auto;
  }
  #tagline p {
    display: none;
  }

  .introduction {
    display: block;
    margin: 10px 5px;
  }
  .introduction article {
    padding: 15px;
  }

  .grid {
    flex-direction: column;
  }

  aside.aside {
    width: inherit;
    position: inherit;
    height: 300px;
    margin: 0;
    padding: 0 15px;
  }

  footer {
    padding: 15px;
  }

  .social {
    flex-direction: column;
  }
}

/*# sourceMappingURL=style.css.map */
