#contact-bg {
    background-color: #be0b32;
    background-image: url('../img/contact-us-bg.svg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    padding: 12vh 0;
}

.contact-div {
    position: relative;
    overflow: hidden;
    background-color: #eff4fa99;
    padding: 50px;
    margin: 25px 0;
    box-shadow: 0 0 0 0 rgba(0, 39, 104, 0.05);
    color: #000; /* default text color */
    transition: color 0.3s ease;
}

/* Hover text color */
.contact-div:hover {
    color: #fff;
}

.contact-div:hover .contact-icon i {
    background: #fff;
    color: #be0b32;
}

.contact-div:hover .contact-icon2 i {
    background: #fff;
    color: #be0b32;
}

.contact-div:hover .contact-heading {
    color: #fff;
}

.contact-div:hover .contact-numbers p a {
    color: #fff;
}

/* Slide-up background effect */
.contact-div::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background-color: #be0b32;
    z-index: 0;
    transition: height 0.4s ease;
}

/* Trigger animation on hover */
.contact-div:hover::before {
    height: 100%;
}

/* Make sure content stays on top of the ::before background */
.contact-div > * {
    position: relative;
    z-index: 1;
}

.contact-title {
    font-size: 55px;
    font-weight: 700;
    line-height: 1.1em;
    letter-spacing: 1px;
    color: #fff;
}

.contact-icon i {
    font-size: 30px;
    background: #be0b32;
    padding: 25px;
    color: #fff;
    border-radius: 50%;
    margin-bottom: 15px;
}

.contact-icon2 i {
    font-size: 30px;
    background: #be0b32;
    padding: 25px 28px;
    color: #fff;
    border-radius: 50%;
    margin-bottom: 15px;
}

.contact-heading {
    font-size: 25px;
    font-weight: 700;
    line-height: 1.1em;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: #002768;
    margin-top: 10px;
}

.contact-numbers p {
    margin: 5px 0;
    font-size: 18px;
}

.contact-numbers p a {
    color: #000;
}