@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');

html {
  font-size: 20px;
}

@media (min-width: 1800px) {
  html {
    font-size: 30px;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
}

section {
  padding: 5rem;
}

.btn {
  position: relative;
  background: #0081FF;
  display: inline-block;
  color: #fff;
  margin-top: 1rem;
  padding: 0.5rem 1.5rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.1rem;
  font-weight: 500;
}

nav {
  position: fixed;
  font-size: 0.8rem;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2rem 5rem;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  transition: 0.5s;
  /*temps disparition barre des tâches*/
}

img.lang {
  width: 1.5rem;
  max-width: inherit;
}

nav.sticky {
  background: #111;
  opacity: 0.95;
  padding: 0.5rem 5rem;
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.1);
}

nav .logo {
  color: #fff;
  font-size: 1.2rem;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 700;
  z-index: 10000;
  letter-spacing: 0.1rem;
}

nav.sticky .logo {
  color: #fff;
  opacity: 1;
}

nav ul {
  position: relative;
  display: flex;
}

nav ul li {
  position: relative;
  list-style: none;
}

nav ul li a {
  position: relative;
  display: inline-block;
  margin: 0 0.75rem;
  color: #fff;
  text-decoration: none;
  text-shadow: none;
  white-space: nowrap;
}

nav ul li:last-child {
  display: flex;
  flex-wrap: nowrap;
  column-gap: 5px;
  margin: 0 0.2rem;
}

nav ul li a.flag {
  margin: 0 0.2rem;
}

nav ul li a:hover {
  color: #fff;
  text-shadow: 0.2rem 0.2rem 1.8rem rgba(0, 0, 0, 0.43);
  transform: scale(1.1);
}

.heading {
  width: 100%;
  text-align: center;
  margin-bottom: 1.5rem;
  color: #111;
  font-size: 0.8rem;
}

.heading h1 {
  font-weight: 600;
  font-size: 1.5rem;
}

.heading.white {
  color: #fff;
  font-size: 0.8rem;
}

.content {
  display: flex;
  justify-content: space-between;
}

img {
  max-width: 100%;
  /* A REMETTRE A 100% */
}

h3 {
  font-size: 0.8rem;
  font-weight: lighter;
  padding: 1rem;
}

/*/Responsive*/
@media (max-width: 991px) {
  nav {
    padding: 2rem 5rem;
    align-items: center;
  }

  /* nav,
  nav.sticky {
    padding: 0.5rem 2.5rem;
    z-index: 1000;
  } */
  .menu {
    position: fixed;
    top: 0rem;
    left: -100%;
    display: block;
    padding: 5rem 2.5rem;
    text-align: center;
    width: 100%;
    height: 100vh;
    background: #fff;
    transition: 0.5s;
    z-index: 999;
    border-top: 0.05rem solid rgba(0, 0, 0, 0.2);
  }

  .menu.active {
    left: 0;
    top: 0rem;
  }

  nav ul li a {
    color: #111;
    font-size: 1.2rem;
    margin: 0.5rem;
  }

  nav ul li:last-child {
    display: inherit;
  }

  .toggle {
    width: 2rem;
    height: 2rem;
    background: url(../assets/img/menu.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 1.5rem;
    cursor: pointer;
  }

  nav .logo.active {
    filter: invert(1);
    z-index: 10000;
    opacity: 0.9;
  }

  .toggle.active {
    background: url(../assets/img/close.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 1.25rem;
    cursor: pointer;
    filter: invert(1);
    z-index: 10000;
  }

  nav.sticky .toggle {
    z-index: 10000;
  }

  section {
    padding: 5rem 2.5rem;
    padding-bottom: 2rem;
  }

  .btn {
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }

  .heading h1 {
    font-size: 1.2rem;
  }

  .content {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  section {
    padding: 5rem 1rem;
  }
}

@media (max-width: 600px) {
  nav.sticky {
    padding: 0.5rem 2rem;
  }

  nav {
    padding: 2rem 3rem;
  }

  nav.sticky ul li a {
    color: #111;
    opacity: 1;
  }

  nav ul.menu.active {
    opacity: 1;
  }

  section {
    padding: 2.5rem 1rem;
  }

  section.photo {
    padding: 2px;
    padding-top: 1rem;
    background: #111;
  }
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 80vw;
  }
}
