/* menu  */
.navbar-light ul.navbar-nav > li > a:hover{
    color: var(--bs-primary) !important;
}

/*footer*/
.footer-item a {
    line-height: 35px;
    transition: 0.5s;
}
    .footer-item a:hover {
        color: var(--bs-primary);
    }

    .footer-item a i{
        color: var(--bs-primary);
        margin-right: 1rem;
    }

.footer-social li:hover i{
    color: var(--bs-primary) !important;
}

.text-site-color {
    color: var(--bs-primary) !important;
}

.text-site-color2 {
    color: var(--bs-secondary) !important;
}

.bg-site-color {
    color: var(--bs-primary) !important;
}

/*list*/
/*team*/
.list-img-main {
    height: 10rem;
    object-fit: cover;
    object-position: center;
}
.list-img-top-main {
    height: 10rem;
    object-fit: contain;
    object-position: center;
}
.img-project-main {
    height: 13rem;
    object-fit: cover;
    object-position: center;
}

/* ===== Career ===== */
.filter-result .job-box {
background:#fff;
  -webkit-box-shadow: 0 0 35px 0 rgba(130, 130, 130, 0.2);
          box-shadow: 0 0 35px 0 rgba(130, 130, 130, 0.2);
  border-radius: 10px;
  padding: 10px 35px;
}


.job-box .img-holder {
  height: 65px;
  width: 65px;
  background-color: #4e63d7;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(78, 99, 215, 0.9)), to(#5a85dd));
  background-image: linear-gradient(to right, rgba(78, 99, 215, 0.9) 0%, #5a85dd 100%);
  font-family: "Open Sans", sans-serif;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 65px;
}


@media (max-width: 768px) {
  .job-content span {
    text-align: center;
    display: block;
  }
}

.mb-30 {
    margin-bottom: 30px;
}

.v-align-middle,
.v-align-middle td,
.v-align-middle th{
  vertical-align: middle !important;
}

/*marquee*/
.marquee-parent {
    z-index: 9999;
    overflow: hidden;
    position: relative;

}
.marquee {
  width: 600px; 
  overflow: hidden;
}

@media (max-width: 767px) {
    .marquee {
      width: 300px; 
    }

    .dev-space .col-md-8{
        padding-right: 0;
    }

    #breadcrumb-top h4, #breadcrumb-top li{
        font-size: .6rem;
    }

    .slide-title,
    .slide-sub-title,
    .slider-description
    {
        margin: 0;
    }
    .slide-title , .slide-sub-title{
        font-size: .7rem;
    }
    .slider-description {
        font-size: 1rem;
    }
}

 .marquee ul {
    list-style: none; 
    padding: 0;
    margin: 0;
  }
  .marquee ul li {
    position: relative;
    padding-left: 15px; 
    font-weight: bold;
  }
  .marquee ul li::before {
    content: "•"; 
    position: absolute;
    left: 0;
    color: red; 
    font-size: 1.2em; 
  }

  /* Hover Effects */
  .list-item-style a {
      text-decoration: none;
      color: #212529;
      transition: color 0.3s ease, transform 0.2s ease;
  }

  .list-item-style a:hover {
      color: #dc3545; /* Bootstrap danger color */
      transform: translateX(5px); /* Move slightly to the right */
  }

  .list-item-style a i {
      transition: transform 0.2s ease;
  }

  .list-item-style a:hover i {
    transform: rotate(360deg); /* Rotate icon on hover */
  }

  .list-head h3 {
    background-color: var(--bs-secondary);
    border-bottom: 4px solid var(--bs-primary);
    padding: 10px 15px;
    color: #fff;
    font-size: 22px;
    margin-bottom: 0px;
}