/* WPCF7 */



.wpcf7 .flex-container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 20px;
    justify-content: space-between;
}

.wpcf7 .flex-container > div {
    width: calc(50% - 20px);
}

.wpcf7 label {
    color: rgba(0,0,0,0.85);
    font-weight: 600;
}

.wpcf7 .wpcf7-text:not(.wpcf7-submit), .wpcf7 textarea {
    width: 100% !important;
    border: 1px solid rgba(0,0,0,0.25);
    padding: 10px 5px;
    border-radius: 3px;
    resize: none;
}

.wpcf7 .wpcf7-list-item:first-child {
    margin: 0;

}


.wpcf7 form .wpcf7-response-output {
    border: 0px;
}

.wpcf7-submit {
    background-color: transparent;
    color: #4c75a0;
    border: 1px solid #4c75a0;
    border-radius: 20px;
    padding: 10px 30px;
    font-size: 1em;
    margin-top: 1em;
    font-weight: 700;
    transition: all .3s ease-in-out;
    font-family: sans-serif;
}

.wpcf7-submit:hover {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #4c75a0;
    background-color: #4c75a0;
    border-radius: 20px;
    padding: 10px 30px;
    font-size: 1em;
    margin-top: 1em;
    transition: all .3s ease-in-out;
}


