/* form question wrapper */
.index-form {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 50px 60px 30px;
	border-radius: 5px;
	background: linear-gradient(275.41deg, #A6CCD4 0.29%, #DDF0F0 50.06%);
	margin-bottom: 50px;
	gap: 30px;
	position: relative;
}
@media screen and (max-width: 992px) {
	.index-form {
		padding: 25px 20px 25px;
	}
}
.index-form__left {
	flex:1 0 36%;
}
.index-form__right {
	flex:1 0 60%;
}
.index-form__title {
	margin-bottom: 26px;
	font-family: inherit;
	font-weight: 700;
	font-size: 32px;
	color: #093E60;
}
.index-form__text {
	font-size: 20px;
	line-height: 25px;
}
@media screen and (max-width: 992px) {
	.index-form__title {
		font-size: 22px;
	}
	.index-form__text {
		font-size: 18px;
	}
	.index-form__img {
		position: absolute;
		top: 0px;
		right: 15px;
	}
	.index-form__img img {
		width: 90px;
	}
}

.form-error-text{
	margin-bottom: 15px;
    color: red;
}


/* question form */
.n-form .form-row input,
.n-form textarea {
	padding: 0 20px;
	width: 100%;
	height: 50px;
	border-radius: 5px;
	box-sizing: border-box;
	font-size: 16px;
	border: 0;
}
.n-form textarea {
	resize: vertical;
	min-height: 60px;
	padding: 20px;
}
.n-form .input.invalid {
	border: 2px solid #ff0f0f;
}
.n-form .checkbox {
	position: relative;
	display: flex;
	align-items: center;
	cursor: pointer;
}
.n-form .checkbox__input {
	display: none;
}
.n-form .checkbox__label {
	margin-left: 10px;
}
.n-form .checkbox__emulator {
	position: relative;
	width: 25px;
	min-width: 25px;
	height: 25px;
	line-height: 16px;
	text-align: center;
	z-index: 1;
	background-color: white;
	border: 2px solid transparent;
}
.n-form .checkbox__input:checked + .checkbox__emulator:after {
	display: block;
}
.n-form .checkbox__input.invalid + .checkbox__emulator {
	border: 2px solid #ff0f0f;
}
.n-form .checkbox__emulator:after {
	content: "";
	display: none;
	position: absolute;
	top: 4px;
	left: 4px;
	transform: rotate(-45deg);
	width: 12px;
	height: 6px;
	border-left: 2px solid #152582;
	border-bottom: 2px solid #152582;
}
.n-form .button {
	appearance: none;
	background: rgba(9, 62, 96, 1);
	border: 2px solid transparent;
	color: white;
	padding: 14px 18px;
	font-size: 16px;
	font-weight: 400;
	border-radius: 5px;
	width: 100%;
	cursor: pointer;
	transition: color 0.2s linear, background-color 0.2s linear, border-color 0.2s linear;
}
.n-form .button:hover {
	color: rgba(9, 62, 96, 1);
	background: white;
	border: 2px solid rgba(9, 62, 96, 1);
}
.n-form .form-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 20px;
	gap: 20px;
}
.n-form .form-col {
	flex:1 0 100%;
}
.n-form .form-col-2 {
	flex:1 0 44%;
}
.n-form .form-col-3 {
	flex:1 0 31%;
}
@media screen and (max-width: 992px) {
	.n-form .form-row {
		flex-direction: column;
	}
}