.bubbles {
 text-decoration: none;
  color: black;
  position: relative;
    cursor: pointer;
}

.symbol {

  font-family: 'Digitek';
    padding: 5px;
    background: black;
    border-radius: 50%;
  overflow: hidden;
  color: black;
  aspect-ratio: 1;
  width: 1vw;
  height: 1vw;
  transition: transform 1s;
}

.bubbles:hover .symbol {
  transform: scale(230%) !important;
}

.bubbles:hover:before {
  transform: translateX(-250px);
}

.bubbles div {
  text-align: center;
  margin: 0;
}

.bubbles .subtitle {
  font-size: 15px;
  padding-top: 10px;
}

.bubbles .title {
  font-weight: bold;
  font-size: clamp(14px, 1.1vw, 25px);
}

.bubbles .info {
display: none;   
height: fit-content;

  width: max-content;
  min-width: 20px;
  max-width: 15vw;
  overflow: hidden;
    position: absolute;
  flex-direction: column;
    background: #f3f3f3;
    padding: 20px;
    font-weight: normal;
    z-index: 1;
    transform: translateX(-25%);
    transition: opacity 1s;
      top: 180%;

}

.bubbles:hover .info, .bubbles:focus .info {
  display: block;
  opacity: 1;
}

.allbubbles {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  flex: 1;
  justify-content: space-around;
  width: 100%;
  position: relative;
  z-index: 1;
}


h1.titre {
    position: absolute;
    height: calc(100vh - var(--menu));
      height: calc(calc(var(--vh, 1vh) * 100) - var(--menu) );

    width: 100vw;
    text-align: center;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(50px, 9.5vw, 200px);
    -webkit-text-stroke: 0.1vw black;
    display: none;
}

.categories {
    height: calc(100vh - var(--menu));
      height: calc(calc(var(--vh, 1vh) * 100) - var(--menu) );

    width: 100vw;
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    position: sticky;
    top: 0;
}

.categories:not(.open) .close {
  display: none;
}

.categories .close {
  color: black;
  top: 25px;
  font-size: 65px;
  z-index: 1;
}

.categories .categorie {
    min-width: 36vw;
    position: relative;
    background: transparent;
    border: none;
    font-weight: bold;
    font-size: clamp(10px, 1.1vw, 25px);
    font-family: 'Liberation';
    transition: width 1s ease, height 0s ease;
    order: 2;
    flex: 1;
    height: calc((100vh - var(--menu))/2);
      height: calc((calc(var(--vh, 1vh) * 100) - var(--menu))/2 );

    text-align: left;
    align-self: start;
    display: flex;
    flex-direction: column;
}

.categories .categorie.open {
  width: 100vw;
  height: calc(100vh - var(--menu));
    height: calc(calc(var(--vh, 1vh) * 100) - var(--menu) );
  order: 1;
  flex: unset;
  transition: width 1s ease, height 1s ease;

}

.categories .categorie:hover {
  z-index: 3;
}

.categorie.left {
    align-items: self-end;
    text-align: right;
}

.categorie.bas {
    justify-content: end;
}

.categorie h2 {
  margin: 0;
  margin-bottom: 10px;
  font-size: clamp(16px, 2vw, 50px);
  text-transform: uppercase;
}

.leg {
  padding: 20px;
}


.categorie .line {
  text-align: left;
}

.categorie .line:nth-child(2n+1) {
    transform: translateX(0px);
}

.categorie:hover .line:nth-child(2n+1), .categorie.open .line:nth-child(2n+1) {
    transform: translateX(-250px);
}

.categorie:hover .line:nth-child(2n), .categorie.open .line:nth-child(2n){
    transform: translateX(0px);
}


.all {
  position: relative;
}

.categorie .fond {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

iframe {
  position: sticky;
  top: var(--menu);
  height: calc(100vh - var(--menu));
    height: calc(calc(var(--vh, 1vh) * 100) - var(--menu) );

  width: 100vw;
  border: none;
}

#centercircle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 1px;
  background: transparent;
}

.lino {
    width: 2px;
  height: 2px;
  background-color: #f3f3f3;
  position: absolute;
  z-index: -1;
}

.categorie .line:nth-child(2n) {
  transform: translateX(-250px);
}

footer {
  position: relative;
}

.spec {
  margin: 0px auto !important ;
    margin-top: 15px !important;
  max-width: max-content !important;
}

@keyframes floater {
  0%{transform: translateY(-20%);transition: ease 0.5s;}
  50%{transform: translateY(20%);transition: ease 0.5s;}
}

@media screen and (max-width: 980px) {

  .categories .categorie {
    font-weight: normal;
  }

  .bubbles .info {
    display: none !important;
  }

  .leg {
        padding: 20px;
    display: flex;
    flex-direction: column;
  }

  .bas .leg {
        flex-direction: column-reverse;
         row-gap: 12px;
  }

}