

/* Start:/consult/style.css?17875766334220*/
/* ======================================================
   HELP ENTRY / CONSULT HERO
====================================================== */

.helpEntry{
    display:flex;
    flex-direction:column;
    gap:26px;
    margin-bottom:34px;
}

/* ---------------- HERO ---------------- */

.helpEntryHero{
    position:relative;
    overflow:hidden;
    border-radius:24px;
    padding:44px;
    background:linear-gradient(135deg,#0B1220 0%,#1A2333 100%);
    color:#fff;
	margin-top: 30px;
}

.helpEntryHero::before{
    content:"";
    position:absolute;
    top:-120px;
    right:-120px;
    width:340px;
    height:340px;
    background:radial-gradient(circle,rgba(90,80,200,.28),transparent 70%);
}

.helpEntryBadge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 14px;
    border-radius:999px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.10);
    color:#CBD5F5;
    font-size:13px;
    font-weight:600;
    margin-bottom:18px;
}

.helpEntryBadge svg{
    width:16px;
    height:16px;
}

.helpEntryHero h1{
    margin:0 0 18px;
    font-size:40px;
    line-height:1.15;
    font-weight:700;
    max-width:760px;
    color:#fff;
}

.helpEntrySubtitle{
    margin:0;
    max-width:720px;
    color:#CBD5F5;
    font-size:17px;
    line-height:1.8;
}

/* ---------------- SCENARIOS ---------------- */

.helpScenarios{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

.helpScenario{
    background:#FFFFFF;
    border:1px solid #E2E8F0;
    border-radius:20px;
    padding:24px;
    transition:.25s ease;
    box-shadow:0 10px 24px rgba(15,23,42,.04);
}

.helpScenario:hover{
    transform:translateY(-4px);
    border-color:#D6DBF5;
    box-shadow:0 18px 34px rgba(90,80,200,.10);
}

.helpScenarioAccent{
    border-color:#D6DBF5;
    background:linear-gradient(180deg,#FFFFFF 0%,#FAFAFF 100%);
}

.helpScenarioIcon{
    width:56px;
    height:56px;
    border-radius:16px;
    background:#EEF2FF;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:18px;
}

.helpScenario:not(.helpScenarioAccent) .helpScenarioIcon{
    background:#E6F4F1;
}

.helpScenarioAccent .helpScenarioIcon svg{
    color:#5A50C8;
}

.helpScenario:not(.helpScenarioAccent) .helpScenarioIcon svg{
    color:#2F7D6B;
}

.helpScenarioIcon svg{
    width:26px;
    height:26px;
}

.helpScenarioLabel{
    display:inline-block;
    font-size:11px;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:#64748B;
    margin-bottom:10px;
}

.helpScenario h3{
    margin:0 0 10px;
    font-size:21px;
    line-height:1.3;
    color:#0F172A;
}

.helpScenario p{
    margin:0 0 18px;
    color:#475569;
    line-height:1.7;
    font-size:14px;
}

.helpScenarioTarget{
    display:flex;
    align-items:center;
    gap:8px;
    padding-top:16px;
    border-top:1px solid #EEF2F7;
    font-weight:600;
    color:#0F172A;
}

.helpScenarioAccent .helpScenarioTarget{
    color:#5A50C8;
}

.helpScenarioTarget svg{
    width:16px;
    height:16px;
}

/* ---------------- NOTICE ---------------- */

.helpEntryNotice{
    display:flex;
    gap:18px;
    align-items:flex-start;
    padding:24px;
    border-radius:18px;
    background:#E6F4F1;
    border:1px solid #B7D9D1;
	margin-bottom: 50px;
}

.helpEntryNoticeIcon{
    width:56px;
    height:56px;
    border-radius:14px;
    background:#2F7D6B;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.helpEntryNoticeIcon svg{
    width:26px;
    height:26px;
    color:#fff;
}

.helpEntryNotice h3{
    margin:0 0 8px;
    font-size:22px;
    color:#1F5C4F;
}

.helpEntryNotice p{
    margin:0;
    color:#2F4F47;
    line-height:1.8;
}

/* ---------------- MOBILE ---------------- */

@media (max-width:980px){

    .helpScenarios{
        grid-template-columns:1fr;
    }

}

@media (max-width:768px){

    .helpEntryHero{
        padding:30px 22px;
        border-radius:20px;
    }

    .helpEntryHero h1{
        font-size:30px;
    }

    .helpEntrySubtitle{
        font-size:15px;
    }

    .helpEntryNotice{
        flex-direction:column;
    }

    .helpScenario{
        padding:20px;
    }

}
/* End */


/* Start:/local/components/bitrix/form.result.new/templates/twoColumns_custom/style.css?17871488109295*/
/* =========================
   BASE WRAPPER
========================= */

.customWebFormWrapper {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

/* =========================
   HEADER
========================= */

.webFormHeading {
    font-size: 20px;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 8px;
}

.webFormDescription {
    color: #64748B;
    font-size: 14px;
    margin-bottom: 20px;
}

/* =========================
   GRID LAYOUT
========================= */

.webFormItems {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.webFormItemsColumn {
    flex: 1 1 320px;
    min-width: 280px;
}

/* =========================
   FORM ITEM
========================= */

.webFormItem {
    margin-bottom: 16px;
}

.webFormItemCaption {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.webFormItemLabel {
    font-size: 14px;
    color: #334155;
    font-weight: 500;
}

.webFormItemRequired {
    color: #2F7D6B;
}

/* =========================
   INPUTS
========================= */

.webFormItemField {
    position: relative;
}

.webFormItemField input:not([type="checkbox"]):not([type="radio"]),
.webFormItemField select,
.webFormItemField textarea {
    width: 100%;
    box-sizing: border-box;

    background: #F6F8FB;
    border: 1px solid #E2E8F0;
    border-radius: 12px;

    padding: 12px 14px;

    font-size: 14px;
    color: #0F172A;

    outline: none;
    transition: all 0.2s ease;
    font-weight: 300;
}

/* textarea */
.webFormItemField textarea {
    min-height: 120px;
    resize: vertical;
}

/* focus */
.webFormItemField input:focus,
.webFormItemField textarea:focus {
    border-color: #5A50C8;
    box-shadow: 0 0 0 3px rgba(90, 80, 200, 0.12);
    background: #FFFFFF;
}

/* =========================
   ERROR STATE (универсально)
========================= */

.webFormItemField.error input:not([type="checkbox"]):not([type="radio"]),
.webFormItemField.error textarea,
.webFormItemField.error select {
    border-color: #991B1B !important;
    background: #FFE5E5 !important;
    -box-shadow: 0 0 0 3px rgba(153, 27, 27, 0.15) !important;
}

/* =========================
   RADIO
========================= */

.webFormItemFieldVariant {
    display: flex;
    gap: 8px;
    margin-bottom: 6px;
}

/* =========================
   PERSONAL INFO BLOCK
========================= */

.personalInfo {
    margin-top: 20px;
    padding: 12px;
    background: #F1F5F9;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
}

.personalInfoFieldWrap {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 12px;
    -border: 1px solid #E2E8F0;
    border-radius: 12px;
    -background: #FFFFFF;
    transition: all 0.2s ease;
}

/* hover */
.personalInfoFieldWrap:hover {
    -border-color: #D6DBF5;
}

/* focus */
.personalInfoFieldWrap:focus-within {
    -border-color: #5A50C8;
    box-shadow: 0 0 0 3px rgba(90, 80, 200, 0.12);
}

/* error */
.personalInfoFieldWrap.error {
    border: 1px solid #991B1B !important;
    background: #FFE5E5;
}

/* label */
.personalInfoFieldWrap label {
    margin: 0;
    line-height: 1.5;
    cursor: pointer;
    color: #334155;
}

/* checkbox */
.personalInfoFieldWrap input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-top: 2px;
    cursor: pointer;
	-webkit-appearance: auto !important;
    accent-color: #2F7D6B;
}

/* =========================
   BUTTONS
========================= */

.webFormTools {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.sendWebFormDw {
    background: #2F7D6B;
    color: #fff;
    border: none;
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
}

.sendWebFormDw:hover {
    background: #276B5C;
}

.webFormTools input[type="reset"] {
    background: transparent;
    border: 1px solid #D6DBF5;
    color: #5A50C8;
    padding: 12px 14px;
    border-radius: 12px;
    cursor: pointer;
	font-size: 16px;
}

.webFormTools input[type="reset"]:hover {
    background: #EEF2FF;
}

/* =========================
   ERRORS TEXT
========================= */

.webFormItemError {
    font-size: 12px;
    color: #991B1B;
    margin-top: 4px;
    display: none;
}

.webFormItemError.visible {
    display: block;
}

/* =========================
   GLOBAL ERROR
========================= */

.webFormError {
    margin-top: 16px;
    padding: 10px 12px;
    border-radius: 12px;
    background: #FFE5E5;
    color: #991B1B;
    display: none;
}

.webFormError.visible {
    display: block;
}

/* =========================
   MODAL SUCCESS
========================= */

.webFormMessage {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 9999;
    background: rgba(11, 18, 32, 0.6);
    backdrop-filter: blur(6px);
}

.webFormMessageContainer {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.webFormMessageMiddle {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 24px;
    width: 420px;
    max-width: 90%;
    text-align: center;
}

.webFormMessageHeading {
    font-size: 18px;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 10px;
}

.webFormMessageDescription {
    color: #64748B;
    font-size: 14px;
    margin-bottom: 16px;
}

.webFormMessageExit {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 12px;
    background: #5A50C8;
    color: #fff;
    text-decoration: none;
}

.webFormMessageExit:hover {
    background: #4B42AA;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
	.sendWebFormDw {
		box-sizing: border-box;
	}
	.webFormItemsColumn {
		flex: 1 1 20px;
	}
    .webFormItems {
        flex-direction: column;
    }

    .customWebFormWrapper {
        padding: 16px;
    }

    .webFormTools {
        flex-direction: column;
        align-items: stretch;
    }
}

/* =========================
   SELECT ARROW
========================= */

.webFormItemField select {
    height: 52px;
    padding: 0 44px 0 16px;
    appearance: none;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

/* =========================
   TRAP
========================= */

.webFormTrap {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

/* =========================
   LINKS
========================= */

.pilink {
    color: #5A50C8 !important;
}

/* =========================
   FILE UPLOAD FIELD
========================= */

.webFormItemField input[type="file"] {

    width: 100%;
    box-sizing: border-box;

    padding: 14px;

    background: #F6F8FB;

    border: 1px dashed #B7D9D1;
    border-radius: 14px;

    color: #334155;

    font-size: 14px;
    cursor: pointer;

    transition: all .25s ease;

}


/* кнопка выбора файла */

.webFormItemField input[type="file"]::file-selector-button {

    background: #5A50C8;

    color: #FFFFFF;

    border: none;

    padding: 10px 16px;

    margin-right: 14px;

    border-radius: 10px;

    font-size: 14px;

    font-weight: 600;

    cursor: pointer;

    transition: background .2s ease;

}


.webFormItemField input[type="file"]::file-selector-button:hover {

    background: #4B42AA;

}


/* hover зоны */

.webFormItemField input[type="file"]:hover {

    background: #FFFFFF;

    border-color: #E2E8F0;

    box-shadow:
        0 0 0 3px rgba(90,80,200,.08);

}


/* focus */

.webFormItemField input[type="file"]:focus {

    outline: none;

    border-color: #E2E8F0;

    box-shadow:
        0 0 0 3px rgba(90,80,200,.12);

}


/* =========================
   FILE FIELD WRAPPER
========================= */


.webFormItem:has(input[type="file"]) 
.webFormItemField {

    position: relative;

}


/* подпись к загрузке */

.webFormItem:has(input[type="file"])
.webFormItemField::after {

    content:
    "Можно приложить документы, фото, скриншоты или другие материалы";

    display:block;

    margin-top:10px;

    color:#64748B;

    font-size:12px;

    line-height:1.5;

}


/* =========================
   SELECTED FILE STATE
========================= */


.webFormItem:has(input[type="file"].has-file)
.webFormItemField {

    border-radius:14px;

}


.webFormItem:has(input[type="file"].has-file)
input[type="file"] {

    background:#E6F4F1;

    border-color:#2F7D6B;

}


/* =========================
   MOBILE
========================= */


@media(max-width:768px){

    .webFormItemField input[type="file"] {

        padding:12px;

        font-size:13px;

    }


    .webFormItemField input[type="file"]::file-selector-button {

        width:100%;

        margin-right:0;

        margin-bottom:8px;

    }

}
/* End */


/* Start:/local/assets/css/sect_information_block.css?17801212353163*/
.prr-contact-widget{
	width:280px;
	position:relative;
}

.prr-contact-widget__inner{
	position:relative;
	padding:28px;
	border-radius:28px;

	background:
		linear-gradient(
			180deg,
			rgba(255,255,255,.92) 0%,
			rgba(248,250,255,.96) 100%
		);

	border:1px solid rgba(95,108,255,.08);

	/*box-shadow:
		0 20px 60px rgba(17,24,39,.08),
		0 2px 10px rgba(17,24,39,.04);*/


	box-shadow: 
	  0 10px 20px #E2E8F0,
	  0 2px 10px #F6F8FB;

	backdrop-filter:blur(14px);

	overflow:hidden;
}

.prr-contact-widget__inner:before{
	content:"";
	position:absolute;
	top:-120px;
	right:-120px;

	width:220px;
	height:220px;

	background:
		radial-gradient(
			circle,
			rgba(95,108,255,.18) 0%,
			rgba(95,108,255,0) 72%
		);

	pointer-events:none;
}

.prr-contact-widget__badge{
	display:inline-flex;
	align-items:center;
	gap:8px;

	padding:8px 12px;

	border-radius:999px;

	background:rgba(95,108,255,.08);

	color:#5A50C8;

	font-size:12px;
	font-weight:600;
	letter-spacing:.02em;

	margin-bottom:18px;
}

.prr-contact-widget__badge i{
	width:15px;
	height:15px;
}

.prr-contact-widget__title{
	margin:0 0 12px;

	font-size:28px;
	line-height:1.08;
	font-weight:800;

	color:#0f172a;
}

.prr-contact-widget__text{
	font-size:14px;
	line-height:1.7;

	color:#64748b;

	margin-bottom:28px;
}

.prr-contact-widget__list{
	display:flex;
	flex-direction:column;
	gap:14px;
}

.prr-contact-widget__item{
	display:flex;
	align-items:flex-start;
	gap:14px;

	padding:14px;

	border-radius:18px;

	background:
		linear-gradient(
			180deg,
			rgba(255,255,255,.9) 0%,
			rgba(245,247,255,.92) 100%
		);

	border:1px solid rgba(95,108,255,.08);

	transition:
		transform .25s ease,
		border-color .25s ease,
		box-shadow .25s ease;
}

.prr-contact-widget__item:hover{
	transform:translateY(-2px);

	border-color:rgba(95,108,255,.18);

	box-shadow:
		0 12px 28px rgba(95,108,255,.08);
}

.prr-contact-widget__icon{
	flex:0 0 42px;

	width:42px;
	height:42px;

	display:flex;
	align-items:center;
	justify-content:center;

	border-radius:14px;

	background:
		linear-gradient(
			135deg,
			#5A50C8 0%,
			#7c86ff 100%
		);

	color:#fff;

	box-shadow:
		0 10px 24px rgba(95,108,255,.22);
}

.prr-contact-widget__icon i{
	width:20px;
	height:20px;
}

.prr-contact-widget__content{
	font-size:14px;
	line-height:1.7;

	color:#0f172a;

	word-break:break-word;
}

.prr-contact-widget__content a{
	color:#5A50C8;
	text-decoration:none;

	transition:opacity .2s ease;
}

.prr-contact-widget__content a:hover{
	opacity:.72;
}

.prr-contact-widget__footer{
	margin-top:28px;
}

.prr-contact-widget__button{
	max-width:100%;

	display:flex;
	align-items:center;
	justify-content:center;
	gap:10px;

	padding:16px 18px;

	border-radius:18px;

	background:
		linear-gradient(
			135deg,
			#5A50C8 0%,
			#7480ff 100%
		);

	color:#fff;
	text-decoration:none;

	font-size:14px;
	font-weight:700;

	box-shadow:
		0 16px 40px rgba(95,108,255,.26);

	transition:
		transform .25s ease,
		box-shadow .25s ease;
}

.prr-contact-widget__button:hover{
	transform:translateY(-2px);

	box-shadow:
		0 22px 46px rgba(95,108,255,.34);
}

.prr-contact-widget__button i{
	width:18px;
	height:18px;
}
/* End */
/* /consult/style.css?17875766334220 */
/* /local/components/bitrix/form.result.new/templates/twoColumns_custom/style.css?17871488109295 */
/* /local/assets/css/sect_information_block.css?17801212353163 */
