/*
 * 14/08/2020
 * CUSTOM CSS STYLING
 */

 /* Hidden field to detect bots on contact form */
input[name="contactname"] {
    display:none;
    visibility: hidden;
    width: 0;
    height: 0;
}

.hero-image {
    background-repeat:no-repeat;
    background-size:cover;
    background-position:center center;
    height:45vh;
}

@media (max-width: 992px) {
    .hero-image {
        height:75vh;
    }
}

@media (max-width: 576px) {
    .hero-image {
        height:80vh;
    }
}

@media only screen 
    and (max-width: 1024px) 
    and (orientation: landscape) {
    .hero-image {
        height:65vh;
    }
}

@media only screen 
    and (max-width: 992px) 
    and (orientation: landscape) {
    .hero-image {
        height:80vh;
    }
}

path:hover {
  fill: #ffc107;
  fill-opacity: 1;
}

path.selected {
  fill: #00be5a;
  fill-opacity: 1;
}

.tp-bannertimer {
  background-image: none;
  z-index: 21;
  display: none;
  height: 4px;
}



/* CUSTOM FILTER PILLS */
.nav-pills > li .nav-link {
  -webkit-border-radius: 3;
  -moz-border-radius: 3;
  border-radius: 3;
  padding: 7px 10px;
  border: 1px solid #f4f4f4;
  color: #333333;
  background-color: #f4f4f4;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 400;
}

.nav-pills > li .nav-link.active,
.nav-pills > li .nav-link.active:hover,
.nav-pills > li .nav-link:hover{
  color: #ffffff;
  background-color: #bababa;
  border: 1px solid #bababa;
  -webkit-border-radius: 3;
  -moz-border-radius: 3;
  border-radius: 3px;
}

.nav-pills > li .nav-link.active,
.nav-pills > li .nav-link.active:focus,
.nav-pills > li .nav-link:focus {
  color: #ffffff;
  background-color: #00be5a;
  border: 1px solid #00be5a;
  -webkit-border-radius: 3;
  -moz-border-radius: 3;
  border-radius: 3px;
}
/* CUSTOM FILTER PILLS */



/* STATIC BANNER IMAGES */
.light-translucent-bg {
  color: #333333;
  border-bottom: 0px solid #dadada;
  border-top: 0px solid #dadada;
}

.light-translucent-bg:after {
  background-color: rgba(255, 255, 255, 0);
}
/* STATIC BANNER IMAGES */


/* COUNTDOWN BACKGROUND IMAGE */
.fullscreen-bg {
  background: url("../images/countdown-bg.jpg") 50% 0px no-repeat;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

/* CENTERED FORM */
div.centeredform
{
    display: block;
    text-align: center;
}

/* IFRAME RESPONSIVE FOR YOU TUBE VIDEO */
.iframediv {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}

/* Then style the iframe to fit in the container div with full height and width */
.responsive-iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border: 0;
  width: 100%;
  height: 100%;
}

/* Image (JQUERY) drag and drop image re-order */
.gallery ul{ margin:0; padding:0; list-style-type:none;}
.gallery ul li{ float:left; margin:0px 0px; background:none; width:auto; height:auto;}


.card {
  background-color: #fafafa;
  border-color: #f3f3f3;
  border-width: 1px;
  margin-top: 10px;
  padding: 10px;
  text-align: left;

}

/* -------------------------------------------------
/* NEW SPECIES IMAGE SLIDESHOW START* {box-sizing:border-box}

/* Slideshow container */
.sp-slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.sp-mySlides {
  display: none;
}

/* Next & previous buttons */
.spslide-prev, .spslide-next {
  cursor: pointer;
  position: absolute;
  top: 80%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: #ffffff;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background-color: rgba(255, 255, 255, 0.4);
}

/* Position the "next button" to the right */
.spslide-next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.spslide-prev:hover, .spslide-next:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.spslide-dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.spslide-active, .spslide-dot:hover {
  background-color: #717171;
}

/* Fading animation */
.sp-fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}
/* NEW SPECIES IMAGE SLIDESHOW END
/* -------------------------------------------------