*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
.tr-wrap{
	float: left;
	width: 100%;
	height: 100vh;
	background: #000;
	color: #fff;
}
.main-wrapper{
	max-width: 1600px;
	width: 100%;
	height: 100vh;
	margin: auto;
	position: relative;
}
header{
	position: absolute;
	left: 124px;
	right: 82px;
	top: 47px;
}
header .logo{
	float: left;
}
header .head-btn{
	float: right;
	height: 60px;
	padding: 0 32px;
	border: 1px solid #FFF;
	justify-content: center;
	align-items: center;
	display: inline-flex;
	display: inline-flex;
	gap: 4px;
	color: #FAFAFA;
	font-family: 'Inter',sans-serif;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: 100%; /* 20px */
	text-transform: uppercase;
	text-decoration: none;
}

footer{
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	color: #D1D1D1;
	font-family: 'Inter',sans-serif;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	padding: 20px 0 50px 0;
	text-align: center;
}
.wrapper{
	position: absolute;
	top: 125px;
	left: 0;
	right: 82px;
	height: calc(100vh - 215px);
}
.info{
	position: absolute;
	left: 124px;
	top: 50%;
	transform: translateX(0%) translateY(-50%);
}
.info h1{
	color: #FAFAFA;
	font-family: 'Inter',sans-serif;
	font-size: 70px;
	font-style: normal;
	font-weight: 800;
	line-height: 110%; /* 77px */
	margin: 0 0 106px 0;
}
.info a{
	clear: both;
	height: 68px;
	display: inline-flex;
	padding: 20px 32px;
	justify-content: center;
	align-items: center;
	gap: 4px;
	border: 1px solid #FFF;
	color: #FAFAFA;
	font-family: 'Inter',sans-serif;
	font-size: 20px;
	text-decoration: none;
	font-style: normal;
	font-weight: 500;
	line-height: 100%; /* 20px */
	text-transform: uppercase;
}

@media (min-width: 992px) and (max-width: 1199px) {
	.info h1{
		font-size: 62px;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	header{
		left: 50px;
		right: 50px;
	}
	.info{
		left: 50px;
	}
	.info h1{
		font-size: 48px;
		margin-bottom: 63px;
	}
}
@media (min-width: 1px) and (max-width: 767px) {
	header{
		left: 15px;
		right: 15px;
	}
	header .logo img{
		width: 170px;
		height: auto;
		margin-top: 5px;
	}
	header .head-btn{
		height: 42px;
		font-size: 14px;
		padding: 0 15px;
	}
	.wrapper{
		right: 15px;
	}
	.info{
		left: 15px;
	}
	.info h1{
		font-size: 36px;
		margin-bottom: 63px;
	}
	.info h1 br{
		display: none;
	}
	.info a{
		font-size: 16px;
		padding: 16px 28x;
	}
	footer{
		font-size: 14px;
		max-width: 300px;
		margin: auto;
		padding: 20px 0 35px 0;
	}
}