.bs-icon {
  --bs-icon-size: .75rem;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  font-size: var(--bs-icon-size);
  width: calc(var(--bs-icon-size) * 2);
  height: calc(var(--bs-icon-size) * 2);
  color: var(--bs-primary);
}

.bs-icon-xs {
  --bs-icon-size: 1rem;
  width: calc(var(--bs-icon-size) * 1.5);
  height: calc(var(--bs-icon-size) * 1.5);
}

.bs-icon-sm {
  --bs-icon-size: 1rem;
}

.bs-icon-md {
  --bs-icon-size: 1.5rem;
}

.bs-icon-lg {
  --bs-icon-size: 2rem;
}

.bs-icon-xl {
  --bs-icon-size: 2.5rem;
}

.bs-icon.bs-icon-primary {
  color: var(--bs-white);
  background: var(--bs-primary);
}

.bs-icon.bs-icon-primary-light {
  color: var(--bs-primary);
  background: rgba(var(--bs-primary-rgb), .2);
}

.bs-icon.bs-icon-semi-white {
  color: var(--bs-primary);
  background: rgba(255, 255, 255, .5);
}

.bs-icon.bs-icon-rounded {
  border-radius: .5rem;
}

.bs-icon.bs-icon-circle {
  border-radius: 50%;
}

.fit-cover {
  object-fit: cover;
}

.p-55 {
  padding: 1.75rem;
}

#scrollToTopBtn {
  position: fixed;
  bottom: -60px; /* Start off-screen */
  right: 20px;
  background-color: #0047BA;
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 24px;
  text-align: center;
  line-height: 50px;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: bottom 0.3s ease-in-out; /* Smooth slide-in effect */
}

#scrollToTopBtn.show {
  bottom: 20px; /* Final position */
}

#scrollToTopBtn:hover {
  background-color: #003C9E;
}

.custom-modal-body {
  max-height: 60vh;
  overflow-y: auto;
}

.custom-modal-body img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .custom-modal-body {
    max-height: 80vh;
  }
}

@media (min-width: 768px) {
  .maxw-40 {
    max-width: 40%;
  }
}

@media (min-width: 768px) {
  .h-800 {
    height: 800px;
  }
}

@media (max-width: 767px) {
  .h-800 {
    height: 400px;
  }
}

@media (min-width: 1200px) {
  .h-700 {
    height: 700px;
  }
}

@media (min-width: 1400px) {
  .h-700 {
    height: 750px;
  }
}

@media (max-width: 767px) {
  .bg-about {
    padding: 1.75rem;
    background: #ffffffcf;
  }
}

@media (min-width: 992px) {
  .h-600 {
    height: 700px;
  }
}

