/*SLIDE*/
/*.slide-container{
    width: 80%;
    padding: 00px 10%;
    display: flex;
    flex-direction: column;
    min-height: auto;
    justify-content: center;
  }
  .slide-container h1{
    font-size: 30px;
    padding: 20px 0;
  }
  .wrapper{
    display: flex;
    max-width: 1200px;
    position: relative;
  }
  .wrapper i{
    top: 50%;
    height: 44px;
    width: 44px;
    cursor: pointer;
    font-size: 1.15rem;
    position: absolute;
    text-align: center;
    line-height: 44px;
    color: var(--white);
    background: var(--main);
    transform: translateY(-50%);
    transition: transform 0.1s linear;
  }
  .wrapper i:active{
    transform: translateY(-50%) scale(0.9);
    z-index: 200;
  }
  .wrapper i:hover{
    background: #f2f2f2;
    z-index: 200;
  }
  .wrapper i:first-child{
    left: -22px;
    display: none;
    z-index: 200;
  }
  .wrapper i:last-child{
    right: -22px;
    z-index: 200;
  }
  .wrapper .carousel{
    font-size: 0px;
    cursor: pointer;
    overflow: hidden;
    white-space: nowrap;
    scroll-behavior: smooth;
  }
  .carousel.dragging{
    cursor: grab;
    scroll-behavior: auto;
  }
  .carousel.dragging .img{
    pointer-events: none;
  }
  .carousel .img{
    height: auto;
    object-fit: contain;
    user-select: none;
    margin-left: 14px;
    width: calc(100% / 3);
  }
  .carousel .img img{
    width: 100%;
    height: 300px;
    object-fit: cover;
  }
  .carousel .img h1{
    font-size: 30px;
    width: 95%;
    padding: 5px 2.5%;
  }
  .carousel .img p{
    text-align: center;
  }
  .carousel .img:first-child{
    margin-left: 0px;
  }
  @media screen and (max-width: 900px) {
    .carousel img{
      width: calc(100% / 2);
    }
  }
  @media screen and (max-width: 550px) {
    .carousel img{
      width: 100%;
    }
  }

*/



.slide-container-blog{
    display: flex;
    flex-direction: column;
    width: 90%;
    padding: 10px 5%;
  align-items: center;
  justify-content: center;
  height: 120vh;
  background-color: #16385806;
}  
.slide-container-blog h1{
    width: 100%;
    text-align: start;
    font-size: 30px;
    padding: 0 0 5px 0;
}
.wrapper {
    width: 100%;
    position: relative;
  }
  .wrapper i {
    top: 50%;
    height: 50px;
    width: 50px;
    cursor: pointer;
    font-size: 1.25rem;
    position: absolute;
    text-align: center;
    line-height: 50px;
    background: #fff;
    box-shadow: 0 3px 6px rgba(0,0,0,0.23);
    transform: translateY(-50%);
    transition: transform 0.1s linear;
    z-index: 200;
  }
  .wrapper i:active{
    transform: translateY(-50%) scale(0.85);
  }
  .wrapper i:first-child{
    left: -22px;
  }
  .wrapper i:last-child{
    right: -22px;
  }
  .wrapper .carousel{
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% / 3) - 20px);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    scroll-behavior: smooth;
    scrollbar-width: none;
    align-items: start;
    justify-content: start;
  }
  .carousel::-webkit-scrollbar {
    display: none;
  }
  .carousel.no-transition {
    scroll-behavior: auto;
  }
  .carousel.dragging {
    scroll-snap-type: none;
    scroll-behavior: auto;
  }
  .carousel.dragging .card {
    cursor: grab;
    user-select: none;
  }
  .carousel :where(.card, .img) {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .carousel .card {
    scroll-snap-align: start;
    height: 600px;
    list-style: none;
    background: #fff;
    cursor: pointer;
    align-items: start;
    justify-content: start;
    padding-bottom: 15px;
    flex-direction: column;
  }
  .carousel .card:hover{
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  }
  .carousel .card .img {
    background: transparent;
    max-height: 50%;
    height: 50%;
    width: 100%;
  }
  .carousel .card iframe {
    background: transparent;
    height: 100%;
    width: 100%;
  }
  .card .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 4px solid #fff;
  }
  .carousel .card h2 {
    font-weight: 500;
    font-size: 1.56rem;
    margin: 30px 0 5px;
    text-align: center;
    padding: 0 5px;
  }
  .carousel .card span {
    color: #6A6D78;
    font-size: 1.31rem;
    max-height: 250px;
    height: 200px;
    overflow: hidden;
    font-size: 12px;
    padding: 0 10px;
    position: relative;
  }
  .carousel .card .span.focus{
    height: auto;
    overflow: auto;
  }
  .carousel .card em{
    display: flex;
    margin-left: 80%;
    color: var(--main);
    font-size: 12px;
    text-decoration: underline;
  }
  .carousel .card span em{
    display: flex;
    margin-left: auto;
    position: absolute;
    z-index: 1000;
  }
  @media screen and (max-width: 900px) {
    .wrapper .carousel {
      grid-auto-columns: calc((100% / 2) - 9px);
    }
  }
  @media screen and (max-width: 600px) {
    .wrapper .carousel {
      grid-auto-columns: 100%;
    }
}
