

/* Start:/local/templates/adsgrp/components/bitrix/menu/page_menu/style.css?17798811791004*/
.pages {
	display: flex;
	gap: 1px;
	width: 100%;
	margin-bottom: 55px;
}

.page {
	min-height: 60px;
	padding: 5px 10px;
	background: #000;
	color: #fff;
	font-size: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1;
	transition: 0.3s;
	text-align: center;
}

.page:hover

.page:hover,
.page.active {
	background: #00AE4F;
}

@media (max-width: 1600px) {
	.pages {
		margin-bottom: 45px;
	}
}

@media (max-width: 1279px) {
	.page {
		font-size: 18px;
		min-height: 45px;
	}

	.personal-pages .page {
		min-height: 60px;
		font-size: 20px;
	}

	.contacts .personal-pages {
		flex-direction: row;
	}
}

@media (max-width: 767px) {
	.pages.personal-pages {
		flex-direction: column;
		margin-bottom: 40px;
	}

	.page {
		font-size: 16px;
	}

	.personal-pages .page {
		font-size: 18px;
	}
}

@media (max-width: 479px) {
	.pages {
		margin-bottom: 35px;
	}

	.page {
		font-size: 14px;
		min-height: 40px;
	}

	.personal-pages .page {
		font-size: 16px;
		min-height: 55px;
	}
}
/* End */


/* Start:/local/templates/adsgrp/components/bitrix/news.detail/company-about/style.css?17798811791207*/
.about-company {
    background: #00AE4F;
    color: #fff;
    padding: 70px 0;
}

.about-company .container {
    display: flex;
    gap: 235px;
    align-items: center;
}

.about-company__text {
    font-size: 24px;
    color: #fff;
    line-height: 1.4;
    flex: 1;
}

.about-company__text p {
    margin: 0 0 1.4em 0;
}

.about-company__text p:last-child {
    margin: 0;
}

.about-company__img img {
    max-width: 510px;
}

@media (max-width: 1600px) {
    .about-company__text {
        font-size: 22px;
    }

    .about-company .container {
        gap: 83px;
    }
}

@media (max-width: 1279px) {
    .about-company {
        padding: 60px 0;
    }

    .about-company .container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .about-company__text {
        font-size: 20px;
    }

    .about-company__img img {
        max-width: 450px;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .about-company__text {
        font-size: 18px;
    }

    .about-company {
        padding: 50px 0;
    }
}

@media (max-width: 479px) {
    .about-company__text {
        font-size: 16px;
    }

    .about-company {
        padding: 40px 0;
    }
}
/* End */


/* Start:/local/templates/adsgrp/components/bitrix/system.pagenavigation/.default/style.css?1779881179699*/
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 68px 0 0;
}

.pagination > a, .pagination > span {
    color: #000;
    display: flex;
}

.pagination__item {
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    border: 1px solid transparent;
}

.pagination__item:hover {
    border-color: #000;
}

.pagination__item.active {
    background: #FFE100;
    font-weight: bold;
    border-color: #FFE100;
}

.pagination__first {
    margin-right: 24px;
}

.pagination__last {
    transform: rotate(180deg);
    margin-left: 24px;
}

@media (max-width: 1279px) {
    .pagination {
        margin: 50px 0 0;
    }
}
/* End */


/* Start:/local/templates/adsgrp/components/bitrix/news.list/history-slider/style.css?17798811793648*/
.years {
    display: flex;
}

.years .year {
    font-size: 24px;
    padding: 0 0 56px 10px;
    position: relative;
    width: 295px;
    cursor: pointer;
    transition: color 0.3s;
    font-weight: 600;
    height: 105px;
}

.year::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #000;
    position: absolute;
    bottom: 11px;
    left: 0;
    z-index: 1;
    transition: background 0.3s;
}

.year:not(:last-child)::after {
    content: '';
    display: block;
    height: 4px;
    background: #000;
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 19px;
    z-index: 0;
}

.year.swiper-slide-thumb-active {
    font-size: 40px;
    color: #00AE4F;
}

.year div {
    position: absolute;
    bottom: 50px;
}

.year.swiper-slide-thumb-active::before {
    width: 42px;
    height: 42px;
    background: #00AE4F;
    bottom: 0;
}

.year:hover {
    color: #00AE4F;
}

.year:hover::before {
    background: #00AE4F;
}

.years {
    align-items: flex-end;
}

.years-slider-container {
    position: relative;
}

.years-slider {
    mask-image: linear-gradient(to right, black 90%, transparent 100%);
    --webkit-mask-image: linear-gradient(to right, black 90%, transparent 100%);
}

.years-nav {
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    position: absolute;
    bottom: 12px;
    cursor: pointer;
    transition: 0.3s;
}

.years-prev {
    border-right: 18px solid #000;
    left: -40px;
}

.years-next {
    border-left: 18px solid #000;
    right: -40px;
}

.years-prev:hover {
    border-right-color: #00AE4F;
}

.years-next:hover {
    border-left-color: #00AE4F;
}

.years-info-slider {
    margin-top: 40px;
}

.years-info-slider .slider-scrollbar {
    margin-top: 50px;
}

.years-info .year-info {
    display: grid;
    grid-template-columns: auto 217px 217px;
    cursor: pointer;
}

.year-info__text {
    background: #D9D9D9;
    display: flex;
    align-items: center;
    padding: 20px 130px 20px 65px;
    font-size: 20px;
    line-height: 1.4;
}

.year-info__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.year-info__year {
    background: #00AE4F;
    color: #fff;
    font-size: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

@media (max-width: 1279px) {
    .years-info .year-info {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto 230px;
        column-gap: 5px;
    }

    .year-info__text {
        grid-column: span 2;
        min-height: 230px;
        padding: 40px 35px;
    }

    .years-slider-container {
        padding: 0 30px;
    }

    .years-prev {
        left: 0;
    }

    .years-next {
        right: 0;
    }
}

@media (max-width: 767px) {
    .years .year {
        font-size: 22px;
        width: 180px;
        height: 140px;
    }

    .year.swiper-slide-thumb-active {
        font-size: 30px;
    }

    .year-info__text {
        font-size: 18px;
        padding: 20px 30px;
    }

    .years-slider {
        mask-image: unset;
    }

    .year-info__year {
        font-size: 40px;
    }
}

@media (max-width: 479px) {
    .year-info__text {
        font-size: 16px;
    }

    .years-info .year-info {
        grid-template-rows: auto 160px;
    }

    .year::before {
        width: 18px;
        height: 18px;
    }

    .year.swiper-slide-thumb-active::before {
        width: 38px;
        height: 38px;
    }

    .year:not(:last-child)::after {
        bottom: 17px;
    }

    .year::before {
        bottom: 10px;
    }
}


/* End */


/* Start:/local/templates/adsgrp/components/bitrix/news.list/advantages/style.css?17798811792391*/
.advantages {
	background: url(/local/templates/adsgrp/components/bitrix/news.list/advantages/images/advantages-glow-top.svg) no-repeat top right, url(/local/templates/adsgrp/components/bitrix/news.list/advantages/images/advantages-glow-bottom.svg) no-repeat bottom left, #000;
	color: #fff;
	padding: 85px 0 100px;
	line-height: 1.2;
}

.advantages .title-h1 {
	color: #fff;
}

.advantages-container {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	margin-top: 15px;
}

.advantage {
	padding: 50px 40px;
	border-bottom: 2px solid rgba(217, 217, 217, 0.3);
	position: relative;
}

.advantage__head {
	display: flex;
	align-items: center;
	gap: 30px;
	margin-bottom: 30px;
}

.advantage__body {
	font-size: 18px;
}

.advantage:hover::after {
	content: '';
	display: block;
	height: 4px;
	width: 100%;
	background: #00AE4F;
	/* padding-left: inherit;
    padding-right: inherit; */
	position: absolute;
	bottom: -2px;
	left: 0;
}

.advantage:hover .advantage__name {
	color: #00AE4F;
}

img.hover {
	display: none;
}

.advantage:hover img {
	display: none;
}

.advantage:hover img.hover {
	display: block;
}

@media (max-width: 1600px) {
	.advantages {
		padding: 71px 0 85px;
		background: url(/local/templates/adsgrp/components/bitrix/news.list/advantages/images/advantages-glow-top.svg) no-repeat top right / 350px, url(/local/templates/adsgrp/components/bitrix/news.list/advantages/images/advantages-glow-bottom.svg) no-repeat bottom left -50px / 630px, #000
	}

	.advantage__logo img {
		transform: scale(0.85);
	}

	.advantage__body {
		font-size: 16px;
	}
}

@media (max-width: 1279px) {
	.advantages-container {
		column-gap: 20px;
		row-gap: 44px;
		margin-top: 40px;
	}

	.advantages {
		padding: 70px 0 60px;
	}

	.advantage {
		border-bottom: none;
	}

	.advantage:hover::after {
		display: none;
	}

	.advantage__head {
		flex-direction: column;
		align-items: flex-start;
		gap: 25px;
		margin-bottom: 25px;
	}

	.advantage {
		padding: 0;
	}

	.advantage__logo {
		height: 80px;
	}

	.advantage__logo img {
		height: 100%;
		width: 100%;
		object-fit: contain;
		transform: unset;
	}
}

@media (max-width: 767px) {
	.advantages {
		padding: 60px 0 65px;
	}

	.advantages-container {
		grid-template-columns: 1fr 1fr;
	}

	.advantage__body {
		font-size: 14px;
	}

	.advantage__logo {
		height: 60px;
	}
}

@media (max-width: 479px) {
	.advantages-container {
		grid-template-columns: 1fr;
		row-gap: 36px;
		margin-top: 30px;
	}

	.advantage__head {
		flex-direction: row;
		align-items: center;
		margin-bottom: 20px;
	}

	.advantage__logo {
		width: 60px;
		height: 60px;
	}

	.advantages {
		padding: 52px 0 58px;
	}
}


/* End */
/* /local/templates/adsgrp/components/bitrix/menu/page_menu/style.css?17798811791004 */
/* /local/templates/adsgrp/components/bitrix/news.detail/company-about/style.css?17798811791207 */
/* /local/templates/adsgrp/components/bitrix/system.pagenavigation/.default/style.css?1779881179699 */
/* /local/templates/adsgrp/components/bitrix/news.list/history-slider/style.css?17798811793648 */
/* /local/templates/adsgrp/components/bitrix/news.list/advantages/style.css?17798811792391 */
