.hero-contact{
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}
.bg-contact{
    position: absolute;
    background:linear-gradient(#CE1212,#002366);
    width: 100%;
    height: 250px;
    max-height: 250px;
    top: 0;
    left: 0;
    /* background-image: url(../images/Staffing-hero.jpg);
    background-repeat: none;
    background-size: cover;
    filter: blur(2px) brightness(0.8); */
}
.hero-contact .hero-content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
}

.contact-section h5{
    color: var(--primary-color);
}
.contact-section ul{
    list-style: none;
    padding-left: 0;
    padding-top: 10px;
}
.contact-section li i{
    padding-right: 15px;
    color: #CE1212;
}
.contact-section a{
    text-decoration: none;
    color: #000;

}
.contact-section li p{
    cursor: pointer;
    position: relative;
    color: var(--text-dark);
}
.contact-section li p::before{
    content: '';
    position: absolute;
    bottom: -5px;
    height: 2px;
    width: 0;
    background-color: #CE1212;
    transition: all 0.5s ease;
}
.contact-section li p:hover::before{
width: 100%;
}

.social-contact ul {
    list-style: none;
    padding-left: 0;
    display: flex;
}

.social-contact ul li {
    margin-right: 15px;
    border: #CE1212 2px solid;
    position: relative;
    width: 40px; 
    height: 40px; 
    border-radius: 50%;
    transition: box-shadow 0.3s ease-in-out;
}

.social-contact ul li a{
    position: absolute;
    left: 30%;
    top: 50%;
    transform: translateX(-50%);
    transform: translateY(-50%);
}
.social-contact ul li:hover {
    box-shadow: 0 0 10px #CE1212, 0 0 20px #CE1212, 0 0 30px #CE1212, 0 0 40px #CE1212;
}


.form-control:focus, .form-select:focus, textarea:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 5px var(--secondary-color);
    outline: none;
}

.btn-contact-form{
    width: 100%;
    background: linear-gradient(45deg,#002366, #CE1212);
    color: #fff;
    font-size: 18px;
    transition: all 0.5s ease;
}

.btn-contact-form:hover{
    background: linear-gradient(45deg,#CE1212,#002366);
    color: #fff;
}