.contact_section
{
    background-image: url(../img/contact_us/bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 58px 0px;
}

.contact_section h2
{
    font-size: 60px;
    font-weight: 700;
}

.contact_section .contact-card-1 {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #FFFFFF;
    border-radius: 15px;
    box-shadow: 8px 8px 10px 0px #009CBDFA;
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
}

.contact_section .contact-card-1:hover {
    transform: scale(1.05);
    box-shadow: 0px 6px 25px #009CBDFA;
    border-color: #009CBDFA;
}

.contact_section .contact-card-2 {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #FFFFFF;
    border-radius: 15px;
    box-shadow: 8px 8px 10px 0px #26BD00B2;
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
}

.contact_section .contact-card-2:hover {
    transform: scale(1.05);
    box-shadow: 0px 6px 25px #26BD00B2;
    border-color: #26BD00B2;
}


.contact_section .contact-card-3 {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #FFFFFF;
    border-radius: 15px;
    box-shadow: 8px 8px 10px 0px #FF4346D9;
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;

}

.contact_section .contact-card-3:hover {
    transform: scale(1.05);
    box-shadow: 0px 6px 25px #FF4346D9;
    border-color: #FF4346D9;
}

.contact_section .contact-card img {
    width: 128px;
    height: 128px;
}

.contact_section .text-white {
    color: #fff !important;
}

.contact_section .text-muted {
    color: white !important;
}


@media (max-width: 960px) {
    
    .contact_section h2
    {
        font-size: 40px;
    }
}

@media (max-width: 576px)
{
    .contact_section h2
    {
        font-size: 22px;
        font-weight: 700;
    }

    .contact_section
    {
        background-image: url(../img/contact_us/bg_m.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        padding: 15px 0px;
    }

    .contact_section .contact-card img {
        width: 45px;
        height: 45px;
    }

    .contact_section h5
    {
        font-size: 15px !important;
    }
}
