/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  /* background: transparent; */
  color: white;
  /* transition: all 0.5s; */
  z-index: 997;
  padding: 20px 0;
}

/* ------- nav bar ----------  */
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px 10px 15px;
  text-transform: uppercase;
  font-size: 12px;
  color: #ffffff;

}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: rgb(123, 171, 243);
 font-family: "Poppins", sans-serif; 
 font-weight: 500;
 border-bottom: 1px solid rgb(123, 171, 243);
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: #0d6efd;
  padding: 8px 25px;
  margin-left: 30px;
  border-radius: 4px;
  font-weight: 400;
  color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #4495e1;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(85, 104, 149, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  font-weight: 400;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #0d6efd;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #ffffff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(63, 73, 83, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #556270;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #0d6efd;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #0d6efd;
}

.bgnavfoot{
  background:linear-gradient(
    335deg,

    hsl(231deg 39% 48%) 31%,

    hsl(219deg 100% 70%) 99%
  );
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/* new */
.features .nav-tabs {
  border: 0;
}

.features .nav-link {
  border: 0;
  padding: 12px 15px 12px 0;
  transition: 0.3s;
  color: #556270;
  border-radius: 0;
  border-right: 2px solid white;
  font-weight: 600;
  font-size: 15px;
}

.features .nav-link:hover {
  color: #0d6efd;
}

.features .nav-link.active {
  color: #0d6efd;
  border-color: #0d6efd;
}

/* new */
@media (max-width: 992px) {
  .features .nav-link {
    border: 0;
    padding: 15px;
  }

  .features .nav-link.active {
    color: #fff;
    background: #0d6efd;
  }
}
/* ========== footer ========= */
.blog .entry .entry-footer {
  padding-top: 10px;
  border-top: 1px solid #e6e6e6;
}

.blog .entry .entry-footer i {
  color: #a4afba;
  display: inline;
}

.blog .entry .entry-footer a {
  color: #606f7e;
  transition: 0.3s;
}

.blog .entry .entry-footer a:hover {
  color: #0d6efd;
}

.blog .entry .entry-footer .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog .entry .entry-footer .cats li {
  display: inline-block;
}

.blog .entry .entry-footer .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog .entry .entry-footer .tags li {
  display: inline-block;
}

.blog .entry .entry-footer .tags li+li::before {
  padding-right: 6px;
  color: #6c757d;
  content: ",";
}

.blog .entry .entry-footer .share {
  font-size: 16px;
}

.blog .entry .entry-footer .share i {
  padding-left: 5px;
}

/* new */
/* # Footer */
--------------------------------------------------------------*/
#footer {
background: #00060e;
padding: 0 0 30px 0;
color: #fff;
font-size: 14px;
}

#footer .footer-top {
background: linear-gradient(335deg, hsl(232, 42%, 36%) 31%, hsl(219deg 100% 70%) 99%);
padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
font-size: 24px;
margin: 0 0 20px 0;
padding: 2px 0 2px 0;
line-height: 1;
font-weight: 700;
}

#footer .footer-top .footer-info p {
font-size: 14px;
line-height: 24px;
margin-bottom: 0;
/* font-family: "Raleway", sans-serif; */
color: #fff;
}

#footer .footer-top .social-links a {
font-size: 18px;
display: inline-block;
background: rgba(255, 255, 255, 0.1);
color: #fff;
line-height: 1;
padding: 8px 0;
margin-right: 4px;
border-radius: 4px;
text-align: center;
width: 36px;
height: 36px;
transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
background: #4f94fb;
color: #fff;
text-decoration: none;
}

#footer .footer-top h4 {
font-size: 16px;
font-weight: 600;
color: #fff;
position: relative;
padding-bottom: 12px;
}

#footer .footer-top .footer-links {
margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
list-style: none;
padding: 0;
margin: 0;
}

#footer .footer-top .footer-links ul i {
padding-right: 2px;
color: rgba(255, 255, 255, 0.6);
font-size: 18px;
line-height: 1;
}

#footer .footer-top .footer-links ul li {
padding: 10px 0;
display: flex;
align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
padding-top: 0;
}

#footer .footer-top .footer-links ul a {
color: rgba(255, 255, 255, 0.6);
transition: 0.3s;
display: inline-block;
line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
color: white;
}

#footer .footer-top .footer-newsletter form {
margin-top: 30px;
background: #fff;
padding: 6px 10px;
position: relative;
border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type=email] {
border: 0;
padding: 4px;
width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
position: absolute;
top: 0;
right: -2px;
bottom: 0;
border: 0;
background: none;
font-size: 16px;
padding: 0 20px 2px 20px;
background: #0d6efd;
color: #fff;
transition: 0.3s;
border-radius: 0 4px 4px 0;
}

#footer .copyright {
text-align: center;
padding-top: 30px;
}

#footer .credits {
padding-top: 10px;
text-align: center;
font-size: 13px;
color: rgba(255, 255, 255, 0.6);
}

#footer .credits a {
color: rgba(255, 255, 255, 0.6);
transition: 0.3s;
font-weight: 600;
}

#footer .credits a:hover {
color: white;
}

/* Add custom scrollbar styles to the sg_scroller div */
.sg_scroller {
  overflow-y: scroll; /* Add vertical scrollbar */
  max-height: 360px; /* Set the maximum height for the scrollbar */
  scrollbar-width: thin; /* Specify the width of the scrollbar (for Firefox) */
  scrollbar-color: #888 #f0f0f0; /* Specify the color of the scrollbar (for Firefox) */
}

/* For Webkit (Chrome, Safari) browsers */
.sg_scroller::-webkit-scrollbar {
  width: 5px; /* Set the width of the scrollbar */
}

.sg_scroller::-webkit-scrollbar-thumb {
  background-color: #888; /* Set the color of the scrollbar thumb */
  border-radius: 5px;
}

.sg_scroller::-webkit-scrollbar-track {
  background-color: #f0f0f0; /* Set the color of the scrollbar track */
  /* box-shadow: inset 0 0 5px grey;  */
  border-radius: 5px;
}
.sg_scroller::-webkit-scrollbar-thumb:hover {
  background: #454545;
}

::-webkit-scrollbar{
  height: 4px;
  width: 4px;
  background: gray;
}

/* Track */
::-webkit-scrollbar-track {
background: #f1f1f1; 
}

/* Handle */
::-webkit-scrollbar-thumb {
background: #888; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: #555; 
}

::-webkit-scrollbar-thumb:horizontal{
  background: #000;
  border-radius: 10px;
}

/* mobile view of header */


/* tabs  */
.coal-cards {
margin-bottom: 150px;
}
.coal-cards  article {
margin: 0 !important;
padding: 0 !important;
--primary: #63e380 !important;
--primary-hover: #56c36e !important;
--contrast: #e9eaea;
--easing1: cubic-bezier(0.75, 0.05, 0.915, 0.335);
* {
  transition: 0.5s all cubic-bezier(0.11, 0.945, 0.565, 0.97) 0s;
}
}

.coal-cards .mode-switch {
z-index: 99;
position: absolute;
top: 0;
right: 0;
transform: translateX(-50%);
margin: 2rem 0;
display: flex;
.day,
.night {
  cursor: pointer;
  transition: 0.5s all cubic-bezier(0.11, 0.945, 0.565, 0.97) 0s;
  opacity: 0.4;
  display: flex;
  align-items: center;
  gap: 8px;
  &:hover {
    opacity: 1;
  }
  span {
    font-size: 12px;
  }
}
.day {
  color: #d7a447;
  span {
    color: var(--contrast) !important;
  }
  &.hidden {
    display: none;
  }
}
.night {
  color: #2c2c4f;
  &.hidden {
    display: none;
  }
}
}

.coal-cards #stage {
border-radius: 0;
display: grid;
min-height: 10vh;
height: 100%;
place-items: center;
}

.coal-cards .card {
font-family: "Inter", sans-serif;
width: 100%;
position: relative;
border: 0px;
transition: 0.5s all cubic-bezier(0.11, 0.945, 0.565, 0.97) 0s;
cursor: pointer;
&:hover {
  img {
    transform-origin: center bottom;
    transform: perspective(1000px) rotateX(-10deg) translateY(-5px);
  }
}
.card-info {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  padding: 2.5rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 765px) {


  .card-info {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    padding: 1.5rem;
    position: relative;
    z-index: 1;
  }
}
.card-bg {
  background-color: white;
  border-radius: 20px;
  inset: 5rem 0 1.6rem 0;
  position: absolute;
  z-index: 0;
}

img {
  aspect-ratio: 1/1;
  border-radius: 20px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0px 20px 30px -20px #11191f;
  margin: 0 auto;
  transition: 0.5s max-width var(--easing1) 0s, 0.5s all ease-in-out 0s;
  cursor: pointer;
}
.name {
  font-family: "Inter", sans-serif;
  font-size: 1.2rem;
  font-weight: 550;
  margin-bottom: 0;
  color: #2c2c4f;
  text-align: center;
}
.facts {
  margin-bottom: 0.8rem;
  .number {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 0;
    text-align: center;
  }
  .profit{
    color: #f60000;
  }

}



span {
  display: block;
  font-size: 16px;
  text-align: center;
  &.lighter {
    opacity: 0.5;
  }
}

}
.coal-cards .buttons {
display: flex;
justify-content: space-between;

a[role="button"] {
  border-radius: 7px;
  font-size: 15px;
  cursor: pointer;
  &.outline:hover {
    background-color: #0057ff;
    border-color: #0057ff;
  }
}
}


/* //Anomation

// Collapsed State */

.coal-cards .card.collapsed {
img {
  max-width: 144px;
}

.card-bottom {
  height: 0;
  overflow: hidden;
  transition: 0.5s height var(--easing1) 0s;
  .fact {
    opacity: 0;
    transition: 0.3s opacity var(--easing1) 0s;
  }
  .buttons {
    opacity: 0;
    transition: none;
    /* //transform: translateY(110%); */
    transition: none;
  }
}
}

/* //Open State */
.coal-cards .card:not(.collapsed) {
.card-bottom {
  height: 100%;
  overflow: hidden;
  transition: 0.5s height var(--easing1) 0s;
  .fact {
    transition: 0.3s opacity var(--easing1);
    &:nth-of-type(1) {
      transition-delay: 0.5s;
    }
    &:nth-of-type(2) {
      transition-delay: 0.6s;
    }
    &:nth-of-type(3) {
      transition-delay: 0.7s;
    }
  }
  .buttons {
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px;
    /* //transform: translateY(0%); */
    transition: 0.3s all var(--easing1) 1s;
  }
}
.card-bg {
  inset: 5rem 0 0 0;
}
}

.coal-cards .credits {
font-size: 14px;
position: absolute;
right: 2rem;
bottom: 10px;
}


/*=== Coal-list-Container Start===*/


/*=== Coal-list-container Close ===*/
@media (max-width: 765px) {
  /* tabs  */
.coal-cards {
  margin-bottom: 50px;
  }
  /* tabs */
}
@media (max-width: 500px) {
  /* tabs  */
.coal-cards {
  margin-bottom: 10px;
  }
  /* tabs */
}