
/* Carousel */
#projects__container {
  height: 85vh;
  margin-bottom: 2rem;
}

.carousel_container {
  width: 100%;
  padding: 1rem 0 0 2.5rem;
  height: 15.5em;
  max-width: 1200px;
  margin: auto;
  overflow: auto;
  overflow-x: scroll;
  scrollbar-width: thin;
  scrollbar-color: #324163 #000000c0;
}

.carousel_wrapper {
  display: flex;
  gap: 3rem;
}

.card {
    position: relative;
    width: 300px;
    height: 195px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; 
    perspective: 1000px;
    box-shadow: 3px 3px 5px 4px rgba(255, 255, 255, 0.5);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  
  .card img {
    width: 48px;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  
  .card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(230, 229, 229, 0.692);
  }
  
  .card-body {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 10px;
    box-sizing: border-box;
    backdrop-filter: blur(5px);
    background-color: rgba(27, 84, 131, 0.562);
    transform: rotateX(-90deg);
    transform-origin: bottom;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  
  .card:hover .card-body {
    transform: rotateX(0deg);
  }

  .container-buttons {
    display: flex;
    justify-content: space-between;
    margin: 1rem;

    a {
      font-size: 1.3rem;
    }
  }
  
  .card-title {
    margin: -0.5rem 0 -0.5rem 0;
    font-size: 2.2rem;
    font-weight: 700;
  }
  
  .card-title {
    color: #dddddd;
  }

  
  .card:hover svg {
    scale: 0;
  }
  
  .card-text {
    height: 10.5rem;
    width: 28rem;
    font-size: 14px;
    color: #ffffff;
    font-weight: bold;
    line-height: 1.4;
  }
  