/* Add here all your CSS customizations */
.text-color-dark.activeLink {
	color: #018c85 !important;
}
.box-shadow-1:before{
	z-index: -1;
}

.card-body  li.pb-1.mb-3 a.text-color-hover-primary.text-color-dark:hover {
	color: #018c85 !important;

}
.colorSecond{
	color: #018c85 !important; 
}

.listPadding li {
    margin-bottom: 0 !important;
    font-weight: 400 !important;
}

  /* Gallery */
    .gallery {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
        max-width: 1000px;
        margin: auto;
    }

    .gallery img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        cursor: pointer;
        border-radius: 8px;
        transition: transform 0.3s;
    }

    .gallery img:hover {
        transform: scale(1.05);
    }

    /* Lightbox */
    .lightbox {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.9);
        justify-content: center;
        align-items: center;
        z-index: 1000;
        touch-action: pan-y;
    }

    .lightbox img {
        max-width: 90%;
        max-height: 90%;
        border-radius: 10px;
    }

    /* Controls */
    .close,
    .prev,
    .next {
        position: absolute;
        color: #fff;
        font-size: 35px;
        cursor: pointer;
        user-select: none;
    }

    .close {
        top: 20px;
        right: 30px;
        font-size: 40px;
    }

    .prev {
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    .next {
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    @media (max-width: 600px) {
        .prev, .next {
            font-size: 28px;
        }
    }


    .p-15{
    padding: 25px;
    border:1px solid #018c85;
 }
 .font26 h2{
    font-size: 26px !important;
    line-height: 1.3 !important;
 }

  .font26 p{
    margin: 15px 0 !important;
  }

    .font26 .my-3{
    margin-top: 0 !important;
  }