/********** Template CSS **********/
: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;
}

.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: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #338afe;
}

@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: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/Banner/RISE-Banner-Leftside.webp) center center no-repeat;
    background-size: cover;
}

.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 #fa034a;
    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: 200px;
    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); */
    background: #fa034a;
    border-color: #fa034a;
}

.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: #fa034a;
    border-color: #fa034a;
    /* 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: 3rem;
    bottom: 3rem;
    border: 5px solid #fa034a;
    /* border: 5px solid var(--primary); */
}

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


/*** Facts & Visiting Hours  (origin) ***/
.facts {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/BG/RISE-Origin-History-BG.webp) center center no-repeat;
    background-size: cover;
}


/* stratergies  */
.visiting-hours {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/BG/RISE-Our\ Strategies-BG.webp) center center no-repeat;
    background-size: cover;
}

.visiting-hours .list-group-item {
    
    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);
    width: 50%;
   
}
.visiting-hours .table tr:first-child td {
    background-color: #338afe;
}

.visiting-hours .table tr:last-child td {
    border: none;
} */
.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);
    /* width: 50%; */
}

.visiting-hours .table tr td:first-child {
  text-align: center;
  width: 30%;
  
   
}
.strategiesImg{
    height: 50px;
    width: 100px;

}

.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 .contactBg {
    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 #338afe;
    /* -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: 300px;
    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/RISE-Footer-Desktop.png.png) center center no-repeat;
    background-size: cover;
}
@media (max-width: 767px) {
    @media (max-width: 767px) {
        .footer {
            background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/BG/RISE-Footer-BG.webp) 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: #338afe;
    /* 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;
}

.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: #338afe;
    /* 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: #338afe;
}
.justifyTextCss{
    text-align: justify;
}
.VMText{
    color: #fa034a;
}
.section-padding-100-50{
padding-top: 100px;
padding-bottom: 50px;
}





/* 
---------------------------------------------
reservation
--------------------------------------------- 
*/

#reservation .section-heading {
    margin-bottom: 30px;
  }
  
  #reservation .section-heading h6 {
    color: #fff;
  }
  
  #reservation .section-heading h2 {
    color: #fff;
    font-weight: 700;
  }
  
  #reservation .section-heading h6:before {
    background-color: #fff;
  }
  
  #reservation p {
    color: #fff;
    margin-bottom: 25px;
  }
  

  /* donate  */
  #reservation {
    margin-top: 20px;
    padding: 50px 0px;
    /* padding: 120px 0px; */
    background: linear-gradient(rgba(0, 0, 0, .8), rgba(0, 0, 0, .8)), url(../img/BG/RISE-Donate-BG.webp);
    /* background-image: url(../img/BG/RISE-Donate-BG.webp); */
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  
  #reservation .phone,
  #reservation .message {
    background-color: #fff;
    border-radius: 5px;
    text-align: center;
    padding: 0px 0px 20px 0px;
  }
  
  #reservation .phone i,
  #reservation .message i {
    width: 70px;
    height: 70px;
    display: inline-block;
    text-align: center;
    line-height: 70px;
    color: #fff;
    background-color: #fa034a;
    border-radius: 50%;
    font-size: 24px;
    margin-top: -35px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  
  #reservation .phone h4,
  #reservation .message h4 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 15px;
    margin-bottom: 10px;
  }
  
  #reservation .phone span a,
  #reservation .message span a {
    font-size: 14px;
    color: #2a2a2a;
    transition: all .3s;
  }
  
  #reservation .phone span a:hover,
  #reservation .message span a:hover {
    color: #fa034a;
  }
  
  #contact {
    margin-left: 30px;
    padding: 25px 30px;
    /* padding: 45px 30px; */
    background-color: #fff;
    border-radius: 5px;
  }
  @media(max-width:550px){
    #contact {
        margin-left: 0px;
        padding: 5px 5px;
        /* padding: 45px 30px; */
        background-color: #fff;
        border-radius: 5px;
      }
      .marginDonate{
        margin-top: 20px;
      }
  }
  #contact h4 {
    text-align: center;
    font-weight: 700;
    font-size: 30px;
    color: #2a2a2a;
    margin-bottom: 30px;
  }
  
  .datepicker-days {
    padding: 30px;
    cursor: pointer;
  }
  
  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    color: #2a2a2a;
    font-size: 14px;
    border: 1px solid #ddd;
    background-color: #fff;
    width: 100%;
    height: 46px;
    border-radius: 5px;
    outline: none;
    padding-top: 3px;
    padding-left: 20px;
    padding-right: 20px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin-bottom: 15px;
  }
  
  .contact-form input:focus,
  .contact-form textarea:focus,
  .contact-form select:focus {
    border-color: #fa034a;
  }
  
  .contact-form button {
    margin-top: -10px;
    font-size: 13px;
    color: #fff;
    background-color: #fa034a;
    padding: 12px 25px;
    width: 100%;
    box-shadow: none;
    border: none;
    display: inline-block;
    border-radius: 3px;
    font-weight: 600;
    transition: all .3s;
  }
  
  .contact-form button:hover {
    opacity: .9;
  }
  
  .contact-form textarea {
    height: 150px;
    resize: none;
    padding: 20px;
  }
  
  .contact-form ::-webkit-input-placeholder { /* Edge */
    color: #2a2a2a;
  }
  
  .contact-form :-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #2a2a2a;
  }
  
  .contact-form ::placeholder {
    color: #2a2a2a;
  }
  /* .presidentImg{
    border-top:5px solid #fa034a;
    border-left: 5px solid #fa034a;
    border-right: 5px solid #fa034a;
  } */
  /*** Img Border ***/
.presidentImg {
    position: relative;
    height: 96%;
    min-height: 300px;
    border:5px solid #fa034a;
  
    
}

/* .presidentImg::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 3rem;
    bottom: 3rem;
    border: 5px solid #fa034a;
 
} */

.presidentImg img {

    position: absolute;
    width: 100%;
    height: 100%;
    /* top: 1rem;
    left: 1rem;
    width: calc(100% - 1rem);
    height: calc(100% - 1rem); */
    /* object-fit: cover; */
}
.fontBold{
    font-weight: bold;
 margin-top: -15px;
}
.donateButton{
    padding: 10px 20px ;
    background-color: #fa034a;
    text-align: center;
    border-radius: 5px;
    color: #fff;
    font-weight: 600;
}



/* corousel new  */
/* //css */
.carousel-inner {
  padding: 1em;
}
.card {
    height:100%;
  margin: 0 0.5em;
  box-shadow: 2px 6px 8px 0 rgba(22, 22, 26, 0.18);
  border: none;
}
.carousel-control-prev,
.carousel-control-next {
  background-color: #fa034a;
  width: 6vh;
  height: 6vh;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 768px) {
  .carousel-item {
    margin-right: 0;
    flex: 0 0 33.333333%;
    display: block;
  }
  .carousel-inner {
    display: flex;
  }
}
.card .img-wrapper {
    max-width: 100%;
    height: 13em;
    display: flex;
    justify-content: center;
    align-items: center;
}
.card img {
    padding: 0px 15px;
    max-height: 100%;
}
@media (max-width: 767px) {
    .card {
        height:750px;
     
    }
    .card img {
        padding: 0px 0px;
       
    }
  .card .img-wrapper {
    height: 17em;
  }
}



/*--------------------------------------------------------------
# succeess stories
--------------------------------------------------------------*/
/* .carousel-container {
    position: relative;
    width: 800px; 
    margin: 50px auto;
    overflow: hidden; 
    background-color: #e0e0e0; 
}

.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 1500px;
}

.panel {
    width: 800px;
    height: 350px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    border: 1px solid #ccc; 
    border-radius: 10px; 
    overflow: hidden; 
    background-color: #f8f8f8; 
}

.content {
    padding: 20px;
}

button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    background-color: #4285f4; 
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
} */


.carousel-container {
    position: relative;
    width: 100%; /* Full width of the viewport */
    max-width: 1300px; /* Maximum width of the carousel container */
    margin: 50px auto;
    overflow: hidden; /* Adding overflow: hidden to hide content that exceeds the width */
    /* background-color: #f07373;  */
    box-shadow: 0 5px 15px rgba(0, 0, 0, .15);
}

.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
    /* width: 4400px;  */ /* Width of the carousel - Total panels * panel width */
}

/* .panel {
    flex: 0 0 100%; 
    max-width: 1100px; 
    height: 400px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    border: 1px solid #ccc; 
    border-radius: 10px; 
    overflow: hidden; 
    background-color: #f8f8f8; 
} */
/* .panel {
    flex: 0 0 100%; 
    
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: center; 
    
    border: 1px solid #ccc; 
    border-radius: 10px; 
    overflow: hidden; 
    background-color: #f8f8f8;
    padding: 20px 20px;
} */

.panel {
    flex: 0 0 100%; /* Each panel occupies 100% width by default */
    max-width: 100%; /* Maximum width of each panel */
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column; /* Display contents vertically */
    align-items: center; /* Center content horizontally */
    /* justify-content: center;  */
    /* font-size: 24px; */
   padding: 0px 35px 20px 35px;
    /* border: 1px solid #ccc;  */
    border-radius: 10px; /* Adding rounded corners */
    overflow: hidden; /* Ensuring the image doesn't exceed rounded corners */
    /* background-color: #942f2f;  */
}





.panel h1 {
    margin-bottom: 10px; /* Adding space between heading and image */
}

.panel img {
    max-width: 100%; /* Make image responsive within panel */
}


.content {
    padding: 20px;
}

.button1 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    background-color: rgba(250, 3, 74, .5);
    color: #fff;
    border: none;
    padding: 8px;
    cursor: pointer;
}
.button1:hover {
   
    background-color: #fa034a
  
}

.prev1 {
    left: 10px;
}

.next1 {
    right: 10px;
}
@media only screen and (min-width: 1000px) and (max-width: 1399px) {

    .carousel-container {
        margin: 20px auto; 
        max-width: 950px;
    }

    .panel {
        height: auto; /* Auto height for panels on smaller screens */
        max-width: 950px;
        padding: 0px 25px 2px 25px;
    }


}
@media only screen and (min-width: 750px) and (max-width: 999px) {

    .carousel-container {
        margin: 20px auto; 
        max-width: 650px;
    }

    .panel {
        height: auto; /* Auto height for panels on smaller screens */
        max-width: 650px;
        padding: 0px 25px 2px 25px;
    }


}



/* Media Query for Mobile Devices */
@media only screen and (max-width: 750px) {
    .carousel-container {
        margin: 20px auto; 
        max-width: 350px;
    }

    .panel {
        height: auto; /* Auto height for panels on smaller screens */
        max-width: 350px;
        padding: 0px 20px 2px 20px;
    }
}





/* activities */
.cardActivities {
    height:100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .15);
   
}
.cardActivities .cardActivitiesText{
    padding: 10px 25px 20px 25px;
}


