.landing {
  width: 100%;
  padding-bottom: 2em;
}

.landing .main {
  display: grid;
  color: black;
  grid-template-columns: 1fr 2fr 4fr 2fr 1fr;
  grid-template-rows: 1fr 1fr 3fr 1fr 1fr;
  height: 100vh;
  width: 100%;
  background-image: url("../images/bg.png");
  background-repeat: no-repeat;
  background-size: cover;
}
.landing .main__title {
  grid-column: 2/5;
  grid-row: 2;
  text-transform: uppercase;
}
.landing .main__subtext {
  grid-row: 3;
  grid-column: 2/5;
}
.landing .main__img {
  border-radius: 1em;
}
.landing .main__link {
  grid-row: 4;
  grid-column: 3;
  border-radius: 8px;
  background-color: #3E42B8;
  color: white;
  font-size: 20px;
  padding: 0.5em;
  box-shadow: 0 5px 6px #4D4D4D;
  text-decoration: none;
  align-self: center;
  text-align: center;
  cursor: pointer;
}
.landing .main__link:hover {
  background-color: #4488FF;
}

.landing .section {
  margin-top: 15vh;
  grid-template-columns: 1fr 4fr 1fr 1fr 4fr 1fr;
  grid-template-rows: 1fr 2fr;
  display: grid;
}
.landing .section__left {
  grid-column: 2/6;
  align-self: center;
}
.landing .section__right {
  grid-column: 2/6;
  align-self: center;
}
.landing .section__wide {
  grid-column: 2/6;
}
.landing .section__text {
  background-color: black;
  color: white;
}
.landing .section__title {
  grid-column: 2/6;
}

.landing .img {
  width: 80%;
  margin: auto;
}

@media (min-width: 768px) {
  .landing .main {
    background-image: url("../images/bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    height: 91vh;
    grid-template-columns: 1fr 2fr 4fr 2fr 1fr 2fr 4fr 2fr 1fr;
    grid-template-rows: 1fr 2fr 3fr 1fr 1fr;
  }
  .landing .main__title {
    grid-column: 6/9;
    grid-row: 2;
  }
  .landing .main__subtext {
    grid-row: 3;
    grid-column: 6/9;
  }
  .landing .main__link {
    grid-row: 4;
    grid-column: 7;
  }
  .landing .main__img {
    grid-column: 3;
    grid-row: 2/5;
  }

  .landing .section {
    display: grid;
    grid-template-columns: 3fr 4fr 1fr 1fr 4fr 3fr;
    grid-template-rows: 1fr 3fr;
  }
  .landing .section__left {
    grid-column: 2/3;
  }
  .landing .section__right {
    grid-column: 5/6;
  }
  .landing .section__wide {
    grid-column: 2/6;
  }
  .landing .section__text {
    background-color: black;
    color: white;
  }
  .landing .section__title {
    grid-column: 2/6;
  }
}
@media screen and (min-device-pixel-ratio: 2) {
  .landing .main {
    background-image: url("../images/bg@2x.png");
  }
}
* {
  margin: 0;
  padding: 0;
}

body {
  width: 100vw;
}

h1 {
  font-size: 26px;
}

.topheader {
  top: 0;
}

.articles {
  font-size: 14px;
  line-height: 1.5;
  width: 100%;
  margin-top: 64px;
  padding-bottom: 2em;
}

.articleContainer {
  margin-bottom: 10vh;
}

.clipping {
  width: 90vw;
  max-height: fit-content;
  margin: 1em auto;
  background-color: white;
  box-shadow: 0 4px 6px 0 #121212;
  border-top-right-radius: 1em;
  transition-duration: 0.16s;
  cursor: pointer;
}
.clipping__header {
  text-align: center;
  padding: 1em;
}
.clipping__source {
  width: 70%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.clipping__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.clippingContent__image {
  width: 70%;
  max-width: 320px;
  max-height: 40%;
  height: 70%;
  padding: 2em;
}
.clippingContent__text {
  min-width: 40%;
  padding: 2em;
}
.clipping__author {
  width: 50%;
  margin-left: 50%;
  padding-bottom: 1em;
}
.clipping:hover {
  transform: scale(1.05);
}

.clippingSource__newspaperImg {
  width: 32px;
  height: 32px;
}

.research {
  padding: 1em 2em;
  width: calc(100% - 4em);
  bottom: 0;
  position: fixed;
  background-color: #4488FF;
  z-index: 3;
  box-shadow: 0 -8px 8px 4px rgba(0, 0, 0, 0.3);
  transition: height 0.3s;
}
.research__title {
  font-size: 1.5em;
}
.research__form {
  display: flex;
  flex-direction: column;
}
.research__criteria {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1em 0;
  padding: 1em 2em;
  border-radius: 0.5em;
  box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.3);
  background-color: rgba(255, 255, 255, 0.1);
}
.research__criteria:last-child {
  justify-content: space-around;
}
.research__open {
  font-size: 0;
  width: 36px;
  height: 36px;
  border-radius: 25%;
  padding: 0.5em;
  box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.3);
  background-image: url(../../assets/images/search.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left;
  background-color: rgba(255, 255, 255, 0.1);
  border: solid 2px;
  cursor: pointer;
}
.research__open:hover {
  background-color: rgba(255, 255, 255, 0.25);
}
.research__util {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.research__text {
  padding-left: 1em;
}

.criteriaInput {
  padding: 0.5em;
  border: none;
  border-radius: 0.5em;
}
.criteriaInput__date {
  padding: 0.6em;
}
.criteriaInput__control {
  background-color: #6DB8FF;
  box-shadow: 2px 2px 2px 1px #000000a9;
}

.hidden {
  display: none;
}

@media screen and (min-width: 768px) {
  * {
    font-size: 20px;
  }

  h1 {
    font-size: 40px;
  }

  .clipping {
    width: 70%;
  }
  .clipping__content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .clippingContent__image {
    width: 40%;
    max-width: 640px;
    max-height: 480px;
    height: 40%;
  }

  .clippingSource__newspaperImg {
    height: 48px;
    width: 48px;
  }

  .research {
    padding: 1em 3em;
  }
  .research__form {
    width: 50%;
    margin: auto;
  }
  .research__open {
    font-size: 18px;
    background-size: contain;
    width: 160px;
    height: 48px;
    border-radius: 7px;
    text-align: center;
    font-family: "Baloo Bhaijaan 2", cursive;
    padding-left: calc(32px + 1em);
  }
}
@media screen and (min-width: 1500px) {
  .clipping {
    width: 60%;
  }
}
.dashboard {
  width: 100%;
  height: 96%;
}
.dashboard .header {
  margin: 1em;
  text-align: center;
}
.dashboard .text {
  padding: 0 1em;
  text-align: center;
}
.dashboard main {
  margin-top: 72px;
}

.dashSection {
  margin: 1em auto;
  width: 300px;
  padding: 30px 25px;
  background: white;
  box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.4);
}
.dashSection__form {
  display: flex;
  flex-direction: column;
}
.dashSection__header {
  text-align: center;
  margin: 0.5em;
}
.dashSection__logout {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.dashSection__update {
  padding: 1em;
  background-color: #4488FF;
  margin: auto;
  border: none;
  border-radius: 0.5em;
  box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.4);
  cursor: pointer;
}
.dashSection__logoutLink {
  text-decoration: none;
  color: white;
  background-color: red;
  padding: 0.5em;
  border-radius: 0.5em;
  box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.4);
}
.dashSection__notif {
  margin-top: 1em;
  padding: 0.5em;
  text-align: center;
}
.dashSection__notif--success {
  border-top: green solid 3px;
  border-bottom: green solid 3px;
  background-color: rgba(0, 128, 0, 0.4);
}
.dashSection__notif--error {
  border-top: red solid 3px;
  border-bottom: red solid 3px;
  background-color: rgba(128, 0, 0, 0.4);
}

.login__form {
  width: 80%;
  margin: 72px auto 0;
  padding: 1em;
  background-color: white;
  box-shadow: 4px 4px 4px 2px rgba(0, 0, 0, 0.4);
}

h1.login__title {
  color: #666;
  margin: 0px auto 25px;
  font-size: 25px;
  font-weight: 300;
  text-align: center;
}

.login__input {
  font-size: 15px;
  border-radius: 0.5em;
  border: 1px solid #ccc;
  padding: 10px;
  margin-bottom: 25px;
  height: 25px;
  width: calc(100% - 23px);
}

.login__input:focus {
  border-color: #6e8095;
  outline: none;
}

.login__button {
  color: #fff;
  background: #55a1ff;
  border: 0;
  border-radius: 0.5em;
  outline: 0;
  width: 100%;
  height: 50px;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
}

.link {
  padding: 1em 0;
  color: #666;
  font-size: 15px;
  text-align: center;
  margin-bottom: 0px;
}

.link a {
  display: block;
  color: #666;
}

.settingContainer {
  display: flex;
  flex-wrap: wrap;
}

.settings {
  margin: 0.5em 1em;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}
.settings label {
  font-size: 1.1em;
}

.textAreas {
  margin: 0.5em 1em;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
}

.login__msg {
  width: 240px;
  margin: auto;
  display: none;
  background: white;
  color: #000;
  position: relative;
  padding: 20px;
  margin-top: 10px;
}
.login__msg p {
  padding: 10px 35px;
  font-size: 16px;
}
.login__msg.show {
  display: block;
}

.valid {
  color: green;
}

.invalid {
  color: red;
}

@media screen and (min-width: 768px) {
  .login__form {
    width: 50%;
    margin: 72px auto 0;
  }

  .login__msg {
    width: 360px;
    font-size: 18px;
  }

  .dashSection {
    width: 50%;
  }
}
body {
  margin: 0;
  padding: 0;
  font-family: "Baloo Bhaijaan 2", cursive;
  font-size: 16px;
  line-height: 1.5;
  background-color: rgba(140, 180, 255, 0.3);
  transition-duration: 0.3s;
  transition-property: background-color color;
}

.title {
  font-family: "Baloo Bhaijaan 2", cursive;
}

.topBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 20;
  border: none;
  padding: 1em;
  background-color: #3E42B8;
  color: white;
  cursor: pointer;
  border-radius: 20px;
}
.topBtn:hover {
  background-color: #FFBA44;
}

.topheader {
  position: fixed;
  background-color: #4488FF;
  color: black;
  padding: 1em 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  box-shadow: 0 4px 4px 2px rgba(0, 0, 0, 0.3);
  z-index: 5;
}

.topheader__logo {
  font-size: 0;
  height: 28px;
  width: 172px;
  padding: 1em;
  background-image: url(../images/logo_MInfos.svg);
  background-size: cover;
  background-repeat: no-repeat;
}

.topheader__navlist {
  list-style: none;
  width: 100%;
  height: 95vh;
  padding: 0;
  margin: 0;
  display: none;
  flex-direction: column;
  justify-content: space-around;
  order: 3;
}

.topheader__navlistEl {
  display: block;
  text-align: center;
}

.topheader__navlistEl a {
  color: #000000;
  text-decoration: none;
  display: block;
  padding: 0.5em;
  font-size: 1.5em;
  transition-property: background-color;
  transition-duration: 0.6s;
}

.topheader__navlistEl a:hover {
  background-color: #bedefd;
}

.topheader__navlist.show {
  display: flex;
}

.topheader__button {
  padding: 0.5em;
  text-transform: uppercase;
}

.active {
  background-color: #82f0ff;
}

.burger {
  display: block;
  background-image: url(../images/menu.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-color: transparent;
  border: none;
  font-size: 0;
  height: 32px;
  width: 32px;
  cursor: pointer;
}

.burger.show {
  background-image: url(../images/x.svg);
}

/*
 * CSS d'un article (main.html & archives.html)
 */
.article {
  font-size: 18px;
  width: 80%;
  margin: 1em auto;
  padding: 1em;
  border-radius: 8px;
  background-color: #b4cdff;
}
.article__link {
  font-size: 16px;
}
.article .badge {
  position: relative;
  top: -10px;
  right: -10px;
  padding: 5px 10px;
  border-radius: 50%;
  background: #F00;
  color: white;
}

.inputScreen {
  width: 100%;
  height: 96%;
}
.inputScreen .login__msg {
  box-shadow: 4px 4px 4px 2px rgba(0, 0, 0, 0.4);
}

@media screen and (min-width: 769px) {
  .credits {
    padding: 24px 0 12px;
  }
  .credits .creditContainer {
    width: 65%;
  }
}
.footer {
  display: flex;
  flex-direction: column;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #4D4D4D;
  color: #000;
}

.footer__list {
  display: flex;
  flex-direction: column;
  padding: 0;
  list-style: none;
}

.footer__listEl {
  text-align: center;
}

.footer__listEl a {
  display: block;
  text-decoration: none;
  color: #FFFFFF;
  padding: 1em;
}

.footer__listEl:hover {
  background-color: #AA2222;
}

.footer__link {
  text-align: center;
  color: #FFFFFF;
  padding: 1em;
  display: block;
}

.footer__link:hover {
  background-color: #FF3333;
}

.footer__listEl.active {
  background-color: #3E42B8;
}

.logo {
  margin-top: 1em;
  text-indent: 100%;
  overflow: hidden;
  display: inline-block;
  white-space: nowrap;
  background-image: url("../images/logo-DWM.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

@media (min-width: 769px) {
  body {
    font-size: 24px;
  }

  .topBtn {
    bottom: 30px;
  }

  .topheader {
    position: unset;
    flex-wrap: nowrap;
    padding: 0;
    height: 74px;
  }

  .topheader__navlist {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-around;
    width: 45%;
    height: unset;
  }

  .topheader__navlistEl a {
    font-size: unset;
  }

  .topheader__button {
    border: solid 2px;
    border-radius: 0.5em;
  }

  .article {
    width: 70%;
    margin: 2em auto;
  }

  .burger {
    display: none;
  }

  .footer {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer__list {
    flex-direction: row;
    margin: 0;
  }

  .footer__link {
    order: 2;
    justify-content: center;
    align-self: center;
    margin-right: 2em;
  }

  .logo {
    width: 16%;
    margin-left: 2em;
  }
}
/*# sourceMappingURL=app.css.map*/