*,::before,::after
{
    box-sizing:border-box
}
/*Fonts*/
@font-face {
    font-family: 'Montserrat-Medium';
    src: local("Montserrat-Medium"), url('/f/fonts/montserrat-medium.woff2') format("woff2");
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Montserrat-SemiBold';
    src: local("Montserrat-SemiBold"), url('/f/fonts/montserrat-semibold.woff2') format("woff2");
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'Montserrat-Bold';
    src: local("Montserrat-Bold"), url('/f/fonts/montserrat-bold.woff2') format("woff2");
    font-weight: 700;
    font-style: normal;
}
body {
    font-family: 'Montserrat-Medium';
    color: #00152e;
    background-image: url('/f/img/wrapper.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-color: #464646;
    margin: 0;
}
a {
    text-decoration: none;
    color: #00152e;
}
input:focus {
    outline: none;
    color: #00152e;
}
input::-webkit-input-placeholder {
    color: #00152e;
}
.content {
    padding: 60px 0 0 240px;
    max-width: 720px;
}
.content__header {
    display: flex;
    align-items: center;
}
.phone {
    font-size: 30px;
    line-height: 24px;
    font-family: 'Montserrat-Bold';
    margin-left: 40px;
    white-space: nowrap;
    margin-bottom: 5px;
}
.phone:hover {
    text-decoration: underline;
}
.title {
    font-size: 72px;
    /* line-height: 60px; */
    font-family: 'Montserrat-SemiBold';
    margin-top: 75px;
}
.subtitle {
    font-size: 36px;
    /* line-height: 60px; */
    font-family: 'Montserrat-SemiBold';
}

.form {
    background-color: #e9322f;
    border-radius: 5px;
    width: 650px; 
    margin-top: 35px;
    padding: 30px 55px 50px;
}  
.message {
    color: #fff;
    text-align: center;
}
@media (max-width: 1700px) {
    .content {
        padding: 55px 0 0 150px;
    }
}
@media (max-width: 1500px) {
    .content {
        padding: 55px 0 0 100px;
    }
}
@media (max-width: 1240px) {
    .content {
        padding: 55px 0 0 50px;
    }
    body {
        background-position: left;
    }
}
@media (max-width: 768px) {
    .content {
        padding: 55px 0 0 0;
        max-width: none;
    }
    .content__header {
        justify-content: space-between;
    }
    .content__inner {
        padding: 0 15px;
    }
    .form {
        width: 100vw;
    }
    .smFormContent .input input {
        width: 95%;
    }
    .smFormContent .button button {
        width: 48%;
    }
    .title {
        font-size: 65px;
    }
    .smFormContent .input {
        width: 50%;
    }
}
@media (max-width: 682px) {
    .smFormContent .input input {
        width: 100%;
    }
    .smFormContent .input {
        width: 100%;
    }
    .smFormContent .leftColumn {
        display: block;
    }
    .smFormContent .button button {
        width: 100%;
    }
    .smFormContent .twoColumns {
        flex-wrap: wrap;
    }
    .form {
        padding: 40px 55px;
    }
    .title {
        font-size: 50px;
        margin-top: 40px;
    }
    .subtitle {
        font-size: 26px;
    }
    .content{
        padding: 25px 0;
    }
    .content__header {
        flex-wrap: wrap;
        justify-content: center;
    }
    .content__inner {
        text-align: center;
    }
    .phone {
        width: 100%;
        margin-left: 0;
        font-size: 22px;
    }
}
@media (max-width: 450px) {
    .title {
        font-size: 36px;
    }
    .subtitle {
        font-size: 22px;
    }
    .form {
        padding: 0 20px 15px;
    }
    .smFormContent .button button {
        font-size: 16px;
        padding: 15px 25px;
    }    
    .smFormContent .input input,
    .smFormContent .input textarea,
    .smFormContent .input select {
        margin-bottom: 15px;
        font-size: 16px;
        height: 55px;
    }
}