* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Ubuntu", sans-serif;
}

body {
  overflow-x: hidden;
  max-width: 1920px;
  margin: 0 auto;
}

/* width */
::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 50px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.animsite {
  align-items: center;
  display: flex;
  position: fixed;
  height: 100vh;
  width: 100vw;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  background-color: #0c0029;
}

.animsite.hidden {
  animation: 2s fadeOut;
  animation-fill-mode: forwards;
}

@keyframes fadeOut {
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

.cursor {
  position: absolute;
  height: 25px;
  width: 25px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 12;
}

.outer {
  border: 1px solid #171717;
}

.inner {
  background: #171717;
  transition: 250ms ease-out;
}

.cursor.hover {
  transform: translate(-50%, -50%) scale(2);
  transition: transform 250ms ease-in-out;
}

.inner.hover {
  background: none;
}

@media screen and (max-width: 1024px) {
  .cursor {
    display: none;
  }
}

.bannercookie {
  position: fixed;
  z-index: 5;
  bottom: 30px;
  left: 30px;
  max-width: 365px;
  background: #ffffff;
  padding: 25px 25px 30px 25px;
  border-radius: 15px;
  box-shadow: 1px 7px 14px -5px rgba(0, 0, 0, 0.15);
  text-align: center;
}
.bannercookie.hide {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.8);
  transition: all 0.3s ease;
}

.bannercookie img {
  max-width: 90px;
}
.contentcookie span {
  font-family: "Unbounded", sans-serif;
  font-size: 20px;
  font-weight: 600;
}
.contentcookie {
  margin-top: 10px;
}
.contentcookie p {
  font-family: "Ubuntu", sans-serif;
  font-weight: 400;
  color: #333333;
  margin: 5px 0 20px 0;
}
.contentcookie .buttons {
  display: flex;
  align-items: center;
  justify-content: center;
}
.buttons button {
  font-family: "Unbounded", sans-serif;
  padding: 10px 40px;
  border: none;
  outline: none;
  color: #eeee;
  font-size: 16px;
  font-weight: 500;
  border-radius: 50px;
  background: #333333;
  cursor: pointer;
  transition: all 0.3s ease;
}
.buttons button:hover {
  transform: scale(0.97);
}

nav {
  position: relative;
  /* padding: 50px 150px 20px 150px; */
  padding: 3% 8% 1% 8%;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  width: 100%;
  z-index: 10;
}

.logo {
  color: #171717;
  text-decoration: none;
  font-family: "Unbounded", sans-serif;
  font-weight: bold;
  font-size: 36px;
}

ul {
  list-style: none;
}

.navbar .nav-links ul {
  display: flex;
  gap: 0.5rem;
}

.navbar .nav-links ul li {
  /* margin: 0 32px;  */
  transform: scale(1);
  transition: all 0.5s ease-in-out;
}

.navbar .nav-links ul li:hover {
  transform: scale(1.2);
}

.navbar .nav-links ul li a {
  color: #171717;
  text-decoration: none;
  font-family: "Unbounded", sans-serif;
  font-weight: bold;
  font-size: 18px;
  padding: 10px 20px 10px 20px;
}

.navbar .burger {
  display: none;
  position: absolute;
  top: 40%;
  right: 10%;
  width: 40px;
}

.burger {
  background-color: transparent;
  border: none;
  height: 40px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  transition: 0.5s;
}

.burger.active {
  transform: rotate(-180deg);
}

.burger span {
  background: #171717;
  width: 100%;
  height: 5px;
  border-radius: 2px;
}

.burger.active span:nth-child(1) {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* Responsive mediaqueries NAVBAR  */

@media screen and (max-width: 1670px) {
  body.noscroll {
    overflow: hidden;
  }

  .navbar .burger {
    display: flex;
    z-index: 10;
  }

  .nav-links {
    top: 0;
    left: 0;
    position: absolute;
    background-color: white;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s ease-in-out;
    /* opacity: 0; */
    transform: translateX(-2000px);
    opacity: 0;
  }

  .nav-links.show {
    z-index: 10;
    /* opacity: 1; */
    opacity: 1;
    transform: translateX(0);
    position: fixed;
  }

  .nav-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .navbar .nav-links ul li {
    /* margin: 25px 0; */
    font-size: 5.5em;
  }

  .navbar .nav-links ul li a {
    font-size: 30px;
  }
}

@media screen and (max-width: 800px) {
  .logo {
    width: 60%;
  }
}

.projet {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: flex-end;

  padding: 4% 8% 2% 8%;
}

.contain_about {
  margin-right: 2%;
}

.titre_projet {
  font-family: "Unbounded", sans-serif;
  font-size: 120px;
  font-weight: 900;
}

.brief_projet p {
  font-family: "Ubuntu", sans-serif;
  font-size: 20px;
  font-weight: normal;
  line-height: 1.5em;
  padding-right: 30%;
}

.outil {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.5em;
  align-items: center;
}

.outil span {
  padding: 10px 0 10px 0;
  width: 250px;
  font-family: "Unbounded", sans-serif;
  text-align: center;
  font-weight: 500;
  font-size: 16px;
  color: #797979;
  background-color: #eeee;
  border-radius: 50px;
}

/* Responsive mediaqueries PROJET  */
@media only screen and (max-width: 1670px) {
  .brief_projet p {
    padding-bottom: 2%;
  }
}

@media only screen and (min-width: 1440px) and (max-width: 1670px) {
  .projet {
    display: flex;
    position: relative;
    justify-content: flex-start;
    align-items: flex-end;
    padding: 4% 8% 2% 8%;
    flex-wrap: wrap;
  }

  .titre_projet {
    font-size: 120px;
  }
}

@media only screen and (min-width: 1060px) and (max-width: 1440px) {
  .projet {
    display: flex;
    position: relative;
    justify-content: flex-start;
    align-items: flex-end;
    padding: 4% 8% 2% 8%;
    flex-wrap: wrap;
  }

  .titre_projet {
    font-size: 100px;
  }
}

@media only screen and (min-width: 820px) and (max-width: 1060px) {
  .projet {
    display: flex;
    position: relative;
    justify-content: flex-start;
    align-items: flex-end;
    padding: 4% 8% 2% 8%;
    flex-wrap: wrap;
  }

  .titre_projet {
    font-size: 100px;
  }

  .brief_projet p {
    padding-right: 0;
  }

  .outil {
    flex-wrap: wrap;
  }
}

@media only screen and (min-width: 700px) and (max-width: 820px) {
  .projet {
    display: flex;
    position: relative;
    justify-content: flex-start;
    align-items: flex-end;
    padding: 4% 8% 2% 8%;
    flex-wrap: wrap;
  }
  .titre_projet {
    font-size: 80px;
  }
  .outil {
    flex-wrap: wrap;
  }

  .brief_projet p {
    padding-right: 0;
  }
}

@media only screen and (min-width: 200px) and (max-width: 700px) {
  .projet {
    display: flex;
    position: relative;
    justify-content: flex-start;
    align-items: flex-end;
    padding: 10% 8% 8% 8%;
    flex-wrap: wrap;
  }

  .titre_projet {
    font-size: 46px;
    padding-bottom: 6%;
  }

  .outil {
    padding-top: 4%;
    flex-wrap: wrap;
  }

  .brief_projet p {
    padding-right: 0;
  }
}

.presentation {
  position: relative;

  padding: 2% 8% 0 8%;
  justify-content: flex-start;
}

.presentation_image {
  align-items: flex-start;
}

.presentation_image .desktop-image {
  display: flex;
  max-width: 100%;
  border-radius: 100px;
}

.presentation_image .mobile-image {
  display: none;
}

.explication {
  display: flex;
  flex-wrap: wrap;
}

.challenge {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding-top: 6%;
  padding-bottom: 4%;
  border-bottom: 2px solid #171717;
}

.titre_challenge {
  font-family: "Unbounded", sans-serif;
  font-size: 60px;
  font-weight: 900;
}

.challenge p {
  font-family: "Ubuntu", sans-serif;
  font-size: 20px;
  font-weight: normal;
  line-height: 1.5em;
  width: 50%;
}

.approche {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding-top: 4%;
  padding-bottom: 4%;
  border-bottom: 2px solid #171717;
}

.titre_approche {
  font-family: "Unbounded", sans-serif;
  font-size: 60px;
  font-weight: 900;
}

.approche p {
  font-family: "Ubuntu", sans-serif;
  font-size: 20px;
  font-weight: normal;
  line-height: 1.5em;
  width: 50%;
}

.solution {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding-top: 4%;
  padding-bottom: 6%;
}

.titre_solution {
  font-family: "Unbounded", sans-serif;
  font-size: 60px;
  font-weight: 900;
}

.solution p {
  font-family: "Ubuntu", sans-serif;
  font-size: 20px;
  font-weight: normal;
  line-height: 1.5em;
  width: 50%;
}

/* Responsive mediaqueries PRESENTATION  */
@media only screen and (max-width: 1080px) {
  .presentation_image .desktop-image {
    display: none;
  }
  .presentation_image .mobile-image {
    display: flex;
    max-width: 100%;
    border-radius: 40px;
  }
}

@media only screen and (min-width: 1440px) and (max-width: 1670px) {
}

@media only screen and (min-width: 1060px) and (max-width: 1440px) {
  .challenge {
    flex-wrap: wrap;
  }

  .titre_challenge {
    padding-bottom: 2%;
  }

  .challenge p {
    width: 100%;
  }

  .approche {
    flex-wrap: wrap;
  }

  .titre_approche {
    padding-bottom: 2%;
  }

  .approche p {
    width: 100%;
  }
  .solution {
    flex-wrap: wrap;
  }

  .titre_solution {
    padding-bottom: 2%;
  }

  .solution p {
    width: 100%;
  }
}

@media only screen and (min-width: 820px) and (max-width: 1060px) {
  .challenge {
    flex-wrap: wrap;
  }

  .titre_challenge {
    padding-bottom: 2%;
  }

  .challenge p {
    width: 100%;
  }

  .approche {
    flex-wrap: wrap;
  }
  .titre_approche {
    padding-bottom: 2%;
  }

  .approche p {
    width: 100%;
  }
  .solution {
    flex-wrap: wrap;
  }
  .titre_solution {
    padding-bottom: 2%;
  }

  .solution p {
    width: 100%;
  }
}

@media only screen and (min-width: 700px) and (max-width: 820px) {
  .challenge {
    flex-wrap: wrap;
  }

  .challenge p {
    width: 100%;
  }

  .approche {
    flex-wrap: wrap;
  }

  .approche p {
    width: 100%;
  }
  .solution {
    flex-wrap: wrap;
  }

  .solution p {
    width: 100%;
  }
}

@media only screen and (min-width: 200px) and (max-width: 700px) {
  .presentation_image img {
    border-radius: 40px;
  }
  .challenge {
    flex-wrap: wrap;
  }

  .titre_challenge {
    padding-bottom: 4%;
    font-size: 40px;
  }

  .challenge p {
    width: 100%;
  }

  .approche {
    flex-wrap: wrap;
  }

  .titre_approche {
    padding-bottom: 4%;
    font-size: 40px;
  }

  .approche p {
    width: 100%;
  }
  .solution {
    flex-wrap: wrap;
  }
  .titre_solution {
    padding-bottom: 4%;
    font-size: 40px;
  }

  .solution p {
    width: 100%;
  }
}

.image_fundverse {
  display: flex;
  flex-wrap: wrap;
  gap: 4em;
}

.image_fundverse img {
  max-width: 100%;
  border-radius: 100px;
}

.image_fundverse .mobile-image {
  display: none;
}

@media only screen and (max-width: 1080px) {
  .image_fundverse .desktop-image {
    display: none;
  }

  .image_fundverse .mobile-image {
    display: flex;
    border-radius: 40px;
  }
}

@media only screen and (min-width: 200px) and (max-width: 700px) {
  .image_fundverse img {
    border-radius: 40px;
  }
}

.projets {
  position: relative;
  padding: 4% 8% 0 8%;
}

.border-projects {
  background: #171717;
  width: 100%;
  height: 3px;
  border-radius: 4px;

  display: inline-flex;
}

.projetstitre {
  margin-top: 3%;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.titre-projets {
  text-transform: uppercase;
  font-family: "Unbounded", sans-serif;
  font-size: 120px;
  font-weight: 900;
  line-height: 1.2;
}

.text-wrapperbis {
  display: flex;
  justify-content: flex-start;
  background: #cdc5ff;
  border: none;
  border-radius: 50px;
  overflow: hidden;
  white-space: nowrap;
  padding-top: 1%;
  padding-bottom: 1%;
  margin-top: 2%;
  margin-bottom: 2%;
}

#wrapperbis {
  display: flex;
  align-items: center;
  margin: auto;
  animation: scroll_textbis 20000ms linear infinite;
}

.text-wrapperbis span {
  color: #333333;
  font-family: "Unbounded", sans-serif;
  font-weight: bold;
  font-size: 32px;
  margin-left: 5px;
  margin-right: 5px;
}

@keyframes scroll_textbis {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.projetstitre p {
  font-family: "Ubuntu", sans-serif;
  font-size: 20px;
  font-weight: normal;
  line-height: 1.5em;
  margin-top: 3%;
  margin-bottom: 2%;
}

/* start: Slider */
.wrapper {
  position: relative;
  margin-top: 2%;
  width: 100%;
}

.card-wrapper {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% / 2) - 12px);
  overflow-x: auto;
  padding: 24px;
  gap: 2rem;
}

/* scrollbar_div */

.card-wrapper::-webkit-scrollbar {
  height: 8px;
}

.card-wrapper::-webkit-scrollbar-track {
  background: #eeee;
  border-radius: 50px;
}

.card-wrapper::-webkit-scrollbar-thumb {
  background: #171717;
  border-radius: 50px;
}

.card-wrapper::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.card-item {
  text-decoration: none;
  scroll-snap-align: center;
  overflow: hidden;
}
.card-item img {
  width: 100%;
  height: 50vh;
  object-fit: cover;
  border-radius: 100px 100px 0px 100px;
}
.card-info {
  position: relative;
  display: flex;
  padding-top: 4%;
  gap: 0.5rem;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 4%;
}
.card-title {
  font-family: "Unbounded", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  display: flex;
  color: #171717;
}

.main-card-description {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.5em;
  width: 50%;
}

.card-description {
  font-family: "Unbounded", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  color: #171717;
  background-color: #eeee;
  border-radius: 50px;
  text-align: center;
  padding: 1% 2%;
}

/* Responsive mediaqueries PROJETS  */
@media only screen and (min-width: 1440px) and (max-width: 1670px) {
  .projetstitre {
    display: flex;
  }

  .titre-projets {
    font-size: 105px;
  }
  .titre-projets1 {
    font-size: 66px;
  }
}

@media only screen and (max-width: 1200px) {
  .main-card-description {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
  }
  .card-info {
    display: flex;
    flex-wrap: wrap;
  }

  .card-description {
    font-size: 16px;
  }
}

@media only screen and (min-width: 1060px) and (max-width: 1440px) {
  .projetstitre {
    display: flex;
    flex-wrap: wrap;
  }

  .titre-projets {
    font-size: 100px;
  }
  .titre-projets1 {
    font-size: 76px;
  }
}

@media only screen and (min-width: 820px) and (max-width: 1060px) {
  .projets {
    padding: 16% 8% 0 8%;
  }

  .projetstitre {
    display: flex;
    flex-wrap: wrap;
  }

  .titre-projets {
    font-size: 78px;
  }
  .titre-projets1 {
    font-size: 59px;
  }
}

@media only screen and (min-width: 700px) and (max-width: 820px) {
  .projets {
    padding: 16% 8% 0 8%;
  }

  .projetstitre {
    display: flex;
    flex-wrap: wrap;
  }

  .titre-projets {
    font-size: 65px;
  }
  .titre-projets1 {
    font-size: 49px;
  }

  .card-item img {
    border-radius: 50px 50px 0px 50px;
  }
}

@media only screen and (min-width: 200px) and (max-width: 700px) {
  .projets {
    padding: 16% 8% 0 8%;
  }

  .projetstitre {
    display: flex;
    flex-wrap: wrap;
  }

  .titre-projets {
    font-size: 35px;
  }
  .titre-projets1 {
    font-size: 27px;
  }

  .card-item img {
    border-radius: 50px 50px 0px 50px;
  }
}

@media only screen and (min-height: 375px) and (max-height: 414px) and (orientation: landscape) {
  .card-item img {
    width: 100%;
    height: 50vh;
    object-fit: cover;
    border-radius: 50px 50px 0px 50px;
  }
}

@media screen and (max-width: 575px) {
  .card-wrapper {
    width: 100%;
    grid-auto-columns: 100%;
  }
}

footer {
  position: relative;
  margin-top: 6%;
}

.iconefooter {
  position: relative;
  display: flex;
  background-color: #171717;
  justify-content: center;
  align-items: center;
  padding-top: 2%;
  padding-bottom: 2%;
}

.iconefooter img {
  width: 15%;
  height: 15%;
  padding-left: 0.5%;
  padding-right: 0.5%;
}

.linefooter {
  background: white;
  width: 70%;
  height: 3px;
  border-radius: 4px;
  margin-left: 5%;
  margin-right: 5%;
}

.footermotion {
  display: flex;
  position: relative;
  background-color: #eeee;
  border-radius: 0px 0px 200px 200px;
  flex-direction: column;
  height: 80%;
  padding: 8%;
}

.footermotiontitle {
  text-align: start;
  display: flex;
  text-transform: uppercase;
  font-family: "Unbounded", sans-serif;
  font-size: 90px;
  line-height: 150%;
  font-weight: 900;
  color: #333333;
  z-index: 1;
}

.footermotiontitlebis {
  text-align: start;
  display: flex;
  text-transform: uppercase;
  font-family: "Unbounded", sans-serif;
  font-size: 64px;
  line-height: 150%;
  font-weight: 900;
  color: #333333;
}

#animcoffee {
  background-color: none;
  height: 100%;
  position: absolute;
  left: 48%;
  top: 2%;
}

#animcoffee svg {
  transform: none !important;
}

.paris {
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 1%;
}

#animglobe {
  background-color: none;
  position: relative;
  display: contents;
}

#animglobe svg {
  transform: none !important;
  max-width: 4%;
}

.city {
  align-items: baseline;
  display: flex;
  border-bottom: #333333 5px solid;
  margin-left: 1%;
  padding-right: 1%;
}

.ville {
  font-family: "Unbounded", sans-serif;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 400;
  font-size: 30px;
  color: #333333;
}

.heure {
  font-family: "Unbounded", sans-serif;
  text-transform: none;
  font-style: normal;
  font-weight: 400;
  font-size: 26px;
  color: #cdc5ff;
  margin-left: 4%;
}

.contact {
  display: flex;
  position: relative;
  padding-top: 3%;
  justify-content: space-between;
  width: 45%;
  padding-bottom: 6%;
}

.contact a {
  text-decoration: none;
  color: #333333;
  border: 3px solid #333333;
  padding: 10px 30px;
  border-radius: 150px;
  margin-right: 1%;
  width: 340px;
  text-align: center;
}

.linkcontact {
  background-color: #333333;
}

.linkcontact span {
  color: #eeee;
}

/* 
.linkcontact:hover {
  background-color: #171717;
}


.linkcontact span:hover {
  color: #ffffff;
}

.linkabonner:hover {
  background-color: #ffffff;
}

.linkabonner span:hover {
  color: #171717;
} */

.contact a span {
  font-family: "Unbounded", sans-serif;
  font-size: 25px;
  font-weight: 500;
}

.southfooter {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.socialmedia {
  position: relative;
  display: flex;
  text-align: center;
  margin-top: 2%;
  margin-bottom: 2%;
  margin-left: 4%;
  margin-right: 4%;
}

.socialmedia a {
  text-decoration: none;
  font-family: "Unbounded", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #171717;
  padding: 10px 30px;
  width: 200px;
  text-align: center;
  transform: scale(1);
  transition: all 0.5s ease-in-out;
}

.socialmedia a:hover {
  transform: scale(1.2);
}

.credit {
  margin-right: 8%;
}

.creditmention {
  font-family: "Unbounded", sans-serif;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  color: #171717;
}

.credit p {
  font-family: "Ubuntu", sans-serif;
  font-weight: lighter;
  font-size: 10px;
  color: #939393;
}

/* Responsive mediaqueries FOOTER  */
@media only screen and (min-width: 1440px) and (max-width: 1670px) {
  .footermotiontitle {
    font-size: 75px;
  }
}

@media only screen and (min-width: 1060px) and (max-width: 1440px) {
  .footermotion {
    height: 60%;
    border-radius: 0 0 100px 100px;
  }

  .footermotiontitle {
    font-size: 60px;
  }
  .footermotiontitlebis {
    font-size: 47px;
  }

  .contact {
    width: 65%;
  }

  #animcoffee {
    left: 48%;
    top: 0%;
  }

  .paris {
    padding-top: 2%;
  }

  #animglobe svg {
    max-width: 6%;
  }
}

@media only screen and (min-width: 820px) and (max-width: 1060px) {
  .footermotion {
    height: 60%;
    border-radius: 0 0 100px 100px;
  }

  .footermotiontitle {
    font-size: 46px;
  }
  .footermotiontitlebis {
    font-size: 35px;
  }

  .contact {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
  }

  #animcoffee {
    left: 35%;
    top: 0;
  }
  .paris {
    padding-top: 6%;
  }

  #animglobe svg {
    max-width: 8%;
  }

  .city {
    display: block;
    border-bottom: none;
  }

  .ville {
    font-size: 20px;
    font-weight: 600;
  }

  .heure {
    margin-left: 0;
    border-bottom: 5px solid #333333;
  }

  .southfooter {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
  }

  .credit {
    margin-right: 0;
    padding-bottom: 2%;
  }
}

@media only screen and (min-width: 700px) and (max-width: 820px) {
  .footermotion {
    height: 60%;
    border-radius: 0 0 100px 100px;
  }

  .footermotiontitle {
    font-size: 42px;
  }
  .footermotiontitlebis {
    font-size: 38px;
  }

  .contact {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    z-index: 1;
  }

  #animcoffee {
    left: 25%;
    top: 0;
  }

  .paris {
    padding-top: 6%;
  }

  #animglobe svg {
    max-width: 8%;
  }

  .city {
    display: block;
    border-bottom: none;
  }

  .ville {
    font-size: 20px;
    font-weight: 600;
  }

  .heure {
    margin-left: 0;
    border-bottom: 5px solid #333333;
  }

  .southfooter {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
  }

  .credit {
    margin-right: 0;
    padding-bottom: 2%;
  }
}

@media only screen and (min-width: 200px) and (max-width: 700px) {
  .footermotion {
    height: 60%;
    border-radius: 0 0 100px 100px;
  }

  .footermotiontitle {
    font-size: 21px;
  }
  .footermotiontitlebis {
    font-size: 21px;
  }

  .contact {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    z-index: 1;
  }

  #animcoffee {
    left: 25%;
    top: 0;
  }
  .paris {
    padding-top: 25%;
    justify-content: center;
  }

  #animglobe svg {
    max-width: 20%;
  }

  .city {
    display: block;
    border-bottom: none;
  }

  .ville {
    font-size: 20px;
    font-weight: 600;
  }

  .heure {
    margin-left: 0;
    border-bottom: 5px solid #333333;
  }

  .southfooter {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
  }

  .socialmedia {
    position: relative;
    display: flex;
    text-align: center;
    justify-content: center;

    gap: 0.5em;
    flex-wrap: wrap;
    margin-top: 20%;
  }
  .credit {
    margin-right: 0;
    margin-top: 10%;
    margin-bottom: 10%;
  }
}

@media only screen and (min-height: 200px) and (max-height: 414px) and (orientation: landscape) {
  .footermotion {
    height: 130%;
    border-radius: 0 0 100px 100px;
  }

  .footermotiontitle {
    font-size: 22px;
  }
  .footermotiontitlebis {
    font-size: 22px;
  }

  .contact {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    z-index: 1;
  }

  #animcoffee {
    left: 40%;
    top: 0;
  }
  .paris {
    padding-top: 1%;
    justify-content: flex-start;
  }

  #animglobe svg {
    max-width: 10%;
  }

  .city {
    display: block;
    border-bottom: none;
  }

  .ville {
    font-size: 20px;
    font-weight: 600;
  }

  .heure {
    margin-left: 0;
    border-bottom: 5px solid #333333;
  }

  .southfooter {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
  }

  .socialmedia {
    position: relative;
    display: flex;
    text-align: center;
    justify-content: center;

    gap: 0.5em;
    flex-wrap: nowrap;
    margin-top: 10%;
  }
  .credit {
    margin-right: 0;
    margin-top: 10%;
    margin-bottom: 10%;
  }
}

@media only screen and (min-height: 512px) and (max-height: 912px) and (orientation: landscape) {
  .footermotion {
    height: 90%;
    border-radius: 0 0 100px 100px;
  }

  .footermotiontitle {
    font-size: 66px;
  }
  .footermotiontitlebis {
    font-size: 46px;
  }

  .contact {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    z-index: 1;
  }

  #animcoffee {
    left: 50%;
    top: 0;
  }
  .paris {
    padding-top: 1%;
    justify-content: flex-start;
  }

  #animglobe svg {
    max-width: 10%;
  }

  .city {
    display: block;
    border-bottom: none;
  }

  .ville {
    font-size: 20px;
    font-weight: 600;
  }

  .heure {
    margin-left: 0;
    border-bottom: 5px solid #333333;
  }

  .southfooter {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
    padding-top: 4%;
    padding-bottom: 4%;
  }

  .socialmedia {
    position: relative;
    display: flex;
    text-align: center;
    justify-content: center;

    gap: 0.5em;
    flex-wrap: nowrap;
    margin-top: 0%;
  }
  .credit {
    margin: 0;
  }
}
