

/* Start:/bitrix/templates/120423/components/bitrix/news.list/promo_hom/style.css?17741184952544*/
  ul.promo li {
  	list-style: none;
  }
  ul.promo {
  	display: grid;
  	grid-template-columns: repeat(24,1fr);
  	gap: 12px 12px;
  	grid-template-columns: 1fr 1fr 1fr;
  	grid-template-areas:
  	"aa aa ab"
  	"ac ad ab";

  	margin: 0;
  	padding: 50px 0;
  	border-radius: 20px;
/*    background-color: var(--n4);*/
background-position: center center;
border-color: transparent;
border-style: solid;
/*    box-shadow: 0px 0px 50px 0px rgba(134,165,183,0.2);*/
}


ul.promo li {
	height: auto;
}

.promo .a1 {
	grid-area: aa;
}

.promo .a2 {
	grid-area: ab;
}

.promo .a3 {
	grid-area: ac;
}

.promo .a4 {
	grid-area: ad;
}

@media (max-width: 719px){
	.a1, .a2, .a3, .a4 {
/*		width: 320px;*/
width: auto;
}

}

.c2 {
	color: #000 !important;
}
/*.promo .a3, .alist {
justify-content: space-around;

}*/



.promo li {
	display: flex;
	height: 100%;
	flex-direction: column;
	align-items: flex-start;
	background-position: 100% 100%;
	background-repeat: no-repeat;
	background-size: 50%;
	transition: background-size .3s ease-in-out;
	border-radius: 20px;
}

.a1, .a2, .a3, .a4 {
	padding: 36px;
}
.a1 .body {
	display: flex;
	height: 100%;
	flex-direction: column;
	align-items: flex-start;
	background-position: 100% 100%;
	background-repeat: no-repeat;
	background-size: 50%;
	transition: background-size .3s ease-in-out;
}
.a1 .body {
	padding-right: 50%;
}
.promo .body{
	display: flex;
	height: 100%;
	flex-direction: column;
	align-items: flex-start;
	background-position: 100% 100%;
	background-repeat: no-repeat;
	background-size: 50%;
	transition: background-size .3s ease-in-out;
}

.promo .body .button {
	margin-top: auto;
	border-radius: 6px;
	padding: 20px 30px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	text-shadow: 0 1px 0 rgb(27 174 91 / 0%);
	background: #ffffff54;
	color: #ffffff;
	box-shadow: 0 1px 0 rgb(0 0 0 / 10%);
}

.promo .body .button:hover {
	box-shadow: none;
	transition: box-shadow .3s ease-in-out;
}

.promo .a2 {
	background-size: 100%;
	background-size: contain;
}


.a1:hover, .a3:hover, .a4:hover{
	background-size: 51%;
}


@media (min-width: 720px) and (max-width: 1023px) {
	ul.promo {
		display: grid;
		grid-template-columns: repeat(24,1fr);
		gap: 12px 12px;
		grid-template-columns: 1fr 1fr 1fr;
		grid-template-areas:
		"aa aa ac"
		"ad ab ab";
	}
}

@media (max-width: 720px) {
	ul.promo {
		display: flex;
		flex-direction: column;
	}
	.a1 .body {
		padding-right: 0 !important;
	}
	ul.promo {
		padding: 0;
	}
	.promo .a2 {
/*    background-size: 50%;*/
color: #000000;
}

}
/* End */


/* Start:/bitrix/templates/120423/components/bitrix/news.list/faq1page/style.css?1683296868150*/
div.news-list
{
	word-wrap: break-word;
}
div.news-list img.preview_picture
{
	float:left;
	margin:0 4px 6px 0;
}
.news-date-time {
	color:#486DAA;
}

/* End */


/* Start:/bitrix/templates/120423/components/bitrix/news.list/blog-art/style.css?17741222301805*/
.articles-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
	
}

.articles-scroll {
	display: flex;
	gap: 30px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	padding: 20px 0;
	scrollbar-width: thin;
	scrollbar-color: var(--n4) transparent;
}

.articles-scroll::-webkit-scrollbar {
	height: 8px;
}

.articles-scroll::-webkit-scrollbar-track {
	background: transparent;
}

.articles-scroll::-webkit-scrollbar-thumb {
	/* background: #ddd; */
	border-radius: 4px;
}

.articles-scroll::-webkit-scrollbar-thumb:hover {
	/* background: #ccc; */
}

.article {
	display: flex;
	flex-direction: column;
	flex: 0 0 350px;
	scroll-snap-align: start;
	background: #fff;
	border-radius: 20px;
	border: 1px solid #ededed;
	/* box-shadow: 0 10px 30px rgba(0,0,0,0.1); */
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 40px rgba(0,0,0,0.15);
	transform: translate(0px, -2px);
	box-shadow: var(--box-x);
}

/* Шахматный порядок картинок по nth-child */
.article:nth-child(1) img { order: -1; }
.article:nth-child(2) img { order: 1; }
.article:nth-child(3) img { order: -1; }
.article:nth-child(1) p {display: none;}
.article-content {
	padding: 25px;
	flex: 1;
}

.article h3 {
	margin: 0 0 15px 0;
	color: #333;
	font-size: 22px;
	line-height: 1.3;
}

.article p {
	margin: 0 0 20px 0;
	color: #666;
	line-height: 1.6;
}

.article-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}


/* Мобильная версия */
@media (max-width: 768px) {
	.articles-scroll {
		padding: 15px 0;
	}

	.article {
		flex: 0 0 280px;
	}
}

/* Десктоп: шахматный порядок */
@media (min-width: 769px) {
	.articles-scroll {
		justify-content: space-between;
	}
}
/* End */


/* Start:/bitrix/templates/120423/components/bitrix/news.list/otz/style.css?1726758684729*/
.cards {
  columns: 3 300px;
  padding: 1.5rem;
  gap: 1.5rem;
}
.overflow {
  height: 50vh;
    overflow: scroll;
    scrollbar-width: none;
}

.card {
    background: var(--n4);
    break-inside: avoid;
    margin-block-end: 1.5rem;
    padding: 1rem;
    border-radius: 20px;
}

.card img:first-of-type {
  max-width: 100%;
  margin-right: 20px;
      border-radius: 100%;
}


.ava {
    grid-area: ava;
}
.cont {
    grid-area: cont;
}

.card {
/*display: grid;
    grid-template-columns: 1fr 3fr;*/
display: grid;
grid-template-areas:
        "ava ava"
        "cont cont";
}



.card div:first-of-type {
      flex-basis: 208px;
}

.star {
  display: inline-flex;
}

.star img {
/*  width: 10px;*/
  margin: 0 !important;
}
/* End */


/* Start:/bitrix/templates/120423/components/bitrix/news.list/logo/style.css?17883396832826*/
/* Изолированный слайдер логотипов для шаблона news.list/logo. */
.home-trust-section {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
}

.home-trust-section .row,
.home-trust-section .col,
.home-trust-section__text {
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.home-trust-section > .container {
    width: 100%;
    max-width: 1200px;
    min-width: 0;
    margin-right: auto;
    margin-left: auto;
}

.home-trust-section__text {
    overflow: hidden;
}

.home-trust-section__text,
.home-trust-section__text * {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
}

.trust-logos,
.trust-logos * {
    box-sizing: border-box;
}

.trust-logos {
    --trust-logos-gap: clamp(30px, 4vw, 64px);
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
}

.trust-logos__viewport {
    position: relative;
    width: 100%;
    min-width: 0;
    padding: 28px 0;
    overflow: hidden;
}

.trust-logos__track {
    display: flex;
    align-items: center;
    width: max-content;
    min-width: 100%;
    gap: var(--trust-logos-gap);
    will-change: transform;
}

.trust-logos.is-ready .trust-logos__track {
    animation: trust-logos-marquee var(--trust-logos-duration, 28s) linear infinite;
}

.trust-logos__viewport:hover .trust-logos__track,
.trust-logos__viewport:focus-within .trust-logos__track {
    animation-play-state: paused;
}

.trust-logos__group {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: var(--trust-logos-gap);
}

.trust-logos__item {
    display: flex;
    flex: 0 0 150px;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 100px;
    min-width: 0;
}

.trust-logos__image {
    display: block;
    width: auto;
    max-width: 150px;
    height: auto;
    max-height: 100px;
    object-fit: contain;
    user-select: none;
}

@keyframes trust-logos-marquee {
    to {
        transform: translate3d(calc(-1 * var(--trust-logos-distance, 0px)), 0, 0);
    }
}

@media (max-width: 767px) {
    .trust-logos {
        --trust-logos-gap: 26px;
    }

    .trust-logos__viewport {
        padding: 22px 0;
    }

    .trust-logos__item {
        flex-basis: 120px;
        width: 120px;
        height: 76px;
    }

    .trust-logos__image {
        max-width: 120px;
        max-height: 76px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .trust-logos__viewport {
        overflow-x: auto;
    }

    .trust-logos__group[data-trust-logos-clone] {
        display: none;
    }

    .trust-logos.is-ready .trust-logos__track {
        width: 100%;
        animation: none;
    }

    .trust-logos__group {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* End */


/* Start:/bitrix/templates/120423/components/bitrix/news.list/example_home/style.css?17883348004820*/
/* Слайдер примеров работ на главной. Стили изолированы от общих .slider и .slide. */
.home-examples,
.home-examples * {
    box-sizing: border-box;
}

.home-examples {
    width: 100%;
    max-width: 1200px;
    margin: 50px auto 30px;
    padding-right: 10px;
    padding-left: 10px;
    overflow: hidden;
}

.home-examples__header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 24px;
    margin-bottom: 28px;
}

.home-examples__heading-wrap,
.home-examples__heading {
    min-width: 0;
}

.home-examples__heading {
    margin: 0 0 12px;
    color: #000000;
}

.home-examples__intro {
    max-width: 820px;
    color: #000000;
    overflow-wrap: anywhere;
}

.home-examples__intro > :first-child {
    margin-top: 0;
}

.home-examples__intro > :last-child {
    margin-bottom: 0;
}

.home-examples .home-examples__intro * {
    color: #000000;
}

.home-examples__viewport {
    width: 100%;
    min-width: 0;
    overflow: hidden;
    border-radius: 16px;
    cursor: grab;
    touch-action: pan-y;
}

.home-examples__viewport.is-dragging {
    cursor: grabbing;
}

.home-examples__track {
    display: flex;
    width: 100%;
    min-width: 0;
    will-change: transform;
}

.home-examples__slide {
    display: flex;
    flex: 0 0 100%;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    margin: 0;
    overflow: hidden;
    color: #000000;
    background: transparent;
    border-radius: 16px;
}

.home-examples__image-wrap {
    display: flex;
    flex: 0 0 48%;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 340px;
    overflow: hidden;
}

.home-examples__image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 340px;
    object-fit: contain;
    object-position: center;
    user-select: none;
}

.home-examples__content {
    display: flex;
    flex: 1 1 52%;
    flex-direction: column;
    min-width: 0;
    padding: 42px 48px;
    color: #000000;
}

.home-examples__city {
    margin-bottom: 12px;
    color: #000000;
    font-size: 14px;
    line-height: 1.4;
}

.home-examples__title {
    margin: 0 0 18px;
    color: #000000;
    font-size: clamp(22px, 2.3vw, 34px);
    line-height: 1.2;
    overflow-wrap: anywhere;
}

.home-examples__text {
    display: -webkit-box;
    margin-bottom: 24px;
    overflow: hidden;
    color: #000000;
    line-height: 1.6;
    overflow-wrap: anywhere;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.home-examples__text > :first-child {
    margin-top: 0;
}

.home-examples__text > :last-child {
    margin-bottom: 0;
}

.home-examples .home-examples__content * {
    color: #000000;
}

.home-examples .home-examples__content .home-examples__more {
    align-self: flex-start;
    margin-top: auto;
    text-decoration: none;
}

.home-examples .home-examples__content .home-examples__more,
.home-examples .home-examples__content .home-examples__more * {
    color: var(--n5);
}

.home-examples .home-examples__content .home-examples__more:hover,
.home-examples .home-examples__content .home-examples__more:focus-visible {
    text-decoration: underline;
}

.home-examples__controls {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin: 0;
}

.home-examples__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    padding: 0;
    color: var(--n5, #111111);
    font: inherit;
    font-size: 22px;
    line-height: 1;
    background: var(--n4, #f2eee8);
    border: 1px solid var(--n6, #777777);
    border-radius: 50%;
    cursor: pointer;
}

.home-examples__arrow:hover,
.home-examples__arrow:focus-visible {
    color: var(--n4, #ffffff);
    background: var(--n3, #8a174b);
    border-color: var(--n3, #8a174b);
}

.home-examples__pager {
    margin-bottom: 20px;
}

.home-examples__pager--bottom {
    margin-top: 20px;
    margin-bottom: 0;
}

@media (max-width: 767.98px) {
    .home-examples {
        margin: 50px auto 30px;
    }

    .home-examples__header {
        margin-bottom: 36px;
    }

    .home-examples__slide {
        flex-direction: column;
    }

    .home-examples__image-wrap {
        flex-basis: auto;
        width: 100%;
        min-height: 0;
        aspect-ratio: 16 / 10;
    }

    .home-examples__image {
        min-height: 0;
    }

    .home-examples__content {
        flex-basis: auto;
        padding: 24px 22px 28px;
    }
}

@media (max-width: 600px) {
    .home-examples__header {
        grid-template-columns: minmax(0, 1fr);
        gap: 16px;
    }

    .home-examples__controls {
        justify-self: end;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-examples__track {
        scroll-behavior: auto;
    }
}

/* End */
/* /bitrix/templates/120423/components/bitrix/news.list/promo_hom/style.css?17741184952544 */
/* /bitrix/templates/120423/components/bitrix/news.list/faq1page/style.css?1683296868150 */
/* /bitrix/templates/120423/components/bitrix/news.list/blog-art/style.css?17741222301805 */
/* /bitrix/templates/120423/components/bitrix/news.list/otz/style.css?1726758684729 */
/* /bitrix/templates/120423/components/bitrix/news.list/logo/style.css?17883396832826 */
/* /bitrix/templates/120423/components/bitrix/news.list/example_home/style.css?17883348004820 */
