@charset "UTF-8";
/*
----------------------------------------------------------
-- Main
----------------------------------------------------------
-- Regroupe toutes les parties

--------------------------------------------------------------------------------------------------------------------

Les conventions sont les suivantes : 
- A chaque nouveau fichier faire un entete comme le suivant pour spécifier quel partie est 
traité dans le fichier css :

----------------------------------------------------------
-- Exemple
----------------------------------------------------------
-- Qu'est-ce qu'un exemple

- Puis décrire ce qui est fait dans le fichier

*/
@import url("https://fonts.googleapis.com/css2?family=Nunito&family=Urbanist:ital,wght@1,200&display=swap");
/*
----------------------------------------------------------
-- Base
----------------------------------------------------------
-- Cette partie sert de base pour toutes les parties du site web
*/
h1 {
  font-family: "Nunito", sans-serif;
  margin: 0;
}

h1, h2, h2, h3, h4, h5, h6, a, p, em, li, label {
  font-family: "Nunito", sans-serif;
}

h1, h2, h2, h3 {
  color: #22577A;
  text-align: center;
}

p {
  font-size: medium;
}

body {
  min-height: 100vh;
  margin: 0;
  background-color: #eeeff0;
}

main {
  min-height: 50vh;
}

a {
  text-decoration: none;
}

svg {
  position: absolute;
  max-width: 10vw;
  height: 100px;
  width: 100px;
  top: 0;
  left: 0;
}

/*
----------------------------------------------------------
-- Header
----------------------------------------------------------
-- Cette partie est utilisé pour modifier la partie header du site
*/
header {
  background-image: url("./background.jpg");
  background-position-y: -200px!important;
  background-repeat: no-repeat;
  background-size: cover;
  height: auto;
  background-position: top;
}
@media (max-width: 1000px) { 
    header{
  background-position-y: 0!important;
    }
    
}
header .title h1, header .title p {
  color: white !important;
}
header .title h1 {
  font-size: xxx-large;
}
header .overlay {
  width: 100%;
  height: 100%;
  background: rgba(34, 87, 122, 0.7);
  padding: 0;
  margin: 0;
}
header > div {
  display: flex;
  flex-direction: column;
  align-items: center;
}
header > div .container {
  margin-top: 5vh;
  display: flex;
  align-items: center;
  width: 75%;
  justify-content: space-between;
}
header > div .container h1 {
  color: white !important;
}
@media (min-width: 2000px) {
  header > div .container {
    width: 50%;
  }
}
@media (max-width: 1000px) {
  header > div .container {
    width: 90%;
  }
}
header > div .container a {
  font-family: "Nunito", sans-serif;
  font-size: medium;
  color: white;
  text-decoration: none;
}
header > div .container > div:last-child {
  display: flex;
  flex-grow: 0.5;
  justify-content: space-around;
}
header > div .container > div:last-child a {
  font-family: "Nunito", sans-serif;
  font-size: medium;
  color: white;
  text-decoration: none;
  transition: all 0.3s;
}
header > div .container > div:last-child a:hover {
  color: #444444;
  transition: all 0.3s;
}
header > div .container > div:last-child div {
  margin-left: 1%;
}
header > div .container p {
  margin-top: 0;
}
header > div > div:last-child {
  width: 75%;
  margin-top: 10vh;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 15vh;
}
@media (min-width: 1400px) {
  header > div > div:last-child {
    width: 50%;
  }
}
@media (max-width: 1000px) {
  header > div > div:last-child {
    width: 90%;
  }
}
header > div > div:last-child .search {
  width: 100%;
}
header > div > div:last-child form {
  background-color: rgba(178, 182, 185, 0.7);
  border-radius: 4px;
  padding: 15px 15px;
  display: flex;
  width: 100%;
  margin-top: 5vh;
  font-family: "Nunito", sans-serif;
  font-size: medium;
  align-items: center;
  justify-content: space-around;
}
header > div > div:last-child form .choices {
  min-width: 30%;
}
header > div > div:last-child form input {
  padding: inherit;
  border-radius: 40px;
  border-style: solid;
}

.top {
  background-color: #0BB76C;
  color: white !important;
  display: flex;
  flex-direction: row;
  padding-right: 5%;
  min-height: 50px;
  justify-content: end;
  align-items: center;
}
.top a {
  background-color: rgba(178, 182, 185, 0.7);
  border-radius: 10px;
  padding: 3%;
  color: white;
  font-size: large;
  transition: all 0.3s;
}
.top a:hover {
  background-color: rgba(138, 142, 145, 0.7);
  transition: all 0.3s;
}
.top > .account_top {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: center;
}
.top > .account_top > div {
  display: block ruby;
  align-self: center;
  font-size: medium;
}
.top > .account_top > div a {
  padding: 0;
  padding-left: 1%;
  font-size: medium;
}
.top > .account_top > div a:hover {
  color: #4d4d4d;
}
.top > .account_top h5, .top > .account_top a {
  margin-right: 10px;
}
.top > .account_top h5 {
  font-size: large;
}
.top > .account_top .over_a {
  display: flex;
  align-items: center;
  background-color: inherit;
}
.top > .account_top .over_a:hover {
  background-color: initial;
}

.back {
  display: flex;
}
.back a {
  color: #cacaca;
  padding: 10px;
  margin-top: 10px;
  margin-left: 10px;
  padding-left: 30px;
  padding-right: 30px;
  background-color: #3c6388;
  border-radius: 10px;
  transition: all 0.3s;
}
.back a:hover {
  color: #3c6388;
  background-color: #cacaca;
  transition: all 0.3s;
}

.logo {
  text-align: center;
}
.logo img {
  width: 100px;
}

.footer {
  text-align: center;
  background-color: #22577A;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  font-style: none;
  min-height: 20vh;
}
.footer div {
  padding: 30px;
}
.footer a {
  color: #d0d0d0;
}
.footer a:hover {
  color: white;
}
.footer > div:first-child {
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
}
.footer p {
  margin-bottom: 0;
}

.choices__list {
  padding: 0 !important;
  border-radius: 30px !important;
}

.choices__inner {
  padding: 0 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 40px !important;
  height: 100%;
  border-width: 0 !important;
}

.choices {
  font-family: "nunito", sans-serif;
  margin: 0 !important;
  height: 100% !important;
}

.pres_site {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pres_site div {
  width: initial;
}
.pres_site .job_multiple {
  width: 75%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.pres_site .job_multiple .job_one {
  margin: 10px;
  padding: 10px;
  align-items: center;
  justify-content: space-between;
  background-color: white;
  display: flex;
  flex-direction: column;
  border-style: solid;
  border-color: #22577A;
  border-width: 2px;
}
.pres_site .job_multiple .job_one img {
  width: 150px;
  border-radius: 200px;
  height: 150px;
}
.pres_site .job_multiple .job_one div {
  display: flex;
  flex-direction: column;
  align-self: baseline;
}
.pres_site .job_multiple .job_one div h3 {
  text-align: left;
  margin-bottom: 0;
  color: #22577A;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  text-decoration-thickness: 2px;
  font-size: xx-large;
}
.pres_site .job_multiple .job_one div h4 {
  margin-top: 0;
}
.pres_site .job_multiple .job_one .job {
  flex-direction: row;
  align-items: center;
}
.pres_site .job_multiple .job_one .job i {
  padding-right: 10px;
}
.pres_site .job_multiple .job_one a {
  padding: 10px;
  color: #f0ecd7;
  background-color: #22577A;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s;
}
.pres_site .job_multiple .job_one a:hover {
  transition: all 0.3s;
  background-color: white;
  color: #555555;
  cursor: pointer;
}

.title_main {
  display: flex;
  align-self: center;
  justify-content: center;
  margin-top: 50px;
  margin-bottom: 50px;
  font-size: x-large;
}
.title_main h2 {
  color: #22577A;
  text-align: center;
  padding: 10px;
  margin: 0;
}

.no_post {
  background-color: #df8585;
  color: white;
  display: flex;
  flex-direction: column;
  align-self: center;
  align-items: center;
  padding: 10px;
  border-radius: 10px;
  margin-top: 5vh;
}

.done, .error {
  text-align: center;
  min-height: 50px;
  padding: 10px;
  align-items: center;
  justify-content: center;
  display: flex;
  border-style: solid;
  position: absolute;
  top: 10px;
  left: 10px;
  transition: all 0.5s;
}

.done {
  background-color: #0BB76C;
  color: white;
  border-color: #80ED99;
}
.done p {
  margin: 0;
}

.error {
  background-color: #fa3131;
  color: white;
  border-color: #f78383;
}
.error p {
  margin: 0;
}

.search {
  display: flex;
  flex-direction: row;
  width: 95%;
}
.search form {
  background-color: rgba(178, 182, 185, 0.7);
  border-radius: 5px;
  padding: 15px 15px;
  margin-right: 10px;
  margin-left: 10px;
  display: flex;
  width: 100%;
  margin-top: 5vh;
  font-family: "Nunito", sans-serif;
  font-size: medium;
  align-items: center;
  justify-content: space-around;
}
.search form .choices {
  min-width: 30%;
}
.search form input {
  padding: inherit;
  border-radius: 40px;
  border-style: solid;
}

.list_admin > .no_post {
  text-align: center;
}
.list_admin > .job_multiple > div {
  width: 100%;
}
.list_admin > .job_multiple > div .job_one {
  width: initial;
}
.list_admin .button a {
  margin: 10px;
}

.searchlist, .list_admin {
  display: flex;
  flex-direction: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.searchlist form div, .list_admin form div {
  width: initial;
}

.job_multiple {
  width: 75%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.job_multiple .job_one {
  margin: 10px;
  padding: 10px;
  align-items: center;
  justify-content: space-between;
  background-color: white;
  display: flex;
  flex-direction: column;
  border-style: solid;
  border-color: #22577A;
  border-width: 2px;
}
.job_multiple .job_one img {
  width: 150px;
  border-radius: 200px;
  height: 150px;
}
.job_multiple .job_one div {
  display: flex;
  flex-direction: column;
  align-self: baseline;
}
.job_multiple .job_one div h3 {
  text-align: left;
  margin-bottom: 0;
  color: #22577A;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  text-decoration-thickness: 2px;
  font-size: xx-large;
}
.job_multiple .job_one div h4 {
  margin-top: 0;
}
.job_multiple .job_one .job {
  flex-direction: row;
  align-items: center;
}
.job_multiple .job_one .job i {
  padding-right: 10px;
}
.job_multiple .job_one a {
  padding: 10px;
  color: #f0ecd7;
  background-color: #22577A;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s;
}
.job_multiple .job_one a:hover {
  transition: all 0.3s;
  background-color: white;
  color: #555555;
  cursor: pointer;
}

.button {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}
.button a, .button input {
  font-size: medium;
  padding: 10px;
  color: #f0ecd7;
  background-color: #22577A;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s;
}
.button a:hover, .button input:hover {
  transition: all 0.3s;
  background-color: white;
  color: #555555;
  cursor: pointer;
}

.modify_post input, .register input {
  padding: 0;
}
.modify_post textarea, .modify_post .choices, .register textarea, .register .choices {
  width: 100%;
}
.modify_post .category, .register .category {
  border-style: none;
  border-radius: 10px !important;
}
.modify_post .input, .register .input {
  border-radius: 10px;
  border-width: 1px;
  border-style: solid;
  background-color: #f9f9f9;
  height: 30%;
  margin-bottom: 2%;
}
.modify_post .choices__inner, .register .choices__inner {
  margin-bottom: 10px;
}
.modify_post div, .register div {
  width: 100%;
}

.details h2 {
  color: #22577A;
}
.details .comp {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.details .comp .img {
  padding: 30px;
}
.details .comp .img img {
  border-radius: 100px;
  height: 100px;
  width: 100px;
}
.details .comp .category {
  background-color: white;
  border-radius: 2px;
}
.details a {
  text-align: center;
  padding: 10px;
  color: #f0ecd7;
  background-color: #22577A;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s;
}
.details a:hover {
  transition: all 0.3s;
  background-color: white;
  color: #555555;
  cursor: pointer;
}
.details .button_user {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  margin-bottom: 50px;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
}
main div {
  width: 75%;
}

.category {
  background-color: white;
  border-radius: 2px;
  border-style: solid;
  border-color: #22577A;
  border-width: 2px;
  margin: 20px;
  padding: 10px;
}
.category h3 {
  text-align: left;
}
.category div {
  width: initial;
}
.category .choices__list {
  width: 101%;
  overflow-x: hidden;
}
.category .choices__inner {
  overflow-x: hidden;
}

.register {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.choose {
  width: 100%;
}
.choose div {
  width: 100%;
}
.choose h3 {
  color: #22577A;
}
.choose > div {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
.choose > div > div:first-child {
  display: flex;
  flex-direction: column;
}
.choose > div > div:first-child > div {
  width: 100%;
}
.choose > div > div:first-child > div form {
  display: flex;
  flex-direction: column;
}
.choose > div > div:first-child > div form input {
  min-height: 40px;
  margin-top: 7%;
  margin-bottom: 7%;
  border-style: solid;
  border-radius: 10px;
  border-width: 1px;
  border-color: #22577A;
}
.choose > div > div:first-child > div form input[type=submit] {
  background-color: #22577A;
  color: white;
  transition: all 0.5s;
}
.choose > div > div:first-child > div form input[type=submit]:hover {
  background-color: white;
  color: #22577A;
  border-color: white;
  transition: all 0.5s;
  cursor: pointer;
}
.choose > div > div {
  width: 30%;
  background-color: white;
  border-radius: 1px;
  box-shadow: 3px 3px 3px rgba(121, 121, 121, 0.597);
  padding: 10px;
  font-style: "nunito" !important;
  align-items: center;
}
.choose > div > div:nth-child(2) {
  background-color: white;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.choose > div > div:nth-child(2) a {
  text-align: center;
  background-color: #22577A;
  color: white;
  transition: all 0.5s;
  height: 30px;
  padding-top: 10px;
  margin-top: 7%;
  margin-bottom: 7%;
  border-style: solid;
  border-radius: 10px;
  border-width: 1px;
  border-color: #22577A;
  width: 100%;
}
.choose > div > div:nth-child(2) a:hover {
  background-color: white;
  color: #22577A;
  border-color: white;
  transition: all 0.5s;
  cursor: pointer;
}

.login {
  display: flex;
  flex-direction: column;
}
.login > div {
  width: 100%;
}
.login > div form {
  display: flex;
  flex-direction: column;
}
.login > div form input {
  min-height: 40px;
  margin-top: 7%;
  margin-bottom: 7%;
  border-style: solid;
  border-radius: 10px;
  border-width: 1px;
  border-color: #22577A;
}
.login > div form input[type=submit] {
  background-color: #22577A;
  color: white;
  transition: all 0.5s;
}
.login > div form input[type=submit]:hover {
  background-color: white;
  color: #22577A;
  border-color: white;
  transition: all 0.5s;
  cursor: pointer;
}

.user_index {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.user_index div {
  width: 100%;
  padding: 10px;
}
.user_index a {
  width: 100%;
  display: inline-block;
  text-align: center;
  background-color: #22577A;
  color: white;
  transition: all 0.5s;
  height: 30px;
  padding-top: 10px;
  border-style: solid;
  border-radius: 10px;
  border-width: 1px;
  border-color: #22577A;
  width: 100%;
}
.user_index a:hover {
  background-color: white;
  color: #22577A;
  border-color: white;
  transition: all 0.5s;
  cursor: pointer;
}/*# sourceMappingURL=main.css.map */