@font-face {
    font-family: 'InterBold';
    src: url('../fonts/InterBold.eot');
    src: url('../fonts/InterBold.eot') format('embedded-opentype'),
         url('../fonts/InterBold.woff2') format('woff2'),
         url('../fonts/InterBold.woff') format('woff'),
         url('../fonts/InterBold.ttf') format('truetype'),
         url('../fonts/InterBold.svg#InterBold') format('svg');
}
@font-face {
    font-family: 'InterRegular';
    src: url('../fonts/InterRegular.eot');
    src: url('../fonts/InterRegular.eot') format('embedded-opentype'),
         url('../fonts/InterRegular.woff2') format('woff2'),
         url('../fonts/InterRegular.woff') format('woff'),
         url('../fonts/InterRegular.ttf') format('truetype'),
         url('../fonts/InterRegular.svg#InterRegular') format('svg');
}

body{
	padding: 0;
	margin: 0;
}
html{
	font-size: 62.5%;
}
.page-wrap{
	background-color: #141414;
	padding: 46px;
	min-height: 100vh;
  	overflow: hidden;
}
.main-block{
	background-color: #1c1c1c;
	border-radius: 10px;
	min-height: calc(100vh - 92px);
	padding: 20px 100px;
	display: flex;
    flex-direction: column;
    justify-content: center;
}
.main-block .logo{
	width: 310px;
	margin: 0 auto;
  	display: table;
}
.info-block{
	padding: 20px 0;
	max-width: 1436px;
    margin: 0 auto;
    width: 100%;
}
.info-block-icon{
	margin-bottom: 20px;
	position: relative;
	text-align: center;
}
.info-block-icon::before{
	position: absolute;
	top: 50%;
	content: '';
	transform: translateY(-50%);
	left: 0;
	width: 100%;
	height: 1px;
	background-color: rgba(255, 255, 255, 0.2);
}
.info-block-icon span{
	display: inline-block;
	background-color: #1c1c1c;
	position: relative;
	padding: 0 46px;
}
.info-block p{
	font-family: 'InterRegular';
	font-size: 2rem;
	line-height: 28px;
	color: #fff;
	letter-spacing: normal;
	text-align: center;
	max-width: 709px;
	margin: 0 auto;
}
.info-block p strong{
	font-weight: normal;
	font-family: 'InterBold';
}
.info-block p em{
	font-style: normal;
	color: #FF4E06;
	font-family: 'InterBold';
}
.info-block p:not(:last-child){
	margin-bottom: 16px;
}
.card-wrap{
	display: flex;
	flex-wrap: wrap;
	row-gap: 10px;
	max-width: 1436px;
    margin: 0 auto;
}
.each-card{
	background-color: rgba(255, 255, 255, 0.1);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
	border-radius: 10px;
	padding: 20px 33px;
	width: calc(50% - 5px);
	margin-right: 5px;
}
.each-card:nth-child(even){
	margin-right: 0;
	margin-left: 5px;
}
.each-card ul{
	display: flex;
	align-items: center;
	gap: 30px;
	padding: 0;
	margin: 0;
	list-style-type: none;
}
.each-card li span{
	width: 112px;
	height: 112px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
	background-color: #fff;
}
.each-card li h6{
	font-family: 'InterBold';
	font-size: 1.8rem;
	line-height: 28px;
	letter-spacing: normal;
	color: #fff;
	max-width: 450px;
	margin-bottom: 13px;
}
.each-card:nth-child(3) li h6{
	max-width: 485px;
}
.each-card tr{
	display: flex;
	margin-bottom: 10px;
}
.each-card tr:last-child{
	margin-bottom: 0;
}
.each-card td{
	font-family: 'InterRegular';
	font-size: 1.4rem;
	line-height: 28px;
	color: #fff;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 0 13px;
	position: relative;
}
.each-card td:not(:last-child)::before{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	content: '';
	width: 1px;
	height: 14px;
	background-color: rgba(255, 255, 255, 0.3);
}
.each-card td:first-child{
	padding-left: 0;
}
 .each-card td:last-child{
 	padding-right: 0;
 }
.each-card td a{
	color: #fff;
	text-decoration: underline;
}
.each-card li p{
	font-family: 'InterRegular';
	font-size: 1.4rem;
	line-height: 28px;
	letter-spacing: normal;
	color: #fff;
	max-width: 500px;
	margin-bottom: 13px;
}
.each-card li p:last-child{
	margin-bottom: 0;
}