
/********** Template CSS **********/
:root {
    --primary:#BEA061;
    --light: #F3F4F5;
    --dark: #282F34;
    
}

/* Fix Bootstrap's .text-primary color override */
.text-primary {
    color: var(--primary) !important;
}

/* New styles for login and register backgrounds and transparent forms */
.login-bg {
    background: url("../img/Zebra.jpg") center center no-repeat;
    background-size: cover;
    min-height: 100vh;
    opacity: 0.8;
}

.register-bg {
    background: url("../img/Zebra.jpg") center center no-repeat;
    background-size: cover;
    min-height: 130vh;
    opacity: 0.8;
}

.transparent-form-bg {
    background-color: rgba(255, 255, 255, 0.7) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}

.transparent-form-bg label,
.transparent-form-bg input,
.transparent-form-bg button,
.transparent-form-bg .register-link {
    text-shadow: none;
    font-weight: 700;
}


.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;
    background-color: #BEA061;
    border: none;
}

.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: 90px;
}

.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: var(--primary);
}

@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 {
    width: 100%;
    min-height: 100vh; /* Full viewport height */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    background: linear-gradient(rgba(0, 0, 0, .3), rgba(0, 0, 0, .3)), url(../img/crossroad-car-safari-scene\ \(1\).jpg) 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 var(--primary);
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

.service-icon {
  filter: brightness(0) saturate(100%) invert(75%) sepia(32%) saturate(539%) hue-rotate(357deg) brightness(95%) contrast(90%);
}


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














/*** 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 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 ***/
.facts {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/Zebra.jpg) center center no-repeat;
    background-size: cover;
}

.visiting-hours {
    background: linear-gradient(rgba(0, 0, 0, .8), rgba(0, 0, 0, .8)), url(../img/lioness-savannah.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: 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, .8), rgba(0, 0, 0, .8)), url(../img/lioness-savannah.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;
}

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

/*Added*/
.bg-primary {
  background-color: #BEA061 !important;
}

.bg-primary .text-white, 
.bg-primary i.fa {
  color: white !important;
}


.header-bg h1 {
    width: 50%;
}


.dropdown-menu .dropdown-item.active,
.dropdown-menu .dropdown-item:active,
.dropdown-menu .dropdown-item:hover {
  background-color: #BEA061 !important;
  color: #fff !important;
}

/*  faq  Added*/

.remember-area {
  padding: 100px 0;
  background: #f0ebe5;
}
.remember-area .section-title h2 {
  font-size: 40px;
  font-family: 'Architects Daughter', cursive;
  color: #BEA061;
  margin-bottom: 30px;
  position: relative;
}
.remember-area .section-title h2 {
  background: url('images/brush-stroke.png') no-repeat center bottom;
  background-size: contain;
  padding-bottom: 20px;
}

.remember-area .remember-content {
  margin-top: 30px;
}
.remember-area .remember-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.remember-area .remember-content ul li {
  display: inline-block;
  margin-bottom: 10px;
  border: 2px solid #dbd1c5;
  background: #e3dbd1;
  padding: 10px;
}
.remember-area .remember-content ul li span {
  background: rgba(0, 0, 0, 0) url("images/btm.png") no-repeat scroll 0 0;
  color: #ffffff;
  display: inline-block;
  float: left;
  height: 50px;
  line-height: 50px;
  margin: auto 20px auto auto;
  text-align: center;
  width: 50px;
  font-size: 24px;
  font-family: 'Architects Daughter', cursive;
}
.remember-area .remember-content ul li p {
  padding-top: 10px;
  margin: 0;
  display: table;
}
.remember-area .image {
  padding: 50px 0 0;
  display: block;
}
.remember-area .image .image-content {
  position: absolute;
  right: 12%;
  top: 50%;
  display: inline-block;
  text-align: left;
}
.remember-area .image .image-content h1 {
  font-size: 45px;
  margin: 0;
  color: #fb8b40;
  font-family: 'Architects Daughter', cursive;
}
.remember-area .image .image-content h2 {
  color: #a09833;
  font-family: 'Architects Daughter', cursive;
}




/* ------------------------------------
FAQ Start Here 
---------------------------------------*/
.faq-area .section-title h2 {
  font-size: 40px;
  font-family: 'Architects Daughter', cursive;
  color: #fb8b40;
  margin-bottom: 30px;
  position: relative;
}
.faq-area .section-title h2:before {
  position: absolute;
  left: 0;
  width: 250px;
  content: "";
  height: 2px;
  background: #e9e1d6;
  top: 40px;
}
.faq-area .section-title h2:after {
  position: absolute;
  right: 0;
  width: 250px;
  content: "";
  height: 2px;
  background: #e9e1d6;
  top: 40px;
}
.faq-area .faq-area h2 {
  font-weight: 800;
  font-size: 30px;
  color: #222222;
  position: relative;
  margin-bottom: 60px;
}
.faq-area .faq-area h2:after {
  position: absolute;
  bottom: -20px;
  left: 0;
  content: "";
  background: #dcd794;
  width: 60px;
  height: 3px;
}
.faq-area .faq-area .panel-group .panel-default {
  margin-bottom: 5px;
}
.faq-area .faq-area .panel-group .panel-default .panel-heading {
  padding: 0;
}
.faq-area .faq-area .panel-group .panel-default .panel-heading h4.panel-title a {
  display: block;
  padding: 16px 10px;
  text-decoration: none;
  font-size: 15px;
  font-family: 'Lato', sans-serif;
  background: #e3dbd1;
  color: #ffffff;
}
.faq-area .faq-area .panel-group .panel-default .panel-heading h4.panel-title a:after {
  content: '\f175';
  text-align: center;
  transform: none !important;
  background: url(images/btn-hover.png) no-repeat;
  background-size: cover;
  color: #dcd794;
  padding: 5px 0;
  font-size: 14px;
  width: 30px;
  height: 30px;
  margin-top: -14px;
}
.faq-area .faq-area .panel-group .panel-default .panel-heading h4.panel-title a.collapsed {
  display: block;
  padding: 16px 10px;
  background: #e3dbd1;
  text-decoration: none;
  font-size: 15px;
  font-family: 'Lato', sans-serif;
  color: #222222;
  transition: all 0.3s;
}
.faq-area .faq-area .panel-group .panel-default .panel-heading h4.panel-title a.collapsed:after {
  content: '\f178';
  text-align: center;
  transform: none !important;
  background: url(images/btnarrow.png) no-repeat;
  background-size: cover;
  color: #dcd794;
  padding: 5px 0;
  font-size: 14px;
  width: 30px;
  height: 30px;
}
.faq-area .faq-area .panel-group .panel-default .panel-heading h4.panel-title a.collapsed:hover {
  background: #dcd794;
  color: #ffffff;
}
.faq-area .faq-area .panel-heading [data-toggle="collapse"]:after {
  font-family: fontawesome;
  content: "\f0d8";
  /* "play" icon */
  float: right;
  color: #ffffff;
  font-size: 18px;
  line-height: 22px;
  /* rotate "play" icon from > (right arrow) to down arrow */
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.faq-area .faq-area .panel-heading [data-toggle="collapse"].collapsed:after {
  /* rotate "play" icon from > (right arrow) to ^ (up arrow) */
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  color: #222222;
}
.faq-area .faq-image-area {
  overflow: hidden;
}
.faq-area .faq-image-area a {
  display: block;
}
.faq-area .faq-image-area a img {
  width: 100%;
  transition: all 0.3s;
}
.faq-area .faq-image-area a img:hover {
  background: rgba(1, 177, 215, 0.5);
}


/*HEADER RESPONSIVENESS*/

@media (max-width: 767px) {
  .navbar .navbar-nav .nav-link {
    padding: 8px 10px;
    font-size: 14px;
    margin-right: 0;
  }

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

  .header-bg h1 {
    width: 90%;
    font-size: 1.8rem;
  }

  /* Reduce header height on mobile */
  .header-bg {
    min-height: 50vh;
  }

  /* Adjust register page background and form on mobile */
  .register-bg {
    min-height: 80vh;
    background-size: contain;
    position: relative;
  }

  .register-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 0;
  }

  .register-container {
    margin-top: 10vh;
    position: relative;
    z-index: 1;
  }

  /* Center register form vertically and horizontally on mobile */
  body.register-bg {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    height: 100vh;
    padding: 20px 0;
  }

  .register-container {
    margin-top: 0;
    width: 100%;
    max-width: 420px;
  }
}
