h2 {
    color: #333;
    font-weight: 400;
    font-size: 60px;
    line-height: 80px;
    font-family: 'Tungsten A', 'Tungsten B', sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
label {
    vertical-align: middle;
    font-family: 'Gotham Narrow SSm A','Gotham Narrow SSm B',sans-serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.05em;
    font-size: 14px;
    line-height: 21px;
}

.error {
    color: red;
    text-align: center;
        margin-top: 20px;
    line-height: 22px;
}

#sfform {
    max-width: 830px;
    padding: 20px;
    margin:0 auto;
}

.sf_form_container {
    width:100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    box-sizing: border-box;
    justify-content: center;
}

.sf_form_container .col {
    display:flex;
    flex-direction: column;
    padding: 10px;
    box-sizing: border-box;
}

.sf_form_container.col-4 .col {
    width: 25%;
    min-width: 190px;
    max-width: 250px;
}
.sf_form_container.col-3 .col {
    width: 33.33%;
}
.sf_form_container.col-2 .col {
    width: 50%;
}

.sf_form_container .col input[type=text] {
    border: 2px solid #ccc;
    font-size: 12px;
    letter-spacing: 0.13 em;
    font-weight: 500;
    color: #000;
    padding: 8px 21px;
    height: 45px;
    border-radius:0;
    outline-color: #000;
}

.sf_form_container .checkbox {
    margin-bottom: 20px;
}

.agreements input[type=checkbox],
.sf_form_container .col input[type=checkbox] {
    width: 1.5em;
    height: 1.5em;
    background-color: white;
    border-radius: 50%;
    vertical-align: middle;
    border: 2px solid #ccc;
    outline-color: #000;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    margin-right: 10px;
}

.agreements input[type=checkbox]:checked,
.sf_form_container .col input[type=checkbox]:checked {
    background-color: #000;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    background: #fff;
    background-image: none;
    border: 2px solid #ccc;
    padding: 8px 21px;
    color: #000;
    cursor: pointer;
    font-size: 12px;
    letter-spacing: 0.13em;
    font-weight: 500;
    height: 65px;
    width: 100%;
    outline-color: #000;
}

select option.disabled {
    color: #D3D3D3;
}

.agreements {
    margin-top: 20px;
    padding: 10px;
    text-align: center;
}

.form-table-submit {
    padding: 10px;
    text-align: center;
}

.form-table-submit input[type=submit] {
    display: inline-block;
    font-family: "Gotham Narrow A", "Gotham Narrow B";
    font-weight: bold;
    font-style: normal;
    font-size: 14px;
    letter-spacing: 0.07em;
    color: white;
    background: #666468;
    padding: 16px 35px;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.3s ease all;
    margin: 10px 20px 10px 0px;
    border: 2px solid #666468;
    border-radius: 30px;
    -webkit-box-shadow: 15px 15px 22px 5px rgba(102,100,104, 0.15);
    -moz-box-shadow: 15px 15px 22px 5px rgba(102,100,104, 0.15);
    box-shadow: 15px 15px 22px 5px rgba(102,100,104, 0.15);
    cursor:pointer;
    outline-color: #000;
}

.form-table-submit input[type=submit]:hover {
    background: white;
    color: black;
}

@media screen and (max-width: 580px) {
    .sf_form_container.col-4 .col {
        width: 100%;
        min-width: 190px;
    }
    .sf_form_container.col-3 .col {
        width: 100%;
    }
    .sf_form_container.col-2 .col {
        width: 100%;
    }
}

.sr-only {
    position:absolute;
    left:-10000px;
    top:auto;
    width:1px;
    height:1px;
    overflow:hidden;
}