@charset "UTF-8";
/************** Import des variables **************/
/* #################################### */
/*          Variables partagées         */
/* #################################### */
/************** Couleur du thème **************/
/************** Grid **************/
/************** Margin **************/
/************** Padding **************/
/************** Radius **************/
/* #################################### */
/*                Blocks                */
/* #################################### */
/************** Brand **************/
/************** Card **************/
/************** Navbar/Footer **************/
/************** Header **************/
/************** Footer **************/
/************** MainContent **************/
/************************** Bar **************************/
/************** Initialisation diverses **************/
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
@import url("https://fonts.googleapis.com/css2?family=Oxygen:wght@400;700&display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

html {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

body::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

main {
  padding-top: 4em;
  padding-bottom: 4em;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.5em;
  font-family: SUSE, serif;
  background: #1e2e3b;
  overflow-x: hidden;
}

/************** Block **************/
.Card {
  display: flex;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.4);
  padding: 1.4ch;
  border-radius: 2rem;
  margin: 4ch 24rem 1.5ch 24rem;
  background-color: #2d4152;
  border: 2px solid transparent;
  transition: border-color 0.3s ease, transform 0.3s ease;
  scroll-snap-align: start;
  color: white;
}
.Card:hover {
  border: solid 2px grey;
}
.Card_info {
  text-decoration: none;
  color: inherit;
  flex-grow: 2;
  flex-direction: column;
}
.Card_title {
  font-size: 24px;
  color: rgb(239.2, 108.16, 0);
  margin-left: 1rem;
  margin-bottom: 1rem;
  width: 100%;
  flex-grow: 1;
}
.Card_text {
  margin-left: 1rem;
  line-height: 2.4rem;
  flex-grow: 1;
  width: 100%;
}
.Card_ressources {
  margin-top: 1rem;
  margin-left: 1rem;
  justify-content: space-around;
  align-items: center;
  width: 4rem;
}
.Card_image {
  display: flex;
  border-radius: 1rem;
  object-fit: cover;
  background-color: #595959;
  max-width: 38%;
  aspect-ratio: 3/1;
}

.Card_no_border {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.4);
  padding: 1.25rem;
  border-radius: 1.5rem;
  margin: 2.5rem 37.5rem;
  background-color: #2d4152;
  border: 2px solid transparent;
  transition: border-color 0.3s ease, transform 0.3s ease;
  color: white;
}

.CardSmaller {
  display: inline-flex;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.4);
  padding: 1rem;
  border-radius: 1.5rem;
  margin: 0.75rem;
  color: white;
  background-color: #2d4152;
  border: 2px solid transparent;
  transition: border-color 0.3s ease, transform 0.3s ease;
  height: 10rem;
  width: 15%;
}
.CardSmaller:hover {
  border: solid 2px grey;
}
.CardSmaller_info {
  text-decoration: none;
  color: inherit;
  flex-grow: 2;
  padding: 5px;
}
.CardSmaller_title {
  font-size: 1.5rem;
  color: rgb(239.2, 108.16, 0);
  margin-left: 1rem;
  margin-top: 0.5rem;
  width: 100%;
  flex-grow: 1;
}
.CardSmaller_text {
  display: flex;
  margin-left: 1rem;
  margin-right: 1.625rem;
  line-height: 1.625rem;
  flex-grow: 1;
  width: 100%;
  height: 100%;
  align-items: center;
}
.CardSmaller_image {
  object-fit: contain;
  border-radius: 20px;
  max-width: 40%;
  height: 100%;
}

.CardSmaller_center {
  width: auto;
  height: auto;
}

.CardSmaller_no_border {
  display: flex;
  padding: 0.625rem;
  border-radius: 1.875rem;
  margin: 0.625rem 18.75rem;
  background-color: #2d4152;
  border: 2px solid transparent;
  transition: border-color 0.3s ease, transform 0.3s ease;
  color: white;
}

.Card_home {
  display: flex;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  padding: 1.25rem;
  border-radius: 30px;
  margin: 2.75rem 24rem;
  background-color: #2d4152;
  color: white;
}
.Card_home_info {
  text-decoration: none;
  color: inherit;
  flex-grow: 2;
  flex-direction: column;
  padding: 0.375rem;
}
.Card_home_title {
  font-size: 24px;
  color: rgb(239.2, 108.16, 0);
  margin-left: 1rem;
  margin-bottom: 0.625rem;
  width: 100%;
  flex-grow: 1;
}
.Card_home_text {
  line-height: 1.625rem;
  flex-grow: 1;
  width: 100%;
  font-size: 1.5rem;
  margin-right: 4rem;
}
.Card_home_ressources {
  margin-top: 18%;
  margin-left: 1rem;
  justify-content: space-around;
  align-items: center;
  width: 5%;
}
.Card_home_image {
  object-fit: contain;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 4px 15px;
  min-width: 40%;
  max-width: 40%;
  height: 18em;
}
.Card_home_image_no_shadow {
  object-fit: contain;
  border-radius: 20px;
  min-width: 20%;
  max-width: 20%;
  height: 10em;
}

@media screen and (max-width: 1400px) {
  .Card,
  .Card_home {
    margin: 4ch 8rem 1.5ch 8rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .Card_image,
  .Card_home_image {
    max-width: 80%;
    height: auto;
    margin: 0 auto;
  }
  .Card_text,
  .Card_title,
  .Card_home_text,
  .Card_home_title {
    margin-top: 1rem;
    margin-left: 0;
    margin-right: 0;
  }
  .Card_ressources,
  .Card_home_ressources {
    width: 3.5rem;
    height: 3.5rem;
    margin-top: 1rem;
    margin-left: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .Card,
  .Card_home {
    margin: 2ch 2rem;
    padding: 1rem;
  }
  .Card_image,
  .Card_home_image {
    max-width: 100%;
    height: auto;
  }
  .CardSmaller {
    width: 90%;
    height: auto;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .CardSmaller_image {
    max-width: 80%;
    height: auto;
  }
  .CardSmaller_text {
    margin-left: 0;
    margin-right: 0;
  }
  .CardSmaller_title {
    margin-left: 0;
    margin-top: 1rem;
  }
  .Card_ressources,
  .Card_home_ressources {
    height: 3rem;
    width: 3rem;
    margin-top: 1rem;
  }
}
html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.Footer {
  width: 100%;
  margin-top: auto;
}
.Footer_text {
  display: flex;
  background-color: #005d80;
  justify-content: space-around;
  align-items: center;
  height: 3em;
}
.Footer_text > a {
  text-decoration: none;
  color: white;
}
.Footer_img {
  height: 2.5em;
  width: 2.5em;
  border-radius: 50px;
}

.Home {
  display: flex;
  flex-direction: column;
  color: white;
}
.Home_title {
  font-size: 36px;
  letter-spacing: 0.8px;
  color: #FF8119;
  margin-top: 2rem;
  text-align: center;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
}
.Home_subtitle {
  font-size: 20px;
  color: cadetblue;
  text-align: center;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  margin-top: 2rem;
}
.Home_text {
  text-align: center;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  margin-top: 2rem;
}

.Topnav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4em;
  background-color: #005d80;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.Topnav_section {
  width: 100%;
  max-width: 1400px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
}
.Topnav_img {
  width: 45px;
  height: 45px;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
}
.Topnav_links {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 4rem;
}
.Topnav_links a {
  color: white;
  text-decoration: none;
  position: relative;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}
.Topnav_links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background-color: #FF8119;
  transition: width 0.3s ease;
}
.Topnav_links a:hover, .Topnav_links a.active {
  color: #FF8119;
}
.Topnav_links a:hover::after, .Topnav_links a.active::after {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .Topnav_links {
    position: absolute;
    top: 4em;
    left: 0;
    width: 100%;
    flex-direction: column;
    background-color: #005d80;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
  }
  .Topnav_links.active {
    max-height: 1000px;
    opacity: 1;
  }
  .Topnav_links a {
    width: 100%;
    padding: 1.5rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .Topnav_links a:first-child {
    border-top: none;
  }
  .Topnav_links a:last-child {
    border-bottom: none;
  }
}
.Topnav_burger {
  display: none;
  width: 32px;
  height: 32px;
  position: relative;
  cursor: pointer;
  z-index: 1100;
}
.Topnav_burger span {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  width: 25px;
  height: 3px;
  background-color: white;
  border-radius: 3px;
  transition: all 0.3s ease;
}
.Topnav_burger span:nth-child(1) {
  top: 6px;
}
.Topnav_burger span:nth-child(2) {
  top: 14px;
}
.Topnav_burger span:nth-child(3) {
  top: 22px;
}
.Topnav_burger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 14px;
}
.Topnav_burger.active span:nth-child(2) {
  opacity: 0;
}
.Topnav_burger.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 14px;
}
.Topnav_burger:hover span {
  background-color: #FF8119;
}
@media screen and (max-width: 768px) {
  .Topnav_burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

.Title {
  flex: 1;
  padding-top: 3rem;
  padding-bottom: 3rem;
  text-align: center;
  color: white;
}

.Container {
  display: flex;
  width: 100%;
}

.Subtitle {
  border-radius: 30px;
  color: white;
}

.BigTitle {
  font-size: 36px;
  letter-spacing: 2.4rem;
  color: #FF8119;
  margin-top: 0.625rem;
  text-align: center;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
}

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