

/* Start:/local/components/first_window/templates/.default/style.css?17787255932150*/
html,body {background: none !important;}

.base-line-block {
	width: 100%;
	position: relative;
	display: flex;
}

.base-line-block.bg-gray {
	background: #e5e5e5;
}

.base-line-block.first-window {
	min-height: calc(100vh - 142px);
}
.base-line-block.first-window * {
	font-family: 'robotolight';
}
.base-line-block.first-window p {
	font-size: 18px;
    line-height: 24px;
}

.bg-black-gradient {
	background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0) 100%), var(--bg-image);
	background-size: auto, cover;
	background-position: 0 0, center;
	background-repeat: no-repeat, no-repeat;
}

.base-content-block {
	width: calc(100% - 20px);
	max-width: 940px;
	margin: auto;
	padding: 50px 0;
	position: relative;
}
.base-content-block-flex {display:flex;justify-content: space-between;}


.base-left-block {
	width: calc(50% - 50px);
}
.base-right-block {
	width: calc(50% - 50px);
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.base-left-block.white,
.base-left-block.white * {
	color: white;
}

.base-line-block h1 {
	font-weight: 800;
	font-size: 54px;
	line-height: 55px;
	text-align: center;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
	margin: 0;
	text-align: left;
	margin-bottom: 25px;
}

@media (max-width: 768px) {
	.base-line-block {
		min-height: auto;
	}

	.base-content-block {
		padding: 30px 0;
	}
.base-content-block-flex

 {

    flex-flow: column;
    gap: 20px;
    align-items: center;
    text-align: center;
}
	.base-left-block {
		width: 100% !important;
	}

	.base-line-block h1 {
		font-size: 30px;
		text-align: center;
	}

	.base-left-block.white h1 {
		font-size: 36px;
		line-height: 42px;
	}

	.bg-black-gradient {
		background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), var(--bg-image);
		min-height: calc(100vh - 100px);
	}
}

@media (max-width: 480px) {
	.base-line-block h1 {
		font-size: 28px;
	}

	.base-left-block.white h1 {
		font-size: 28px;
		line-height: 34px;
	}
}
/* End */


/* Start:/local/components/multiblocks/templates/scheme_translation/style.css?17783814381133*/
.scheme-translation * {
	font-family: 'robotolight';
}

.scheme-translation h2.orange {
	color: #FF7700;
	font-size:30px
}

.scheme-translation .base-content-block-flex {
	margin-top: 40px;
    display: flex;
    gap: 50px;
}

.scheme-translation .base-content-block-flex .base-content-block-flex-text {
	flex-shrink: 0;
    width: calc(45% - 50px);
    display: flex;
    flex-flow: column;
    gap: 20px;
}

.scheme-translation .base-content-block-flex .base-content-block-flex-text p{
	font-size:18px
}

.scheme-translation .base-content-block-flex .base-content-block-flex-text b{
	font-size:20px
}

.scheme-translation .base-content-block-flex .base-content-block-flex-img {
	    width: 55%;
}

.scheme-translation .base-content-block-flex .base-content-block-flex-img img {
	width: 100%;
}


@media (max-width: 768px) {
.scheme-translation .base-content-block-flex {flex-flow:column}
.scheme-translation .base-content-block-flex .base-content-block-flex-text {
    width: 100%;
}	
	.scheme-translation .base-content-block-flex .base-content-block-flex-img {
	    width: 100%;
}
}
/* End */


/* Start:/local/components/multiblocks/templates/accordion/style.css?17783793871268*/
.accordion-default * {
	font-family: 'robotolight';
}
.accordion-default .accordion-header {
	background: #FF7700;
	padding: 20px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	display: flex;
	flex-flow: column;
	gap: 10px;
}

.accordion-default .accordion-header * {
	color: #ffffff;
}

.accordion-default .accordion-header h2 {
	font-size: 30px;
}

.accordion-default .accordion-header p {
	font-size: 20px;
}

.accordion-default .details-wrap {
	background: #ffffff;
	padding: 20px;
	display: flex;
	flex-flow: column;
	gap: 20px;
}

.accordion-default details {
	background: #f5f5f5;
	padding: 20px;
	border-radius: 10px;
}

.accordion-default details[open] {
	border-radius: 0;
}

.accordion-default summary {
	font-size: 22px;
	font-weight: 600;
	cursor: pointer;
}

.accordion-default summary:before {
	content: '+';
	position: absolute;
	right: 0;
}

.accordion-default [open] summary:before {
	content: '-';
}

.accordion-default summary.orange {
	color: #FF7700;
	position: relative;
}

.accordion-default details > div {
	font-size: 18px;
	margin-top: 20px;
}

@media (max-width: 768px) {
	.accordion-default .accordion-header h2 { }
	.accordion-default details { }
}
/* End */


/* Start:/local/components/freestyleblock/templates/.default/style.css?17783781193056*/
/* Базовый блок */
.prim-translation {
    position:relative;
}
.prim-translation:before {
content: '';
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 80%;
    background-image: var(--bg-image);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right center;
    pointer-events: none;
}
.prim-translation * {
    font-family: 'robotolight';
}

/* Контент внутри блока */
.prim-translation .base-content-block {
}

/* Заголовок h2 */
.prim-translation .base-content-block h2.orange {
	color: #FF7700;
	font-size:30px
}

/* Подзаголовок */
.prim-translation .base-content-block .subtitle {
	font-size: 24px;
    font-weight: 600;
    margin: 15px 0;
}

/* Контейнер с freestyle контентом */
.prim-translation .freestyle-content *{
	font-size: 18px;
    margin: 15px 0;
    font-family: 'robotolight';
}

/* Стили для freestyle контента (только то, что есть в вашем HTML) */
.prim-translation .freestyle-content p {
}

.prim-translation .freestyle-content strong {
}

.prim-translation .freestyle-content ul {
}

.prim-translation .freestyle-content li {
	position:relative;
}
.prim-translation .freestyle-content li:before {
	content: '';
    background: #FF7700;
    width: 10px;
    height: 10px;
    display: inline-block;
    border-radius: 50%;
    margin-right: 10px;
}

.prim-translation .freestyle-content a {
	position: relative;
    color: #000;
    padding-left: 40px;
	text-decoration: underline;
}

.prim-translation .freestyle-content a:before {
	content:'';
	background: url('/telematicheskaya_platforma/retranslyatsiya-dannykh/Без имени-4.png');
	width: 30px;
    height: 30px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
}

.prim-translation .freestyle-content blockquote {
	background: #a7fcc6;
    padding: 10px 30px;
    border-radius: 15px;
    margin-top: 40px;
}

.prim-translation .freestyle-content:before {
	background: #a7fcc6;
}


/* Адаптив */
@media (max-width: 768px) {
    .prim-translation:before {

    max-width: 300px;
}

    
    .prim-translation .freestyle-content p {
    }
    
    .prim-translation .freestyle-content ul {
    }
    
    .prim-translation .freestyle-content li {
    }
    
    .prim-translation .freestyle-content a {
    }
    
    .prim-translation .freestyle-content blockquote {
    }
}

@media (max-width: 480px) {
    .prim-translation {
    }
    
    .prim-translation .freestyle-content p {
    }
    
    .prim-translation .freestyle-content ul {
    }
    
    .prim-translation .freestyle-content li {
    }
    
    .prim-translation .freestyle-content a {
    }
    
    .prim-translation .freestyle-content blockquote {
    }
}
/* End */
/* /local/components/first_window/templates/.default/style.css?17787255932150 */
/* /local/components/multiblocks/templates/scheme_translation/style.css?17783814381133 */
/* /local/components/multiblocks/templates/accordion/style.css?17783793871268 */
/* /local/components/freestyleblock/templates/.default/style.css?17783781193056 */
