* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: 0.2s ease;
  cursor: default;
  font-size: 16px;
  font-weight: 300;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-family: "Inter", "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
  color: #333;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #44515c;
  font-weight: bold;
  text-transform: uppercase;
}

h1 {
  font-size: 24px;
}

h2 {
  font-size: 24px;
}

h3 {
  font-size: 20px;
}

a {
  cursor: pointer;
  text-decoration: none;
  font-weight: bold;
}
a * {
  cursor: pointer;
}

p {
  line-height: 30px;
}

section {
  padding: 50px;
}

.img {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
  width: 100%;
  border-radius: 5px;
}

button {
  border: 1px solid #44515c;
  border-radius: 3px;
  background: #44515c;
  padding: 5px 30px;
  color: #fff;
  font-weight: normal;
}
button:hover {
  box-shadow: inset 0 0 10px #000;
}

.button2 {
  background: rgba(255, 255, 255, 0.6);
  color: #44515c;
}

.button3 {
  background: #fff;
  color: #44515c;
}

header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  padding: 20px 50px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}
header .logo {
  max-height: 50px;
}
header .iconsNav {
  display: none;
}
@media screen and (max-width: 992px) {
  header .iconsNav {
    display: block;
  }
}
header .iconsNav i {
  font-size: 25px;
}
header .iconsNav #closeIcon {
  display: none;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 992px) {
  header nav {
    display: none;
    flex-direction: column;
    width: 100%;
    padding: 50px;
    border-top: 1px solid #c9cfd2;
  }
}
header nav a {
  font-weight: normal;
}
header nav a:hover {
  font-weight: bold;
}

footer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  padding: 20px 50px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 992px) {
  footer {
    flex-direction: column;
    text-align: center;
  }
}
footer p {
  font-size: 12px;
}
footer p * {
  font-size: 12px;
}
footer i {
  font-size: 20px;
  margin: 0 5px;
}

#hero {
  background: url(../images/hero.webp) center/cover;
}
#hero .container {
  background: rgba(255, 255, 255, 0.6);
  padding: 50px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  text-align: center;
}
#hero .container h1,
#hero .container h2 {
  font-weight: normal;
}
#hero .container h1 {
  padding-bottom: 50px;
  border-bottom: 1px solid #44515c;
}
#hero .container h2 {
  font-size: 20px;
}
#hero .container b {
  font-weight: bold;
}
#hero .container .buttons-hero {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

#a-propos {
  background: #44515c;
}
#a-propos .container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  align-items: center;
}
@media screen and (max-width: 992px) {
  #a-propos .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  #a-propos .container img {
    width: 80%;
    margin: 0 auto;
  }
}
#a-propos .container h2 {
  color: #fff;
}
#a-propos .container p,
#a-propos .container li {
  color: #c9cfd2;
}
#a-propos .container div {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#formations .container {
  margin-top: 50px;
  border-left: 4px solid #44515c;
  padding-left: 50px;
}
#formations .container .item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}
#formations .container .item em,
#formations .container .item p {
  margin-left: 15px;
}

#competences {
  background: #44515c;
  display: flex;
  flex-direction: column;
  gap: 50px;
  flex-wrap: wrap;
}
#competences h2 {
  color: #fff;
}
#competences .item {
  background: #fff;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  align-items: center;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 992px) {
  #competences .item {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 0;
  }
}
#competences .item img {
  width: 100%;
  border-radius: 5px 0 0 5px;
}
@media screen and (max-width: 992px) {
  #competences .item img {
    border-radius: 5px 5px 0 0;
  }
}
#competences .item div {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-wrap: wrap;
  padding: 50px;
}
#competences .item div ul li {
  list-style-position: inside;
  text-align: left;
}

#portfolio {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
#portfolio .buttons-selection {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
#portfolio .projects {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
@media screen and (max-width: 992px) {
  #portfolio .projects {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
#portfolio .projects .item {
  border: 1px solid #44515c;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
  height: 100%;
}
#portfolio .projects .item img {
  width: 100%;
  border-radius: 5px 5px 0 0;
}
#portfolio .projects .item div {
  padding: 50px;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 20px;
  border-top: 1px solid #c9cfd2;
}

#contact {
  display: flex;
  flex-direction: column;
  gap: 50px;
  flex-wrap: wrap;
  background: #44515c;
}
#contact h2 {
  color: #fff;
}
#contact p {
  color: #c9cfd2;
}
#contact .buttons-contact {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
#contact .buttons-contact button i {
  margin-right: 5px;
}/*# sourceMappingURL=index.css.map */