* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Open Sans;
}

*:focus {
    outline: none !important;
}

ul {
    list-style: none;
}

a,
a:hover {
    text-decoration: none;
    transition-duration: .3s;
}

a:hover {
    transition-duration: .3s;
}

::placeholder {
    color: rgb(163, 163, 163);
}

.container {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 1070px;
    margin: 0 auto;
}

.btn {
    background: rgb(69, 110, 132);
    line-height: normal;
    font-size: 14px;
    font-weight: normal;
    text-align: center;
    color: #FFFFFF;
    transition-duration: .3s;
    cursor: pointer;
    padding: 0;
    border: none;
    border-radius: 0;
}

.home {
    padding-top: 136px;
    padding-bottom: 175px;
    background-image: url(../img/bg-home.jpg);
    -webkit-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
}

.home-title {
    font-style: normal;
    font-weight: bold;
    line-height: normal;
    font-size: 60px;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 30px;
}

.home-select-wrapp {
    display: block;
    width: 100%;
    height: 40px;
    margin: 0 auto;
    text-align: center;
}

.home-select {
    display: inline-block;
    width: 88%;
    height: 100%;
    background: #FFFFFF;
    border-radius: 0;
}

.home-btn {
    display: inline-block;
    width: 11%;
    height: 100%;
    font-style: normal;
    font-weight: bold;
    line-height: normal;
    font-size: 13px;
    text-transform: uppercase;
    color: #FFFFFF;
    background: #E9BE49;
    border: none;
    margin-left: -5px;
}

.form-title {
    font-style: normal;
    font-weight: bold;
    line-height: normal;
    font-size: 30px;
    color: #54656F;
    margin-bottom: 20px;
}

.form-wrapp {
    width: 100%;
    min-height: 588px;
    margin: 0 auto;
    background: #F7F7F7;
    padding: 40px;
}

.input-wrapp:last-child {
    margin-bottom: 40px;
}

.input-descr {
    display: inline-block;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    font-size: 16px;
    color: #54656F;
    margin: 0 0 10px 0;
    padding-top: 20px;
}

.input-descr span {
    color: red;
}

.input-form-wrapp {
    width: 100%;
    height: 40px;
    float: right;
}

.input-form {
    width: 100%;
    height: 100%;
    padding-left: 20px;
    line-height: 41px;
    border: 1px solid #BBBBBB;
    border-radius: 0;
    box-sizing: border-box;
    font-family: Arial;
    line-height: normal;
    font-size: 16px;
    color: #262626;
    -webkit-box-shadow: 0;
    -moz-box-shadow: 0;
    box-shadow: 0;
}

textarea {
    width: 100%;
    height: 150px;
    padding-top: 10px;
    padding-left: 20px;
    line-height: 41px;
    border: 1px solid #BBBBBB;
    border-radius: 0;
    box-sizing: border-box;
    line-height: normal;
    font-size: 16px;
    color: #262626;
    -webkit-box-shadow: 0;
    -moz-box-shadow: 0;
    box-shadow: 0;
    float: right;
    resize: none;
    margin-bottom: 24px;
}

.input-form-wrapp.error .input-form {
    border: 1px solid #E02A2A;
}

.input-form-wrapp.error {
    position: relative;
}

.input-form-wrapp.error:before {
    content: 'Поле является обязательным для заполнения';
    position: absolute;
    bottom: -15px;
    left: 0;
    font-family: Arial;
    line-height: normal;
    font-size: 12px;
    color: #E02A2A;
}

.submit-btn {
    border-radius: 0;
    width: 180px;
    height: 40px;
}

#info {
    padding-top: 40px;
    padding-bottom: 40px;
}

#map {
    padding-top: 40px;
}

.info {
    font-size: 14px;
    font-weight: normal;
}

@media (max-width: 620px) {
    .home-title {
        font-size: 30px;
    }

    .home-btn {
        width: 25%;
    }

    .home-select {
        width: 75%;
    }
}

@media (max-width: 400px) {
    .home-title,
    .form-title {
        font-size: 20px;
    }
}