@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;1,100&display=swap");
:root {
  --black: #222;
  --white: #fff;
  --ligth-black: #666;
  --light-white: #ccc;
  --dark-bg: rgba(0, 0, 0, 0.7);
  /* border: .1rem solid #aaa;
        box-shadow: 0 .5rem 1rem rgba(0,0,0,.1); */
}

* {
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.43, 1.1, 0.62, 1.08);
  /* text-transform: capitalize; */
}

#loader {
  border: 12px solid black;
  border-radius: 50%;
  border-top: 12px solid #444444;
  width: 70px;
  height: 70px;
  animation: spin 1s linear infinite;
}

.center {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
/* * > img{
        user-select: none;
    } */
body,
html {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
}

@media only screen and (max-width: 768px) {
  /* Vos styles pour les appareils mobiles */
  body {
    overflow-x: hidden;
    max-width: 100%;
  }
}
header {
  display: flex;
  justify-content: space-around;
  overflow: hidden;
  /* background-color: var(--black); */
  padding: 8px;
  position: fixed;
  z-index: 998;
  width: 100%;
  max-width: 100%;
  top: 0;
  padding: 15px;
}
header .hamburger-mobile {
  display: none;
}
header li {
  list-style-type: none;
}
header a {
  color: white;
}
header a:hover {
  color: grey;
}
header nav ul {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.nav-top {
  background-color: transparent;
  /* background-color: #222; */
}

.nav-not-top {
  background-color: #222;
}

@media only screen and (max-width: 620px) {
  header {
    position: fixed;
    top: 0;
    z-index: 998;
    width: 100%;
    background-color: var(--black);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    flex-wrap: wrap;
    max-width: 100%;
  }
  header a {
    text-decoration: none;
    color: white;
  }
  header a:hover {
    color: grey;
  }
  header nav {
    display: none;
    flex: 0 0 100%;
  }
  /* header .navbar-active{
        display: block;
        flex: 0 0 100%;
    } */
  /* header:hover .navbar{

        display: flex;
        width: 100%;

    } */
  header nav ul {
    display: flex;
    flex-direction: column;
    list-style-type: none;
    justify-content: space-between;
    gap: 15px;
  }
  header nav ul li {
    font-size: 18px;
    color: white;
  }
  header nav ul li a:hover {
    text-decoration: none;
    color: grey;
  }
  .button-custom-black {
    background-color: black;
    color: white;
    font-size: 18px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 3px;
  }
  .button-custom-black:hover {
    cursor: pointer;
  }
  /* homeDiv */
}
.hero-image {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/home/header-bg.jpg");
  height: 100%;
  background-color: #cccccc;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-text {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
}

.hero-text h1 {
  font-size: 75px;
  text-transform: uppercase;
}

.hero-text h2 {
  font-size: 40px;
  font-style: italic;
  font-weight: 900;
  text-transform: none;
}

.hero-text a:hover {
  cursor: pointer;
}

.button-custom-black {
  background-color: var(--black);
  color: white;
  font-size: 18px;
  font-weight: 600;
  padding: 20px 40px;
  border-radius: 3px;
}

.button-custom-black:hover {
  background-color: #ccc;
  box-shadow: 0 0 0 5px grey;
  cursor: pointer;
}

/* Competences */
#competences {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
  padding-bottom: 100px;
  gap: 100px;
  /* lineup class and keyframes */
}
#competences .lineUp {
  animation: 2s anim-lineUp ease-out;
}
@keyframes anim-lineUp {
  0% {
    opacity: 0;
    transform: translateY(80%);
  }
  20% {
    opacity: 0;
  }
  50% {
    opacity: 1;
    transform: translateY(0%);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}

#competences .div-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#competences .sous-titre {
  color: grey;
  font-style: italic;
  font-weight: 600;
}

#competences .div-competences {
  display: flex;
  flex-wrap: wrap;
  flex-grow: 1;
  justify-content: center;
  align-items: center;
  row-gap: 40px;
}

#competences .div-competences .competence-detail {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-basis: 30%;
}

/* Portfolio
    #portfolio{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    #portfolio .div-title {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    #portfolio .div-portfolio{
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #portfolio .div-portfolio .portfolio-item{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 25%;
    }

    #portfolio .div-portfolio .portfolio-item img{
        display: block;
        height:100%;
        width: 100%;

    }
    #portfolio .div-portfolio .portfolio-item .description-item{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

    } */
/* Projets */
#demo-portfolio {
  background-color: #f8f9fa;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
  padding-bottom: 100px;
  gap: 100px;
  /* lineup class and keyframes */
}
#demo-portfolio .lineUp {
  animation: 2s anim-lineUp ease-out;
}
@keyframes anim-lineUp {
  0% {
    opacity: 0;
    transform: translateY(80%);
  }
  20% {
    opacity: 0;
  }
  50% {
    opacity: 1;
    transform: translateY(0%);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}
#demo-portfolio .modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}
#demo-portfolio .modal .modal-content {
  background-color: white;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}
#demo-portfolio .modal .modal-content .modal-header {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  left: 0;
  position: relative;
}
#demo-portfolio .modal .modal-content .modal-header button {
  position: absolute;
  right: 0;
  font-size: 30px;
  background-color: white;
  cursor: pointer;
}
#demo-portfolio .modal .modal-content .modal-description {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#demo-portfolio .modal .modal-content .modal-description img {
  width: 50%;
  height: 50%;
}

#demo-portfolio .div-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#demo-portfolio .div-projets {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

#demo-portfolio .div-projets .projet {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#demo-portfolio .div-projets .projet :hover {
  cursor: pointer;
  background-color: grey;
}
#demo-portfolio .div-projets .projet button {
  background-color: transparent;
}

#demo-portfolio .div-projets .projet img {
  height: 100%;
  width: 80%;
}

#demo-portfolio .div-projets .projet .modal {
  display: none;
  z-index: 999;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
  padding-bottom: 100px;
  gap: 100px;
}

/* Experiences */
#experiences {
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 100px;
}
#experiences .div-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 100px;
}
#experiences .timeline {
  position: relative;
  padding: 0;
  list-style: none;
}
#experiences .timeline:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 40px;
  width: 2px;
  margin-left: -1.5px;
  content: "";
  background-color: gray;
}
#experiences .timeline li {
  position: relative;
  min-height: 50px;
  margin-bottom: 50px;
}
#experiences .timeline li:after, #experiences .timeline li:before {
  display: table;
  content: " ";
}
#experiences .timeline li:after {
  clear: both;
}
#experiences .timeline li .timeline-panel {
  position: relative;
  float: right;
  width: 100%;
  padding: 0 20px 0 100px;
  text-align: left;
}
#experiences .timeline li .timeline-panel:before {
  right: auto;
  left: -15px;
  border-right-width: 15px;
  border-left-width: 0;
}
#experiences .timeline li .timeline-panel:after {
  right: auto;
  left: -14px;
  border-right-width: 14px;
  border-left-width: 0;
}
#experiences .timeline li .timeline-image {
  position: absolute;
  z-index: 100;
  left: 0;
  width: 80px;
  height: 80px;
  margin-left: 0;
  text-align: center;
  color: white;
  border: 7px solid gray;
  border-radius: 100%;
  background-color: black;
}
#experiences .timeline li .timeline-image h4 {
  font-size: 10px;
  line-height: 14px;
  margin-top: 12px;
}
#experiences .timeline li .timeline-image img {
  border-radius: 50%;
  max-height: 100%;
  max-width: 100%;
  object-fit: cover;
}
#experiences .timeline li.timeline-inverted > .timeline-panel {
  float: right;
  padding: 0 20px 0 100px;
  text-align: left;
}
#experiences .timeline li.timeline-inverted > .timeline-panel:before {
  right: auto;
  left: -15px;
  border-right-width: 15px;
  border-left-width: 0;
}
#experiences .timeline li.timeline-inverted > .timeline-panel:after {
  right: auto;
  left: -14px;
  border-right-width: 14px;
  border-left-width: 0;
}
#experiences .timeline li:last-child {
  margin-bottom: 0;
}
#experiences .timeline .timeline-heading h4 {
  margin-top: 0;
  color: inherit;
}
#experiences .timeline .timeline-heading h4.subheading {
  text-transform: none;
}
#experiences .timeline .timeline-body > ul,
#experiences .timeline .timeline-body > p {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  #experiences .timeline:before {
    left: 50%;
  }
  #experiences .timeline > li {
    min-height: 100px;
    margin-bottom: 100px;
  }
  #experiences .timeline > li .timeline-panel {
    float: left;
    width: 41%;
    padding: 0 20px 20px 30px;
    text-align: right;
  }
  #experiences .timeline > li .timeline-image {
    left: 50%;
    width: 100px;
    height: 100px;
    margin-left: -50px;
  }
  #experiences .timeline > li .timeline-image h4 {
    font-size: 13px;
    line-height: 18px;
    margin-top: 16px;
  }
  #experiences .timeline > li.timeline-inverted > .timeline-panel {
    float: right;
    padding: 0 30px 20px 20px;
    text-align: left;
  }
}
@media (min-width: 992px) {
  #experiences .timeline > li {
    min-height: 150px;
  }
  #experiences .timeline > li .timeline-panel {
    padding: 0 20px 20px;
  }
  #experiences .timeline > li .timeline-image {
    width: 150px;
    height: 150px;
    margin-left: -75px;
  }
  #experiences .timeline > li .timeline-image h4 {
    font-size: 18px;
    line-height: 26px;
    margin-top: 30px;
  }
  #experiences .timeline > li.timeline-inverted > .timeline-panel {
    padding: 0 20px 20px;
  }
}
@media (min-width: 1200px) {
  #experiences .timeline > li {
    min-height: 170px;
  }
  #experiences .timeline > li .timeline-panel {
    padding: 0 20px 20px 100px;
  }
  #experiences .timeline > li .timeline-image {
    width: 170px;
    height: 170px;
    margin-left: -85px;
  }
  #experiences .timeline > li .timeline-image h4 {
    margin-top: 40px;
  }
  #experiences .timeline > li.timeline-inverted > .timeline-panel {
    padding: 0 100px 20px 20px;
  }
}

/* Footer */
/* #footer{


    } */
#footer .top-div {
  background-color: var(--dark-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  /* align-content: center; */
  /* justify-content: center; */
  padding-top: 100px;
  padding-bottom: 100px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/contact/contact-image.jpg");
  height: 100%;
  background-color: #cccccc;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
#footer .top-div .heading-text h1 {
  font-size: 40px;
  color: white;
}
#footer .top-div .heading-text p {
  color: white;
  font-style: italic;
}
#footer .top-div .form-div {
  display: flex;
  gap: 20px;
  width: 80%;
}
#footer .top-div .form-div .input-div {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  width: 100%;
}
#footer .top-div .form-div .input-div input {
  font-size: 15px;
  padding: 15px;
  border-radius: 4px;
  width: 80%;
}
#footer .top-div .form-div .input-div input:hover {
  box-shadow: 0 0 0 5px grey;
}
#footer .top-div .form-div .input-div input::placeholder {
  color: grey;
  font-size: 15px;
  font-weight: 600;
}
#footer .top-div .form-div .textArea-div {
  display: flex;
  flex-direction: column;
  width: 100%;
}
#footer .top-div .form-div .textArea-div textarea {
  height: 250px;
  width: 100%;
  padding: 25px;
  border-radius: 4px;
}
#footer .top-div .form-div .textArea-div textarea::placeholder {
  color: grey;
  font-size: 15px;
  font-weight: 600;
}
#footer .top-div .form-div .textArea-div textarea:hover {
  box-shadow: 0 0 0 5px grey;
}
@media only screen and (max-width: 620px) {
  #footer .top-div .form-div {
    flex-direction: column;
  }
  #footer .top-div .form-div .input-div {
    display: flex;
    gap: 20px;
  }
}

#footer .sub-div {
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#footer .sub-div .text-div {
  /* margin-left: 500px; */
}

#footer .sub-div a {
  color: black;
}

#footer .sub-div .fab {
  /* background-color: #222; */
  /* border-radius: 100%; */
}

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