body {
    height: 100svh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
body > * {
}

.caroussel {
    flex: 1 1 200px;
    position: relative;
    overflow: hidden;
}
.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper, .slide-illu {
    width: 100%;
    height: 100%;
    /* height: calc(100vh - var(--h2) - 1rem); */
    overflow: hidden;
    position: relative;

  }

  .swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .swiper-slide img {
    display: block;
    height: 100%;
    /* height: calc(100vh - var(--h2) - 1rem); */
    width: auto;
    /* object-fit: cover; */
  }
  .swiper-button-next, .swiper-button-prev {
    height: 100%;
    top: 0;
    z-index: 2;
    width: 5rem;
    margin: 0;
    fill: white;
    mix-blend-mode: difference;

    /* left: 0; */
  }
  .swiper-button-next:hover , .swiper-button-prev:hover{
    fill: black;
    mix-blend-mode: normal;
  }
  .swiper-button-next::after, .swiper-button-prev::after {
    content: "";
  }
  .swiper-button-next svg, .swiper-button-prev svg{
    transition: transform .5s ease-in-out;
    transform: translateX(0);

  }
  
  .swiper-button-next:hover svg {
    transform: translateX(10px);
  }
  .swiper-button-prev:hover svg {
    transform: translateX(-10px);
  }


  .swiper-button-prev{
    left: 0;
    cursor: w-resize;
    padding-left: 20px;

  }
  .swiper-button-next{
        right: 0;
    cursor: e-resize;
    padding-right: 20px;
        
  }

  
  .swiper-slide {
    width: auto;
    margin: 0 20px;
  }

.accordion {
    box-shadow: 0 -10px 20px rgba(0, 0, 0, .05);
    display: flex;
    justify-content: center;
    align-items: center;
    /* flex-wrap: nowrap; */
    gap:2rem;
}
.more-info {
    position: relative;
    border: none;
    cursor: pointer;
    background-color: var(--txt-200);
    color: var(--bg-100);
    transition: all .2s ease-in-out;
    overflow: hidden;
    /* padding: 0 .5rem; */
    height: 1.4rem;
    width: 12ch;
    font-size: 1rem;
    border-radius: 5px;

}


.more-info.active {
    background-color: var(--txt-300);
    transition: all .2s ease-in-out;

}
/* .more-info.active span {
    transform: translateY(-100%);

}
 */
 
 .the_excerpt {
  padding-bottom: 5rem;
 }
.more-info span{
    position: absolute;
    display: block;
    top: 0;
    /* left: 0; */
    width: 100%;
    height: 100%;
    transition: all .2s ease-in-out .6s;

}
.more-info .less {
    top: 2rem;
}
.more-info.active .more {
    top: -2rem;
}
.more-info.active .less {
    top: 0;
}

.explanation {
    flex: 0;
    /* height: 1rem; */
}

.explanation h2 {
    font-size: var(--h2);
    cursor: pointer;
}

.panel {
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    max-height: 0;
    gap: 2rem;
    overflow: hidden;
    transition:  max-height .3s ease-out;
    padding: 0 var(--margin-global);
    margin-bottom: 1rem;
}
.panel > * {
    flex: 0 0 50%;
    margin: 2rem 0;
}
.panel .info{
    /* margin-bottom: 30vh; */
}

.categories {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}


@media screen and (min-width: 600px )and (max-width: 800px) {
  .categories {
    flex-direction: column;
    justify-content: flex-start;
    gap: 2rem;
    /* width: 33%; */
    flex-basis: auto;
  }

}


@media screen and (max-width: 640px) {

  .swiper-container {

}

.swiper, .slide-illu {
    max-width: 130vw;

}
.swiper, .slide-illu img{
    object-fit: contain;
}

.accordion {
    flex-direction: column;
    gap: 0;
}
.panel {
    flex-direction: column;
    justify-content: space-around;
    
    flex-wrap: wrap;
    position: relative;
}
.panel > * {
    flex: 0 0 100%;
    margin: 0 0;
}
.categories {
    /* flex-basis: 1; */
    /* position: absolute; */
}

.the_excerpt {
    overflow-y: scroll;
    max-height: 60vh;
}}
