/* ---------- Contact Form Grid ---------- */

.jf-form-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:22px;
}

.jf-half{
    display:flex;
    flex-direction:column;
}

.jf-full{
    grid-column:1/-1;
    display:flex;
    flex-direction:column;
}

.jf-form-grid label{
    font-weight:700;
    color:#19355a;
    margin-bottom:8px;
}

.jf-form-grid label span{
    color:#ed782c;
}

.jf-form-grid input[type=text],
.jf-form-grid input[type=email],
.jf-form-grid input[type=tel],
.jf-form-grid textarea{

    width:100%;
    border:1px solid #d9e0e8;
    border-radius:10px;
    background:#fff;
    padding:14px 16px;
    font-size:15px;
    transition:.25s;
    box-sizing:border-box;

}

.jf-form-grid textarea{
    min-height:180px;
    resize:vertical;
}

.jf-form-grid input:focus,
.jf-form-grid textarea:focus{

    border-color:#ed782c;
    outline:none;
    box-shadow:0 0 0 3px rgba(237,120,44,.12);

}

.jf-form-grid input[type=file]{

    width:100%;
    background:#f6f8fb;
    border:2px dashed #d5dde7;
    border-radius:10px;
    padding:18px;

}

.jf-form-grid small{

    margin-top:8px;
    color:#777;

}

.jf-form-grid input[type=submit]{

    background:#ed782c;
    color:#fff;
    border:none;
    border-radius:8px;
    padding:16px 30px;
    font-size:15px;
    font-weight:800;
    text-transform:uppercase;
    cursor:pointer;
    transition:.25s;
    width:auto;
    align-self:flex-start;

}

.jf-form-grid input[type=submit]:hover{

    background:#19355a;

}

@media(max-width:768px){

.jf-form-grid{

grid-template-columns:1fr;

}

}