.loader {
    width: 50px;
    aspect-ratio: 1;
    display: grid;
    border: 4px solid #0000;
    border-radius: 50%;
    border-right-color: var(--theme-color);
    animation: l15 1s infinite linear;
  }

  .loader::before,
  .loader::after {
    content: "";
    grid-area: 1/1;
    margin: 2px;
    border: inherit;
    border-radius: 50%;
    animation: l15 2s infinite;
  }

  .loader::after {
    margin: 8px;
    animation-duration: 3s;
  }

  @keyframes l15 {
    100% {
      transform: rotate(1turn);
    }
  }


  /* Carousel */
  .carousel-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  @media (min-width: 576px) {
    .carousel-item img {
      height: 300px;
    }
  }

  @media (min-width: 768px) {
    .carousel-item img {
      height: 300px;
    }
  }

  @media (min-width: 992px) {
    .carousel-item img {
      height: 400px;
    }
  }

  @media (min-width: 1200px) {
    .carousel-item img {
      height: 500px;
    }
  }

  /* Project Gallery */

  .projects-section {
    background-color: rgb(245, 247, 251);
    padding: 60px 0;
  }
  .projects-section h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
  }
  .projects-section p {
    text-align: center;
    margin-bottom: 30px;
    color: #bfbfbf;
  }
  .projects-filter {
    text-align: center;
    margin-bottom: 20px;
  }
  .projects-filter button {
    background-color: var(--theme-color);
    border: none;
    padding: 10px 20px;
    color: #fff;
    margin: 5px;
    border-radius: 30px;
    cursor: pointer;
  }
  .projects-filter .btn-secondary {
    background-color: #333;
  }
  .projects-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .project-item {
    display: none;
  }
  .project-item.show {
    display: block;
  }