#about-block .block_title {
	color: #D52B1E;
}
#about-block .block_title span {
	color: #005FF9;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
}
#about-block .items_block {
	max-width: 100%;
	width: 100%;
	justify-content: space-between;
}
#about-block .side {
	max-width: calc((100% / 2) - 15px);
	width: 100%;
}
#about-block .left_side {
	justify-content: space-between;
}
#about-block .right_side {
	flex-direction: column;
	row-gap: 15px;
}

#about-block .right_side h4 {
	margin-bottom: 10px;
}

#about-block .right_side ul li {
	list-style: disc;
	list-style: inside;
}
#about-block .item_num {
	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;
}
#about-block .item_num: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;
}
#about-block .item_num:nth-child(2) {
	background-color: #D52B1E;
}
#about-block .item_num .num,
#about-block .item_num .desc {
	color: white;
	text-align: center;
}
#about-block .link {
	align-items: center;
	column-gap: 10px
}
#about-block .link .svg {
	background-color: #D52B1E;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	align-items: center;
    align-content: center;
    justify-content: center;
    flex-shrink: 0;
	transition: all 0.3s ease-in;
}
#about-block .link:hover .svg {
	transform: scale(1, -1);
	transition: all 0.3s ease-in;
	background-color: #005FF9;
}

@media (max-width: 960px) {
	#about-block .items_block {
		flex-direction: column;
		row-gap: 15px;
	}
	#about-block .side {
		max-width: 100%
	}
}
@media (max-width: 490px) {
	#about-block .side {
		max-width: 100%;
	}
	#about-block .left_side {
		flex-direction: column;
		row-gap: 15px;
	}
	#about-block .item_num {
		max-width: 100%;
	}
}	
	