

/* Start:/company/style.css?178227384912232*/
.awards {
    background: transparent !important;
    padding: 50px;
    overflow: hidden;
}


.numbers__top {
    justify-content: space-between;
}
.numbers__top-title {
    white-space: nowrap;
}



.awards-about {
    max-width: 1260px;
    margin: 0 auto;
    background: #141414;
    border-radius: 30px;
    margin-bottom: 100px;
}

.about-us-info {
    padding-bottom: 20px;
}

.about-us-block h2 {
    font-family: Druk Wide Cyr;
    font-weight: 500;
    font-style: Medium;
    font-size: 85px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
        padding-bottom: 75px;
}

.about-us-block span {
    color: #DE4848;
    display: block;
}

.about__numbers.numbers {
    padding-top: 0;
}

.photo-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.photo-lightbox.is-open {
    display: flex;
}

.photo-lightbox__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
}

.photo-lightbox__img {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    z-index: 1;
    border-radius: 8px;
    cursor: zoom-out;
}

    :root{
--container: 1260px;
--radius: 28px;
--red: #e63b3b;
}

.expo__wrap{
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 28px;
    align-items: start;
}

/* LEFT */
.expo__media{
    border-radius: var(--radius);
    overflow: hidden; /* чтобы картинка и пагинация не вылезали за скругление */
    position: relative;
}

.expo__media .swiper,
.expo__media .swiper-slide{
    width: 100%;
    height: 100%;
}

.expo__media img{
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9; /* можно поменять под твою картинку */
    object-fit: cover;
}

/* Pagination dots like in screenshot */
.expo__pagination{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    z-index: 2;
    pointer-events: auto;
}

.expo__pagination .swiper-pagination-bullet{
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--red);
    opacity: .35;             /* неактивная — бледная */
    margin: 0 !important;     /* Swiper иногда добавляет margin */
    border: 2px solid transparent;
    box-sizing: border-box;
    transform: scale(1);
    transition: opacity .2s ease, transform .2s ease, border-color .2s ease;
}

.expo__pagination .swiper-pagination-bullet-active{
    opacity: 1;               /* активная — ярче */
    border-color: #fff;       /* белая обводка */
    transform: scale(1.05);
}

/* RIGHT */
.expo__text{
    padding-top: 6px;
}

.expo__title{
    font-family: "Druk Wide Cyr";
    font-weight: 500;
    font-style: Medium;
    font-size: 21px;
    margin-bottom: 26px;
    leading-trim: NONE;
    line-height: 124%;
    letter-spacing: 0%;
    text-transform: uppercase;

}

.expo__titleAccent{
    color: var(--red);
}

.expo__p{
    font-family: "Montserrat";
    font-weight: 500;
    font-style: Medium;
    font-size: 14px;
    leading-trim: NONE;
    line-height: 140%;
    letter-spacing: 0%;
}

.expoDots{
    position: absolute;
    left: 0; right: 0;
    bottom: 14px;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 5;
}

.expoDot{
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: #e63b3b;
    opacity: .35;                 /* неактивная — бледная красная */
    border: 2px solid transparent;/* обводка только у активной */
    box-sizing: border-box;
    cursor: pointer;
    transition: opacity .2s ease, border-color .2s ease, transform .2s ease;
}

.expoDot.is-active{
    opacity: 1;           /* активная ярче */
    border-color: #fff;   /* белая обводка */
    transform: scale(1.05);
}

.about-numbers-wrap {
    padding-bottom: 100px;
}

:root{
    --bg: #0c0c0c;
    --card: #101010;
    --text: #ffffff;
    --muted: rgba(255,255,255,.70);
    --dot: rgba(255,255,255,.55);
    --dotMini: rgba(255,255,255,.45);
    --red: #DE4848;
    --radius: 22px;
}

.history{
    padding: 18px;
    background: transparent;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.history__card{
    max-width: 1260px;
    margin: 0 auto;
    background: radial-gradient(120% 140% at 50% 0%, #151515 0%, #0b0b0b 60%, #0a0a0a 100%);
    border-radius: 30px;
    padding: 34px 38px 28px;
    color: var(--text);
    position: relative;
    overflow: hidden;
}

.history__title{
    font-family: "Druk Wide Cyr";
    font-weight: 500;
    font-style: Medium;
    font-size: 85px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 70px;
}

.history__titleRed{ color: var(--red); }



/* Timeline */
.timeline{
    margin-top: 10px;
    margin-bottom: 40px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    cursor: grab;
}

.timeline::-webkit-scrollbar{
    display: none;
}

.tl__row{
    display: flex;
    gap: 0px;
    flex-wrap: nowrap;
    width: max-content;
    min-width: 100%;
    justify-content: flex-start;
    padding: 10px max(18px, calc(50% - 10px));
}

.tl__node{
    display: grid;
    justify-items: center;
    gap: 10px;
    min-width: 76px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.tl__dot{
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: rgba(198, 198, 198, 1);
    border: 2px solid transparent;
    box-sizing: border-box;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
    transform: translateY(12px);
}

.tl__dot.is-active{
    width: 34px;
    height: 34px;
    max-width: 34px;
    max-height: 34px;
    background: #fff;
    border-color: var(--red);
    border-width: 10px;
    transform: scale(1.08);
}

.tl__year{
    font-family: "Druk Wide Cyr";
    font-weight: 500;
    font-style: Medium;
    font-size: 24px;
    leading-trim: NONE;
    line-height: 124%;
    letter-spacing: 0%;
    text-transform: uppercase;

    color: rgba(255,255,255,.80);
    text-shadow: 0 1px 0 rgba(0,0,0,.35);
}

.tl__year.is-active{
    color: rgba(255, 255, 255, 0.98);
}

.tl__minor{
    display: flex;
    gap: 20px;
    transform: translateY(15px);
}

.tl__miniDot{
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(198, 198, 198, 1);
    opacity: .95;
}

/* Slider text */
.history__text{
    margin: 0 auto;
    max-width: 760px;
    font-family: "Druk Wide Cyr";
    font-weight: 500;
    font-style: Medium;
    font-size: 20px;
    leading-trim: NONE;
    line-height: 124%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;

    padding: 10px 10px 2px;
}

/* Controls */
.history__controls{
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 18px;
}

.btnArrow{
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    cursor: pointer;
    border: 1.5px solid transparent;
    color: #fff;
    transition: transform .15s ease, filter .15s ease, background .15s ease, border-color .15s ease;
    padding: 0;
}

.btnArrow svg{ width: 20px; height: 20px; }

.btnArrow:active{ transform: translateY(1px); }

.btnArrow--ghost{
    background: transparent !important;
    border-color: rgba(230,59,59, 1) !important;
    color: rgba(230,59,59,.9) !important;
}

.btnArrow--fill{
    background: var(--red);
    border-color: #DE4848;
    color: #fff;
}

.docs{
    padding: 16px;
}

.docs__list{
    max-width: 1260px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
    padding-bottom: 100px;
}

/* строка-документ */
.docItem{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;

    background: #fff;
    border: 1px solid #DEDEDE;
    border-radius: 16px;

    padding: 18px 18px 18px 22px;
    text-decoration: none;

    transition: border-color .15s ease, box-shadow .15s ease, transform .05s ease;
}

.docItem:hover{
    border-color: #dcdcdc;
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
}

.docItem:active{
    transform: translateY(1px);
}

.docItem__title{
    font-weight: 900;
    letter-spacing: .4px;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 1.2;
}

/* кнопка справа */
.docItem__btn{
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: grid;
    place-items: center;

    border: 1.5px solid var(--red);
    color: var(--red);
    flex: 0 0 auto;

    transition: background .15s ease, color .15s ease;
}

.docItem:hover .docItem__btn{
    background: rgba(255,75,75,.08);
}

.docItem__btn svg{
    width: 18px;
    height: 18px;
}

.showreel{
    padding: 16px;
    padding-top: 0px;
}

    .showreel__wrap{ max-width:1260px; margin:0 auto; }
.showreelCard{ position:relative; border-radius:30px; overflow:hidden; background:#000; }

.showreelCard__video{
width:100%;
display:block;
height: 709px;
object-fit:cover;
background:#000;
}

.showreelCard__overlay{
position:absolute;
inset:0;
border:0;
padding:0;
background:transparent;
cursor:pointer;
}

.showreelCard__preview{
width:100%;
height:100%;
object-fit:cover;
display:block;
}

.showreelCard__play{
position:absolute;
inset:0;
display:grid;
place-items:center;
font-size:60px;
color:#fff;
text-shadow:0 10px 25px rgba(0,0,0,.5);
}

.showreelCard__play svg {
    width: 80px;
    height: 80px;
    margin-left: 5px;
}

/* Принудительно показываем нативные контролы (Chrome/Safari/Edge) */
video[controls]::-webkit-media-controls {
display: flex !important;
opacity: 1 !important;
visibility: visible !important;
}

video[controls]::-webkit-media-controls-enclosure {
display: flex !important;
opacity: 1 !important;
visibility: visible !important;
}

/* На всякий случай: чтобы видео точно было кликабельным */
video {
pointer-events: auto !important;
}

/* мобилка */
@media (max-width: 520px){
    .docItem__title{ font-size: 15px; }
    .docItem__btn{ width: 40px; height: 40px; }
}

/* Responsive */
@media (max-width: 720px){
    .history__card{ padding: 26px 18px 22px; }
    .tl__node{ min-width: 64px; }
    .tl__year{ font-size: 16px; }
    .tl__minor{ gap: 8px; }
    .tl__row{ padding-inline: 18px; }

    .awards {
        padding: 0;
    }

    .awards-about {
        border-radius: 0 0 16px 16px;
    }

    .awards .section__title {
        padding: 34px 20px 20px 20px;
    }


    .showreelCard{
        border-radius:16px;
    }

}

/* Responsive */
@media (max-width: 900px){
    .expo__wrap{
    grid-template-columns: 1fr;
    }
    .expo__text{
    padding-top: 0;
    }
    .about-us-block h2 {
        font-size: 30px;
    }

    .expo__title {
        font-size: 16px;
    }
    .expo__p {
        font-size: 12px;
    }
    .history__title {
        font-size: 37px;
    }
    .history__text {
        font-size: 14px;
    }
     .numbers.desktop {
        display: block !important;
    }
}

/* End */


/* Start:/local/templates/proexpo/components/bitrix/news.list/awards/style.css?17823665111754*/
.awards__front, .awards__back {
	position: absolute;
	width: 100%;
	height: 100%;
	backface-visibility: hidden;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	border-radius: 16px;
}

.awards__front {
	background: #141414;
	padding: 25px;
}

.awards__back {
	background: #DE4848;
	transform: rotateY(180deg); /* Изначально перевёрнута */
}

.awards__back-inner {
	padding: 25px;
}

@media (max-width: 1280px) {
	.awards .container__inner {
		padding: 0 20px;
	}
	.awards .section__title {
		padding: 20px 20px;
	}
	.swiper.awards__slider {
		padding: 20px 20px;
		overflow: hidden;
	}
}
@media (max-width: 767px) {
	.swiper.awards__slider {
		margin-top: 20px;
	}
}


@media (max-width: 767px) {
	
	.awards__slide.swiper-slide {
		border-radius: 12px;
		height: 240px;
	}
	
	.swiper.awards__slider {
		padding: 20px 20px 34px 20px;
	}
	
	.awards__slide-name-text {
		font-size: 10px;
	}
	
	.awards__front {
		padding: 20px 20px 35px;
	}
}

.awards {
	padding-top: 50px;
}

.awards .section__title {
	max-width: 1260px;
	margin: 0 auto;
	padding: 20px 0px;
	overflow: hidden;
	position: relative;
}

.swiper.awards__slider {
	margin-top: 50px;
	overflow: visible;
	max-width: 1260px;
	margin: 0 auto;
	padding: 20px 0px;
	position: relative;
}

.awards__slide.swiper-slide {
	border-radius: 16px;
	width: 330px;
	height: 300px;
	border: 1px solid #FFFFFF;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	overflow: visible;
}

.awards__slide-img {
	max-width: 130px;
}

.awards__slide-name {
	overflow: hidden;
	min-height: 45px;
}

.awards__slide-name-text {
	color: #fff;
	font-weight: 500;
	font-size: 12px;
	line-height: 154%;
	letter-spacing: 0%;
	text-transform: uppercase;
}
/* End */


/* Start:/local/templates/proexpo/components/bitrix/news.list/partners/style.css?1766135188253*/
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;
}

@media (max-width: 767px) {
	.sliders__inner .support__slide-img {
		width: auto;
		height: 80px;
	}
}
/* End */


/* Start:/local/templates/proexpo/components/bitrix/news.list/reviews/style.css?1766135188151*/
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:/local/templates/proexpo/components/bitrix/news.list/platforms-main/style.css?1766135188150*/
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 */
/* /company/style.css?178227384912232 */
/* /local/templates/proexpo/components/bitrix/news.list/awards/style.css?17823665111754 */
/* /local/templates/proexpo/components/bitrix/news.list/partners/style.css?1766135188253 */
/* /local/templates/proexpo/components/bitrix/news.list/reviews/style.css?1766135188151 */
/* /local/templates/proexpo/components/bitrix/news.list/platforms-main/style.css?1766135188150 */
