.contact_info_card {
    text-align: center;
    border: 1px solid #ffffff40;
    height: 100%;
    padding: 25px 20px;
}

.contact_info_card img {
    width: 40px;
    height: 50px;
    -o-object-fit: contain;
    object-fit: contain;
    margin-bottom: 10px;
}

.contact_info_card p {
    line-height: 1.5em;
}

.contact_info_title {
    font-weight: 500;
    font-size: 25px;
    line-height: 32px;
    margin-bottom: 8px;
}

.form_sec {
    background-image: url(../img/contact/fom_bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover
}

.contact_form_card {
    padding: 30px 25px;
    background-color: var(--c_navBlue);
    -webkit-box-shadow: 10px 4px 104px -35px rgba(0, 0, 0, 0.25);
    box-shadow: 10px 4px 104px -35px rgba(0, 0, 0, 0.25);
    border-radius: 15px;
}

.form_inp {
    display: block;
    width: 100%;
    padding: 16px 16px;
    background-color: var(--c_lightNavBlue);
    border: none;
    font-size: 16px;
    line-height: 111.8%;
    letter-spacing: 0.09em;
    color: #B7B7B7;
    border-radius: 6px;
}

.form_inp:focus {
    outline: 1px solid var(--bs-primary);
}

.form_lgFont {
    font-family: var(--ft_lato);
    font-weight: 500;
    font-size: 18px;
    line-height: 32px;
}

.contact_socialLink {
    height: 25px;
    margin-right: 20px;
}

.contact_socialLink img {
    height: 100%;
}

.contact_socialLink:hover {
    opacity: 0.5;
}
.form_alert{
    display: none;
}
.sending_msg,
.sending_msg:hover{
    color: green !important;
}
.sending_msg::before{
    content:"";
    display: inline-block;
    width:1em;
    height: 1em;
    margin-right: 8px;
    border:3px solid;
    border-radius: 50%;
    border-bottom-color: transparent;
    -webkit-animation:spin 1s linear infinite;
    animation:spin 1s linear infinite;
}
@-webkit-keyframes spin { 
    100% { -webkit-transform: rotate(360deg); } 
}
@keyframes spin { 
    100% { 
        -webkit-transform: rotate(360deg); 
        transform:rotate(360deg); 
    } 
}
@media(min-width:768px) {
    .contact_form_card {
        padding: 35px 42px;
    }
}

@media(min-width:1200px) {
    .contact_info_card {
        padding: 50px;
    }
}

@media(min-width:1500px) {
    .contact_info_title {
        font-size: 32px;
        line-height: 42px;
    }
    .contact_info_card p {
        line-height: 2em;
    }
    .contact_info_card img {
        width: 50px;
        height: 60px;
        margin-bottom: 20px;
    }
    .form_inp {
        font-size: 20px;
        padding: 16px 20px;
    }
    
    .form_lgFont {
        font-size: 27px;
        line-height: 36px;
    }
    .contact_socialLink {
        height: 35px;
        margin-right: 20px;
    }
}