* {
    padding: 0;
    margin: 0;
}

body {
    background-color: white;
}

.bg-secondary .btn-primary {
    background: #400485 !important;
}

.btn-purple {
    background: #400485 !important;
    color: #ffffff !important;
}


@media (max-width: 767.98px) {
    .border-sm-start-none {
        border-left: none !important;
    }
}

.asteriskField {
    color: #ff0000;
    margin-left: 5px;
}

.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: -0.85rem;
    font-size: 80%;
    color: #e74a3b
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/

#topbar {
    background: #400485;
    /* background: linear-gradient(90deg, rgb(243, 24, 24) 10%, rgb(203, 42, 221) 100%); */
    height: 40px;
    font-size: 14px;
    transition: all 0.5s;
    color: #fff;
    padding: 1rem;
}

#topbar .contact-info i {
    font-style: normal;
    color: #fff;
}

#topbar .contact-info i a,
#topbar .contact-info i span {
    padding-left: 5px;
    color: #fff;
    text-decoration: none;
}

#topbar .contact-info i a {
    line-height: 0;
    transition: 0.3s;
    transition: 0.3s;
    text-decoration: none;
}

#topbar .contact-info i a:hover {
    color: #fff;
    text-decoration: underline;
}

#topbar .social-links a {
    color: rgba(255, 255, 255, 0.7);
    line-height: 0;
    transition: 0.3s;
    margin-left: 20px;
}

#topbar .social-links a:hover {
    color: white;
}


/*** Facts Start ***/
.counter {
    height: 100%;
    text-align: center;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}

.counter i {
    font-size: 60px;
    margin-bottom: 25px;
}

.counter h4 {
    color: var(--bs-primary);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.counter h1 {
    margin-bottom: 0;
}

.counter {
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.counter h4 {
    transition: color 0.3s ease;
}

.counter:hover {
    border-color: rgb(255, 181, 36);
    box-shadow: 0 0 1px rgba(255, 181, 36, 0.5);
}

.counter img {
    /* Remove filter transition to prevent flicker */
    transition: none;
}

.counter:hover img {
    filter: brightness(0) saturate(100%) invert(71%) sepia(67%) saturate(681%) hue-rotate(356deg) brightness(101%) contrast(96%);
    /* No transition here either */
    transition: none;
}

.counter:hover h4 {
    color: rgb(255, 181, 36);
}



/*** Facts End ***/