/* Colors */
html {
  /* Set base font size to 10px for easier rem calculations */
  font-size: 62.5%;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  font-size: 16px;
  font-size: 1.6rem;
  font-family: Rubik, Arial, Helvetica, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

ul li {
  margin: 0;
  padding: 0;
}

ol {
  margin: 0;
  padding: 0;
}

p {
  padding: 0;
  margin: 0px 0px 5px 0px;
  margin: 0rem 0rem 0.5rem 0rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0px 0px 10px 0px;
  margin: 0rem 0rem 1rem 0rem;
  font-weight: normal;
}

fieldset {
  border: none;
  margin: 0;
  padding: 0;
}

button {
  cursor: pointer;
  text-decoration: none;
}

/* cyrillic-ext */
@font-face {
  font-family: "Moderustic";
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/moderustic/v1/2-c39J9s3o6eLFNHFdXYaOX1UUnf3GLnYjALsQNU7Zehaw.woff2) format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: "Moderustic";
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/moderustic/v1/2-c39J9s3o6eLFNHFdXYaOX1UUnf3GLnYjALsQNd7Zehaw.woff2) format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek */
@font-face {
  font-family: "Moderustic";
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/moderustic/v1/2-c39J9s3o6eLFNHFdXYaOX1UUnf3GLnYjALsQNa7Zehaw.woff2) format("woff2");
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* latin-ext */
@font-face {
  font-family: "Moderustic";
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/moderustic/v1/2-c39J9s3o6eLFNHFdXYaOX1UUnf3GLnYjALsQNX7Zehaw.woff2) format("woff2");
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Moderustic";
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/moderustic/v1/2-c39J9s3o6eLFNHFdXYaOX1UUnf3GLnYjALsQNZ7Zc.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
.header-box {
  display: flex;
  align-items: center;
  justify-content: space-around;
  color: #EFEEEE;
  width: 100vw;
  height: 10rem;
  text-align: center;
  z-index: 1000;
}

.logo-center {
  display: flex;
  position: absolute;
  justify-content: center;
  align-items: center;
  top: 0;
  margin-top: 10px;
  z-index: 1001;
}

.nav-logo {
  position: relative;
  display: block;
  width: 10rem;
  height: 10rem;
  border-radius: 60%;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
  z-index: 1002;
  transition: box-shadow 0.3s ease-in-out;
}
.nav-logo:hover {
  cursor: pointer;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
}

.header-nav {
  position: fixed;
  display: block;
  justify-content: center;
  width: 100vw;
  height: 10rem;
  align-items: center;
  font-size: medium;
  top: 0 !important;
  z-index: 1000;
}
.header-nav ul {
  display: flex;
  justify-content: space-around;
}
.header-nav ul li {
  list-style: none;
  margin: 1% 0;
}
.header-nav a {
  text-decoration: none;
  color: black;
  transition: 0.2s ease-in-out;
  vertical-align: middle;
  font-size: 2rem;
  text-wrap: nowrap;
}
.header-nav a:hover {
  color: #F26627;
}
.header-nav ion-icon {
  font-size: 2rem;
  vertical-align: middle;
}

.right-nav {
  border-radius: 800px;
  padding: 0.5rem 0;
  width: 30vw;
  margin-left: 5%;
  z-index: inherit;
  border: 1px solid black;
  backdrop-filter: blur(5px);
  background-color: rgba(239, 238, 238, 0.8);
}

.left-nav {
  border-radius: 800px;
  padding: 0.5rem 0;
  width: 30vw;
  margin-right: 5%;
  z-index: inherit;
  border: 1px solid black;
  backdrop-filter: blur(5px);
  background-color: rgba(239, 238, 238, 0.8);
}

.logos {
  display: flex;
  position: absolute;
  top: 0;
  justify-content: space-between;
  height: 10rem;
}
.logos a {
  color: #EFEEEE;
  text-decoration: none;
  transition: 0.2s ease-in-out;
  padding-left: 1rem;
  height: 2.5rem;
  margin-top: auto;
  margin-bottom: auto;
}
.logos a:hover {
  color: #F26627;
}
.logos ion-icon {
  color: black;
  font-size: 2.5rem;
}

.logo-nav-small {
  display: flex;
  position: absolute;
  top: 0;
  justify-content: space-between;
  height: 10rem;
  left: 5%;
  z-index: 1011;
}
.logo-nav-small a {
  color: #EFEEEE;
  text-decoration: none;
  transition: 0.2s ease-in-out;
  padding-left: 1rem;
  height: 2.5rem;
  margin-top: auto;
  margin-bottom: auto;
}
.logo-nav-small a:hover {
  color: #F26627;
}
.logo-nav-small ion-icon {
  color: black;
  font-size: 2.5rem;
}

.logos-socials {
  display: flex;
  position: absolute;
  top: 0;
  justify-content: space-between;
  height: 10rem;
  right: 5%;
  z-index: 1001;
}
.logos-socials a {
  color: #EFEEEE;
  text-decoration: none;
  transition: 0.2s ease-in-out;
  padding-left: 1rem;
  height: 2.5rem;
  margin-top: auto;
  margin-bottom: auto;
}
.logos-socials a:hover {
  color: #F26627;
}
.logos-socials ion-icon {
  color: black;
  font-size: 2.5rem;
}

.menu-small {
  visibility: hidden;
  width: 100vw;
  height: 100vh;
  background-color: #EFEEEE;
  position: fixed;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 1010;
}
.menu-small ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  vertical-align: middle;
}
.menu-small ul li {
  list-style: none;
  margin: 1rem;
}
.menu-small a {
  text-decoration: none;
  color: black;
  transition: 0.2s ease-in-out;
  font-size: 2rem;
  margin: 1rem;
}
.menu-small a:hover {
  color: #F26627;
}

@media (min-width: 320px) {
  .header-nav {
    display: none;
  }
}
@media (min-width: 1025px) {
  .header-nav {
    display: flex;
  }
  .logo-nav-small {
    visibility: hidden;
  }
}
.footer {
  position: relative;
  color: #fff;
}
.footer .top-footer {
  display: flex;
  justify-content: space-around;
  background-color: #325d79;
  padding: 2em 0;
}
.footer h2 {
  margin-top: 1em;
  font-size: 3rem;
}
.footer ul {
  list-style-type: none;
  padding-left: 5px;
}
.footer ul li {
  padding: 5px 5px;
  font-size: 1.8rem;
}
.footer a {
  text-decoration: none;
  color: #fff;
}
.footer a:hover {
  color: #F26627;
}
.footer .about {
  flex-grow: 1;
}
.footer .about p {
  margin-top: 1.2em;
  font-size: 1.5rem;
}
.footer .useful-links {
  flex-grow: 2;
}
.footer .contact {
  flex-grow: 2;
}
.footer ion-icon {
  padding-right: 10px;
  width: 20px;
  height: 20px;
  color: white;
  vertical-align: middle;
}
.footer .copyright {
  display: flex;
  justify-content: space-around;
  background-color: #26516e;
}
.footer .copyright p {
  font-size: 1rem;
  margin: 10px 0;
}

@media (min-width: 320px) {
  .top-footer {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .about, .useful-links, .contact {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .about ul, .about p, .useful-links ul, .useful-links p, .contact ul, .contact p {
    margin-left: 10%;
  }
}
@media (min-width: 1024px) {
  .top-footer {
    display: flex;
    flex-direction: row;
    width: 100%;
    padding-right: auto;
  }
  .about, .useful-links, .contact {
    width: 100%;
    padding: 0 5%;
  }
  .about ul, .about p, .useful-links ul, .useful-links p, .contact ul, .contact p {
    margin-left: 10%;
  }
}
.section {
  padding: 5%;
}
.section .section-header {
  text-align: center;
}
.section .section-header h2 {
  font-size: 3rem;
  font-weight: bold;
}
.section .section-header p {
  font-size: 1.5rem;
}
.section .section-content {
  margin-top: 3%;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-around;
}
.section .section-reverse {
  flex-direction: row-reverse;
}

.section-white {
  background-color: #EFEEEE;
}

.section-dark {
  background-color: #325d79;
  color: #EFEEEE;
}

.separator {
  width: 100%;
  height: 1px;
  background-color: #F26627;
  margin-top: 5%;
}

.content-wave {
  width: 100vw;
  position: relative;
}
.content-wave svg {
  z-index: -1;
  position: relative;
  top: 10px;
}

@media (min-width: 320px) {
  .content-wave {
    margin-top: -200px;
  }
}
@media (min-width: 1024px) {
  .content-wave {
    margin-top: -350px;
  }
}
.content-navbar {
  background-color: #EFEEEE;
  padding: 10%;
  border-radius: 10px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
}

h3 {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 1em;
}

.btn-orange {
  text-decoration: none;
  color: #EFEEEE;
  padding: 12px 30px;
  position: relative;
  margin-top: 2%;
  background-color: #F26627;
  border-color: #F26627;
  border-radius: 5px;
  transition: all 0.3s ease 0s;
  font-size: 2rem;
}
.btn-orange:hover {
  color: #000;
  transform: translateY(-3px);
  background-color: #F9A26C;
  box-shadow: 0px 5px 10px #F26627;
}

.btn-orange-rounded {
  text-decoration: none;
  box-sizing: border-box;
  margin-top: 2em;
  font-size: 1.5rem;
  padding: 10px 20px;
  color: #EFEEEE;
  background-color: #F26627;
  border-radius: 20px;
  transition: 0.4s;
}
.btn-orange-rounded:hover {
  background-color: #F9A26C;
}

.btn-orange-small {
  padding: 2%;
  margin: 1%;
  background-color: #F26627;
  border: none;
  border-radius: 10px;
  transition: 0.4s;
}
.btn-orange-small:hover {
  background-color: #F9A26C;
}

.btn-blue {
  text-decoration: none;
  font-size: 1.8rem;
  padding: 0.3% 1%;
  margin: 1%;
  background-color: #325d79;
  color: #EFEEEE;
  border-radius: 5px;
  width: auto;
  transition: 0.4s;
}
.btn-blue:hover {
  background-color: #F9A26C;
}

a {
  text-decoration: none;
  color: #000;
  transition: 0.3s all ease-out;
}
a:hover {
  color: #325d79;
}

.template-content {
  padding: 2% 5%;
  width: 100vw;
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
}

.sticky {
  position: sticky;
  top: 100px;
}

.summary {
  padding: 2%;
  display: flex;
  flex-direction: column;
  padding: 8%;
  z-index: 2;
}
.summary .summary-content {
  display: flex;
  flex-direction: row;
  margin-left: 5%;
  margin-right: 5%;
}
.summary .summary-bar {
  width: 20px;
  height: 100%;
  color: #F26627;
  font-weight: bolder;
  position: relative;
}
.summary #acc-bar {
  width: 20px;
  top: -6px;
  font-size: 24px;
  font-size: 2.4rem;
  position: absolute;
}
.summary .p-inactive {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 30px;
  line-height: 3rem;
  color: #000;
  transition: all 0.3s ease-out;
  margin: 0;
}
.summary .p-inactive:hover {
  cursor: pointer;
  color: #F26627;
  margin: 0;
}
.summary .p-active {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 30px;
  line-height: 3rem;
  font-weight: bolder;
  color: #F26627;
  margin: 0;
}
.summary li {
  list-style-type: none;
  margin-bottom: 5%;
}

.projet-content {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 5%;
}
.projet-content h2 {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bolder;
}
.projet-content p {
  font-size: 16px;
  font-size: 1.6rem;
  text-align: justify;
  box-sizing: border-box;
  padding: 0 25px;
}
.projet-content .img-project {
  width: 250px;
  margin-left: auto;
  margin-right: auto;
}
.projet-content .projet-info {
  display: flex;
  padding: 2% 0;
  margin-left: 0;
}

.project-title {
  border-bottom: 1px solid #F26627;
  padding: 1% 0;
  margin-bottom: 1%;
}

.right-content {
  width: 20vw;
  display: flex;
  flex-direction: column;
}

.sharing {
  margin-top: 5%;
}

.project-caption {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.title {
  margin-top: 3%;
  padding-left: 3%;
  padding: 1% 2%;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bolder;
  background-color: #EFEEEE;
  border-bottom: 2px solid #F26627;
}

.links {
  color: #325d79;
  display: flex;
  justify-content: space-around;
}
.links ion-icon {
  font-size: 30px;
  font-size: 3rem;
}
.links p {
  margin-top: 2%;
  font-size: 16px;
  font-size: 1.6rem;
  text-align: center;
}
.links a {
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  color: #325d79;
}
.links a:hover {
  color: #F26627;
}

table {
  font-size: 16px;
  font-size: 1.6rem;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  border-collapse: collapse;
  margin-bottom: 2%;
}
table thead {
  background-color: #EFEEEE;
}
table thead tr {
  border-bottom: 1px solid #F26627;
}
table th {
  padding: 1%;
}
table td {
  padding: 1%;
  border-bottom: 1px solid #F26627;
}

.tag-buttons {
  display: flex;
  flex-wrap: wrap;
  padding: 5%;
}

.stage {
  text-align: center;
  border-bottom: 1px solid #F26627;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0% !important;
  margin-top: 5%;
}

.stage-title {
  text-align: center;
  width: 100%;
  padding-top: 0%;
}

.text-content {
  text-align: justify;
}

.bullet-list {
  list-style: disc;
  padding-left: 60px;
}

.image-zoom {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.7);
}

#img-zoomed {
  margin: auto;
  display: block;
  width: 90%;
  max-width: 1000px;
  padding-top: 1vh;
}

.close {
  display: block;
  color: #FFF;
  top: 10%;
  left: 10%;
  width: auto;
  font-size: 50px;
  padding-top: 5px;
  padding-left: 5px;
}
.close ion-icon {
  cursor: zoom-out;
}

.img-zoomed-caption {
  padding-top: 1vh;
  color: #FFF;
  text-align: center;
  font-size: 24px;
  font-size: 2.4rem;
}

.all-downloads {
  width: 90%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.downloads-box {
  width: 100px;
  height: 150px;
  background-color: #EFEEEE;
  border-radius: 10px;
  border: 1px solid #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 5px;
}
.downloads-box p {
  text-align: center;
  width: 100%;
  height: 50%;
  margin-top: 20px;
  padding: 0px;
}
.downloads-box ion-icon {
  font-size: 40px;
  display: flex;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 320px) {
  .right-content {
    display: none;
  }
  .projet-content {
    width: 90vw;
  }
  .project-image {
    width: 250px;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    cursor: zoom-in;
  }
}
@media (min-width: 1025px) {
  .right-content {
    display: block;
  }
  .projet-content {
    width: 60vw;
  }
  .project-image {
    width: 500px;
    display: flex;
    margin-left: auto;
    margin-right: auto;
  }
}

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