body {
padding-top: 3rem;
}

.bg-blue {
	background-color: #03254C;
}

.navbar-toggler {
    background-color: #03254c;
}

.text-blue {
	color: #03254C;
}

.navbar-collapse {
    max-width: 100%;
}

.dropdown-menu a {
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-menu .accordion-button {
    border: 0;
    background-color: #03254C;
    color: var(--bs-dropdown-link-color);
    font-weight: 400;
    font-size: 13px;
    font-family: 'Montserrat', sans-serif;
    padding: 8px 16px;
    box-shadow: none !important;
}

.dropdown-menu .accordion-item {
    border: 0;
}

.dropdown-menu .accordion-body {
    padding: 0;
}

.dropdown-menu .accordion-body a {
    border-radius: 0;
    font-weight: 400;
}

nav .btn, nav li {
	border: 0;
    font-weight: 700;
    font-size: 13px;
    font-family: 'Montserrat', sans-serif;
}

nav .btn:focus {
	border: 0;
	box-shadow: 0 0 0 0;
	background-color: #fafafa;
}

.carousel {
margin-bottom: 4rem;
}

.carousel-caption {
bottom: 3rem;
z-index: 10;
}

.caption-animate .carousel-item .carousel-caption.animate__animated {
  opacity: 0;
}

@keyframes fadeInRight {
0% {
    opacity: 0;
    -webkit-transform: translate3d(30%,0,0);
    transform: translate3d(30%,0,0);
}
100% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}
}

.carousel-caption h2, .carousel-caption p {
font-weight: 300;
text-shadow: 0px 0px 20px rgba(0, 0, 0, 1);
}

.carousel-caption h2 {
letter-spacing: 3px;
}

.carousel-caption h1 {
letter-spacing: 2px;
font-weight: 700;
text-shadow: 0px 0px 20px rgba(0, 0, 0, 1);
}

.carousel-item {
height: 800px;
max-height: 80vh;
background-size: cover;
}

.marketing .col-lg-4 {
margin-bottom: 1.5rem;
text-align: center;
}

.marketing .col-lg-4 p {
margin-right: .75rem;
margin-left: .75rem;
}

.featurette-divider {
margin: 5rem 0;
}

.featurette-heading {
letter-spacing: -.05rem;
}


@media (min-width: 40em) {
.carousel-caption p {
margin-bottom: 1.25rem;
font-size: 1.25rem;
line-height: 1.4;
}

.featurette-heading {
font-size: 40px;
}
}

@media (min-width: 62em) {
.featurette-heading {
margin-top: 5rem;
}
}

.bd-placeholder-img {
font-size: 1.125rem;
text-anchor: middle;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
}

@media (min-width: 768px) {
.bd-placeholder-img-lg {
font-size: 3.5rem;
}
}

.b-example-divider {
width: 100%;
height: 3rem;
background-color: rgba(0, 0, 0, .1);
border: solid rgba(0, 0, 0, .15);
border-width: 1px 0;
box-shadow: inset 0 .5em 1.5em rgba(0, 0, 0, .1), inset 0 .125em .5em rgba(0, 0, 0, .15);
}

.b-example-vr {
flex-shrink: 0;
width: 1.5rem;
height: 100vh;
}

.bi {
vertical-align: -.125em;
fill: currentColor;
}

.nav-scroller {
position: relative;
z-index: 2;
height: 2.75rem;
overflow-y: hidden;
}

.nav-scroller .nav {
display: flex;
flex-wrap: nowrap;
padding-bottom: 1rem;
margin-top: -1px;
overflow-x: auto;
text-align: center;
white-space: nowrap;
-webkit-overflow-scrolling: touch;
}

.btn-bd-primary {
--bd-violet-bg: #712cf9;
--bd-violet-rgb: 112.520718, 44.062154, 249.437846;

--bs-btn-font-weight: 600;
--bs-btn-color: var(--bs-white);
--bs-btn-bg: var(--bd-violet-bg);
--bs-btn-border-color: var(--bd-violet-bg);
--bs-btn-hover-color: var(--bs-white);
--bs-btn-hover-bg: #6528e0;
--bs-btn-hover-border-color: #6528e0;
--bs-btn-focus-shadow-rgb: var(--bd-violet-rgb);
--bs-btn-active-color: var(--bs-btn-hover-color);
--bs-btn-active-bg: #5a23c8;
--bs-btn-active-border-color: #5a23c8;
}

.bd-mode-toggle {
z-index: 1500;
}

.bd-mode-toggle .dropdown-menu .active .bi {
display: block !important;
}

.throb {
  width: 20px; /* Adjust the initial width as needed */
  height: auto;
  color: red; /* Set the color of your heart icon */
  transition: transform 0.5s ease-in-out; /* Add a smooth transition for a more gradual effect */
  animation: pulse 1s infinite; /* Define the pulse animation */
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2); /* Adjust the scale factor for the desired enlargement */
  }
}