.contacts-form {
	background-color: #FFF;
	padding: 65px 0 75px;
}
.contacts-form__inner {
	max-width: 380px;
	margin: auto;
}
.contacts-form__title {
	font: 33px/53px 'montserratsemibold', Arial, sans-serif;
	margin: 0 0 45px;
    text-transform: uppercase;
    text-align: center;
}
.contacts-form__line {
    border-bottom: 1px solid #C7C7C7;
    margin: 0 0 35px;
    position: relative;
}
.contacts-form__line:before {
    background-color: #C7C7C7;
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 5px;
    width: 1px;
}
.contacts-form__line:after {
    background-color: #C7C7C7;
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    height: 5px;
    width: 1px;
}
.contacts-form__input {
    font-size: 14px;
    height: 40px;
    width: 100%;
    border: none;
	padding: 0 5px;
    box-shadow: none;
    border-radius: 0;
    color: #000;
}
.contacts-form__checkbox {
    margin: 15px 0 0;
    display: flex;
    position: relative;
    align-items: center;
    cursor: pointer;
}
.contacts-form__checkbox-input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
.contacts-form__checkbox-input:checked + .contacts-form__checkbox-icon {
	background: url(img/check.svg) no-repeat center;
}
.contacts-form__checkbox-icon {
    height: 19px;
    width: 19px;
    border: 2px solid #E7DFE4;
    border-radius: 3px;
}
.contacts-form__checkbox-label {
    margin: 0 0 0 10px;
    cursor: pointer;
}

@media (max-width: 575px)
{
	.contacts-form {
		padding: 35px 15px 45px;
		margin: 0 -15px;
	}
	.contacts-form__title {
		font-size: 22px;
		line-height: 34px;
		margin: 0 auto 25px;
		max-width: 200px;
	}
}