@font-face {
	font-family: 'Graphik';
	src: url('/font/GraphikWeb-Regular.woff2') format('woff2'),
		url('/font/GraphikWeb-Regular.woff') format('woff');
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: 'Graphik';
	src: url('/font/GraphikWeb-Medium.woff2') format('woff2'),
		url('/font/GraphikWeb-Medium.woff') format('woff');
	font-weight: 500;
	font-style: normal;
}

@font-face {
	font-family: 'Graphik';
	src: url('/font/GraphikWeb-Semibold.woff2') format('woff2'),
		url('/font/GraphikWeb-Semibold.woff') format('woff');
	font-weight: 600;
	font-style: normal;
}

body {
	background: #292931;
	background-size: cover;
	color: #f5f5fa;
	font-family: 'Graphik', 'Open Sans', Arial, sans-serif;
	background-image: url('/img/bg.svg');
	background-repeat: no-repeat;
	background-position: top left;
}

.main {
	padding: 32px 24px 0;
	position: relative;
	overflow: hidden;
}

.content>div:first-child {
	padding-bottom: 32px
}

ul {
	list-style: none;
	padding: 0;
}

.logos {
	display: flex;
	margin-top: 48px;
	margin-bottom: 48px;
	position: relative;
	height: 65px;
}

.logos li {
	display: flex;
	align-items: center;
}

.logos li:first-child {
	padding-right: 32px;
	margin-right: 32px;
	border-right: 1px solid #5C5C64;
}

.content {
	position: relative;
}

h1 {
	margin-top: 0;
	font-weight: 600;
	font-size: 60px;
	line-height: 70px;
	letter-spacing: 0px;
}

h2 {
	font-weight: 500;
	font-size: 28px;
	line-height: 32px;
	letter-spacing: 0px;
	margin-bottom: 24px;
}

h3 {
	font-weight: 600;
	font-size: 20px;
	line-height: 28px;
	letter-spacing: 0px;

	margin-top: 0;
}

h4 {
	font-weight: 400;
	font-size: 20px;
	line-height: 28px;
	letter-spacing: 0px;
	margin-top: 0;
}

hr {
	border: 1px solid #5C5C64;
	margin: 24px 0;
}

p {
	font-weight: 400;
	font-size: 18px;
	line-height: 32px;
	letter-spacing: 0px;
	margin-top: 0;
	margin-bottom: 4px;
	color: #F5F5FA;
}

.small {
	font-weight: 400;
	font-size: 16px;
	line-height: 28px;
}

strong {
	font-weight: 500;
	font-size: 20px;
	line-height: 28px;
}

label {
	display: block;
}

.hide-sm {
	display: none;
}

.form {
	margin-top: 42px;
	padding: 32px 24px 48px;
	background: #33333b;
	box-shadow: 0px 5px 45px rgba(0, 0, 0, 0.55);
	border-radius: 8px;
	color: white;
}

form {
	margin-top: 32px;
}

.field {
	position: relative;
}

.field::after {
	content: '';
	position: absolute;
	width: 36px;
	height: 36px;
	top: 32px;
	left: 2px;
	background-repeat: no-repeat;
	background-position: center center;
}

label {
	font-weight: 500;
	font-size: 16px;
	line-height: 20px;
	margin-bottom: 8px;
}

input,
select {
	height: 44px;
	/* Neutrals / $White */

	background: #ffffff;
	/* Neutrals/$Grey-8 */

	border: 1px solid #707078;
	border-radius: 4px;
	width: 100%;
	display: block;
	margin-bottom: 24px;

	padding: 0 16px 0 36px;
	box-sizing: border-box;
	position: relative;
	-webkit-appearance: initial;
}

input::placeholder,
textarea::placeholder {
	opacity: 0.8;
	color: #9999a2;
}

input.error,
textarea.error {
	border: 1px solid #ff6a58;
	color: #ff6a58;
}

input.error::placeholder,
textarea.error::placeholder {
	color: #ff6a58;
}

textarea {
	padding: 0 16px 0 36px;
	box-sizing: border-box;
	border: 1px solid #707078;
	border-radius: 4px;
	min-height: 100px;
	width: 100%;
	padding: 12px;
}

.action {
	margin-top: 8px;
}

.btn {
	width: 100%;
	height: 48px;
	border: 0;
	background: #FF6A58;
	border-radius: 8px;
	color: white;
	font-weight: 500;
	font-size: 16px;
	line-height: 20px;
	cursor: pointer;
}

.btn:hover {
	background: #e5322d;
}

.btn:active {
	background: #ff6a58;
}

button[type="submit"] {
	margin-top: 24px;
}



@media (min-width: 410px) {
	.main {
		padding: 48px 48px;
	}

	.content>div:first-child {
		margin-bottom: -48px
	}

	h1 {
		font-size: 38px;
		line-height: 56px;
	}

	h2 {
		font-size: 28px;
		line-height: 40px;
	}

	p {
		font-size: 20px;
		line-height: 32px;
	}

	.form {
		padding: 48px 32px 48px;
	}
}

@media (min-width: 600px) and (max-width: 992px) {
	.fields {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}

	.field {
		width: calc(50% - 16px);
	}
}


@media (min-width: 850px) {
	.bg {
		display: block;
	}

	.content {
		display: flex;
	}

	.content>div:first-child {
		width: 60%;
		padding-right: 32px;
	}

	.content>div:last-child {
		width: 40%;
		margin-left: 32px;
	}

	.form {
		margin-top: 0;
	}

	.hide-sm {
		display: initial;
	}

	.show-sm {
		display: none;
	}

	.fields {
		display: block;
	}

	.field {
		width: 100%;
	}
}

@media (min-width: 1520px) {
	.fields {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}

	.field {
		width: calc(50% - 16px);
	}
}


@media (min-width: 992px) {
	.logos {
		margin-bottom: 72px;
	}
}

@media (min-width: 1100px) {

h1 {
	margin-top: 0;
	font-weight: 600;
	font-size: 60px;
	line-height: 70px;
	letter-spacing: 0px;
}

h2 {
	margin-top: 0;
	font-weight: 500;
	font-size: 28px;
	line-height: 32px;
	letter-spacing: 0px;
	margin-bottom: 24px;
}

h3 {
	font-weight: 600;
	font-size: 20px;
	line-height: 28px;
	letter-spacing: 0px;

	margin-top: 0;
}

h4 {
	font-weight: 400;
	font-size: 20px;
	line-height: 28px;
	letter-spacing: 0px;
	margin-top: 0;
}

	.main {
		padding: 100px 96px;
	}

	.content>div:first-child {
		margin-bottom: -100px
	}
}

@media (min-width: 1366px) {
	.main {
		padding: 124px 124px;
	}

	.content>div:first-child {
		margin-bottom: -124px
	}

	.logos {
		margin-bottom: 96px;
	}
}


.success {
	padding: 24px;
}

.confirm {
	display: none;
}

.confirm img {
	margin-right: 24px;
	margin-bottom: 24px;
}

.mini {
	margin-top: 32px;
	font-weight: 400;
	font-size: 12px;
	line-height: 18px;
	letter-spacing: 0px;
	color: #ADADB6
}

.show {
	display: block;
}

input,
select {
	background-repeat: no-repeat;
	background-position: 12px 50%;
}

.city {
	display: none;
}

.field.name::after {
	background-image: url('/img/user.svg');
}

.field.email::after {
	background-image: url('/img/email.svg');
}

.field.company::after {
	background-image: url('/img/company.svg');
}

.field.country::after {
	background-image: url('/img/country.svg');
}

.field.team::after {
	background-image: url('/img/teams.svg');
	text-indent: 32px;
	padding-left: 0;
}

textarea {
	resize: none;
}

.notfound {
	padding: 48px;
	max-width: 500px;
	margin: auto;
	text-align: center;
}

.notfound img {
	max-width: 300px;
	height: auto;
}

.iti {
	width: 100%;
	margin-bottom: 24px;
}

.iti__country-list .iti__flag,
.iti__country-name {
	color: rgba(0, 0, 0, 0.55)
}