

/* Start:/local/templates/altekpro/components/bitrix/news/company/bitrix/news.detail/.default/style.css?1765869819990*/
.news-detail {
	margin-top: 50px;
}

.service h1 {
	margin-top: 50px;
	margin-bottom: 30px;
}

.service h1 span {
	position: relative;
	display: inline-block;
	width: 50px;
	height: 51px;
	vertical-align: middle;
	margin-right: 25px;
}

.service h1 span svg {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
}

.service h1 span svg .cls-1 {
	fill: none;
	stroke: #ED3B3B;
	stroke-miterlimit: 10;
	stroke-width: 1.5px;
}

.CompanyDetail-Section .news-detail .sert-text2 {
	width: 100% !important;
}


@media (max-width: 1023px) and (min-width: 768px) {
	.container.direction-container {
		width: 580px !important;
	}
}

@media (max-width: 767px) {
	.service center {
		display: table;
		min-height: 50px;
		margin: 25px 0 30px;
	}

	.service h1 {
		position: relative;
		display: table-cell;
		padding-left: 75px;
		font-size: 24px;
		text-align: left;
		vertical-align: middle;
	}

	.service h1 span {
		position: absolute;
		margin-left: -75px;
		top: 0;
	}
}
/* End */


/* Start:/local/templates/altekpro/components/bitrix/news.list/partner/style.css?17658705423993*/
/* Секция партнёров */
.CompanyPartner-Section {
    margin-top: 30px;
    margin-bottom: 30px;
}

.CompanyPartner-List {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

@media (max-width: 1024px) {
    .CompanyPartner-List {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .CompanyPartner-List {
        grid-template-columns: repeat(2, 1fr);
    }
}

.CompanyPartner-Item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.CompanyPartner-ItemInner {
    position: relative;
    width: 100%;
    /* Квадратный блок, можно поменять на 4 / 3 для прямоугольника */
    aspect-ratio: 4 / 3;
    background-color: #f3f3f3;
}

.CompanyPartner-Image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.4s ease;
}

.CompanyPartner-Image--noimg {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    text-align: center;
    font-size: 14px;
    color: #555;
    background: linear-gradient(135deg, #f5f5f5, #e9e9e9);
}

.CompanyPartner-Item:hover .CompanyPartner-Image {
    transform: scale(1.05);
}

.CompanyPartner-Overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.CompanyPartner-Item:hover .CompanyPartner-Overlay {
    opacity: 1;
    visibility: visible;
}

.CompanyPartner-OverlayContent {
    padding: 15px;
    text-align: center;
}

.CompanyPartner-OverlayText {
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 10px;
    max-height: 4.2em;
    overflow: hidden;
}

.CompanyPartner-MoreBtn {
    display: inline-block;
    padding: 6px 14px;
    font-size: 13px;
    line-height: 1;
    border-radius: 999px;
    border: 1px solid #ffffff;
    background-color: transparent;
    color: #ffffff;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.CompanyPartner-MoreBtn:hover {
    background-color: #ffffff;
    color: #000000;
}

.CompanyPartner-Modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 40px 10px;
}

.CompanyPartner-Modal.is-open {
    display: flex;
}

.CompanyPartner-ModalBackdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.CompanyPartner-ModalDialog {
    position: relative;
    max-width: 720px;
    width: 100%;
    background: #ffffff;
    border-radius: 16px;
    padding: 20px 24px 24px;
    z-index: 1;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
    .CompanyPartner-ModalDialog {
        padding: 16px 14px 18px;
    }
}

.CompanyPartner-ModalClose {
    position: absolute;
    top: 10px;
    right: 12px;
    border: none;
    background: transparent;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    color: #999;
}

.CompanyPartner-ModalClose:hover {
    color: #333;
}

.CompanyPartner-ModalHeader {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.CompanyPartner-ModalIconWrapper {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    overflow: hidden;
    margin-right: 12px;
    background: #f5f5f5;
    flex-shrink: 0;
}

.CompanyPartner-ModalIcon {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.CompanyPartner-ModalTitle {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.25;
}

.CompanyPartner-ModalBody {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

.CompanyPartner-ModalBody p {
    margin: 0 0 0.6em;
}



/* End */


/* Start:/local/templates/altekpro/components/bitrix/menu/company/style.css?16765445603399*/
.company-menu-icon {
	width: 32px;
	height: 20px;
}

.service .service-menu ul li {
	position: relative;
	display: inline-block;
	background: #E5EFF9;
	min-width: 30px;
	height: 41px;
	margin: 5px 5px;
	padding: 0 20px 0 50px;
	border-radius: 3px;
	color: #0066C0;
	font-size: 15px;
	transition: .3s;
}

.service .service-menu ul li.not-image {
	padding-left: 20px;
}

.service .service-menu ul li.selected,
.service .service-menu ul li:hover {
	background: #0066C0;
	color: #fff;
	transition: .3s;
}

section.sert-text2 {
	margin: 60px 0;
}

.service .service-menu ul li picture {
	position: absolute;
	width: 25px;
	height: 25px;
	top: 8px;
	left: 15px;
}

.service .service-menu ul li svg {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	max-width: 100%;
	max-height: 100%;
}

.service .service-menu ul li svg .cls-1 {
	fill: none;
	stroke: #0066C0;
	stroke-miterlimit: 10;
	stroke-width: 1.5px;
	transition: .3s;
}

.service .service-menu ul li.selected svg .cls-1,
.service .service-menu ul li:hover svg .cls-1 {
	stroke: #fff;
	transition: .3s;
}

.service .service-menu ul li p {
	line-height: 41px;
}

.service .service-menu ul li a {
	position: absolute !important;
}

.service .service-menu ul li a:hover {
	background-color: transparent !important;
}

.service .service-menu {
	text-align: center;
}

.service .service-menu.popup {
	text-align: left;
}

.gotop {
	top: 0;
}

.mobile-sel-menu-wrap {
	position: relative;
	width: 100%;
	height: 40px;
	z-index: 10;
}

.mobile-sel-menu-wrap .mobile-sel-menu.fx,
.mobile-sel-menu-wrap .mobile-sel-menu.cfx {
	position: fixed !important;
	top: 0;
}

.mobile-sel-menu {
	position: relative;
	width: auto;
	height: 40px;
	background: #0266BF;
}

.mobile-sel-menu.fx {
	width: 100%;
}

.mobile-menu-header {
	position: relative;
	width: 100%;
	height: 40px;
	background: #0266BF;
}

.mobile-sel-menu p {
	display: block;
	color: #fff;
	line-height: 40px;
	margin-left: 50px;
	height: 40px;
}

.mobile-menu-header p {
	display: block;
	color: #fff;
	line-height: 40px;
	margin-left: 50px;
	height: 40px;
}

.mobile-sel-menu picture {
	position: absolute;
	width: 25px;
	height: 25px;
	top: 8px;
	left: 15px;
}

.mobile-menu-header  picture {
	position: absolute;
	width: 25px;
	height: 25px;
	top: 8px;
	left: 15px;
}

.mobile-sel-menu span {
	position: absolute;
	color: #fff;
	font-size: 18px;
	top: 10px;
	right: 15px;
}

.mobile-menu-header span {
	position: absolute;
	color: #fff;
	font-size: 18px;
	top: 10px;
	right: 15px;
}

.mobile-sel-menu picture svg .cls-1 {
	stroke: #fff;
	fill: none;
}

.mobile-menu-header picture svg .cls-1 {
	stroke: #fff;
	fill: none;
}

@media (max-width: 767px) {
	.mobile-menu {
		position: fixed;
		top: 0;
		left: -100%;
		width: 100%;
		height: 100%;
		transition: .3s;
		background-color: rgba(2, 102, 191, 0.7);
		z-index: 1010;
		overflow: auto;
	}

	.mobile-menu.active {
		left: 0;
		transition: .3s;
	}

	.mobile-menu-container {
		padding: 30px 0 0 48px;
	}

	.popup-menu-item {
		position: relative;
		display: inline-block;
		background: #E5EFF9;
		min-width: 30px;
		height: 41px;
		margin: 5px 5px;
		padding: 0 20px 0 50px;
		border-radius: 3px;
		color: #0066C0;
		font-size: 15px;
	}

	.service .service-menu ul li {
		display: block;
		background: transparent !important;
		height: 41px !important;
		margin: 5px 0!important;
		padding: 0 !important;
	}


}
/* End */
/* /local/templates/altekpro/components/bitrix/news/company/bitrix/news.detail/.default/style.css?1765869819990 */
/* /local/templates/altekpro/components/bitrix/news.list/partner/style.css?17658705423993 */
/* /local/templates/altekpro/components/bitrix/menu/company/style.css?16765445603399 */
