/* Ensure text container takes full width */
.list.list-marked .list-item .list-text {
  flex: 1;
  /* Allows text to wrap correctly */
}


/* General list styles */
.list.list-marked {
  list-style: none;
  /* Remove default bullets */
  padding-left: 1.2em;
  /* Indent sub-lists properly */
}

.list-marked.custom-indent .list-marked {
  margin-left: 0.75em;
}

/* Main bullet (filled) */
.list.list-marked>.list-item::before {
  content: '';
  display: inline-block;
  width: 0.38em;
  height: 0.38em;
  margin-right: 0.62em;
  border-radius: 50%;
  background-color: #171724;
  /* Solid main bullet */
}

/* Reduce indentation between parent and sub-list items */
.list.list-marked ul {
  padding-left: 0.6em;
  /* Half of the default indentation */
  margin-top: 0;
  /* Ensure no extra vertical spacing */
}

/* Sub-bullets (hollow) */
.list.list-marked ul>.list-item::before {
  content: '';
  display: inline-block;
  width: 0.38em;
  height: 0.38em;
  margin-right: 0.62em;
  border-radius: 50%;
  border: 1px solid #171724;
  /* Hollow bullet */
  background-color: transparent;
  /* Ensures it's hollow */
}

/* Container to align icons with text */
.ggrx-entry {
  display: flex;
  align-items: flex-start;
  /* Ensures the icon aligns with the first text line */
  gap: 8px;
  /* Adjusts space between icon and text */
}

/* Icon Styling */
.ggrx-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  /* Prevents shrinking issues */
  align-self: flex-start;
  /* Forces it to align with the top of the text */
}

@media (min-width: 768px) {
  .ggrx-icon {
    margin-top: 3px;
  }
}


/* Text container for proper wrapping */
.ggrx-text {
  flex-grow: 1;
  /* Allows text to take available space */
  line-height: 1.6;
  /* Improves readability */
  word-break: break-word;
  /* Ensures text wraps properly */
}


.bullet-point-img-max-width {
  max-width: 100px;
}

.bg-gradient-animated {
  background-image: linear-gradient(90deg, #418b70 0%, #205043 25%, #176c3e 50%, #209a58 75%, #418b70 100%);
}

.to-top {
  background: #216338 !important;
}

/* MOBILE */
@media (max-width: 468px) {
  .list.list-marked ul {
    padding-left: 0.5em;
    /* Even smaller on mobile */
  }

  .custom.navbar-logo-link {
    display: flex;
    justify-content: center;
  }

  .custom.navbar-logo-default {
    margin-top: 5px;
  }

  .carbion-home-mobile {
    display: block;
    margin-bottom: 35px;
  }

  .carbion-home-full-size {
    display: none;
  }

  .custom-ggrx-home {
    margin-bottom: 30px;
  }

  .why-us-ggrx-logo-center {
    text-align: center;
  }

  .carbon-pools-accordion.accordion {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

/* TABLETS */
@media (min-width: 469px) and (max-width: 768px) {
  .custom.navbar-logo-link {
    display: flex;
    justify-content: center;
  }

  .custom.navbar-logo-default {
    max-height: 100px;
    margin-top: -5px;
  }

  .custom.navbar-navigation-root-link {
    margin-right: -60px;
  }

  .carbion-home-mobile {
    display: block;
  }

  .carbion-home-full-size {
    display: none;
  }

  .carbion-logo {
    max-height: 50px;
  }

  .carbon-pools-accordion.accordion {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

/* LARGE TABLETS & MID-SIZED DEVICES */
@media (min-width: 769px) and (max-width: 1024px) {
  .custom.navbar-logo-link {
    display: flex;
    justify-content: center;
  }

  .custom.navbar-logo-default {
    max-height: 100px;
    margin-top: -5px;
  }

  .custom.navbar-navigation-root-link {
    margin-right: -60px;
  }

  .carbion-home-mobile {
    display: none;
  }

  .carbion-home-full-size {
    display: block;
  }

  .carbion-logo {
    max-height: 50px;
  }

  .carbon-pools-accordion.accordion {
    margin-top: 30px;
    margin-bottom: 50px;
  }
}

/* LARGE DESKTOPS & ULTRA-WIDES (≥ 1025px) */
@media (min-width: 1025px) {
  .custom.navbar-logo-link {
    display: flex;
    justify-content: center;
  }

  .custom.navbar-logo-default {
    max-height: 100px;
    margin-top: 10px;
  }

  .custom.navbar-navigation-root-link {
    margin-right: -60px;
  }

  .carbion-home-mobile {
    display: none;
  }

  .carbion-home-full-size {
    display: block;
  }

  .carbion-logo {
    max-height: 50px;
  }
  
  .carbon-pools-accordion.accordion {
    margin-top: 30px;
    margin-bottom: 50px;
  }
}

@media (min-width: 1025px) and (max-width: 1199px) {
  .custom.navbar-logo-default {
    max-height: 100px;
    margin-top: -5px;
  }
}

@media (min-width: 1200px) {
  .custom.navbar-logo-link {
    display: flex;
    justify-content: left;
  }
  
  .carbon-pools-accordion.accordion {
    margin-top: 30px;
    margin-bottom: 50px;
  }
}