

/* Start:/bitrix/templates/geroi19/components/bitrix/menu/top-menu/style.css?1756106084682*/
/* Left menu*/
.menu-items-block {
    display: flex;
}
.menu-items-text, .selected {
    font-weight: var(--font-bold);
    font-size: var(--font-small);
    color: var(--font-grey);
    padding: 0 25px;
	text-decoration: none;
	position: relative;
	z-index: 1;
}
.selected::after {
	position: absolute;
	content: '';
	left: 0;
	bottom: -10px;
	display: flex;
	width: 100%;
	height: 2px;
	background: var(--font-grey);
}
.menu-items-text::after {
	position: absolute;
	content: '';
	left: 50%;
	bottom: -10px;
	display: flex;
	width: 0;
	height: 2px;
	background: var(--font-grey);
	transition: 0.3s;
	transform: translateX(-50%);
}
.menu-items-text:hover::after {
	width: 100%;
}

/* End */


/* Start:/bitrix/templates/geroi19/template_styles.css?175817613110791*/
/* Переменные */
:root {
    --red: #B90E0F;
    --blue: #00428D;
    --white: #FFFFFF;
    --light-blue: #0060AF;
    --font-grey: #444444;
    --font-blackgrey: #2D2D2D;
    --font-smallest: 20px;
    --font-small: 24px;
    --font-middle: 32px;
    --font-big: 36px;
    --font-large: 60px;
    --font-regular: 400;
    --font-bold: 700;
    --container-xxxl: 1738px;
    --container-xxl: 1320px;
    --container-xl: 1140px;
    --container-large: 960px;
    --container-middle: 720px;
    --container-small: 540px;
    --container-smallest: 100%;
}

/* Шрифты */
/* Regular */
@font-face {
  font-family: "HelveticaCustom";
  src: url("/bitrix/templates/geroi19/fonts/Helvetica/helvetica_regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Bold */
@font-face {
  font-family: "HelveticaCustom";
  src: url("/bitrix/templates/geroi19/fonts/Helvetica/helvetica_bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Light */
@font-face {
  font-family: "HelveticaCustom";
  src: url("/bitrix/templates/geroi19/fonts/Helvetica/helvetica_light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Bastionkontrastaltc";
  src: url("/bitrix/templates/geroi19/fonts/Bastionkontrastaltc/Bastionkontrastaltc.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Общие стили */
html, body {
    overflow-x: hidden;
}
body {
    font-family: "HelveticaCustom", Arial, sans-serif;
    margin: 0;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    min-height: 100vh;
    background-color: #F6F6F6;
}
h4 {
    font-size: var(--font-middle);
    margin: 0 0 20px 0;
}
h3 {
    font-size: var(--font-big);
    font-weight: var(--font-bold);
    color: var(--font-blackgrey);
    margin: 0 0 20px 0;
}
h2 {
    font-size: var(--font-large);
    font-weight: var(--font-regular);
    color: var(--font-blackgrey);
    margin: 0 0 20px 0;
}
h1 {
    font-family: "Bastionkontrastaltc", Arial, sans-serif;
    font-size: 175px;
    margin: 0 0 45px 0;
}
.bold {
    font-weight: var(--font-bold);
}
.regular {
    font-weight: var(--font-regular);
}
.big-text {
    font-size: var(--font-big);
    font-weight: var(--font-bold);
}
.container {
    max-width: var(--container-xxxl);
    margin: 0 auto;
    padding: 15px 0;
    width: 100%;
}
.row {
    padding: 20px 150px;
}

/* Шапка */
.header-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    font-family: "Bastionkontrastaltc", Arial, sans-serif;
    font-weight: var(--font-regular);
    color: var(--red);
    font-size: 96px;
    display: flex;
    text-decoration: none;
}

/* Баннер */
.banner-block {
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.banner-items {
    background-color: var(--white);
    color: var(--blue);
    width: 55%;
    padding: 15px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.banner-items.show {
    opacity: 1;
    transform: translateY(0);
}
.background-blue {
    background-color: var(--blue);
    border-radius: 47px;
}
.banner-items .star-icon {
    color: var(--red);
    font-size: 24px;
    margin-right: 15px;
    opacity: 1;       
    transform: none;  
    transition: none;
}
.banner-flag {
    position: absolute;
    top: 5%;
    width: 28%;
    right: 0;
    transform: translateX(100px);
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.banner-flag.show {
    transform: translateX(0);
    opacity: 1;
}
.become {
    text-decoration: none;
    font-size: 48px;
    font-weight: var(--font-bold);
    color: var(--white);
    background-color: var(--blue);
    display: flex;
    padding: 35px 45px;
    border-radius: 23px;
    background-image: url(/bitrix/templates/geroi19/images/flag.png);
    background-size: 40%;
    background-repeat: no-repeat;
    background-position-x: right;
    background-position-y: 45%;
    margin: 30px 0 100px;
}
.ai-button {
    width: 120px;
    height: 120px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    border-radius: 100%;
    cursor: pointer;
    background-color: var(--blue);
    transition: all 0.1s;
    z-index: 998;
}
.ai-button:hover {
    background-color: #2b81e3;
}
.ai-button-img {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 60%;
}
.ai-block {
    width: 400px;
    height: 600px;
    position: fixed;
    bottom: -650px;
    right: 30px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: -1px -1px 10px 1px rgba(0, 0, 0, 0.2);
    transition: all 0.6s;
    padding: 10px 15px;
    z-index: 999;
}
.ai-block .ai-close {
    position: absolute;
    top: -35px;
    right: 0;
    width: 32px;
    cursor: pointer;
}
.ai-block .ai-content-block {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}
.ai-content-block .ai-avatar {
    width: 40px;
    margin-right: 15px;
    border-radius: 100%;
}
.ai-content-block .ai-name {
    font-size: 16px;
    font-weight: 600;
}
.ai-content-block .ai-subname {
    font-size: 12px;
    font-weight: lighter;
    color: #647863;
}
.ai-content-block #date {
    margin-top: 20px;
}
.ai-text,
.human-text {
    width: 100%;
    margin-top: 20px;
    font-size: 15px;
    word-break: break-word;
}

.ai-text {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
}

.ai-text ul {
    padding-left: 5px;
}
.ai-text h4 {
    font-size: 15px;
    margin: 15px 0 5px 0;
}

.human-text {
    display: flex;
    justify-content: flex-end;
    text-align: right;
}
.ai-text .ai-href {
    color: var(--cint-blue-color);
    text-decoration: none;
    transition: color var(--transition);
    -webkit-transition: color var(--transition);
    -moz-transition: color var(--transition);
    -ms-transition: color var(--transition);
    -o-transition: color var(--transition);
}
.ai-text .ai-href:hover {
    color: var(--orange-color);
}
.ai-input {
    width: 90%;
    padding: 5px;
    border: none;
    font-size: 14px;
    color: #898E9E;
}
.ai-input:focus-visible {
    border-bottom: 1px #647863 solid;
    outline: none;
}
.ai-input:focus {
    border-bottom: 1px #647863 solid;
}
.ai-messages {
    padding-right: 20px;
}
.ai-action {
    cursor: pointer;
}
.ai-spinner {
	width: 16px;
	height: 16px;
	border: 2px solid #ccc;
	border-top: 2px solid #007bff;
	border-radius: 50%;
	animation: spin 0.8s linear infinite;
	margin-left: 10px;
	margin-top: 6px;
}
@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .container {
        max-width: var(--container-xxl);
    }
    .banner-flag {
        width: 33%;
    }
    .row {
        padding: 20px 60px;
    }
    .big-text {
        font-size: var(--font-middle);
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .container {
        max-width: var(--container-xl);
    }
    .row {
        padding: 20px 50px;
    }
    .banner-flag {
        top: 10%;
        width: 37%;
    }
    .banner-items {
        width: 60%;
    }
    .big-text {
        font-size: var(--font-small);
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .container {
        max-width: var(--container-large);
    }
    .row {
        padding: 20px 50px;
    }
    .menu-items-text {
        padding: 0 10px;
    }
    .banner-flag {
        top: 15%;
        width: 40%;
    }
    h4 {
        z-index: 1;
    }
    .banner-items {
        width: 70%;
        z-index: 1;
    }
    .big-text {
        font-size: var(--font-middle);
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .row {
        padding: 20px 40px;
    }
    .header-block {
        flex-direction: column;
    }
    .menu-items-text {
        padding: 30px 15px 15px;
    }
    .banner-flag {
        top: 20%;
        width: 53%;
    }
    h1 {
        z-index: 1;
    }
    h4 {
        z-index: 1;
    }
    .banner-items {
        width: 80%;
        z-index: 1;
    }
    .big-text {
        font-size: var(--font-small);
    }
    .partners-item {
        padding: 35px 15px 20px;
        text-align: center;
    }
}

@media (min-width: 577px) and (max-width: 767px) {
    .row {
        padding: 20px 25px;
    }
    .header-block {
        flex-direction: column;
    }
    .menu-items-text {
        padding: 30px 15px 15px;
    }
    .banner-flag {
        top: 22%;
        width: 70%;
    }
    h1 {
        z-index: 1;
    }
    h4 {
        z-index: 1;
    }
    .banner-items {
        width: 80%;
        z-index: 1;
    }
    .big-text {
        font-size: var(--font-small);
    }
    .become {
        font-size: var(--font-big);
    }
}

@media (max-width: 576px) {
    .row {
        padding: 20px 20px;
    }
    .header-block {
        flex-direction: column;
    }
    .logo {
        margin-bottom: 20px;
    }
    .menu-items-block {
        flex-wrap: wrap;
        justify-content: center;
    }
    .menu-items-text {
        padding: 10px 15px 10px;
    }
    .banner-flag {
        top: 25%;
        width: 450px;
    }
    h1 {
        font-size: 115px;
        z-index: 1;
    }
    h2 {
        text-align: center;
        font-size: 50px;
    }
    h4 {
        font-size: var(--font-small);
        z-index: 1;
    }
    .banner-block {
        align-items: center;
    }
    .banner-items {
        width: 90%;
        z-index: 1;
    }
    .banner-flag {
        transform: translateX(0);
    }
    .big-text {
        font-size: var(--font-middle);
    }
    .become {
        font-size: var(--font-small);
        margin: 0px 0 70px;
        justify-content: center;
        background-size: 60%;
        padding: 35px 15px;
    }
    .ai-block {
        max-width: 100%;
        width: 100%;
        right: 0;
        padding: 15px 0;
    }
    .ai-button {
        width: 80px;
        height: 80px;
    }
    .ai-block .ai-content-block {
        padding: 0 15px;
    }
}
/* End */
/* /bitrix/templates/geroi19/components/bitrix/menu/top-menu/style.css?1756106084682 */
/* /bitrix/templates/geroi19/template_styles.css?175817613110791 */
