*,
*:before,
*:after,
input[type="search"] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    position: relative;
    max-width: 100%;
    width: 100%;
    height: 100%;
    -webkit-font-smoothing: antialiased !important;
    font-family: Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    min-width: 320px;
    max-width: 100%;
    position: relative;
    min-height: 100%;
    overflow-x: hidden;
    background: #fff;
    color: #000;
    height: 100%;
}

a, img {
    outline: none;
}

img, svg {
    max-width: 100%;
    vertical-align: top;
    border: none;
}

a:focus,
a:active,
a:hover {
    text-decoration: none;
}


.region {
    max-width: 1020px;
    margin: 0 auto;
    padding: 30px 10px 60px;
}

.note {
    font-size: .8em;
    color: #6e7277;
}

.form {
    margin-top: 20px;
}

.form > p {
    font-weight: bold;
}

.form__row {
    margin-top: 10px;
}

.form__row:first-child {
    margin-top: 0;
}

.form label {
    cursor: pointer;
}

.form fieldset {
    border: none;
    margin-top: 20px;
    padding: 0;
}

.form fieldset:first-child {
    margin-top: 0;
}

.form__input {
    width: 100%;
    max-width: 500px;
    height: 40px;
    padding: 0 10px;
}

textarea.form__input {
    height: 100px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.form__submit {
    margin-top: 30px;
}

.button {
    display: inline-block;
    vertical-align: top;
    font-size: 15px;
    line-height: 15px;
    color: #000;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    padding: 15px 20px;
    background: #EFC127;
    border-radius: 3px;
    box-shadow: none;
    border: none;
    cursor: pointer;
    width: 100%;
    max-width: 300px;
}

.button:hover {
    background-color: #D5AB1F;
}

@media (max-width: 639px) {
    .button {
        max-width: 100%;
    }
}