.vgallery__item {
    position: relative;
}
.vgallery__item i {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: #f00;
    color: #fff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-size: 25px;
    border: 2px solid #fff;
}
@media (max-width: 576px) {
    .gallery__page {
        padding: 30px 15px 65px;
    }
}

.vgallery__warp {
    max-width: 1570px;
    margin: 0 auto;
}

.vgallery__item {
    display: block;
    margin-bottom: 30px;
}

.vgallery__item img {
    min-width: 100%;
}

.fr-position-outside {
    left: 0;
    top: 0;
    right: auto;
    bottom: auto;
}

.fr-position-text {
    color: #fff;
}

.fr-window-skin-fresco.fr-window-ui-outside .fr-close-background,
.fr-window-skin-fresco.fr-window-ui-outside .fr-close:hover .fr-close-background {
    background-color: transparent;
}

.fr-thumbnail-active {
    border: 2px solid #f00;
}




:root {
--lightbox: rgb(0 0 0 / 0.75);
--carousel-text: #fff;
}


@keyframes zoomin {
0% {
    transform: scale(1);
}
50% {
    transform: scale(1.05);
}
100% {
    transform: scale(1);
}
}

.gallery-item {
display: block;
}

.gallery-item img {
box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.15);
transition: box-shadow 0.2s;
}

.gallery-item:hover img {
box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.35);
}

.lightbox-modal .modal-content {
background-color: var(--lightbox);
}

.lightbox-modal .btn-close {
position: absolute;
top: 1.25rem;
right: 1.25rem;
font-size: 1.25rem;
z-index: 10;
filter: invert(1) grayscale(100);
}

.lightbox-modal .modal-body {
display: flex;
align-items: center;
padding: 0;
}

.lightbox-modal .lightbox-content {
width: 100%;
}

.lightbox-modal .carousel-indicators {
margin-bottom: 0;
}

.lightbox-modal .carousel-indicators [data-bs-target] {
background-color: var(--carousel-text) !important;
}

.lightbox-modal .carousel-inner {
width: 75%;
}

.lightbox-modal .carousel-inner img {
animation: zoomin 10s linear infinite;
}

.lightbox-modal .carousel-item .carousel-caption {
right: 0;
bottom: 0;
}




.event-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.event-img img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 200px; /* Set a max height for the images */
}

.event-content {
    padding: 20px;
    background-color: #fff; /* Or any desired background */
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.event-content h4 {
    margin-bottom: 10px;
}

.event-content p {
    flex-grow: 1;
    margin-bottom: 10px;
}

.event-content ul {
    margin-bottom: 20px;
    list-style: none;
    padding: 0;
}

.event-slider .event-item {
    min-height: 250px; /* Set a minimum height for all event items */
}



.form-result .text-success { color: green; }
.form-result .text-danger { color: red; }
.form-result .text-info { color: blue; }




.testimonials-card-two.even-card {
    background-color: #D4302F!important;
    color: #FFFFFF!important;
}

.testimonials-card-two.odd-card {
    
    background-color: #202020!important;
    color: #FFFFFF!important;
}

.notice-description {
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Limit to 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}


.speech-container {
      display: flex;
      flex-direction: row;
      gap: 10px;
    }

    .image-container {
      border: 1px solid #ccc;
      border-radius: 5px;
      padding: 10px;
    }

    .image-container img {
      width: 240px;
      border-radius: 10px;
    }
    .image-container {
      text-align: center;
    }

    .image-container .name {
      text-align: center;
      font-weight: 600;
      color: rgb(50, 122, 122);
      margin: 10px;
    }
    .image-container .designation {
      text-align: center;
      margin-top: 0px;
      margin-bottom: 6px;
    }

    .speech {
      flex: 1;
      border: 1px solid #ccc;
      border-radius: 5px;
      padding: 20px 10px;
    }
    .speech .speech-header {
      border-bottom: 2px solid rgb(23, 86, 134);
      display: flex;
    }
    .speech .speech-header h3 {
      font-size: 24px;
      color: white;
      background-color: rgb(23, 86, 134);
      margin: 0;
      padding: 12px;
      width: fit-content;
      border-top-left-radius: 5px;
    }
    .speech .speech-header .figure {
      content: "";
      margin-left: 0px;
      border-bottom: solid 28px rgb(23, 86, 134);
      border-left: solid 26px rgb(23, 86, 134);
      border-right: solid 23px transparent;
      border-top: solid 31px transparent;
    }
    .speech .content {
      padding: 10px;
      color: rgb(8, 72, 72);
      line-height: 20px;
      font-size: 18px;
      text-align: justify;
      margin-top: 10px;
    }
    .speech h4 {
      color: rgb(8, 72, 72);
      font-size: 18px;
      margin: 5px 10px;
      font-weight: 600;
    }

    @media screen and (max-width: 600px) {
      .speech-container {
        flex-direction: column;
      }
      .image-container img {
        width: 200px;
        border-radius: 10px;
      }
      .speech .speech-header h3 {
        font-size: 24px;
        color: white;
        background-color: rgb(23, 86, 134);
        margin: 0;
        padding: 12px;
        width: fit-content;
        border-top-left-radius: 5px;
      }
      .speech .speech-header .figure {
        content: "";
        /* margin-left: -1px;
        border-bottom: solid 26px rgb(23, 86, 134);
        border-left: solid 26px rgb(23, 86, 134);
        border-right: solid 26px transparent;
        border-top: solid 26px transparent; */
      }
    }