

/* Start:/local/templates/.default/components/bitrix/news.list/services/style.css?17545551531783*/

.categories-section {
    margin: 0px 20px;
    zoom: var(--zoom);
    padding-bottom: 60px;
}

.categories-section .items {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 25px;
}

.categories-section .items .item {
    padding: 30px 70px;
    box-sizing: border-box;
    flex: 0 0 calc(50% - 12.5px);
    border-radius: 40px;
    background-color: rgb(0, 0, 0, 0.4) !important;
    background-position: center center !important;
    height: 217px;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.categories-section .items .item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.categories-section .items .item .content {
    z-index: 1;
    position: relative;
}

.categories-section .items .item .title {
    color: #ffffff;
    font-size: 28px;
    font-family: 'Benzin-Regular', Arial, sans-serif;
    font-weight: 400;
    margin-bottom: 15px;
    max-width: 340px;
}

.categories-section .items .item .btn-detail {
    height: 51px;
}

@media (max-width: 1200px) {
    .categories-section {
        margin: 0px 10px;
    }
}

@media (max-width: 960px) {
    .categories-section .items {
        flex-direction: column;
        gap: 15px;
    }

    .categories-section .items .item {
        flex: unset;
        height: 220px;
        width: 100%;
        padding: 30px 50px;
    }
}

@media (max-width: 480px) {
    .categories-section .items .item .title {
        font-size: 20px;
    }

    .categories-section .items .item {
        padding: 40px 30px;
    }
}
/* End */


/* Start:/local/templates/.default/components/bitrix/news/news/bitrix/news.list/.default/style.css?17545551532020*/
.news-section {
	zoom: var(--zoom);
	margin: 0px 50px;
	padding-bottom: 60px;
}

.news-section .items {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	grid-template-rows: auto auto;
	grid-column-gap: 20px;
}

.news-section .items .item {
	text-decoration: unset;
	cursor: pointer;
	font-family: 'Benzin-Regular', Arial, sans-serif;
}

.news-section .items .item .image {
	background-repeat: no-repeat;
	background-size: cover;
	aspect-ratio: 1.3;
	margin-bottom: 20px;
	background-position: center;
}

.news-section .items .item .content {
	padding: 5px 30px 27px 30px;
}

.news-section .items .item .content .title {
	font-size: 14px;
	font-weight: 500;
	color: #2b2a29;
}

.news-section .items .item .content .description {
	margin-top: 8px;
	font-size: 12px;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 1.55;
	color: rgba(0, 0, 0, .9);
	font-style: italic;
}

.news-section .items .item .content .date {
	margin-top: 15px;
	font-size: 10px;
	color: rgba(0, 0, 0, .5);
}

@media (max-width: 1200px) {
	.news-section .items .item .content .title {
		font-size: 12px;
	}

	.news-section .items .item .content {
		padding: 5px 20px 27px 20px;
	}

	.news-section .items .item .content .description {
		font-size: 10px;
	}
}

@media (max-width: 960px) {
	.news-section {
		zoom: unset;
	}

	.news-section {
		margin: 0px 10px;
	}

	.news-section .items {
		display: flex;
		overflow-x: scroll !important;
	}

	.news-section .items .item {
		min-width: 38%;
		max-width: 38%;
		margin-bottom: 0px !important;
		display: flex;
		justify-content: center;
	}

	.news-section .items .item .item-container {
		width: 260px;
	}
}

@media (max-width: 640px) {
	.news-section .items .item .content .title {
		font-size: 10px;
	}

	.news-section .items .item {
		min-width: 70%;
		max-width: 70%;
	}
}

@media (max-width: 480px) {
	.news-section .items {
		gap: 10px;
	}

	.news-section .items .item {
		min-width: 85%;
		max-width: 85%;
	}

	.news-section .items .item .item-container {
		width: 100%;
	}
}
/* End */


/* Start:/local/templates/.default/components/bitrix/news.list/faq/style.css?17545551531976*/
.faq {
    margin: 0px 50px;
    padding-bottom: 90px;
}

.faq .items {
    display: flex;
    flex-direction: column;
    gap: 3px;
    max-width: 960px;
    margin: 0px auto;
}

.faq .items .item {
    background-color: #eeeeee;
    border-radius: 30px;
    padding: 25px 30px;
}

.faq .items .item .text {
    font-size: 14px;
    font-family: 'Benzin-Regular', Arial, sans-serif;
    font-weight: 400;
    color: #2b2a29;
    max-height: 0px;
    overflow: hidden;
    transition: max-height ease-in-out 0.3s, opacity ease-in-out 0s;
    -webkit-transition: max-height ease-in-out 0.3s, opacity ease-in-out 0s;
    -o-transition: max-height ease-in-out 0.3s, opacity ease-in-out 0s;
}

.faq .items .item .text div {
    padding-top: 20px;
}

.faq .items .item .title {
    cursor: pointer;
    font: 22px/27px 'Benzin-Regular', Arial, sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq .items .item .title:hover .open-faq {
    background-color: #ffffff;
    transition: background-color 0.2s, transform 0.3s;
}

.faq .items .item .title:hover .open-faq svg path {
    stroke: #d66435;
}


.faq .items .item .open-faq {
    background-color: #d66435;
    width: 40px;
    height: 40px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(0deg);
    flex: 0 0 40px;
}

.faq .items .item.opened .open-faq {
    transform: rotate(-45deg);
}

.faq .items .item.opened .text {
    opacity: 1;
    max-height: fit-content;
}


@media (max-width: 1200px) {
    .faq .items .item .title {
        font-size: 20px;
    }

    .faq .items .item .text {
        font-size: 12px;
    }
}

@media (max-width: 640px) {
    .faq {
        margin: 0px 20px;
    }

    .faq .items .item {
        padding: 20px;
    }

    .faq .items .item .title {
        font-size: 18px;
    }

    .faq .items .item .text {
        font-size: 10px;
        line-height: 1.45;
    }
}
/* End */
/* /local/templates/.default/components/bitrix/news.list/services/style.css?17545551531783 */
/* /local/templates/.default/components/bitrix/news/news/bitrix/news.list/.default/style.css?17545551532020 */
/* /local/templates/.default/components/bitrix/news.list/faq/style.css?17545551531976 */
