/********** Template CSS **********/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Kannada:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=REM:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poetsen+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root {
    --primary: #2EB872;
    --light: #F3F4F5;
    --dark: #282F34;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
    width:100px;
    border-radius:5px;
}

.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;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand {
    display: flex;
    align-items: center;
}

.navbar .navbar-brand img {
    max-height: 50px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 400;
    text-transform: uppercase;
    outline: none;
    font-family:REM;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}


.navbar .nav-item .dropdown-menu .dropdown-item{
    display:block;
    width:250px;
    font-family:REM;
    border-bottom:1px dotted #2EB872;
    height:50px;
    padding:10px 15px;
    font-size:18px;
}

.navbar .nav-item .dropdown-menu .dropdown-item:hover{
    background:#2EB872;
    color:#fff;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.header-bg {
    background:  url(../img/hq720.jpg) center center no-repeat;
    background-size: cover;
    height:450px;
    opacity:1;
}

.sub-header-bg {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/hq720.jpg) center center no-repeat;
    background-size: cover;
    height:150px;
}
.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 16px;
    height: 26px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: #FFFFFF;
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: -1px;
    border-left: 16px solid var(--primary);
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.modal-video .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

.modal-video .modal-body {
    position: relative;
    padding: 0px;
}

.modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}

.header-carousel .owl-nav {
    position: absolute;
    width: 250px;
    height: 40px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.header-carousel .owl-dots {
    position: absolute;
    height: 45px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: transparent;
    border: 1px solid #FFFFFF;
    transition: .5s;
}

.header-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    top: 4px;
    left: 4px;
    background: #FFFFFF;
    border-radius: 5px;
}

.header-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** Img Border ***/
.img-border {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.img-border::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 1.5rem;
    bottom: 1.5rem;
    border: 5px solid var(--primary);
}

.img-border img {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    width: calc(100% - 1.5rem);
    height: calc(100% - 1.5rem);
    object-fit: cover;
}


/*** Facts & Visiting Hours ***/
.facts {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/bg-1.jpg) center center no-repeat;
    background-size: cover;
}

.visiting-hours {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/bg-2.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, .15);
    border-color: rgba(255, 255, 255, .15);
}

.visiting-hours .table {
    color: var(--light);
    background: rgba(0, 0, 0, .15);
}

.visiting-hours .table td {
    padding: .5rem 1rem;
    border-color: rgba(255, 255, 255, .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, .7);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 100px !important;
    opacity: 0;
    transition: .5s;
}

.animal-item:hover .animal-text {
    opacity: 1;
    padding-bottom: 20px !important;
}


/*** Membership ***/
.membership-item {
    padding: 45px 30px;
    color: #FFFFFF;
    background: rgba(0, 0, 0, .7);
}

.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(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--primary);
    transform: scale(1);
}

.testimonial-carousel .owl-item .testimonial-text *,
.testimonial-carousel .owl-item .testimonial-item img {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: var(--light) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item img {
    border-color: var(--primary) !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: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 450px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--primary);
    font-size: 45px;
    transition: .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, .7), rgba(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 #FFFFFF;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.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: .3s;
    width:100%;
}

.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: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}

.header-main{
    position:relative;
    height:450px;
    width:100%;
    margin:0;
}

.owl-carousel{
    position:relative;
    height:450px;
    width:100%;
    z-index:1;
}

.owl-carousel .owl-carousel-item{
    height:450px;
    width:100%;
}

.owl-carousel .owl-carousel-item img{
    height:450px;
    width:100%;
}

.display-4{
    text-align:right;
    margin-top:1.5in;
    font-size: 2.75rem;
}
.display-5
{
    font-size: 22px;
}

.display-6
{
    font-size: 17px;
    color:#C85250;
    font-weight:650;
}

.display-7
{
    font-size: 17px;
    color:#BA0F30;
    font-weight:600;
}

.kan-p{
    font-family:'Noto Sans Kannada';
    font-size:16px;
    line-height:1.5rem;
    text-align:justify;
}

.kan-p1{
    font-family:'Noto Sans Kannada';
    font-size:14px;
    line-height:1.5rem;
    text-align:justify;
}


.kan-li{
    display:flex;
    font-family:'Noto Sans Kannada';
    font-size:16px;
    line-height:1.5rem;
    text-align:justify;
}

@media (max-width: 768px) {
    .header-bg{height:300px;}
    .header-main{height:300px;}
    .owl-carousel{height:300px;}
    .owl-carousel .owl-carousel-item{height:300px;}
    .owl-carousel .owl-carousel-item img{height:300px;}
    .display-4{ font-size: 20px;}
}

.team{
    position:relative;
    margin-top:30px;
    margin-left:20px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    border-bottom:1px solid #2EB872;
    border-radius:8px;
    width:250px;
}

.team .title {
    color:#F51720;
    font-size:20px;
    font-weight:600;
    text-align:center;
}

.team .subtitle {
    color:#5e6b45;
    font-size:16px;
    font-weight:500;
    text-align:center;
}

.team .deg{
    display:block;
    color:#0E86D4;
    font-size:14px;
    font-weight:600;
}
.team .subj{
    color:#055C9D;
    font-size:16px;
    font-weight:600;
    text-align:center;
    margin-top:-15px;
}
.card-img-top{
    width:160px;
    height:180px;
    display:block;
    margin:0px auto;
    /*border-radius:8px;*/
    border-top-right-radius:8px;
    border-top-left-radius:8px;
    border-bottom:1px solid #59981A;
}

.card-title {
    text-align:center;
}

.sub-head{
    color:#0074B7;
    font-size:24px;
    font-weight:500;
    text-align:center;
    font-family:'Poetsen One';
    padding:5px;
}

.read-more-target,
.read-more-trigger_opened {
  display: none;
}
.read-more-state:checked ~ .read-more-wrap .read-more-target,
.read-more-state:checked ~ .read-more-trigger_opened {
  display: block;
}
.read-more-state:checked ~ .read-more-trigger_closed {
  display: none;
}

.frm{
    padding:20px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    background:#fff;
    border:1px solid #198754;
    color:#000;
}

.table tr{
    font-size:13px;
    text-align:center;
    color:#000;
}

.table td{
    color:#000;
    font-size:15px;
    font-weight:550;
}

.btnAdd{
    width:200px;
}

.form-select{
    display: block;
    width: 100%;
    padding: .375rem 2.25rem .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #555;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: right .75rem center;
    background-size: 16px 12px;
    border: 1px solid #ced4da;
    border-radius: 0px;
    appearance: none;
}

.form-select option{
    background-color:#fff;
    height:35px;
}

.form-control[type="file"] {
    background-color:#fff;
}

.hr{
    position:relative;
    width:100%;
    border:1px solid #efefef;
    padding:10px 10px;
}

.lbl{
    font-size:14px;
    color:#000;
    font-family:Poppins;
}

.list-group{
    width:50%;
}

.list-group .list-group-item{
    color:#2C5E1A;
}
.list-group-item{
    color:#ffffff;
}

.lst-active{
    color:#fff;
}

.page-content{
  background: lightgrey;
  display: inline-block;
  padding: 15px;
  width: 100%;
  text-align: center;
  height: 150px;
  margin-bottom: 10px;
}

.sub-head {
    display: block;
    font-size: 18px;
    font-weight: bold;
    unicode-bidi: isolate;
    font-family: "Quicksand", sans-serif;
    color:#0074B7;
    text-align:left;
}
.sub-head a{
    color:#0074B7;
}

.display-13{
    color:#CC0000;
    text-align:center;
    font-weight:500;
    font-family:'Poppins';
    font-size:17px;
}

.card-title{
    text-align:center;
}

.pagination a{
    display: flex;
    list-style: none;
    font-weight:600;
    color:#1152c2;
    font-family:Poppins;
    width:30px;
    padding:5px 8px;
    background:#f0f1f2;
    border-radius:5px;
    text-align:center !important;
    /*border :1px solid #2EB872;*/
}

.tbwd1{width:10%;}
.tbwd2{width:30%;}
.tbwd3{width:50%;}

.responsive-video {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 -> 9/16x100 */
  overflow: hidden;
}
.responsive-video .video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.notification-container {
    width: 300px; /* Adjust width as needed */
    height: 100px; /* Adjust height as needed */
    overflow: hidden;
    position: relative;
}

.notification {
    animation: scroll 20s linear infinite;
}

.notification p {
    margin: 10px 0;
}

@keyframes scroll {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-100%);
    }
}

.notlnk{
    color:#0E86D4;
}

.thumbnail {
    position: relative;
    display: block;
    padding: 4px;
    margin-bottom: 20px;
    line-height: 1.42857143;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    -webkit-transition: border .2s ease-in-out;
    -o-transition: border .2s ease-in-out;
    transition: border .2s ease-in-out;
}
.thumbnail a>img, .thumbnail>img {
    margin-right: auto;
    margin-left: auto;
}
.thumbnail>img {
    display: block;
    max-width: 100px;
    height: auto;
}
.carousel-inner>.item>a>img, .carousel-inner>.item>img, .img-responsive, .thumbnail a>img, .thumbnail>img {
    display: block;
    max-width: 100%;
    height: auto;
}
 .thumbnail img {
  transition: transform .8s;
  transform-origin: 0,0;
}
 .thumbnail:hover img {
  transform: scale(1.2, 1.2);
   overflow: hidden;
}
.caption {
  position: absolute;
  top: 0;
	right: 0;
	bottom: 0; 
	left: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
  background: rgba(0,0,0, .65);
  border: 5px solid #00D180;
}
.umbrellas{
  border: 5px solid #FFB037;
}
.code{
  border: 5px solid #2E2C2D;
}
.canvas {
  border: 5px solid #AD6A3E;
}
.cow {
  border: 5px solid #31490B;
}
.beer {
  border: 5px solid #792002;
}
.dog{
  border: 5px solid #4E68C1;
}
.bike {
  border: 5px solid #4DB74F;
}
.caption h3, 
.caption p {
  color: #fff;
}
#popup {
  background: rgba(0, 0, 0, .7);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left:0;
  display: none;
}
#popup img {
  margin-left: 30%;
  margin-top: 5%;
  width: 40%;
  border: 5px solid #FFF8DC;
  border-radius: 5%;
}
#popup p {
  text-align: center;
  font-size: 1.5rem;
  line-height: 3rem;
  color: #fff;
}

.img-disp{
    width:100%;
    height:200px;
    border:5px solid #B9C8BC;
    border-radius:8px;
}
/* Media Query */
@media (max-width: 768px) {
    .main-header {
    margin: initial;
  }
  .main-header:hover {
  text-indent: .1rem;
  letter-spacing: .1rem;
  transform: scale(1.1,1.1);
}
	.title {
		line-height: initial;
	}
  .thumbnail:hover img {
    transform: scale(1, 1);
  }
  .caption:hover{
    transform: scale(1,1);
  }
}
@media (min-width: 769px) and (max-width: 1040px){
  .main-header:hover {
    text-indent: .1rem;
    letter-spacing: .1rem;
    transform: scale(1.05,1.05);
  }
  .img-disp{
    width:100%;
    height:150px;}
    
    .notheight{
        height :200px;
    }
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-plus' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
  transition: all 0.5s;
}
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-dash' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
}
.accordion-button::after {
  transition: all 0.5s;
}

.notheight{
    height :300px;
}

.disp-date{
    font-size: 15px;
    /*color:#CC0000;*/
    font-weight:650;
    padding-left:10px;
    padding-right:10px;
    background:#CC0000;
    color:#fff;
}