@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;700&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-moz-keyframes fadein {
  /* Firefox */
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadein {
  /* Safari and Chrome */
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-o-keyframes fadein {
  /* Opera */
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.TOPSITE {
  position: absolute;
  right: 0;
  width: 100%;
  min-height: 100vh;
  padding: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  color: #ffffff;
  z-index: 2;
}

/* .TOPSITE.active {
} */

.TOPSITE header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 40px 100px;
  z-index: 1000;
  display: flex;
  align-content: center;
  justify-content: space-between;
}

.logo {
  cursor: pointer;
  display: none;
}

.TOPSITE header {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}
.TOPSITE img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  mix-blend-mode: overlay;
}

nav {
  width: auto;
  z-index: 100;
  margin: 0 auto;
  font-weight: 700;
  font-size: x-large;

  opacity: 1;
  background-color: none;
  position: absolute;

  padding: 30px 100px;
}

nav ul {
  list-style-type: none;
}

nav ul li {
  float: right;
  width: 100%;
  text-align: left;
  position: relative;
}

nav ul::after {
  clear: both;
}

nav a {
  display: block;
  text-decoration: none;

  color: white;
  border-bottom: 2px solid transparent;
  padding: 10px 0px;
}

nav a:hover {
  color: none;
  color: RGBa(0, 0, 0, 0.9);
}

.Menu {
  z-index: -1000;

  opacity: 1;

  position: relative;
  width: auto;
  height: 30px;
  background: none;
  /* filter: invert(1); */
  background-repeat: no-repeat;
  background-size: 30px;
  background-position: center;
  display: inline-block;
  animation: fadein 2s;
  -moz-animation: fadein 2s;
  -webkit-animation: fadein 2s;
  -o-animation: fadein 2s;
}

.sous {
  display: none;
  /*box-shadow: 0px 0px 0px #CCC; */
  background-color: none;
  z-index: 100;
  position: absolute;
  width: none;
  font-weight: normal;
  font-size: small;
  z-index: 300;
}
nav > ul li:hover .sous {
  display: block;
}
.sous li {
  float: none;
  width: 100%;
  text-align: left;
}
.sous a {
  padding: 10px 0px;
  border-bottom: none;
}
.sous a:hover {
  border-bottom: none;
  background-color: RGBa(0, 0, 0, 0);
}

.adress {
  z-index: 1000;
  width: 100%;
  left: 0;
  cursor: pointer;
  position: relative;
  top: 350px;
    margin-left: -35px;
  text-align: center;
  animation: fadein 2s;
  -moz-animation: fadein 2s;
  -webkit-animation: fadein 2s;
  -o-animation: fadein 2s;
}

.social {
  position: absolute;
  z-index: 10;
  bottom: 20px;
  display: flex;
  filter: invert(1);
  justify-content: center;
  width: 100%;
  margin: 0 auto;
  animation: fadein 2s;
  -moz-animation: fadein 2s;
  -webkit-animation: fadein 2s;
  -o-animation: fadein 2s;
}

.social li {
  list-style: none;
}
.social li a {
  display: inline-block;

  transform: scale(0.5);
  transition: 0.5s;
}
.social li a:hover {
  transform: scale(0.5) translateY(-15px);
}

@media (max-width: 991px) {
  .TOPSITE,
  .TOPSITE header {
    padding: 40px;
  }
  .adress {
  z-index: 1000;
  width: 100%;
  left: 0;
  cursor: pointer;
  position: relative;
  top: 200px;
    margin-left: -20px;
  text-align: center;
  animation: fadein 2s;
  -moz-animation: fadein 2s;
  -webkit-animation: fadein 2s;
  -o-animation: fadein 2s;
}
}

@media (max-width: 991px) {
  nav {
    padding: 30px 40px;
  }
  .sous {
    font-size: small;
  }
}
