/* You can add global styles to this file, and also import other style files */

/**
* Importing necessary  Styles.
**/

@import url('https://fonts.googleapis.com/css?family=Lato:100,300,400,900|Poppins:300,400,500,600');
/*----font awesome -------*/

@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css');
:root {
  --main-color: #85bf30;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
}

.text-main {
  color: var(--main-color);
}

.text-main:hover {
  color: var(--main-color);
}

.bg-main {
  background: var(--main-color);
}

button:focus {
  outline: 5px auto var(--main-color);
}

.btn-main {
  color: #fff;
  background-color: var(--main-color);
  border-color: var(--main-color);
  font-size: 0.9em;
  padding: 0.65rem 1.8rem;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.btn-main:hover {
  color: #fff;
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.05);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.05);
}

.btn:active, .btn:focus {
  outline: none;
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
}

.font-weight-bold {
  letter-spacing: 0.02em;
}

.shadow-bottom {
  position: relative;
}

.shadow-bottom.full::after {
  width: 100%;
}

.shadow-bottom.center::after {
  left: 25%;
}

.shadow-bottom::after {
  content: "";
  width: 60%;
  height: 20px;
  background: #e8f2d7;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.line {
  display: block;
  position: relative;
  width: 140px;
  height: 6px;
  background: #cde5ac;
  border-radius: 10px;
}

.line.center::after {
  left: 50%;
}

.line::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background: #83be2f;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 10%;
}

.w-fit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

#bngMobileCarousel .carousel-caption {
  top: 40%;
  right: 0;
  left: 0;
  bottom: 0;
  text-align: start;
  -ms-transform: translateY(-40%);
  transform: translateY(-40%);
}

/* Animation CSS */

@keyframes slideInDown {
  0% {
    transform: translate3d(0, -20%, 0);
    visibility: visible;
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

/* Media Query */

@media (min-width: 1200px) {
  .container {
    max-width: 1020px;
  }
}

/* main navbar */

.main-navbar {
  left: 0;
  right: 0;
  z-index: 1000;
  background: #ffffff;
  padding: 1rem;
}

.nav-link {
  font-size: 18px;
}

.m-navbar {
  min-height: 68px;
}

.logo {
  width: 120px;
}

.logo-sm {
  width: 92px;
}

/* media query */

@media (min-width: 992px) {
  .main-navbar {
    position: absolute;
    background: transparent;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

/* Footer section */

footer {
  background: url("../assets/img/footer_bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/* Global Map */

#globalMaps {
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.map-marker {
  /* adjusting for the marker dimensions
so that it is centered on coordinates */
  margin-left: -8px;
  margin-top: -8px;
  box-sizing: border-box;
}

.map-marker.map-clickable {
  cursor: pointer;
}

.pulse {
  width: 10px;
  height: 10px;
  border: 5px solid #f7f14c;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  background-color: #716f42;
  z-index: 10;
  position: absolute;
  box-sizing: border-box;
}

.map-marker .dot {
  border: 10px solid #fff601;
  background: transparent;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  height: 50px;
  width: 50px;
  -webkit-animation: pulseDot 3s ease-out;
  -moz-animation: pulseDot 3s ease-out;
  animation: pulseDot 3s ease-out;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  position: absolute;
  top: -20px;
  left: -20px;
  z-index: 1;
  opacity: 0;
  box-sizing: border-box;
}

#page-overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  height: 100vh;
  left: 0;
  width: 100vw;
  z-index: 2147483647;
  overflow: hidden;
  background-color: #111111;
}

.text-loader::after {
  animation: dots 1s steps(5, end) infinite;
  content: ' .';
}

@keyframes dots {
  0%, 20% {
    color: rgba(0, 0, 0, 0);
    text-shadow: .25em 0 0 rgba(0, 0, 0, 0), .5em 0 0 rgba(0, 0, 0, 0);
  }
  40% {
    color: white;
    text-shadow: .25em 0 0 rgba(0, 0, 0, 0), .5em 0 0 rgba(0, 0, 0, 0);
  }
  60% {
    text-shadow: .25em 0 0 white, .5em 0 0 rgba(0, 0, 0, 0);
  }
  80%, 100% {
    text-shadow: .25em 0 0 white, .5em 0 0 white;
  }
}

@-moz-keyframes pulseDot {
  0% {
    -moz-transform: scale(0);
    opacity: 0.0;
  }
  25% {
    -moz-transform: scale(0);
    opacity: 0.1;
  }
  50% {
    -moz-transform: scale(0.1);
    opacity: 0.3;
  }
  75% {
    -moz-transform: scale(0.5);
    opacity: 0.5;
  }
  100% {
    -moz-transform: scale(1);
    opacity: 0.0;
  }
}

@-webkit-keyframes pulseDot {
  0% {
    -webkit-transform: scale(0);
    opacity: 0.0;
  }
  25% {
    -webkit-transform: scale(0);
    opacity: 0.1;
  }
  50% {
    -webkit-transform: scale(0.1);
    opacity: 0.3;
  }
  75% {
    -webkit-transform: scale(0.5);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 0.0;
  }
}

::selection {
  color: #fff;
  background: var(--main-color);
}

ol.breadcrumb {
  display: block;
}

ol.breadcrumb li {
  display: inline-block;
  font-weight: 500;
  font-size: 18px;
  text-transform: uppercase;
  color: #d6d6d6;
  letter-spacing: 1.1px;
}

.breadcrumb-item+.breadcrumb-item::before {
    display: inline-block;
    padding-right: .5rem;
    color: inherit; 
    content: "/";
}