.hide {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.5s linear;
}

.show {
  visibility: visible;
  opacity: 1;
}

.sidebar {
    margin-bottom: 0;
}

.HomePage_Title {
    display:none;
}

.navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    font-size: 1rem;
}

.navbar .navbar-collapse .navbar-nav .nav-item .nav-link:before {
    border: none;
}    

.navbar-brand {
  max-width: 350px;
  padding: 10px;
}

.navbar-brand img {
    width: auto;
    height: auto;
    margin: 10px 0;
}

.page-header h1 small {
    display:none;
}

.page-header {
    background:none;
    color:#333333;
}

.email_footer{
    color:#b6b7b7;
}

.email_footer:hover {
    color:#fc6719;
    text-decoration:underline;
}

.small_banner{
    margin-top:5px;
}

.sidebar .card .card-body .accordion-menu .list-group-item > a, .sidebar .card .card-body .accordion .list-group-item > a {margin-bottom: 0px;}


.card-header.pl-3.bg-light {margin-bottom: 1px;}

.blockquote {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    color: rgb(0, 0, 0); 
    font-family: Calibri; 
    /*border:1px solid #666;*/
    padding:1.5rem;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.blockquote-footer {
    text-align:right;
    font-size: 16pt;
    width:100%;
}
.custom-link{
    text-decoration:underline;
}

.custom-link:hover{
    color: #fc6719;
    text-decoration:underline;
}
/****** Footer *****/

@media only screen and (min-width: 768px) {
#footer ul.list-unstyled > li {
    width: 33%;
}
}

@media only screen and (max-width: 767px) {
#footer ul.list-unstyled > li {
    display: block;
}
.footerBlock:first-child {
    margin-top: 30px;
}

}

.footerBlock {
  margin-bottom: 50px;  
}    

.footerBlock:last-child {
  margin-bottom: 0;
}  

#footersubscribe_sidebar .custom-checkbox a {color:#b6b7b7 !important;}
#footersubscribe_sidebar .custom-checkbox a:hover {color:#fc6719 !important;}

/******/

 .gallery {
  display: flex; flex-wrap: wrap; justify-content: center; padding: 20px;
 }
 
 .gallery img {
  margin: 5px; cursor: pointer; max-width: 130px; width: 50%; height: 50%; border-radius: 10px;
 }
 /* Lightbox styles */
 
 #lightbox {
  display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.8); justify-content: center; align-items: center; overflow: hidden; flex-direction: column; z-index: 999;
 }
 
 #lightbox img {
  max-width: 80%; max-height: 60vh; box-shadow: 0 0 25px rgba(0, 0, 0, 0.8); border-radius: 10px;
 }
 
         #lightbox-img-alt {
            color: #fff;
            font-family: Arial, Helvetica, sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
        }
 
 #close-btn {
  position: absolute; top: 10px; right: 10px; font-size: 36px; color: #fff; cursor: pointer; z-index: 2;
 }
 /* Style for navigation buttons */
 
 #prev-btn,
 #next-btn {
  position: absolute; top: 50%; transform: translateY(-50%); font-size: 20px; color: #fff; background-color: rgba(0, 0, 0, 0.5); border: none; padding: 10px; cursor: pointer; transition: background-color 0.3s;
 }
 
 #prev-btn {
  left: 10px;
 }
 
 #next-btn {
  right: 10px;
 }
 
 #prev-btn:hover,
 #next-btn:hover {
  background-color: rgba(0, 0, 0, 0.8);
 }
 /* Styles for thumbnails */
 
 #lightbox .thumbnail-container {
  display: flex; flex-direction: row; flex-wrap: wrap; justify-content: center;
 }
 
 #lightbox .thumbnail {
  max-width: 50px; width: 100px; cursor: pointer; margin-top: 40px; margin-left: 5px; margin-right: 5px; border: 2px solid #fff; transition: opacity 0.3s;
 }
 
 #lightbox .thumbnail:hover,
 #lightbox .thumbnail.active-thumbnail {
  opacity: 0.7;
 }