/*======================================================
Contact
======================================================*/

.contact-card{
    background:#fff;
    border:2px solid #edf2f7;
    border-radius:22px;
    padding:40px;
    text-align: left;
}

.quote-input{
    min-height:54px;
    border-radius:12px;
    border:2px solid #edf2f7;
    transition:.25s;
}

.quote-input:focus{
    border-color:var(--primary);
    box-shadow:none;
}

textarea.quote-input{
    min-height:140px;
}

/*===================================
Mini Cards
===================================*/

.contact-mini-card{
    background:#fff;
    border:2px solid #edf2f7;
    border-radius:20px;
    padding:25px;
    /*display:flex;
    gap:20px;*/
    align-items:flex-start;
    height:100%;
    transition:.25s;
}

.contact-mini-card:hover{
    transform:translateY(-4px);
    border-color:var(--primary);
    box-shadow:0 15px 35px rgba(23,92,221,.08);
}

.mini-header{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:20px;
    justify-content: center;
}

.mini-icon{
    width:52px;
    height:52px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#eef5ff;
    color:var(--primary);
    font-size:22px;
    flex-shrink:0;
}

.mini-header h5{
    margin:0;
    font-weight:700;
}

.contact-mini-card p{
    color:#6c757d;
    line-height:1.7;
    margin-bottom:0;
}