.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%;
}


.bg-gray {
  background-color: rgb(240,240,240);
  transition: 0.5s;
}

.carousel-item img {
  height: 50vh;
  width: auto;
  object-fit: cover;
}

.text-orange {
  color: #f27d00 !important;
}

.text-blue {
  color: #0c4da2 !important;
}

.bg-orange {
  background-color: #f27d00 !important;
}

.bg-blue {
  background-color: #0c4da2 !important;
}

.hover-bg-blue:hover {
  background-color: #0c4da2 !important;
  color: white !important;
}

.box-shadow {
  box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.25);
}

body {
  font-family: "Poppins", sans-serif;
}

.blue-animation {
  transition: 1s;
}

.blue-animation:hover {
  background-color: #0c4da2;
  transition: 1s;
  color: white;
}

.about-btn:hover {
  background-color: #f27d00;
}

@media (min-width: 768px) {
  .contact-box {
    margin-top: -75px;
    margin-left: -50px;
    height: fit-content;
  }
}
.text-align-justify{
  text-align: justify;
}
