/* ================================
   Wasco Greenergy – Custom Styles
   ================================ */

/* Global Reset */
body {
  font-family: "Overpass", sans-serif;
  color: #052720;
  background-color: #FFFFFF;
  line-height: 1.6;
  font-size: 1rem;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: #014533;
  line-height: 1.2;
}

p { color: #525252; margin-bottom: 1rem; }
a{text-decoration:none}
/* Typography Sizes */
h1 { font-size: 2.8rem; }
h2 { font-size: 2.4rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.1rem; }
.fw-bold
{
	font-weight:bold !important;
}
.w-60
{
	width:60%;
}
.w-70
{
	width:70%;
}
.ptb-100
{
	padding:100px 0px;
}
.ptb-80
{
	padding:80px 0px;
}
.mt-8
{
	margin-top:80px;
}
#iframeid {
    display: block;
}
/* Base Button */
.btn-custom {
  display: inline-flex;
  align-items: center;
  background-color: #ffc600;       /* yellow */
  color: #004533;                  /* dark green text */
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  border: none;
}

.btn-custom span {
  display: inline-flex;
  align-items: center;
}

/* Icon Circle */
.btn-custom .btn-icon {
  background: #004533;             /* dark green */
  color: #fff;
  border-radius: 50%;
  margin-left: 12px;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

/* Hover Effect */
.btn-custom:hover {
  background-color: #e6b800;       /* darker yellow */
  transform: translateY(-2px);     /* lift effect */
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.btn-custom:hover .btn-icon {
  background: #006644;             /* brighter green */
  transform: rotate(90deg);        /* arrow rotates */
}

/* Outline Button Variation */
.btn-custom.btn-outline {
  background: transparent;
  border: 2px solid #004533;
  color: #004533;
}

.btn-custom.btn-outline .btn-icon {
  background: #004533;
  color: #fff;
}

.btn-custom.btn-outline:hover {
  background: #004533;
  color: #fff;
}

.btn-custom.btn-outline:hover .btn-icon {
  background: #ffc600;             /* yellow circle */
  color: #004533;
}

/* ================================
   Header & Navigation
   ================================ */
.pt-iframe
{
  margin-bottom: 0px;
  opacity: 1;
  transform: translateY(0);  
  overflow: hidden;
  transition: all 0.6s ease;
}
.header.scrolled .pt-iframe
{
   opacity: 0;
  transform: translateY(-10px);
  max-height: 0; /* collapse height */
  margin-bottom: 0;min-width: 0 !important;
}
.header {
  background: #fff;
  transition: all 0.4s ease;
  padding: 20px 40px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  z-index: 999;min-height:113px;
}
.header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.right-side {
  flex: 1 1 auto !important;
  min-width: 0 !important;
}

.pt-iframe {
  width: 100% !important;
  min-width: 0 !important;
  text-align:right;transition: all 0.6s  ease;
}

.pt-iframe iframe {
 
  min-width: 0 !important;
  white-space: nowrap !important;
  width: 410px;
}


.header.scrolled {
  padding: 14px 30px !important;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  min-height: auto;
}

/* Logo */
.logo img {
  height: 72px;
  transition: height 0.3s ease;
}
.header.scrolled .logo img { height: 50px; }

/* Navbar */
.navbar {
  background: transparent !important;
  flex-grow: 1;
}
.navbar-nav {
  align-items: center;
  gap: 3px;
  margin: 0 auto; /* center menu */
}

.navbar-nav .nav-link {
  position: relative;
  font-weight: 600;
  color: #014533;
  padding: 8px 14px;
  transition: color 0.3s ease;
  text-decoration: none;    font-size: 15px;
}

.navbar-nav .nav-link:hover {
  color: #3AA84A;
}

/* ===== Dropdown caret with animation ===== */
.navbar-nav .nav-link.dropdown-toggle {
  padding-right: 18px; /* space for caret */
  position: relative;
}

.navbar-nav .nav-link.dropdown-toggle::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  width: 10px;
  height: 10px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%23014533' d='M7 10l5 5 5-5z'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
}

.navbar .dropdown.show > .nav-link.dropdown-toggle::after,
.navbar .nav-link.dropdown-toggle[aria-expanded="true"]::after {
  transform: translateY(-50%) rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
  border-radius: 12px;
  border: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  padding: 10px 0;
  animation: dropdownFade 0.25s ease;
}

.dropdown-menu .dropdown-item {
  font-size: 0.95rem;
  padding: 10px 18px;
  color: #014533;
  transition: all 0.25s ease;
}

.dropdown-menu .dropdown-item:hover {
  background: #f8f9fa;
  color: #3AA84A;
  padding-left: 22px;
}

/* CTA button */
.btn-cta {
  background: #FFC600;
  color: #014533;
  font-weight: 700;
  border-radius: 50px;
  padding: 10px 24px;
  transition: all 0.3s ease;
}
.btn-cta:hover {
  background: #3AA84A;
  color: #fff;
}

/* Search button */
.search-btn {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: #014533;
  transition: color 0.3s ease, transform 0.3s ease;
}
.search-btn:hover {
  color: #3AA84A;
  transform: scale(1.1);
}

/* Header actions alignment */
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Dropdown animation */
@keyframes dropdownFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hover dropdowns (desktop only) */
@media (min-width: 992px) {
  .navbar .dropdown:hover > .dropdown-menu {
    display: block;
  }
}

/* ================================
   Buttons
   ================================ */
.btn-warning {
  background-color: #FFC600;
  border: none;
  color: #004533;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 50px;font-size: 15px;
}
.btn-warning:hover {
  background-color: #FFC200;
  color: #052720;
}
.btn-outline-success {
  border: 2px solid #3AA84A;
  color: #3AA84A;
  font-weight: 600;
  border-radius: 50px;
  padding: 10px 24px;
}
.btn-outline-success:hover {
  background-color: #3AA84A;
  color: #FFFFFF;
}

/* ================================
   Cards
   ================================ */
.card {
  border: none;
  border-radius: 16px;
  background-color: #FFFFFF;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 6px 16px rgba(0,0,0,0.12);
}
.card h5 { color: #014533; }
.card p { color: #707070; }

/* ================================
   Sections
   ================================ */

section.bg-light { background-color: #F2EFE9 !important; }
section.bg-success { background-color: #3AA84A !important; }

/* Insights */
.card .btn-sm {
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
}

/* Utility */
.text-green { color: #3AA84A !important; }
.bg-green { background-color: #3AA84A !important; }
.rounded-4 { border-radius: 1rem !important; }

/* ================================
   Hero Section
   ================================ */
.hero-section {
  
  background-color: #FFFFFF;
  margin-top:100px;
}
.hero-content {
  max-width: 850px;
  margin-bottom: 40px;
}
.hero-content h1 {
  margin-bottom: 0.4rem;
    font-size: 3.4rem;
    font-weight: bold;
    color: #014533;
    line-height: 1.0;
}
.hero-content p {
  font-size: 1.15rem;
  color: #004533;
  margin-bottom: 2.0rem;
}

.btn-group-hero .btn {
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 50px;
  padding: 12px 28px;
  transition: all 0.3s ease;
}
.btn-hero-yellow {
  background-color: #FFC600;
  color: #014533;
  border: none;
}
.btn-hero-yellow:hover { background-color: #FFC200; color: #014533; }
.btn-hero-yellow i {
  margin-left: 8px;
  transition: transform 0.2s;
}
.btn-hero-yellow:hover i { transform: translateX(3px); }

.btn-hero-outline {
  background-color: transparent;
  color: #014533;
  border: 2px solid #014533;
}
.btn-hero-outline:hover {
  background-color: #3AA84A;
  color: #FFFFFF;
  border-color: #3AA84A;
}
.btn-hero-outline i {
  margin-left: 8px;
  color: #3AA84A;
}
.btn-hero-outline:hover i { color: #FFFFFF; }

.hero-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}
.hero-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}
/* Hero Section */
.hero-section {
  padding: 100px 0 0; /* reduce bottom padding to 0 */
  background-color: #FFFFFF;
}

.hero-content {
  max-width: 1100px;
  margin-bottom: 40px;
}
.hero-section {
  margin-bottom: 0;
}
.hero-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  margin-bottom: 0; /* remove extra margin */
  line-height: 0;   /* remove inline whitespace below image */
}

.hero-image-wrapper img {
  width: 100%;
  height: auto;
  display: block; /* removes inline gaps */
  margin: 0;      /* reset default margins */
}

/* Stats */
.stats-section-container {
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 40px 60px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  margin-top: -60px;
  position: relative;
  z-index: 2;
}
.stats-row .col-md-3 {
  border-left: 1px solid #e0e0e0;
  padding: 0 20px;
}
.stats-row .col-md-3:first-child { border-left: none; }
.stats-row h2 {
  font-size: 2.2rem;
  color: #3AA84A;
  margin-bottom: 5px;
}
.stats-row p {
  font-size: 0.95rem;
  font-weight: 500;
  color: #525252;
}

.who-we-are-section .lead
{
	color: #004533;
    font-size: 24px;
    line-height: 36px;
}
.who-we-are-stats {
  display: flex;
  flex-wrap: wrap;   
  justify-content: space-between;
}

.who-we-are-stats .stat {
  flex: 1 1 calc(25% - 20px);  /* 4 per row on desktop */  
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position:relative;
  min-height: 150px;
}

.who-we-are-stats .stat:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: #004533; /* dark green line as in design */
  opacity: 0.5; /* make it subtle */
}

.who-we-are-stats h2 {
  font-size: 28px;
  font-weight: 600;
  color: #004533;
  margin-bottom: 14px;
}

.who-we-are-stats p {
  font-size: 15px;
  color: #7C7C7C;
  margin: 0;line-height:20px;
  margin-top: auto;
}



/* Sustainability Section */
.sustainability-section p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #333;
}

/* Wrapper for centering and controlling width */
.stats-wrapper {
  max-width: 600px; /* adjust width as per XD design */
  margin-top: 30px;
}

/* Outer border box */
.stats-row {
  border: 1px solid #014533;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

/* Each stat */
.stat-item {
  padding: 14px 10px;
}

.stat-item h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 2px;
  color: #021A0D;
}

.stat-item p {
  font-size: 12px;
  margin: 0;
  color: #004533;line-height: 16px;
}

/* Divider only between items */
.stat-item:not(:last-child) {
 
}

/* Solutions Section */
.solutions-section {
  background: #fff;
}

.solution-card {
  background-color: #004533; /* dark green */
  color: #fff;
  border-radius: 12px;
  padding: 30px 25px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}
.solution-card h3 { 
    font-weight: 400;
    margin-bottom: 20px;
    min-height: 60px;
    font-size: 24px;
    margin-top: 6px;
}
.solution-card img
{
	max-width:115px;height: 112px;
}
.solution-card p {
  font-size: 14px;
  line-height: 1.5;
  color: #e6e6e6;
  
}

.view-more {
  font-size: 14px;
  font-weight: 600;
  color: #3CAC49; /* light green */
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  transition: color 0.3s ease;
}

.view-more:hover {
  color: #fff;
}

.view-more .icon-circle {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
  background-color: #3CAC49; /* light green */
  border-radius: 50%;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.view-more .icon-circle i {
  font-size: 10px;
  color: #004533; /* dark green arrow inside */
}

.view-more:hover .icon-circle {
  background-color: #fff;
  transform: translateX(3px); /* subtle move */
}

.view-more:hover .icon-circle i {
  color: #004533;
}




/* Join Us Section */
.join-us-section {
  background-color: #004533;
}

.join-us-section p {
  font-size: 1rem;
  color: #E0E0E0;
  max-width: 500px;
}
.join-us-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.join-us-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 14px;
  line-height: 1.6;
  position: relative;
  padding-left: 28px;
}

/* Green circular icon bullet */
.join-us-list li::before {
  content: '';
  width: 10px;
  height: 10px;
  background: #8CC63F;     /* Wasco Green Accent */
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 8px;
}

.btn-join-us {
  display: inline-flex;
  align-items: center;
  background-color: #ffc600;   /* yellow background */
  color: #004533;              /* dark green text */
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 50px;         /* pill shape */
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-join-us span {
  display: inline-flex;
  align-items: center;
}

.btn-join-us .btn-icon {
  background: #004533;         /* dark green circle */
  color: #fff;                 /* white arrow */
  border-radius: 50%;
  margin-left: 12px;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-join-us:hover {
  background-color: #e6b800;   /* darker yellow on hover */
  text-decoration: none;
}


.join-us-section img {
  max-width: 100%;
  border-radius: 12px;
}

/* Section Background */
.insights-section {
  background: #fff;
}
.insights-section h3, .insights-section p
{
	color:#fff;
}
.insights-section h3
{
	font-weight:400;
}
/* Card */
.insight-card {
  border-radius: 16px;
  overflow: hidden;
  background: #004533;
  color: #fff;  
}

.insight-card img.card-img-top {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.insight-card .card-body {
  padding: 24px 34px; 
}
/* Badge */
.badge-insight {
  display: inline-block;     
  width: auto;              
  font-size: 0.8rem;
  font-weight: 500;
  color: #ffc600;
  border: 1px solid #ffc600;
  padding: 4px 10px;
  border-radius: 6px;
  text-transform: capitalize;
  background: transparent;          
}
/* Read More Button */
.btn-insight {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 0.95rem;
  background: #ffc600;
  color: #004533;
  border-radius: 50px;
  padding: 10px 22px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-insight:hover {
  background: #ffb400;
  color: #004533;
}

.btn-insight .icon-circle {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  margin-left: 10px;
  background: #004533;
  border-radius: 50%;
  color: #ffc600;
  transition: all 0.3s ease;
}

.btn-insight:hover .icon-circle {
  background: #fff;
  color: #004533;
}
.insight-card .card-body p {  
  margin:20px 0px 58px 0px;
  line-height: 22px;
  font-weight: 300;color: #E0E0E0;
}


/* CTA Decarbonise Section */
.cta-decarbonise {
  background-color: #004533;
  
}

.cta-decarbonise h1 {  
  font-weight: bold; 
  font-size: 54px;   
}
.btn-outline-yellow {
  border: 1px solid #FFC600;
  color: #FFC600;
  background: transparent;
  border-radius: 50px;
  font-weight: 600;
  padding: 10px 24px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline-yellow:hover {
  background-color: #FFC600;
  color: #004533;
}


/* Footer Base */
.footer {
  background-color: #3AA84A;
  color: #fff;
  padding-top: 60px;
  padding-bottom: 40px;
}

/* Footer Logo */
.footer-logo img {
 
  max-width: 100%;
}

/* Section Title */
.footer h6 {
  font-weight: 600;
  margin-bottom: 20px;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 8px;
}
.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: .3s;
}
.footer-links a:hover {
  opacity: 0.7;
}

/* Divider */
.footer hr {
  border-color: #EBF5E6;
  margin: 35px 0;
}

/* Copy Section */
.footer-copy p {
  color: #fff;
  margin-bottom: 5px;
}

/* Back to Top */
.back-to-top {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  border: 1px solid #004533;
  border-radius: 50%;
  color: #004533;
  transition: .3s;
}
.back-to-top:hover {
  background: #004533;
  color: #fff;
}

/* Responsive Fix */
@media (max-width: 768px) {
  .footer-logo {
    text-align: center;
    margin-bottom: 20px;
  }
  .footer-links {
    text-align: center;
  }
}


/* -------- Banner -------- */

.inner-banner {
 /* background: url(../img/global-office-banner.jpg) center/cover no-repeat;*/
  
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  
}

/*.inner-banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6); 
}
*/
.inner-banner .container {
  position: relative;
  z-index: 2;
}
.inner-banner .banner-text
{
	position:absolute;top:50px;left:50px;
	 max-width: 68%;color:#fff;
}
.inner-banner .banner-text h2
{
	color: #fff;
    font-size: 38px;
    line-height: 38px;
    text-align: left;  margin-bottom:15px; 
}
.inner-banner .banner-text p
{
	color:#fff;text-align:left;font-size:18px;
}
.inner-banner img {
  width: 100%;
  height: auto;
  display: block;
}

.banner-title {
  font-size: 48px;
  color: #fff;
  font-weight: 700;
}

.banner-subtitle {
  font-size: 18px;
  color: #fff;
  margin-top: 10px;margin-bottom:0px;
}


/* -------- Office Locations Section -------- */
.office-location-section {
  background: #F7F7F7;
}

.office-box {
  margin-bottom: 40px;
}

.office-title {
  font-weight: 700;
  color: #004533;
  margin-bottom: 20px;
}

.office-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 40px;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  font-size: 16px;
  color: #292929;
}

.detail-item i {
  color: #3CAC49;
  font-size: 22px;
  margin-right: 15px;
  margin-top: 4px;
}

.office-location-section hr {
  margin: 40px 0;
  border-color: #a9a9a9;
}

/* Mobile */
@media (max-width: 768px) {
  .office-details {
    grid-template-columns: 1fr;
  }

  .banner-title {
    font-size: 32px;
  }
  .footer
  {
	  text-align:center;
  }
}


/* ================================
   Responsive
   ================================ */
@media (max-width: 1199px) 
{
   .header
   {
     text-align:center;
   }
   .header .logo 
   {
	   margin-bottom:12px;
   }
  
}
@media (max-width: 992px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.9rem; }
  h3 { font-size: 1.5rem; }
  p, li { font-size: 0.95rem; }
  .hero-content h1 { font-size: 2.5rem; }
  .header { padding: 15px 20px; }
  .navbar-nav { text-align: center; }
  .header-actions { margin-top: 10px; }
  .who-we-are-stats
  {
	  gap:20px;
  }
  .who-we-are-stats .stat {
    flex: 1 1 calc(50% - 20px);
	background: #f5f5f5;
    position: static;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.6rem; }
  h3 { font-size: 1.3rem; }
  p, li { font-size: 0.9rem; }
}

@media (max-width: 576px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.2rem; }
  p, li { font-size: 0.85rem; }
   .who-we-are-stats .stat {
    flex: 1 1 100%;
  }
}

/* Hide mobile hamburger icon */
.navbar-toggler {
  display: none !important;
}

/* Force navbar to always stay open */
.navbar-collapse {
  display: flex !important;
  flex-basis: auto !important;
  justify-content: flex-end !important;
}

/* Keep menu items in a single horizontal row on mobile */
.navbar-nav {
  flex-direction: row !important;
  gap: 20px;
}

/* Fix dropdowns on mobile – open on click as usual */


/* Prevent wrapping issues */
@media (max-width: 767px) {
  #main-header .container {
    flex-wrap: nowrap !important;
	display:block !important;
  }
  .header .logo
  {
	  display:block !important;
  }
  .pt-iframe
  {
	  text-align:center !important;
  }
  .right-side
  {
	  text-align: center;
        align-items: center !important;
  }
  .hero-section
  {
	     padding: 150px 0 0; 
  }
  .solution-card img
  {
	  max-width:75px;height:auto;
  }
  .who-we-are-stats h2
  {
	  font-size:24px;
  }
  .pt-iframe
  {
	  display:none;
  }
  .inner-banner .banner-text h2
  {
	  font-size:24px;line-height:24px;
  }
  .inner-banner .banner-text {   
    top: 30px;
    left: 30px;
    right: 30px;max-width: 100%;
 }
}

/* Make dropdown menu appear over content */
.dropdown-menu {
  position: absolute;
  display: none;
  background: #fff;
  border-radius: 4px;
  padding: 10px 0;
  min-width: 180px;
  z-index: 9999;
}

/* Show when active class added */
.dropdown.show .dropdown-menu {
  display: block !important;
}
    .navbar .dropdown:hover > .dropdown-menu {
        display: block;
    }
	    .navbar-expand-lg .navbar-nav .dropdown-menu {
        position: absolute;
    }
