@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: #f5f5f5;
	background-size: cover;
	color: #33333b;
	font-family: 'Graphik', 'Open Sans', Arial, sans-serif;
	background: url('/img/bg.png') no-repeat top center;
	background-size: cover;
}

.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-bottom: 48px;
	position: relative;
}

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

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

.content {
	position: relative;
}

h1 {
	margin-top: 0;
	font-weight: 600;
	font-size: 32px;
	line-height: 48px;
}

h2 {
	font-weight: 600;
	font-size: 24px;
	line-height: 36px;
	margin-bottom: 24px;
}

h3 {
	font-weight: 500;
	font-size: 28px;
	line-height: 36px;
	margin-top: 0;
}

p {
	font-weight: 400;
	font-size: 16px;
	line-height: 28px;
	margin-top: 0;
	margin-bottom: 4px;
}

.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;
}


.btn--secondary {
	color: #e5322d;
    background-color: #fff;
    outline: 2px solid #e5322d;
    outline-offset: -2px;
    border: none;
}

.btn--secondary:active, .btn--secondary:focus, .btn--secondary:hover {
    background-color: #fff;
    outline: 2px solid #bd060a;
    outline-offset: -2px;
    border: none;
}
.btn--secondary:active {
    color: #161616;
}

.btn.show-sm{
	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) {
	.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: 50%;
		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: 992px) {
	.logos {
		margin-bottom: 72px;
	}
}

@media (min-width: 1100px) {
	h1 {
		margin-top: 0;
		font-weight: 600;
		font-size: 60px;
		line-height: 70px;
	}

	h2 {
		font-weight: 600;
		font-size: 42px;
		line-height: 52px;
		margin-bottom: 24px;
	}
	.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;
	}

	.fields {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}

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

@media (min-width: 1474px) {
	
}

.success {
	padding: 24px;
}
.confirm {
	display: none;
}
.confirm img {
	margin-right: 24px;
	margin-bottom: 24px;
}

.mini {
	font-size: 12px;
	line-height: 16px;
	margin-top: 24px;
}

.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)
}



.server-error {
	background: rgba(255, 106, 88, 0.15);
	border: 1px solid #ff6a58;
	color: #fff;
	border-radius: 6px;
	padding: 10px 12px;
	margin-top: 16px;
	margin-bottom: 0;
	display: none;
}

.server-error.show {
	display: block;
}

.field.position::after,
.field.phone::after {
	background-image: url('/img/teams.svg');
}

.pdf-links {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
	margin-top: 24px;
}

.dwn {
	text-decoration: none;
	padding: 12px 16px;
	background: #FF6A58;
	color: white;
	border-radius: 8px;
	font-weight: 500;
	font-size: 16px;
	line-height: 20px;
}

.dwn:hover{
	background: #e5322d;
}
