.company-products {
	padding: 5rem 0 4.0625rem 0;
	background-color: #F5F5F5;
}
.company-products__slider {
	margin-top: 3.125rem;
	overflow: hidden;
}
.company-products__block {
	padding: 1.875rem;
	display: flex;
	flex-direction: column;
	gap: .5rem;
	border: 1px solid #E5E5E5;
	min-height: 24.375rem;
	background-color: #fff;
	background-position: right bottom;
	background-repeat: no-repeat;
	background-size: 405px;
	transition: background-size 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.company-products__block:hover {
	background-size: 26.5625rem;
}
.company-products__block .with-arrow span {
    transition: right 0.3s ease-in;
}
.company-products__block:hover .with-arrow span {
    right: -18px;
}
.company-products__block--title {
	font-size: 1.25rem;
	font-weight: 600;
}
.company-products__block--desc {
	color: #8B9195;
	font-size: 1.125rem;
}
.company-products__block--link {
	margin-top: auto;
}
.company-products__block.redos {
	background-image: url(/about/src/img/company-products-redos.svg);
}
.company-products__block.redvirt {
	background-image: url(/about/src/img/company-products-redvirt.svg);
}
.company-products__block.rdb {
	background-image: url(/about/src/img/company-products-rdb.svg);
}
.company-products__block.adm {
	background-image: url(/about/src/img/company-products-redadm.svg);
}
.company-products__block.vrm {
	background-image: url(/about/src/img/company-products-redvrm.svg);
}
.company-products__block.rp {
	background-image: url(/about/src/img/company-products-rp.svg);
	border-right: 1px solid #E5E5E5;
}
.company-products .swiper-wrapper {
	align-items: center;
	height: auto !important;
}
.company-products .swiper-button-next.swiper-button-disabled, .company-products .swiper-button-prev.swiper-button-disabled {
	pointer-events: none;
}
.company-products .swiper__controls {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 2.1875rem;
}
.company-products .swiper-btns__arrow {
	display: flex;
	align-items: center;
}
.company-products .swiper-button-next:hover,
.company-products .swiper-button-prev:hover {
	background-color: #cc2b24;
	border-color: #cc2b24;
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}
.company-products .swiper-button-next:hover:after,
.company-products .swiper-button-prev:hover:after {
	color: #fff;
}
.company-products .swiper-button-prev,
.company-products .swiper-button-next {
	position: relative;
	width: 56px;
	height: 56px;
	background-color: #fff;
	border: 1px solid #CC2B24;
	user-select: none;
	transition: all .5s ease;
	margin-top: 0;
	right: 0;
	left: 0;
}
.company-products .swiper-button-prev {
	margin-right: -1px;
}

.company-products .swiper-button-prev::after,
.company-products .swiper-button-next::after {
	font-size: 14px;
	font-weight: 700;
	color: #cc2b24;
}
.company-products .swiper-pagination {
	display: flex;
	gap: .875rem;
	position: relative;
}
.company-products .swiper-pagination-bullet {
	background: #D9D9D9;
	transition: background 0.2s ease-in ;
	opacity: 1;
}
.company-products .swiper-pagination-bullet-active {
	background: #CC2B24;
}
@media (max-width: 768px) {
	.company-products .swiper-button-prev,
	.company-products .swiper-button-next {
		width: 2.625rem;
		height: 2.625rem;
	}
	.company-products .swiper-button-prev::after, 
	.company-products .swiper-button-next::after {
		font-size: .625rem;
	}
}