/********** Template CSS **********/
:root {
  --primary: #e30016;
  /* --primary: #f8de14; */
  --light: #f3f4f5;
  --medium: #cc2f20;
  --dark: #282f34;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
}

/* p {
  font-size: 15px !important;
} */

.justify {
  text-align: justify;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.btn {
  font-weight: 500;
  transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-secondary {
  color: #ffffff;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

/* Custom css */

/* Video overlay */
.video-overlay {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgb(28 19 19 / 65%);
  z-index: 1;
}

/* Video styling */
video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  z-index: 0;
  object-fit: cover;
}

/* Hero content styling */
.hero-content {
  position: relative;
  z-index: 2;
  height: 80%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  /* padding-bottom: 100px; */
}

.hero-text {
  color: white;
  max-width: 800px;
}

.hero-subtitle {
  color: white;
  font-size: 22px;
  position: relative;
  padding-bottom: 15px;
}

.hero-subtitle:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 230px;
  height: 3px;
  background-color: white;
}

.hero-title {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 18px;
  }
  .navbar-brand img {
    height: 50px;
  }
}

/* Content section */
.content-section {
  padding: 100px 0;
  background-color: #f8f9fa;
}

/* Animation classes */
.fadeInUp {
  animation: fadeInUp;
  animation-duration: 1s;
}

.fadeInDown {
  animation: fadeInDown;
  animation-duration: 1s;
}

/*** Img Border ***/
.img-border {
  position: relative;
  height: 100%;
  min-height: 400px;
}

.img-border::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 3rem;
  bottom: 3rem;
  border: 5px solid transparent;
  border-image: linear-gradient(to right, #847c19, #262624) 1;
}

.img-border img {
  position: absolute;
  top: 3rem;
  left: 3rem;
  width: calc(100% - 3rem);
  height: calc(100% - 3rem);
  object-fit: cover;
}
.img-border:hover img {
  position: absolute;
  top: 5px;
  left: 5px;
  width: calc(100% - 0rem);
  height: calc(100% - 0rem);
  object-fit: cover;
  transition: 1s ease;
}

.img-border2 {
  position: relative;
  height: 100%;
  min-height: 400px;
}

.img-border2::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  left: 3rem;
  bottom: 3rem;
  border: 5px solid transparent;
  border-image: linear-gradient(to right, #847c19, #262624) 1;
}

.img-border2 img {
  position: absolute;
  top: 3rem;
  right: 3rem;
  width: calc(100% - 3rem);
  height: calc(100% - 3rem);
  object-fit: cover;
}
.img-border2:hover img {
  position: absolute;
  top: 5px;
  right: 5px;
  width: calc(100% - 0rem);
  height: calc(100% - 0rem);
  object-fit: cover;
  transition: 1s ease;
}

/*** Facts & Visiting Hours ***/
.facts {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url(../img/bg-count.png) center center no-repeat;
  background-size: cover;
}

.visiting-hours {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url(../img/background.jpg) center center no-repeat;
  background-size: cover;
}

.visiting-hours .list-group-item {
  display: flex;
  justify-content: space-between;
  color: var(--light);
  background: rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 255, 255, 0.15);
}

.visiting-hours .table {
  color: var(--light);
  background: rgba(0, 0, 0, 0.15);
}

.visiting-hours .table td {
  padding: 0.5rem 1rem;
  border-color: rgba(255, 255, 255, 0.15);
}

.visiting-hours .table tr:last-child td {
  border: none;
}

/*** Animal ***/
.animal-item {
  position: relative;
  display: block;
}

.animal-item .animal-text {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 100px !important;
  opacity: 0;
  transition: 0.5s;
}

.animal-item:hover .animal-text {
  opacity: 1;
  padding-bottom: 20px !important;
}

.az-page-titlebar {
    padding: 150px 0px;
    margin-top: -100px;
    background-repeat: no-repeat;
    background-size: cover;
}



/*** Membership ***/
.membership-item {
  padding: 156px 29px 10px 10px;

  color: #ffffff;
  background: rgba(0, 0, 0, 0.7);
}
.membership-item:hover {
  padding: 156px 29px 10px 10px;

  color: #ffffff;
  background: rgba(0, 0, 0, 0.5);
}

.membership-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.membership-item .display-1 {
  color: transparent;
  -webkit-text-stroke: 2px var(--primary);
}

/*** Testimonial ***/
.testimonial-carousel::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 1;
}

.testimonial-carousel::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(
    to left,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 1;
}

@media (min-width: 768px) {
  .testimonial-carousel::before,
  .testimonial-carousel::after {
    width: 200px;
  }
}

@media (min-width: 992px) {
  .testimonial-carousel::before,
  .testimonial-carousel::after {
    width: 300px;
  }
}

.testimonial-carousel .owl-item .testimonial-text {
  background: var(--light);
  transform: scale(0.8);
  transition: 0.5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
  background: #0c2f7a;
  transform: scale(1);
}

.testimonial-carousel .owl-item .testimonial-text *,
.testimonial-carousel .owl-item .testimonial-item img {
  transition: 0.5s;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
  color: var(--light) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item img {
  border-color: #0c2f7a !important;
}

.testimonial-carousel .owl-nav {
  position: absolute;
  width: 350px;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  opacity: 0;
  transition: 0.5s;
  z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
  width: 300px;
  opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  position: relative;
  color: #0c2f7a;
  font-size: 45px;
  transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  color: var(--dark);
}

/*** Footer ***/
.footer {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url(../img/bg-2.jpg) center center no-repeat;
  background-size: cover;
}

.footer .btn.btn-social {
  margin-right: 5px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  border: 1px solid #0c2f7a;
  background:#0c2f7a;
  transition: 0.3s;
}

.footer .btn.btn-social:hover {
  color: #2c52a5;
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: #ffffff;
  font-size: 15px;
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  color: #2c52a5;
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
  color: var(--light);
}

.footer .copyright a:hover {
  color: var(--primary);
}


/* Service Logo*/ 

 /*.logo-container {*/
 /*           padding: 10px 0;*/
 /*       }*/
        
        .logo-wrapper {
   height: 100%;
    width: 100%;
        }
        .logo-wrapper img {
           height: 100%;
            width:100%;
        }
.logo-wrapper {
  filter: grayscale(100%) brightness(90%);
  transition: filter 0.5s ease, transform 0.5s ease;
}

.logo-wrapper:hover {
  filter: none;
}
       
        
        .logo {
            max-width: 100%;
            max-height: 100px;
            transition: all 0.3s ease;
        }
        

        
        
        
        /* Original color classes for hover effect */
        .logo-1:hover path, .logo-1:hover svg { fill: #FF5733; }
        .logo-2:hover path, .logo-2:hover svg { fill: #33A8FF; }
        .logo-3:hover path, .logo-3:hover svg { fill: #7DFF33; }
        .logo-4:hover path, .logo-4:hover svg { fill: #D633FF; }
        .logo-5:hover path, .logo-5:hover svg { fill: #FFD700; }
        
        
        /*  here logo slider */
        
  