@charset "utf-8";
/* CSS Document */ :root {
  --body-bg: #ffffff;
  --theme-color: #228B22;
  --body-color: #555555;
  --title-color: #333333;
  --secondary-color: #F5F5DC;
  --smoke-color: #EFF1F5;
  --light-color: #f8f9fa;
  --black-color: #000000;
  --white-color: #ffffff;
  --yellow-color: #fec624;
  --success-color: #28a745;
  --error-color: #dc3545;
  --border-color: #e7e5e5;
  --body-font: "Poppins", sans-serif;
  --icon-font: "Font Awesome 5 Pro";
  --main-container: 1270px;
  --container-gutters: 30px;
  --section-space: 120px;
  --section-space-mobile: 80px;
  --section-title-space: 60px;
  --ripple-ani-duration: 5s;
}
/*------------------- 1.4. Typography -------------------*/
html, body {
  scroll-behavior: auto !important;
}
body {
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 400;
  color: var(--body-color);
  background-color: var(--body-bg);
  line-height: 28px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
section {
  padding-top: 60px;
  padding-bottom: 60px;
}
/* ------------------------------
       FULL WIDTH DROPDOWN
    ------------------------------ */
.dropdown-menu.full-width {
  width: 100vw !important;
  left: 0 !important;
  right: 0 !important;
  border-radius: 0;
  padding: 30px 40px;
  margin-top: 15px;
}
/* ------------------------------
       HOVER DROPDOWN + ANIMATION
    ------------------------------ */
@media (min-width: 992px) { /* only for desktop */
  .navbar .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.25s ease-in-out;
  }
  .navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
  }
}
.nav-link {
  padding: .5rem 1.2rem !important;
}
.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 1);
}
.carousel-caption {
  top: 10rem;
  left: 10%;
  right: 45%;
  text-align: left;
}
.caption-first-para {
  font-size: 22px;
  font-weight: 300;
}
.carousel-caption h5 {
  font-size: 50px;
	font-weight: 700;
	margin-bottom: 15px;
}
.carousel-caption .caption-para {
	margin-bottom: 25px;
	
}
.carousel-caption p {
	font-weight: 300;
	font-size: 18px;
	
}
.carousel-caption .btn {
	padding: 12px 25px;
}

.carousel-control-next, .carousel-control-prev {
  width: 10%;
}