@media (max-width: 767.98px) {
  .bg-sm-transparent {
    background-color: transparent !important;
  }
}

/* Default width for larger screens */
.navbar-brand {
  width: 15%;
}

/* Width for smaller screens */
@media (max-width: 767.98px) {
  .navbar-brand {
    width: 40%;
  }
}

.responsive-margin {
  margin-left: -20px;
}

@media screen and (max-width: 600px) {
  .responsive-margin {
    margin-left: -15px;
  }
}

@media (min-width: 992px) {
  .col-custom {
    flex: 0 0 20%;
    max-width: 20%;
  }
}

.responsive-image {
  max-width: 34%;
}

@media (max-width: 991px) {
  .responsive-image {
    max-width: 20%;
  }
}

.responsive-fs {
  font-size: 1.09375rem;
}

@media (max-width: 991px) {
  .responsive-fs {
    font-size: 23px;
  }
}

.card {
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  background-color: #fff !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.card2:hover {
  background-color: #565b79 !important;
  ;
}

.card:hover .card-body .text-white {
  color: #565b79 !important;
}

/* Image hover effect */
.hover-image {
  transition: opacity;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.content {
  flex: 1;
}

.horizontal-list {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}

.horizontal-list li {
  flex: 1;
  padding: 0 15px;
  position: relative;
}

.horizontal-list li+li::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  background: linear-gradient(transparent, transparent, white 0%, transparent);
}

/* Media query for mobile view */
@media (max-width: 767px) {
  .horizontal-list {
    display: block;
  }

  .horizontal-list li {
    padding: 0;
    border: none;
  }

  .horizontal-list li+li::before {
    display: none;
  }
}

.slider-item {
  height: 500px;
  background-size: cover;
  background-position: center center;
}

@media (min-width: 576px) {
  .slider-item {
    height: 600px;
  }
}

@media (min-width: 992px) {
  .slider-item {
    height: 800px;
  }
}

/* Add this CSS to ensure the container fills the viewport height */
.tiny-slider-inner {
  height: 100vh;
}

.custom-image {
  height: 300px;
  object-fit: cover;
  /* Ensures the image covers the entire container */
  width: 100%;
}