.contect-from {
	width: 100%;
	display: inline-block;
}
.name-field-outer {
	display: flex;
	width: 100%;
	gap: 0 40px;
}
.name-field {
	width: 100%;
	margin-bottom: 20px;
}
.name-field label {
	display: block;
	font-size: 14px;
	padding-bottom: 5px;
	color: var(--black);
	font-family: var(--dmsans);
}
.name-field input {
	width: 100%;
	height: 47px;
	border-radius: 6px;
	border: solid 1px var(--black);
	padding: 0 10px;
	font-family: var(--dmsans);
	font-weight: 400;
	color: var(--black);
	outline: none;
}
.name-field textarea {
	width: 100%;
	border-radius: 6px;
	border: solid 1px var(--black);
	padding: 10px;
	font-family: var(--dmsans);
	font-weight: 400;
	color: var(--black);
	outline: none;
	height: 120px;
	resize: none;
}
.name-field br {
	display: none;
}
.contect-from .wpcf7-list-item {
	margin: 0;
}
.contect-from .wpcf7-submit,
.registration-form .wpcf7-submit {
	font-weight: 700;
	color:var(--white);
	text-align: center;
	font-size: 16px;
	height: 47px;
	background: var(--red);
	border: none;
	cursor: pointer;
	display: inline-block;
	width: 100%;
	max-width: 230px;
	min-width: 230px;
	margin-top: 30px;
	border-radius: 6px;
	font-family: var(--dmsans);
}
.intro-form {
	color: var(--black);
	font-size: 18px;
}
.wpcf7-checkbox input {
	width: 20px;
	height: 20px;
	margin-right: 10px;
	margin-left: 0;
}
.contect-from .wpcf7-list-item label a {
    background: transparent;
    text-decoration: none;
    color: var(--red);
}
.contect-from .wpcf7-list-item input[type="checkbox"] {
	width: 20px;
	height: 20px;
	margin-right: 10px;
	margin-left: 0;
}
/* User registration page */

.registration-form {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
}
.registration-form .name-field {
	width: 48%;
}
.name-field select {
	width: 100%;
	height: 47px;
	border-radius: 6px;
	border: solid 1px var(--black);
	padding: 0 10px;
	font-family: var(--dmsans);
	font-weight: 400;
	color: var(--black);
	outline: none;
	background:var(--white) url(../../images/ico_down.svg) no-repeat;
	background-size: 10px;
	background-position: calc(100% - 20px) center;
	-webkit-appearance: none;
}
.registration-form .checkbox-field {
	width: 100%;
}
.checkbox-field .wpcf7-list-item {
	margin: 0;
}
.checkbox-field .wpcf7-list-item {
	margin: 0;
	width: 100%;
	display: flex;
	align-content: center;
	align-items: center;
}
.checkbox-field label {
	display: flex;
	align-content: center;
	align-items: center;
	gap: 0 15px;
	padding-bottom: 6px;
}
.checkbox-field .wpcf7-checkbox input {
	margin: 0;
}
/* User registration page  End*/

@media (max-width:767px) {
	.name-field-outer {
		flex-wrap: wrap;
	}
	.registration-form .name-field {
		width: 100%;
	}
}