.border-blue{
    border-top: 4px solid var(--primary);
}

.border-pink{
    border-top: 4px solid var(--secondary);
}
.h2{
    color: #00005C;
}

.h4{
    color: #D40C7E;
}


.image-overlay-section-cust {
    position: relative;
    width: 100%;
    height: 200px;
    background-image: url('../images/events.png'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay-cust-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Adjust opacity for the overlay effect */
    z-index: 1;
}

.content-cust {
    position: relative;
    color: white;
    z-index: 2;
    text-align: center;
    padding: 20px;
}

.image-overlay-section-cust-2 {
    position: relative;
    width: 100%;
    height: 250px;
    background-image: url('../images/events.png'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-cust-2 {
    position: relative;
    color: white;
    z-index: 2;
    text-align: center;
    padding: 20px;
}

.error-message {
    font-size: 0.875em;
    margin-top: 0.25rem;
}
.is-invalid {
    border-color: #dc3545;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.blink_me {
  animation: blinker 1s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}
