/* my_presets */

.main-form input.field:focus::-webkit-input-placeholder {
    opacity: 0;
}

.main-form input.field:focus::-moz-placeholder {
    opacity: 0;
}

.main-form input.field:focus:-moz-placeholder {
    opacity: 0;
}

.main-form input.field:focus:-ms-input-placeholder {
    opacity: 0;
}

.main-form input.field::-webkit-input-placeholder {
    color: #222;
    opacity: 1;
}

.main-form input.field:-moz-placeholder {
    color: #222;
    opacity: 1;
}

.main-form input.field::-moz-placeholder {
    color: #222;
    opacity: 1;
}

.main-form input.field:-ms-input-placeholder {
    color: #222;
    opacity: 1;
}

.hidden {
    display: none;
}

.left {
    float: left;
}

.right {
    float: right;
}

.center {
    text-align: center;
}

.just {
    text-align: justify;
    -moz-text-align-last: center;
    text-align-last: center;
}

.clearfix:after {
    content: '';
    display: block;
    clear: both;
}

.clear {
    clear: both;
    height: 0px;
}

.ulfix {
    font-size: 0;
}

/* END my_presets */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.3em;
}

b,
strong {
    font-weight: 700;
}

body {
    width: 100%;
    min-width: 320px;
    padding: 0px;
    margin: 0px auto;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5em;
    color: #00111d;
    background: #fff;
}

section {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 60px 0;
}

.wrap {
    width: 980px;
    padding: 0px 10px;
    margin: 0 auto;
    height: 100%;
    position: relative;
}

.wrap:after {
    clear: both;
    content: "";
    display: table;
}

.nopad {
    padding: 0;
}

h2.title {
    font-size: 30px;
}

video.video {
    display: block;
    width: 100%;
    height: auto;
}

.mainform-body__field {
    position: relative;
    display: block;
    outline: 0;
    border: none;
    border-radius: 38px;
    -webkit-border-radius: 38px;
    width: 100%;
    height: 76px;
    line-height: 76px;
    margin: 0 auto 15px;
    padding: 0 20px;
    background: #fff;
    text-align: center;
    font-size: 20px;
    font-family: 'Montserrat', Helvetica, sans-serif;
    font-weight: 400;
    color: #00111d;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    -ms-transition: all 0.2s;
    transition: all 0.2s;
}

.mainform-body__btn {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    height: 76px;
    line-height: 76px;
    margin: 0 auto;
    border: none;
    border-radius: 38px;
    -webkit-border-radius: 38px;
    text-align: center;
    font-family: 'Montserrat', Helvetica, sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    color: #fff;
    background: #e2151f;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    -ms-transition: all 0.2s;
    transition: all 0.2s;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.mainform-body__btn:hover {}

.mainform-body__btn:active {
    top: -1px;
}

.mainform-body {
    width: 100%;
    margin: 0;
}

.button {
    position: relative;
    z-index: 2;
    display: block;
    width: 250px;
    height: 54px;
    line-height: 54px;
    margin: 0 auto;
    border: none;
    border-radius: 27px;
    -webkit-border-radius: 27px;
    text-align: center;
    font-family: 'Montserrat', Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    color: #fff;
    background: #e2151f;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    -ms-transition: all 0.2s;
    transition: all 0.2s;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.button:hover {}

.button:active {
    top: -1px;
}

.autoink {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.ink {
    display: block;
    position: absolute;
    background: rgba(255, 255, 255, 1.0);
    border-radius: 100%;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    z-index: 20;
}

.animate {
    webkit-animation: ripple 3s linear infinite;
    -moz-animation: ripple 3s linear infinite;
    -ms-animation: ripple 3s linear infinite;
    -o-animation: ripple 3s linear infinite;
    animation: ripple 3s linear infinite;
}

@keyframes ripple {
    20% {
        opacity: 0;
        transform: scale(2.5);
    }
    100% {
        opacity: 0;
        transform: scale(2.5);
    }
}

@media screen and (max-width: 979px) {
    .wrap {
        width: 640px;
    }
}

@media screen and (max-width: 639px) {
    .wrap {
        width: 480px;
    }
}