*,
*::before,
*::after {
	box-sizing: border-box;
}

ul[class],
ol[class] {
	padding: 0;
}

a {
	text-decoration: none;
}

body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
	margin: 0;
}

ul,
ol {
	list-style: none;
	padding: 0;
	margin: 0;
}

:root {
	--main-color: #8EBF18;
	--secondary-color: #F29500;
	--secondary-color-hover: #E58D00;
}

img {
	max-width: 100%;
	display: block;
}

body {
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	min-height: 100vh;
	scroll-behavior: smooth;
	text-rendering: optimizeSpeed;
	line-height: 1.5;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("../img/background.png") no-repeat center center;
	background-size: cover;
}

.container {
	max-width: 1260px;
	margin: 0 auto;
	padding: 0 30px;
}

.broker__main {
	padding-top: 90px;
	padding-bottom: 30px;
}

.broker__main--wrap {
	width: 50%;
	margin-left: auto;
}

.broker__main--logo {
	display: block;
	width: 100%;
	margin-bottom: 40px;
}

.broker__main--text {
	background: var(--main-color);
	padding: 20px 30px;
	opacity: 0.8;
	margin-bottom: 30px;
}

.broker__main--text h1{
	max-width: 510px;
	font-weight: bold;
	font-size: 34px;
	line-height: 120%;
	color: #fff;
}

.broker__main--steps {
	padding-left: 20px;
	margin-bottom: 30px;
}

.broker__main--steps p {
	font-weight: bold;
	font-size: 22px;
	line-height: 120%;
	color: #fff;
	margin-bottom: 15px;
}

.broker__main--steps li {
	font-size: 20px;
	line-height: 150%;
	color: #fff;
	padding-left: 45px;
	position: relative;
}

.broker__main--steps li + li {
	margin-top: 15px;
}

.broker__main--steps li span {
	position: absolute;
	left: 0;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--main-color);
	font-weight: bold;
	line-height: 100%;
}

.broker__main--form {
	padding: 30px;
	background: #fff;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.broker__main--form h2	{
	color: #333333;
	font-weight: bold;
	font-size: 26px;
	line-height: 110%;
	margin-bottom: 15px;
}

.broker__main--form p {
	color: #666666;
	font-size: 16px;
	line-height: 150%;
	margin-bottom: 20px;
}

.broker__form--contacts {
	/* display: flex; */
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
}

.broker__form--contacts input {
	width: calc(50% - 7px);
	padding: 15px;
	background: #F1F1F1;
	outline: none;
	border: 1px solid transparent;
	color: #666;
}


.broker__form--contacts input::placeholder {
	color: #666666;
	opacity: 0.6;
	font-size: 16px;
	line-height: 20px;

}

.broker__form--contacts input:focus {
	border: 1px solid var(--secondary-color);
}

.broker__form input[type='submit'] {
	width: 100%;
	color: #fff;
	padding: 15px 0;
	background: var(--secondary-color);
	font-size: 18px;
	line-height: 22px;
	font-weight: bold;
	outline: none;
	border: none;
	cursor: pointer;
}

.broker__form button:hover {
	background: var(--secondary-color-hover);
}

.broker__form--contacts button:focus {
	border: 1px solid var(--secondary-color);
}

.broker__form button {
	width: 100%;
	color: #fff;
	padding: 15px 0;
	background: var(--secondary-color);
	font-size: 18px;
	line-height: 22px;
	font-weight: bold;
	outline: none;
	border: none;
	cursor: pointer;
}

.broker__form button:hover {
	background: var(--secondary-color-hover);
}

@media (max-width: 1400px) {
	.broker__main--logo {
		width: 220px;
	}
	.broker__main--logo {
		margin-bottom: 20px;
	}
	.broker__main--text h1 {
		font-size: 20px;
	}
	.broker__main--steps p {
		font-size: 18px;
	}
	.broker__main--steps li {
		font-size: 16px;
	}
	.broker__main--form h2 {
		font-size: 20px;
	}
	.broker__form--contacts input {
		padding: 10px;
	}
	.broker__form input[type='submit'] {
		padding: 10px;
	}
	.broker__main--form p {
		margin-bottom: 15px;
	}
	.broker__form--contacts input::placeholder {
		font-size: 12px;
	}
}

@media (max-width: 992px) {
	.broker__main--wrap {
		width: 100%;
		margin: 0;
	}
	.broker__main--logo {
		margin: 0 auto 20px;
	}
	body {
		background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6)), url("../img/background-mob.png") no-repeat center center;
		background-size: cover;
	}
	.broker__main--wrap.mob {
		padding: 0 30px;
	}
	.broker__main--text {
		opacity: 1;
	}
	.broker__main--text h1{
		text-align: center;
		max-width: 100%;
	}
}

@media (max-width: 575px) {
	.container,
	.broker__main--wrap.mob{
		padding: 0 15px;
	}
	.broker__main {
		padding-top: 30px;
	}
	.broker__main--logo {
		width: 175px;
		margin: 0 0 20px 0;
	}
	.broker__main--text {
		padding: 10px 20px;
	}
	.broker__main--text h1 {
		font-size: 16px;
		text-align: left;
	}
	.broker__main--steps p {
		font-size: 14px;
	}
	.broker__main--steps li {
		font-size: 12px;
	}
	.broker__main--steps li span {
		width: 20px;
		height: 20px;
	}
	.broker__main--steps li {
		padding-left: 35px;
	}
	.broker__main--form {
		padding: 20px;
	}
	.broker__main--form h2 {
		font-size: 14px;
		margin-bottom: 10px;
	}
	.broker__main--form p {
		font-size: 12px;
	}
	.broker__form--contacts {
		flex-direction: column-reverse;
		margin-bottom: 10px;
	}
	.broker__form--contacts input {
		width: 100%;
	}
	.broker__form--contacts input + input {
		margin-top: 10px;
	}
	.broker__form input[type='submit'] {
		font-size: 13px;
	}
}