/* PARAMETRES DE BASE / CONFIG */
@font-face {
  font-family: "Dyslexic";
  src: url("./../fonts/OpenDyslexic-Regular.otf");
}
* :not(i) {
  font-family: "Gothic A1", sans-serif;
}

p::selection,
h2::selection,
h3::selection,
h4::selection,
h5::selection {
  background-color: rgba(255, 217, 0, 0.5);
}

* {
  transition: 0.5s;
}

body {
  transition: all 0.5s;
  background-color: #eeeeee;
}

header {
  position: fixed;
  transition: 0.1s;
  z-index: 1000;
}
section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-height: 768px) {
  @media (min-width: 992px) {
    section {
      height: 100vh;
    }
    .parcours {
      height: initial;
    }
  }
}

a {
  text-decoration: none !important;
  color: inherit;
}

h2 {
  font-family: "Caveat Brush", cursive;
  font-size: 5rem;
}
@media (max-width: 700px) {
  h2 {
    font-size: 3.5rem;
  }
}

@media (min-width: 1219px) {
  h2 {
    font-size: 4.5rem;
  }
}

.blur {
  filter: blur(20px);
  transition: 0.5s;
}

.noscroll {
  overflow: hidden !important;
}

.visible {
  visibility: initial;
  opacity: 1;
}

.dys {
  font-family: "Dyslexic" !important;
}
#dys {
  cursor: pointer;
}
/* MENU DE NAVIGATION */

#burger {
  position: fixed;
  padding: 15px;
}
.burger-background {
  z-index: -1;
  position: absolute;
  height: 62px;
  width: 70px;
  background-color: #eeeeee;
  opacity: 0.8;
  filter: blur(10px);
}
.nav_options {
  padding-top: 20px !important;
  color: gray;
}

.nav_options > li {
  margin-bottom: 0.5rem !important;
}

@media (max-height: 400px) {
  .nav_options {
    transform: translate(130px, -250px);
  }
}

.full-screen-background {
  transition: all 0.5s;
  width: 100%;
  height: 100vh;
  position: fixed;
}

.icolang {
  height: 15px;
}

mark {
  background-color: rgba(255, 217, 0, 0.5);
}
mark:hover {
  background-color: rgb(255, 217, 0);
}

/* SECTION WELCOME */

.welcome {
  flex-direction: column;
  height: 100vh;
}
.welcome__title {
  height: 40%;
  display: flex;
  align-items: flex-end;
  font-family: "Permanent Marker", cursive;
  font-size: 8vw;
  text-align: center;
  padding: 2rem;
}
@media (min-width: 1220px) {
  .welcome__title {
    font-size: 4rem;
  }
}
.welcome__description {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30%;
  text-align: center;
  padding: 1rem;
  font-size: 1.4rem;
}

.welcome__go {
  display: flex;
  align-items: center;
  height: 30%;
  padding: 1.5rem;
}

.welcome__go > button {
  text-decoration: none;
  font-family: "Caveat Brush", cursive;
  font-size: 2rem;
  background-color: #e74c5b;
  padding: 1rem 2rem;
  color: white !important;
  border: 1px solid #e74c5b;
  border-radius: 0.5rem;
}

.welcome__go > button:hover {
  background-color: white;
  color: #e74c5b !important;
}

/* SECTION PRESENTATION */

.presentation {
  flex-wrap: wrap;
}
.presentation__title {
  width: 100%;
  height: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.presentation__description {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

@media (max-width: 1219px) {
  .presentation__description {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-height: 400px) {
  .presentation__description {
    flex-direction: row;
    align-items: center;
  }
}
.presentation__description > p {
  width: 60%;
  height: 50%;
  font-size: 1.5rem;
  margin: 2rem;
  text-align: justify;
}
@media (max-width: 1219px) {
  .presentation__description > p {
    font-size: 1rem;
    margin: 2rem;
    width: initial;
  }
}
.presentation__illustration {
  margin: 2rem;
  width: 200px;
}

.presentation__illustration > img {
  width: 100%;
  border-radius: 5px;
}

.presentation__suite {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  width: 100%;
}

.presentation__suite > div {
  padding: 1.7rem 2rem;
}
.presentation__suite > div > button {
  color: rgba(63, 63, 63, 0.7);
  text-decoration: none;
  font-family: "Permanent Marker", cursive;
  font-size: 1.7rem;
  transition: 0.3s;
  padding: 10px 20px;
  background: none;
  border: none;
}

.presentation__suite > div > button:hover {
  color: rgba(63, 63, 63, 1);
  background-color: rgba(255, 217, 0, 0.5);

  transition: 0.3s;
}

/* SECTION PARCOURS */

.parcours {
  flex-wrap: wrap;
}

@media (min-height: 960px) {
  @media (min-width: 1200px) {
    .parcours {
      height: 100vh;
    }
  }
}
.parcours__title {
  width: 100%;
  text-align: center;
  padding-bottom: 2rem;
}
/* Timeline (©luisrudge https://bootsnipp.com/snippets/OzQj)  */
.parcours__timeline {
  list-style: none;
  padding: 20px 0 20px;
  position: relative;
}

.parcours__timeline:before {
  top: 0;
  bottom: 0;
  position: absolute;
  content: " ";
  width: 3px;
  background-color: #eeeeee;
  left: 50%;
  margin-left: -1.5px;
}

.parcours__timeline > li {
  margin-bottom: 20px;
  position: relative;
}

.parcours__timeline > li:before,
.parcours__timeline > li:after {
  content: " ";
  display: table;
}

.parcours__timeline > li:after {
  clear: both;
}

.parcours__timeline > li:before,
.parcours__timeline > li:after {
  content: " ";
  display: table;
}

.parcours__timeline > li:after {
  clear: both;
}

.parcours__timeline > li > .timeline__panel {
  background-color: rgba(255, 255, 255, 0.87);
  width: 46%;
  float: left;
  border: 1px solid #d4d4d4;
  border-radius: 10px;
  padding: 20px;
  position: relative;
  -webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);
}

.parcours__timeline > li > .timeline__panel:before {
  position: absolute;
  top: 26px;
  right: -15px;
  display: inline-block;
  border-top: 15px solid transparent;
  border-left: 15px solid #ccc;
  border-right: 0 solid #ccc;
  border-bottom: 15px solid transparent;
  content: " ";
}

.parcours__timeline > li > .timeline__panel:after {
  position: absolute;
  top: 27px;
  right: -14px;
  display: inline-block;
  border-top: 14px solid transparent;
  border-left: 14px solid #fff;
  border-right: 0 solid #fff;
  border-bottom: 14px solid transparent;
  content: " ";
}

.parcours__timeline > li > .timeline__badge {
  color: #fff;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 1.4em;
  text-align: center;
  position: absolute;
  top: 16px;
  left: 50%;
  margin-left: -25px;
  background-color: #e74c5b;
  z-index: 100;
  border-top-right-radius: 50%;
  border-top-left-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
}

.parcours__timeline > li.timeline__inverted > .timeline__panel {
  float: right;
}

.parcours__timeline > li.timeline__inverted > .timeline__panel:before {
  border-left-width: 0;
  border-right-width: 15px;
  left: -15px;
  right: auto;
}

.parcours__timeline > li.timeline__inverted > .timeline__panel:after {
  border-left-width: 0;
  border-right-width: 14px;
  left: -14px;
  right: auto;
}

.timeline__body > p,
.timeline__body > ul {
  margin-bottom: 0;
}

.timeline__body > p + p {
  margin-top: 5px;
}

@media (max-width: 767px) {
  ul.parcours__timeline:before {
    left: 40px;
  }

  ul.parcours__timeline > li > .timeline__panel {
    width: calc(100% - 90px);
    width: -moz-calc(100% - 90px);
    width: -webkit-calc(100% - 90px);
  }

  ul.parcours__timeline > li > .timeline__badge {
    left: 15px;
    margin-left: 0;
    top: 16px;
  }

  ul.parcours__timeline > li > .timeline__panel {
    float: right;
  }

  ul.parcours__timeline > li > .timeline__panel:before {
    border-left-width: 0;
    border-right-width: 15px;
    left: -15px;
    right: auto;
  }

  ul.parcours__timeline > li > .timeline__panel:after {
    border-left-width: 0;
    border-right-width: 14px;
    left: -14px;
    right: auto;
  }
}

.timeline__panel h3 {
  font-weight: 800;
  font-size: 1.2rem;
  padding-bottom: 0.5rem;
}

.timeline__panel h4 {
  font-weight: 500;

  font-size: 1rem;
  padding-bottom: 0.5rem;
}

.parcours__suite {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  width: 100%;
}

.parcours__suite > div {
  padding: 1.7rem 2rem;
}
.parcours__suite > div > button {
  color: rgba(63, 63, 63, 0.7);
  text-decoration: none;
  font-family: "Permanent Marker", cursive;
  font-size: 1.7rem;
  transition: 0.3s;
  padding: 10px 20px;
  background: none;
  border: none;
}

.parcours__suite > div > button:hover {
  color: rgba(63, 63, 63, 1);
  background-color: rgba(255, 217, 0, 0.5);

  transition: 0.3s;
}

/* SECTION COMPETENCES */
.competences {
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  .competences {
    height: inherit;
  }
}
.competences__title {
  width: 100%;
  text-align: center;
  padding-bottom: 4rem;
}

.competences__description {
  display: flex;
  justify-content: center;
  height: 60%;
  width: 100%;
}

@media (max-width: 768px) {
  .competences__description {
    flex-direction: column;
  }
}

.competences__item {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  text-align: justify;
  padding: 0 3rem;
  min-width: 25vw;
  height: inherit;
  line-height: 1.2rem !important;
}

@media (max-width: 1024px) {
  .competences__item {
    width: inherit;
    height: inherit;
    padding: 0 1rem;
    padding-bottom: 4rem;
  }
}
.competences__item h3 {
  font-weight: 800;
  font-size: 1.6rem;
  padding: 0;
  padding-bottom: 0.5rem;
  text-align: center;
  height: 70px;
  line-height: 1.2;
}
.competences__item > ul {
  padding-top: 2rem;
  display: flex;
  justify-content: center;
  font-size: 1.1rem;

  width: 100%;
}

.competences__item > ul {
  padding-top: 2rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

.competences__item > ul > li {
  width: 60px;
  height: 60px;
  margin: 1rem;

  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.competences__item > ul > li > img {
  max-height: 100%;
  max-width: 100%;
}
.competences__suite {
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 1.5rem;
  width: 100%;
}

.competences__suite > div {
  padding: 1.7rem 2rem;
}
.competences__suite > div > button {
  color: rgba(63, 63, 63, 0.7);
  text-decoration: none;
  font-family: "Permanent Marker", cursive;
  font-size: 1.7rem;
  transition: 0.3s;
  padding: 10px 20px;
  background: none;
  border: none;
}

.competences__suite > div > button:hover {
  color: rgba(63, 63, 63, 1);
  background-color: rgba(255, 217, 0, 0.5);

  transition: 0.3s;
}

/* SECTION CREATIONS */
.creations {
  align-items: flex-start;
  flex-wrap: wrap;
  height: auto;
}

.creations__title {
  width: 100%;
  text-align: center;
  padding-bottom: 2rem;
}
.creations__carousel {
  width: 1000px;
  margin-bottom: 3rem;
}
#audiovisuel,
#devweb {
  margin-bottom: 3rem;
}
.carousel {
  -webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);
}
@media (max-width: 999px) {
  .creations__carousel {
    width: 90vw;
  }
}
.creations h3 {
  font-weight: 800;
  font-size: 1.6rem;
  padding: 0;
  padding-bottom: 0.2rem;
  text-align: center;
  height: 50px;
}

.carousel-caption {
  background-color: whitesmoke;
  width: 100%;
  position: initial;
  color: rgba(63, 63, 63, 1);
}

.creations__suite {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 20%;
  padding: 1.5rem;
  width: 100%;
}

.creations__suite > div {
  padding: 1.7rem 2rem;
}
.creations__suite > div > button {
  color: rgba(63, 63, 63, 0.7);
  text-decoration: none;
  font-family: "Permanent Marker", cursive;
  font-size: 1.7rem;
  transition: 0.3s;
  padding: 10px 20px;
  background: none;
  border: none;
}

.creations__suite > div > button:hover {
  color: rgba(63, 63, 63, 1);
  background-color: rgba(255, 217, 0, 0.5);

  transition: 0.3s;
}
/* SECTION CONTACT */
.contact {
  flex-wrap: wrap;
}
.contact__title {
  width: 100%;
  text-align: center;
  padding-bottom: 2rem;
}
.contact__form {
  width: 500px;
  padding: 1rem;
  text-align: center;
}
.contact__form textarea {
  resize: none;
}
.contact__messageform {
  text-align: center;
  width: 100%;
}
.btn {
  text-decoration: none;
  font-family: "Caveat Brush", cursive;
  font-size: 1.5rem;
  background-color: #e74c5b;

  color: white !important;
  border: 1px solid #e74c5b;
  border-radius: 0.5rem;
}

.btn:hover {
  background-color: white;
  color: #e74c5b !important;
}

.contact__social {
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 30%;
  padding-bottom: 3rem;
}

.contact__social i {
  font-size: 2rem;
  padding: 1rem;
}
.contact__social a:hover {
  color: #e74c5b;
}

@media (max-width: 500px) {
  .contact__social {
    font-size: 1rem;
  }
}

/* FOOTER */

footer {
  background-color: rgba(63, 63, 63, 1);
  color: white;
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  font-size: 1.1rem;
}

footer > p,
footer > a {
  padding: 1.5rem;
  text-align: center;
}
footer > a:hover {
  color: #e74c5b;
}

@media (max-width: 600px) {
  footer {
    flex-direction: column;
  }
  footer > p,
  footer > a {
    padding: 0.5rem 0;
    font-size: 1rem;
  }
}
