.gallery {
    font-family: "Mukta", sans-serif;
  }
  .gallery__box {
    display: flex;
    flex-direction: column;
  }
  .gallery__box-content:not(:last-child) {
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 60px;
  }
  .gallery .grid__title {
    font-size: 18px;
    color: #026f7f;
    margin-bottom: 10px;
    padding-top: 15px;
    font-weight: 600 !important;
  }
  .gallery .grid__title a {
    color: inherit;
    font-size: inherit;
  }
  .gallery .grid__box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 16px;
  }
  @media (min-width: 768px) and (max-width: 1199px) {
    .gallery .grid__box {
      grid-gap: 20px;
    }
  }
  @media (max-width: 991px) {
    .gallery .grid__box {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (max-width: 767px) {
    .gallery .grid__box {
      grid-template-columns: repeat(1, 1fr);
      grid-gap: 15px;
      row-gap: 20px;
    }
  }
  .gallery .single__grid-image {
    margin-bottom: 10px;
  }
  .gallery .single__grid-image a {
    display: block;
    position: relative;
    height: 0;
    width: 100%;
    overflow: hidden;
    padding-bottom: 66.67%;
  }
  @media (min-width: 768px) and (max-width: 991px) {
    .gallery .single__grid-image a {
      padding-bottom: 60%;
    }
  }
  .gallery .single__grid-image img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
  .gallery .single__grid-info h3 {
    transition: all 0.3s ease-in-out;
    font-size: 20px;
    font-weight: 500;
    color: #111 !important;
    line-height: 1.6;
    margin-bottom: 5px !important;
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
  }
  .gallery .single__grid-info h3 a {
    color: inherit !important;
  }
  .gallery .single__grid-info h3:hover {
    color: var(--theme-color) !important;
  }
  