.fields {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

#form-request-help, #form-help-others {
	width: 90%;
	margin: 0 auto;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 0 7px rgb(0 0 0 / 25%);
	padding: 25px 40px 40px 40px;
	margin-top: 45px;
}

.fields input {
	width: 49%;
}

.fields input.full {
	width: 100%;
}

input, .select-name, textarea {
	position: relative;
	width: 49%;
	height: 50px;
	font-size: 14px;
	color: #807e7e;
	border: 1px solid #72bec2;
	border-radius: 5px;
	padding: 0 10px 0 20px;
	margin-top: 15px;
}

input:placeholder, textarea::placeholder {
	color: #807e7e;
}

textarea {
	font-family: Helveticaneuecyr-Roman;
	width: 100%;
	height: auto;
	min-height: 200px;
	line-height: 1.7;
	padding: 15px 20px;
}

#myEl3 {
	height: 50px;
	max-height: 50px;
}

textarea.smallarea {
	min-height: 50px;
}

.select {
	position: relative;
	width: 49%;
	cursor: pointer;
	margin-top: 15px;
}

.select-name {
	display: flex;
	align-items: center;
	width: 100%;
	line-height: 1.4;
}

.select-name:after {
    content: url(../img/arrow-list.png);
    position: absolute;
    right: 15px;
    top: 15px;
    transition: .2s;
}
.select-list {
    display: none;
    position: absolute;
    top: 93%;
    width: 100%;
    z-index: 500;
    background: #497375;
    border-top: 1px solid #497375;
    border-bottom: 1px solid #005e9f;
    padding-top: 0;
    padding-bottom: 0;
}

.ztl {
  z-index: 100;
}

.select-list li {
    font-family: Helveticaneuecyr-Light;
    font-size: 15px;
    font-weight: 100;
    color: #fff;
    height: 40px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    border-left: 1px solid #497375;
    border-right: 1px solid #497375;
    padding: 0 20px;
    text-transform: capitalize;
    cursor: pointer;
}

.select-list li:hover {
	background: #f59b33;
}

.select-list li:before {
	display: none;
}

.selh .select-list {
	position: absolute !important;
	height: 322px;
	max-height: 322px;
}
.simplebar-scrollbar::before{
  background-color: red;
}

input[type="submit"] {
	height: auto;
	width: auto;
	position: relative;
    font-family: 'helveticaneuecyr-bold';
    font-size: 25px;
    color: #fff;
    background: #f59b33;
    padding: 20px 50px;
    border: 0;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    margin-top: 25px;
}

input[type="submit"]:hover {
	background: #497375;
}

.apply-block section {
	display: none;
}

@media (max-width: 576px) {
	input[type="submit"] {font-size: 20px;}
}

@media (max-width: 960px) {
    form {width: 100%;}
}

@media (max-width: 768px) {
	.fields input, .select {width: 100%;}
	form {padding: 25px 20px 40px 20px;}
	.select-name {
		height: auto;
		padding: 10px 20px;
	}
	input[type="submit"] {padding: 20px 10px;}
}