/**
 * CB Services Nav Block Styles
 *
 * @package  cb-identity2025
 */
.cb-services-nav {
  position: relative;
  background-color: var(--col-primary-black);
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  isolation: isolate;
  overflow: hidden;
}
.cb-services-nav::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background: url(./services-bg.jpg) center/cover no-repeat fixed;
}
.cb-services-nav__container {
  background-color: rgba(255, 255, 255, 0.1);
}
.cb-services-nav__header {
  background-color: rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--col-green-400);
  font-size: var(--fs-300);
  font-weight: var(--fw-regular);
  padding-block: 1rem;
  line-height: 1;
}
.cb-services-nav__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  justify-content: space-between;
  padding-block: 1rem;
  transition: background-color 0.3s ease;
  color: white;
  font-weight: var(--fw-light);
  text-decoration: none;
  font-size: var(--fs-850);
  transition: background-color 0.3s ease;
}
.cb-services-nav__item:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  text-decoration: none;
}
@media (max-width: 767px) {
  .cb-services-nav__item {
    font-size: var(--fs-600);
  }
}
.cb-services-nav__item-icon {
  width: 40px;
  height: 37px;
}
@media (min-width: 768px) {
  .cb-services-nav__item-icon {
    width: 65px;
    height: 60px;
  }
}
.cb-services-nav.cb-services-nav--front .cb-services-nav__item {
  font-weight: var(--fw-semi);
}