.sosials {
    display: flex;
    gap: 10px;
}
.sosials svg {
    fill: #DADADA;
}
.wp-block-heading {
    font-size: 20px;
}
.page_title {
    font-size: 30px;
    padding: 50px 0 20px 0;
    font-weight: 600;
}

/* form */
.form-fields-wrapper {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 10px 0 20px 0;
}
.form-field-wrapper {
    width: 100%;
}
.small-field {
    max-width: 255px;
}
.your_subject-wrapper {
    
}
.form-field-wrapper input {
    background-color: white;
    border-radius: 5px;
    width: 100%;
    font-size: 15px;
    line-height: 15px;
    color: #4C4C4C;
    padding: 20px 30px;
}
.form-submit-wrapper input {
    background-color: #2586CE;
    font-size: 15px;
    font-weight: 600;
    line-height: 15px;
    color: white;
    padding: 15px 35px;
    border-radius: 5px;
    margin: auto;
    display: block;
    transition: background-color .3s ease;
}
.form-submit-wrapper input:hover {
    background-color: #3e6074;
}
@media (max-width:1000px) {
    .small-field {
        max-width: 100%;
    }
    .form-field-wrapper {
        /* max-width: ; */
    }
}
@media (max-width:450px) {
    .form-inner {
        padding: 15px;
    }
    .form-submit-wrapper input {
        padding: 10px;
    }
}