#company-block .items_blocks {
	width: 100%;
	justify-content: space-between;
	column-gap: 30px;
}
#company-block .item {
	max-width: calc((100% / 2) - 17px);
	width: 100%;
}
#company-block .item_img {
	max-height: 570px;
	height: 100%;
	max-width: 570px;
	width: 100%;
	position: sticky;
	top: 20px;
	object-fit: contain;
	border-radius: 5px;
	overflow: hidden;
}
#company-block .item_img img {
	max-height: 570px;?
	height: 100%;
	width: 100%;
	border-radius: 5px;
	object-fit: contain;
}
#company-block .numbers {
	width: 100%;
	justify-content: space-between;
	/*column-gap: 30px;*/
}
#company-block .item_numb {
	max-width: calc((100% / 2) - 15px);
	width: 100%;
	border-radius: 5px;
	background-color: #005FF9;
	flex-direction: column;
	min-height: 190px;
	padding: 30px;
	background-image: url(images/bg.png);
	position: relative;
}
#company-block .item_numb:before {
	position: absolute;
	content: url(images/disc.svg);
	max-width: 187px;
	width: 100%;
	max-height: 112px;
	height: 100%;
	color: white;
	top: auto;
	left: auto;
	right: 10px;
	bottom: 0;
}
#company-block .item_numb > div {
	color: white;
}
#company-block .item_numb .desc {
	margin-top: 10px;
}  
#company-block .item_numb:nth-child(2n) {
	background-color: #D52B1E;
}

#company-block h2 {
  margin-top: calc((100vw - 320px)/(1920 - 320) * (40 - 30) + 30px);
  margin-bottom: calc((100vw - 320px)/(1920 - 320) * (35 - 25) + 25px);
  transition: all 0.3s ease-in;
}
#company-block h3 {
  margin-top: calc((100vw - 320px)/(1920 - 320) * (35 - 25) + 25px);
  margin-bottom: calc((100vw - 320px)/(1920 - 320) * (30 - 20) + 20px);
  transition: all 0.3s ease-in;
}
#company-block h4 {
  margin-top: calc((100vw - 320px)/(1920 - 320) * (30 - 20) + 20px);
  margin-bottom: calc((100vw - 320px)/(1920 - 320) * (25 - 15) + 15px);
  transition: all 0.3s ease-in;
}
#company-block h5 {
  margin-top: calc((100vw - 320px)/(1920 - 320) * (25 - 15) + 15px);
  margin-bottom: calc((100vw - 320px)/(1920 - 320) * (20 - 10) + 10px);
  transition: all 0.3s ease-in;
}
#company-block h6 {
  margin-top: calc((100vw - 320px)/(1920 - 320) * (20 - 10) + 10px);
  margin-bottom: calc((100vw - 320px)/(1920 - 320) * (15 - 5) + 5px);
  transition: all 0.3s ease-in;
}
#company-block ul li {
  list-style-type: disc;
  margin-left: 16px;
}
#company-block ul li::marker {
  color: #333333;
  width: 8px;
  height: 8px;
}
#company-block ul,
#company-block ol {
  display: flex;
  grid-row-gap: 15px;
  flex-direction: column;
}
#company-block p {
  margin: 15px 0;
}

@media (max-width: 950px) {
	#company-block .items_blocks {
		flex-direction: column;
	}
	#company-block .item {
		max-width: 100%;
	}
	#company-block .item_img {
		position: static;
		width: 100%;
		margin-bottom: 20px;
	}
}
@media (max-width: 490px) {
	#company-block .numbers {
		flex-direction: column;
		grid-gap: 15px;
	}
	#company-block .item_numb {
		max-width: 100%;
	}
}