

/* Start:/local/templates/helicon-corp/components/bitrix/news/events/bitrix/news.detail/.default/style.css?17103182167025*/
.page-title {
    display: none;
}
.pt-0{
    padding-top: 0;
}

/*карточка с информацией*/
.info-card {
    padding: 24px;
    border: 1px solid var(--blue-color);
    border-radius: 8px;
    width: 265px;
    flex: 0 0 auto;
    height: fit-content;
    margin-bottom: 24px;
    background-color: #fff;
}

.info-card__btn {
    margin-top: 32px;
}

.info-card svg path{
    transition: .3s;
}

.info-card a:not(.button) {
    border-color: var(--dark-blue-color);
}

.info-card a:not(.button):hover {
    color: var(--orange-color);
    border-color: var(--orange-color);
}
.info-card a:not(.button):hover svg path{
    fill: var(--orange-color);
}
.info-card__btn-link{
    border: none;
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

@media screen and (max-width:1024px) {
    .info-card{
        width: 100%;
        margin-top: 24px;
    }
    .info-card__title{
        font-size: 19px;
    }
    .info-card__btn {
        margin-top: 15px;
    }
}

.info-btn{
    margin-block:20px;
}

/*новость детльно*/
.news-detail{
    padding-bottom: 120px;
}
.news-detail p {
    line-height: 1.5em;
}
.news-detail + section{
    padding-top: 0;
}
.news-detail__head {
    margin-bottom: 40px;
    position: relative;
}

.news-detail__info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--mild-grey-color);
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.news-detail__content a:visited:not(.button):not(:hover) {
    color: #858585;
    border-color: #858585;
}

@media screen and (min-width: 1025px) {

    .news-detail__head,
    .news-detail__content {
        width: 75%;
    }

    .news-detail__head--row {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 100%;
        gap: 24px;
        justify-content: space-between;
    }
}

.news-detail__tags {
    margin-right: auto;
}

.news-detail__tags a {
    color: var(--mild-grey-color);
    border: none;
}

.news-detail__tags span {
    margin-inline: 16px;
}

.news-detail__title {
    margin-bottom: 16px;
}

.news-detail__img {
    margin-bottom: 80px;
}

.news-detail__content img {
    margin-top: 40px;
    margin-bottom: 40px;
}

@media screen and (max-width:1024px) {
    .news-detail__img {
        margin-bottom: 40px;
        width: 100%;
    }
}

@media screen and (max-width:425px) {
    .news-detail__content img {
        margin-top: 24px;
        margin-bottom: 24px;
    }
}

.info-btn a{
    white-space: nowrap;
}

/*галерея*/
.gallery-block {
    margin-top: 80px;
}

.main-carousel {
    width: 100%;
    --carousel-button-color: #170724;
    --carousel-button-svg-width: 20px;
    --carousel-button-svg-height: 20px;
    --carousel-button-svg-stroke-width: 1px;
}

.main-carousel .carousel__dots .carousel__dot::after {
    background-color: #ECECEC;
    opacity: 1;
}

.main-carousel .carousel__dots .carousel__dot.is-selected::after {
    background-color: var(--blue-color);
}

.main-carousel .carousel__slide {
    width: 100%;
    height: 530px;
    padding: 0;
    max-height: 530px;
}

.main-carousel .carousel__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-carousel .carousel__button.is-prev {
    left: 16px;
}

.main-carousel .carousel__button.is-next {
    right: 16;
}

.main-carousel .carousel__button:focus {
    outline: none;
    box-shadow: 0 0 0 1px var(--orange-color);
}

.main-carousel .carousel__button:focus svg path {
    stroke: var(--orange-color);
}

.thumb-carousel {
    margin-top: 16px;
}

.thumb-carousel .carousel__slide {
    opacity: 0.5;
    padding: 0;
    margin-right: 16px;
    width: 175px;
    height: 110px;
}

.thumb-carousel .carousel__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb-carousel .carousel__slide {
    opacity: 1;
}

.thumb-carousel .carousel__slide.video-wrap::before {
    background-size: 40px;
}

@media screen and (min-width:1025px) {
    .main-carousel .carousel__dots {
        display: none;
    }
}

@media screen and (max-width:1024px) {

    .main-carousel .carousel__nav,
    .thumb-carousel {
        display: none;
    }
}

@media screen and (max-width:768px) {
    .main-carousel .carousel__slide {
        height: 450px;
    }

    .gallery-block {
        margin-top: 40px;
    }
}

@media screen and (max-width:425px) {
    .main-carousel .carousel__slide {
        height: 280px;
    }
}

/*шапка слайдера*/
.slider-head,
.slider-head__nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.slider-head {
    margin-bottom: 10px;
}

/*Кнопка Назад*/
.back-link {
    display: flex;
    align-items: center;
    position: relative;
    width: fit-content;
    transition: .5s;
}

.back-link::before {
    content: '';
    position: absolute;
    height: 42px;
    width: 42px;
    border: 1px solid var(--orange-color);
    border-radius: 30px;
    z-index: -1;
    transition: .5s;
}

.back-link__icon {
    padding: 14px 13px;
    margin-right: 16px;
}

.back-link__icon svg {
    transition: .5s;
}

.back-link:hover {
    color: #fff;
}

.back-link:hover::before {
    width: 110%;
    background-color: var(--orange-color);
}

.back-link:hover .back-link__icon svg {
    transform: scale(1.3) translateX(10px);
}

.back-link:hover .back-link__icon svg path {
    stroke: #fff;
}

/*Новости*/
.news-card {
    display: block;
}

.news-card:hover .news-card__title {
    color: var(--orange-color);
}

.news-card:hover .news-card__subtitle {
    color: var(--orange-color);
}

.news-card__img {
    margin-bottom: 24px;
    text-align: center;
    position: relative;
}

.news-card__img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.news-card__labels {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    gap: 8px;
}

.news-card__labels-item {
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    background-color: #fff;
    color: var(--orange-color);
    padding: 6px 8px;
}

.news-card__date {
    margin-bottom: 8px;
    font-size: 12px;
    color: var(--mild-grey-color);
}

.news-card__title {
    margin-bottom: 8px;
    width: 85%;
    font-size: 19px;
    transition: color 0.5s ease;
}

.news-card__subtitle {
    width: 85%;
    font-size: 15px;
    transition: color 0.5s ease;
}

@media screen and (max-width: 425px) {
    .news-slider .slider-head {
        margin-bottom: 0;
    }
    .news-card__img {
        margin-bottom: 16px;
    }
    .news-card__title {
        font-size: 18px;
    }
}

@media screen and (min-width:1025px) {
    .news-card--small .news-card__labels{
        top: 8px;
        right: 8px;
    }
}
.news-card--small .news-card__title, .news-card--small .news-card__subtitle{
    width: 100%;
}

.back-link--section {
    margin-top: 80px;
}

@media screen and (max-width:768px) {
    .back-link--section {
        margin-top: 40px;
    }
}
/* End */


/* Start:/local/templates/helicon-corp/components/bitrix/news.list/media-block/style.css?16987239693422*/
/*Новости*/
.news-card{
    display: block;
}
.news-card:hover .news-card__title {
	color: var(--orange-color);
}

.news-card:hover .news-card__subtitle {
	color: var(--orange-color);
}

.news-card__img {
	margin-bottom: 24px;
	text-align: center;
    position: relative;
}

.news-card__img img{
    width: 100%;
    height: auto;
    object-fit: cover;
}
.news-card--file{
    height: 100%;
}
.news-card__labels{
    position: absolute;
	top: 16px;
	right: 16px;
    display: flex;
    gap: 8px;
}

.news-card__labels-item {
	font-weight: 400;
	font-size: 12px;
	line-height: 15px;
	background-color: #fff;
	color: var(--orange-color);
	padding: 6px 8px;
}

.news-card__date {
	margin-bottom: 8px;

	font-weight: 400;
	font-size: 14px;
	line-height: 17px;

	color: var(--mild-grey-color);
}
.news-card__title {
	margin-bottom: 16px;
	width: 85%;
	font-weight: 400;
	font-size: 24px;
	line-height: 114.52%;
	transition: color 0.5s ease;
}

.news-card__subtitle {
	width: 85%;
	font-weight: 400;
	font-size: 16px;
	line-height: 145%;
	transition: color 0.5s ease;
}

@media screen and (max-width: 640px){
    .news-slider .slider-head{
        margin-bottom: 0;
    }
    .news-slider .slider-head__nav{
        display: none;
    }
    .news-slider__wrapper{
        flex-direction: column;
        gap: 40px;
    }
    .news-slider__item:not(:first-child, :nth-child(2), :nth-child(3)){
        display: none;
    }
}

@media screen and (max-width: 425px){
    .news-slider .slider-head{
        margin-bottom: 0;
    }
    .news-card__img{
        margin-bottom: 16px;
    }
    .news-card__date{
        font-size: 12px;
        line-height: normal;
    }
    .news-card__title{
        font-size: 18px;
        margin-bottom: 8px;
    }
    .news-card__subtitle{
        font-size: 15px;
    }
}
.news-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.news-card--file {
    background: rgba(240, 241, 245, 0.8);
    padding: 16px 16px 24px 32px;
    position: relative;
}

.news-card--file .news-card__labels {
    position: relative;
    top: unset;
    right: unset;
    justify-content: flex-end;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.news-card--file .news-card__date {
    font-size: 12px;
    margin-bottom: 24px;
}

.news-card--file .document {
    display: flex;
    gap: 16px;
    width: fit-content;
}

.document__link {
    text-align: left;
}

.news-card--file .document__title {
    font-size: 15px;
    line-height: 18px;
    margin-bottom: 8px;
    transition: .3s;
}

.news-card--file .document__info {
    font-size: 12px;
    color: var(--dark-grey-color);
}

.news-card--file:hover .document {
    color: var(--orange-color);
}

@media screen and (max-width: 1024px) {
    .news-section__grid {
        grid-template-columns: 48% 48%;
    }
}

@media screen and (max-width: 768px) {
    .news-card--file {
        padding-left: 16px;
    }
}

@media screen and (max-width: 600px) {
    .news-section__grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 375px) {
    .news-card--file .document__img svg {
        width: 20px;
        height: auto;
    }
}

.title_link svg {
    width: 29px;
    height: 29px;
    stroke: var(--orange-color);
    margin-left: 6px;
    transition: stroke 0.5s ease;
}

.title_link:hover svg {
    stroke: var(--blue-color);
}


.news-card__labels-item a {
    color: inherit;
}



/* End */


/* Start:/local/templates/helicon-corp/components/bitrix/sender.subscribe/mailing/style.css?17593905563515*/
.subscribe-section{
    background-color: rgba(240, 241, 245, 0.8);
    position: relative;
}
.subscribe-section__img{
    position: absolute;
    left: 0;
    height: 100%;
    width: 47%;
    object-fit: cover;
}
.subscribe-section__content{
    padding-top: 56px;
    padding-bottom: 56px;
}
.subscribe-section__title, .subscribe-section__wrap{
    width: 42%;
    margin-left: auto;
}
.subscribe-section__title{
    margin-bottom: 16px;
}
.subscribe-form__input-box--white{
    background: #fff;
    border: 2px solid #fff;
}
.subscribe-section__form{
    margin-top: 25px;
}

.subscribe-section__form .main-form__box input:focus {
    border-color: #fff !important;
}

.checkbox-confirm-wrapper {
    justify-content: left;
}

.subscribe-section__form .error, .subscribe-section__form .error .checkbox__label {
    color: var(--error-color);
    border-color: var(--error-color);
}

.subscribe-section__form .error:not(input) {
    margin-top: 8px;
    font-size: 12px;
    display: block;
}

.subscribe-section .checkbox-field_floating,
.subscribe-section .text-field_floating {
	flex-direction: column;
}

.subscribe-section .checkbox__wrap > .checkbox__label a {
	font-weight: 400;
	color: inherit;
}
.subscribe-section .checkbox__wrap > .checkbox__label {
	display: block;
	padding-left: 24px;
	align-items: center;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	cursor: pointer;
	font-weight: 400;
	font-size: 10px;
	line-height: 1.1;
    opacity: 0.5;
    transition: opacity 0.5s ease;
	color: #676767;
}

.subscribe-section .checkbox__wrap > .checkbox__label:before {
	content: "";
	position: absolute;
	left: 0;
}
.subscribe-section .form__item-inner {
	position: relative;
	overflow: initial;
	max-height: 180px;
	scrollbar-width: thin;
	scrollbar-color: rgba(0, 0, 0, 0.3) transparent;
}

.subscribe-section .form__item-checkbox {
	display: flex;
	align-items: center;
	margin-bottom: 8px;
}

.mailing-field__wrapper {
    display: flex;
    gap: 5px;
	flex-direction: row;
    margin-bottom: 10px;
}

.mailing-field__wrapper .text-field-name {
    width: 35%;
}

@media screen and (max-width: 1120px) {
    .subscribe-section {
        background-size: 40%;
    }

    .subscribe-section__title, .subscribe-section__wrap{
        width: 50%;
    }
}

@media screen and (max-width:991px) {

    .subscribe-section__title{
        width: 100%;
        margin-bottom: 30px;
    }

    .subscribe-section__img{
        height: 56%;
        bottom: 56px;
    }
    .subscribe-section__wrap{
        padding: 30px 0;
    }
}

@media screen and (max-width: 768px) {
    .subscribe-section__img{
        display: none;
    }
    .subscribe-section__title, .subscribe-section__wrap{
        width: 100%;
    }
    .subscribe-section__title{
        margin-bottom: 16px;
    }
    .subscribe-section__wrap{
        padding: 0;
    }
    .mailing-field__wrapper {
        flex-direction: column;
    }
    .mailing-field__wrapper .text-field-name {
        width: 100%;
    }
}

@media screen and (max-width: 425px) {
    .subscribe-section__form input[type=submit] {
        width: 100%;
    }
    .subscribe-section__form .text-field__wrapper--inline{
        flex-direction: column;
        gap: 16px;
        background: none;
        border: none;
    }
    .subscribe-section__form .text-field__wrapper--inline input{
        background-color: #fff !important;
        height: 48px;
    }
    .subscribe__button{
        width: 100% !important;
    }
}
/* End */


/* Start:/local/templates/helicon-corp/components/bitrix/main.userconsent.request/sender.subscribe.mailing/user_consent.css?16987239694322*/
.main-user-consent-request a {
	cursor: pointer;
}

.main-user-consent-request-popup {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background-color: rgba(0,0,0,0.5);
	overflow: hidden;
	z-index: 9000;
}

.main-user-consent-request-popup-cont {
	min-height: 290px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: 0 auto;
	padding: 20px;
	min-width: 320px;
	width: 100%;
	max-width: 600px;
	background: #fff;
	text-align: center;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-border-radius: 5px;
	border-radius: 5px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	overflow-y: auto;
}

.main-user-consent-request-popup-header {
	margin: 0 0 10px 0;
	font: normal 18px "Helvetica Neue", Arial, Helvetica, sans-serif;
	color: #000;
	text-align: left;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	max-width: 260px;
}

.main-user-consent-request-popup-textarea-block {
	margin: 0 0 20px 0;
}

.main-user-consent-request-popup-buttons {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.main-user-consent-request-popup-button {
	display: inline-block;
	height: 39px;
	margin: 0 10px 5px 0;
	padding: 0 18px;
	border: none;
	border-radius: 2px;
	font: normal 12px/39px "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: #535c69;
	outline: none;
	vertical-align: middle;
	text-decoration: none;
	text-transform: uppercase;
	text-shadow: none;
	white-space: nowrap;
	-webkit-font-smoothing: antialiased;
	-webkit-transition: background-color 0.2s linear, color 0.2s linear;
	transition: background-color 0.2s linear, color 0.2s linear;
	cursor: pointer;
}

.main-user-consent-request-popup-button-acc {
	background: #bbed21;
}

.main-user-consent-request-popup-button-acc:hover {
	background: #d2f95f;
}

.main-user-consent-request-popup-button-rej {
	-webkit-box-shadow: inset 0 0 0 1px #a1a6ac;
	box-shadow: inset 0 0 0 1px #a1a6ac;
	background: none;
}

.main-user-consent-request-popup-button-rej:hover {
	background: #cfd4d8;
}

.main-user-consent-request-popup-text {
	border: 1px solid #999;
	overflow: auto;
	padding: 8px;
	text-align: left;
	color: rgb(84, 84, 84);
}

.main-user-consent-request-popup-link {
	height: 130px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.main-user-consent-request-popup-link a {
	display: block;
	margin: 20px 0 0 0;
	text-overflow: ellipsis;
	overflow: hidden;
	max-width: 260px;
}

/** LOADER **/
.main-user-consent-request-loader {
	position: relative;
	height: 100px;
	width: 100px;
	margin: 0 auto;
	-webkit-transform: translate(0, 50%);
	transform: translate(0, 50%);
}

.main-user-consent-request-path {
	stroke: #80868e;
	stroke-dasharray: 100, 200;
}

.main-user-consent-request-loader:before {
	content: '';
	display: block;
	padding-top: 100%;
}

.main-user-consent-request-circular {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	height: inherit;
	width: inherit;
	-webkit-animation: rotate 1s linear infinite;
	animation: rotate 1s linear infinite;
	-webkit-transform-origin: center center;
	transform-origin: center center;
}

.main-user-consent-request-path {
	stroke: #ccc;
	stroke-dasharray: 60, 200;
	stroke-dashoffset: 0;
	-webkit-animation: dash 1.5s ease-in-out infinite;
	animation: dash 1.5s ease-in-out infinite;
	stroke-linecap: round;
}

.main-user-consent-request-announce{
	color: #333;
	font-size:13px;
	line-height: 15px;
}
.main-user-consent-request-announce-link{
	cursor: pointer;
}

@keyframes rotate {
	100% {
		transform: rotate(360deg);
	}
}

@-webkit-keyframes rotate {
	100% {
		-webkit-transform: rotate(360deg);
	}
}

@media (min-width: 1000px) {

	.main-user-consent-request-popup-cont {
		min-height: 400px;
		min-width: 640px;
	}

	.main-user-consent-request-popup-header {
		max-width: 590px;
	}

	.main-user-consent-request-popup-text,
	.main-user-consent-request-popup-link {
		height: 240px;
	}
	.main-user-consent-request-popup-link a {
		max-width: 200px;
	}
}

@media (max-width: 768px) {
	.main-user-consent-request-popup-cont {
		height: 100%;
	}
}
/* End */
/* /local/templates/helicon-corp/components/bitrix/news/events/bitrix/news.detail/.default/style.css?17103182167025 */
/* /local/templates/helicon-corp/components/bitrix/news.list/media-block/style.css?16987239693422 */
/* /local/templates/helicon-corp/components/bitrix/sender.subscribe/mailing/style.css?17593905563515 */
/* /local/templates/helicon-corp/components/bitrix/main.userconsent.request/sender.subscribe.mailing/user_consent.css?16987239694322 */
