.bg-black {
  background-color: black;
}

.bg-lightgrey {
  background-color: #eeeeee;
}

.main-banner {
  background-repeat: no-repeat;
  height: 500px;
  width: 100%;
  background-size: cover;
  background-position: right 0px bottom 70%;
}

/* Turn off parallax scrolling for all tablets and phones. Increase/decrease the pixels if needed */
@media only screen and (max-device-width: 1366px) {
  .parallax {
    background-attachment: scroll;
  }
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}

span {
  background: rgb(95, 175, 87) !important;
}

.slideShowItem {
  width: 100%;
}

.parallax {
  /* The image used */
  background-image: url("/img/Banner Photo.jpg");

  /* Set a specific height */
  height: 500px;

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.main-banner-container {
  padding: 0 !important;
}

#headerDiv {
  padding: 1%;
}

.banner-contact {
  font-size: 20px;
}

.jumbotron {
  padding: 0 !important;
}

.jumbotron-header {
  width: 50%;
  height: 100%;
  padding: 3%;
  background-color: rgba(0, 0, 0, 0.5);
}

.logo {
  margin-left: 1%;
  padding: 1% 0%;
  width: 25%;
}


.rightFakeCara {
  position: absolute;
  opacity: 50%;
  top: 40%;
  z-index: -1;
  left: 60%;
  bottom: 30%;
  width: 35%;
}

.leftFakeCara {
  position: absolute;
  opacity: 50%;
  top: 40%;
  z-index: -1;
  left: 5%;
  bottom: 30%;
  width: 35%;
}

footer {
  color: rgb(95, 175, 87);
}

.no-hoverHand {
  cursor: default !important;
}

/*Tesimonal Css---------------------------------------------------------*/
.testimonial {
  text-align: center;
}

.description {
  color: #656565;
  font-size: 24px;
  line-height: 35px;
  margin-bottom: 30px;
  padding: 0px 11%;
  position: relative;
}

.description:before {
  content: "\f10d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  position: absolute;
  top: 8px;
  left: 2%;
  color: rgb(95, 175, 87);
  font-size: 36px;
}

.description:after {
  content: "\f10e";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  position: absolute;
  top: 8px;
  right: 2%;
  color: rgb(95, 175, 87);
  font-size: 36px;
}

.testimonial-title {
  font-size: 18px;
  color: #333;
  font-weight: bolder;
  text-transform: capitalize;
}

.testimonial-title>small {
  display: block;
  color: #656565;
  font-size: 15px;
  text-transform: uppercase;
  margin-top: 5px;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span {
  background: #3498db;
}

.owl-theme .owl-controls .owl-page span {
  opacity: 1;
}

@media screen and (max-width: 480px) {
  .description {
    font-size: 19px;
    line-height: 29px;
  }

  .description:before,
  .description:after {
    font-size: 25px;
  }

  .center-small {
    text-align: center;
  }
}

.header-green {
  color: rgb(95, 175, 87);
}

.body-green {
  color: rgb(168, 204, 116);
}

/*Tesimonal End Css---------------------------------------------------------*/

@media (max-width: 768px) {
  #headerDiv>img {
    min-width: 70% !important;
  }

  .logo {
    width: 100%;
  }

  .main-banner {
    background-repeat: no-repeat;
    height: 200px;
    width: 100%;
    background-size: cover;
    background-position: right 0px bottom 90%;
    margin: 0 !important;
  }

  .main-banner-container {
    margin: 0 !important;
  }

  .faqImg {
    width: 50%;
    display: block;
    margin: auto !important;
    margin-bottom: 1em !important;
  }

  h2 {
    font-size: 1.5rem !important;
  }

  .contactDetails {
    margin-top: 2em;
  }

  .description {
    font-size: 15px;
  }
}

@media (max-width: 1500px) {

  .rightFakeCara,
  .leftFakeCara {
    display: none;
  }
}

.carousel-item {
  border: 1px solid #dee2e6;
  padding: 0.25rem;
}

/*Slide Anim*/
.slideanim {
  visibility: hidden;
}

.slide {
  /* The name of the animation */
  animation-name: slide;
  -webkit-animation-name: slide;
  /* The duration of the animation */
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  /* Make the element visible */
  visibility: visible;
}

/* Go from 0% to 100% opacity (see-through) and specify the percentage from when to slide in the element along the Y-axis */
@keyframes slide {
  0% {
    opacity: 0;
    transform: translateX(30%);
  }

  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}

@-webkit-keyframes slide {
  0% {
    opacity: 0;
    -webkit-transform: translateX(70%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
  }
}

.mb-5p {
  margin-bottom: 5% !important;
}