

/* Start:/local/templates/hakaton/fonts/fonts.css?1783591716733*/
@font-face {
    font-family: 'RostelecomBasis';
    src: url('/local/templates/hakaton/fonts/RostelecomBasis-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'RostelecomBasis';
    src: url('/local/templates/hakaton/fonts/RostelecomBasis-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'RostelecomBasis';
    src: url('/local/templates/hakaton/fonts/RostelecomBasis-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'RostelecomBasis';
    src: url('/local/templates/hakaton/fonts/RostelecomBasis-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* End */


/* Start:/local/templates/hakaton/css/style.css?178902413930098*/
html {
    scroll-behaviour: smooth;
}

/* ============================================================
   Лендинг Хакатона ГК «Ростелеком» (копия hackathon.rt.ru)
   Значения цветов/размеров сняты с оригинала (Tilda)
   ============================================================ */

:root {
    --hk-text: #101828;
    --hk-black: #000000;
    --hk-purple: #7800FF;
    --hk-purple-card: #8300FF;
    --hk-purple-outline: #8400FF;
    --hk-orange: #FF4F12;
    --hk-salmon: #FF967A;
    --hk-bg-lilac: #F4EEF8;
    --hk-bg-gray: #f8f8f8;
    --hk-card-gray: #F9F9F9;
    --hk-card-gray2: #F2F3F5;
    --hk-card-purple: #F2E8FF;
    --hk-card-blue: #D7E3F4;
    --hk-card-orange: #FFEDE9;
    --hk-circle: #F4EFF8;
    --hk-input-border: #E7E8E9;
    --hk-radius-card: 16px;
    --hk-radius-panel: 20px;
    --hk-radius-btn: 10px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

.hk-body {
    font-family: 'RostelecomBasis', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    color: var(--hk-text);
    background: #fff;
    -webkit-font-smoothing: antialiased;
}

.hk-body.hk-no-scroll {
    overflow: hidden;
}

.hk-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--hk-purple);
    text-decoration: none;
}

/* ---------- Кнопки ---------- */

.hk-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 229px;
    height: 56px;
    padding: 0 30px;
    border: none;
    border-radius: var(--hk-radius-btn);
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.55;
    cursor: pointer;
    text-align: center;
    transition: opacity .2s ease, background-color .2s ease, color .2s ease;
    white-space: nowrap;
}

.hk-btn--orange {
    background: var(--hk-orange);
    color: #fff;
}

.hk-btn--purple {
    background: var(--hk-purple);
    color: #fff;
}

.hk-btn--outline-purple {
    background: transparent;
    color: var(--hk-purple-outline);
    border: 2px solid var(--hk-purple-outline);
}

.hk-btn--outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.hk-btn:hover {
    opacity: .85;
}

/* ---------- Шапка ---------- */

.hk-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
}

.hk-header__inner {
    display: flex;
    align-items: center;
    height: 100px;
}

.hk-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.hk-logo img {
    width: 127px;
    height: auto;
}

.hk-nav {
    display: flex;
    align-items: center;
    margin-left: 157px;
}

.hk-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.hk-menu__link {
    color: var(--hk-black);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.55;
    transition: color .2s ease;
}

.hk-menu__link:hover {
    color: var(--hk-purple);
}

.hk-header__cta {
    margin-left: auto;
    min-width: 0;
    height: 52px;
    padding: 0 24px;
}

.hk-header__socials {
    display: flex;
    align-items: center;
    margin-left: 40px;
}

.hk-header__socials img {
    width: 172px;
    height: auto;
}

.hk-nav__cta {
    display: none;
}

.hk-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.hk-burger span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--hk-black);
    border-radius: 2px;
    transition: transform .2s ease, opacity .2s ease;
}

.hk-burger.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hk-burger.is-active span:nth-child(2) {
    opacity: 0;
}

.hk-burger.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hk-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 90;
    background: rgba(16, 24, 40, 0.5);
}

.hk-nav-overlay.is-visible {
    display: block;
}

/* ---------- Общее для секций ---------- */

.hk-section {
    padding: 74px 0 80px;
}

.hk-section--lilac {
    background: var(--hk-bg-lilac);
}

.hk-section--gray {
    background: var(--hk-bg-gray);
}

.hk-section__title {
    font-size: 36px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--hk-text);
    margin-bottom: 40px;
}

.hk-section__subtitle {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.55;
    color: var(--hk-black);
    margin: -26px 0 40px;
}

/* ---------- Hero ---------- */

.hk-hero {
    background: #fff;
    padding: 60px 0 80px;
}

.hk-hero__inner {
    display: flex;
    flex-wrap: nowrap;
    gap: 40px;
    align-items: center;
}

.hk-hero__content {
    flex: 0 1 660px;
    max-width: 660px;
}

.hk-hero__title {
    font-size: 48px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--hk-text);
    margin-bottom: 24px;
}

.hk-hero__subtitle {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.55;
    color: var(--hk-text);
    margin-bottom: 30px;
}

.hk-hero__actions {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.hk-hero__deadline {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.55;
    color: var(--hk-orange);
}

.hk-hero__image {
    flex: 0 1 calc(100% - 700px);
    display: flex;
    justify-content: flex-end;
}

.hk-hero__image img {
    width: 462px;
    max-width: 100%;
    border-radius: var(--hk-radius-panel);
}

/* ---------- Метрики ---------- */

.hk-metrics {
    background: var(--hk-bg-lilac);
    padding: 50px 0;
}

.hk-metrics__grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 25px;
}

.hk-metric {
    flex: 0 1 calc(25% - 18.75px);
    background: var(--hk-card-gray);
    border-radius: var(--hk-radius-card);
    padding: 23px 40px 26px;
    min-height: 228px;
}

.hk-metric__icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: var(--hk-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.hk-metric__icon img {
    width: 49px;
    height: 49px;
}

.hk-metric__value {
    font-size: 28px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--hk-text);
    margin-bottom: 10px;
    white-space: nowrap;
}

.hk-metric__label {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.55;
    color: var(--hk-text);
}

/* ---------- О Хакатоне ---------- */

.hk-about {
    background: #fff;
    padding: 90px 0;
}

.hk-about__inner {
    display: flex;
    flex-wrap: nowrap;
    gap: 40px;
    align-items: stretch;
}

.hk-about__image {
    flex: 0 1 calc(50% - 20px);
}

.hk-about__image img {
    width: 100%;
    height: 100%;
    min-height: 540px;
    object-fit: cover;
    border-radius: var(--hk-radius-panel);
}

.hk-about__panel {
    flex: 0 1 calc(50% - 20px);
    background: var(--hk-card-gray2);
    border-radius: var(--hk-radius-panel);
    padding: 33px 60px 40px;
    min-height: 540px;
}

.hk-about__panel .hk-section__title {
    margin-bottom: 22px;
}

.hk-about__panel p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.55;
    color: var(--hk-black);
    max-width: 460px;
    margin-bottom: 16px;
}

.hk-about__panel p:last-child {
    margin-bottom: 0;
}

/* ---------- Почему стоит попробовать ---------- */

.hk-features__grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
}

.hk-feature {
    flex: 0 1 calc(25% - 15px);
    background: #fff;
    border-radius: var(--hk-radius-card);
    min-height: 420px;
    overflow: hidden;
}

.hk-feature__image {
    height: 188px;
}

.hk-feature__image img {
    width: 100%;
    height: 188px;
    object-fit: cover;
    border-radius: var(--hk-radius-card);
}

.hk-feature__body {
    padding: 18px 21px 24px;
}

.hk-feature__title {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--hk-text);
    margin-bottom: 12px;
}

.hk-feature__text {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.55;
    color: var(--hk-black);
}

/* ---------- Направления для поиска идей ---------- */

.hk-directions__grid {
    display: grid;
    /* по 2 колонки, пока в строку помещается 500px, иначе одна;
       min() снимает выезд за экран на узких экранах */
    grid-template-columns: repeat(auto-fit, minmax(min(500px, 100%), 1fr));
    gap: 20px;
    align-items: stretch;
}

/* последняя карточка, если осталась одна в ряду, занимает строку целиком */
.hk-direction:last-child:nth-child(odd) {
    grid-column: 1 / -1;
}

.hk-direction {
    border-radius: var(--hk-radius-card);
    padding: 27px 31px;
    min-width: 0; /* контент не распирает дорожку сетки */
    box-sizing: border-box;
    gap: 25px;
    display: flex;
    align-items: start;
}

.hk-direction--b2b {
    background: var(--hk-card-purple);
}

.hk-direction--b2o {
    background: var(--hk-card-blue);
}

.hk-direction--b2c-core {
    background: var(--hk-card-orange);
    gap: 20px;
}

.hk-direction--it {
    background: var(--hk-card-purple);
    display: flex;
}

.hk-direction--b2c {
    background: var(--hk-card-gray2);
    gap: 20px;
}

.hk-direction__tag {
    font-size: 46px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--hk-text);
}

.hk-direction__icon {
    width: 130px;
    height: auto;
    margin: 12px 0 20px;
}

.hk-direction__text {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.55;
    color: var(--hk-black);
}

.hk-directions__list {
    margin-left: 25px;
}

.hk-direction__text p {
    margin-bottom: 10px;
}

.hk-direction__text p:last-child {
    margin-bottom: 0;
}

/* ---------- Этапы проведения ---------- */

.hk-stages__grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    margin-bottom: 46px;
}

.hk-stage__number {
    font-size: 38px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--hk-black);
    margin-bottom: 12px;
}

.hk-stage__title {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--hk-black);
    margin-bottom: 10px;
}

.hk-stage__dates {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--hk-black);
}

/* ---------- Условия участия ---------- */

.hk-conditions__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: flex-start;
}

.hk-conditions__col {
    display: flex;
    flex-direction: column;
    gap: 19px;
    flex: 0 0 482px;
    max-width: 482px;
}

.hk-stage {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    flex: 0 1 calc(25% - 15px);
    min-width: 280px;
}

.hk-condition {
    background: var(--hk-card-gray);
    border-radius: var(--hk-radius-card);
    padding: 22px 24px 24px 39px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.hk-condition--big {
    flex: 1 1 0;
    min-height: 364px;
    padding: 51px 40px 40px 49px;
    position: relative;
}

.hk-condition__check {
    flex-shrink: 0;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: var(--hk-circle);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hk-condition_arrow {
    object-fit: contain;
    object-position: center center;
    width: 55%;
    height: 100%;
}

.hk-condition__title {
    font-size: 28px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--hk-text);
    margin-bottom: 14px;
}

.hk-condition__text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.55;
    color: var(--hk-text);
    max-width: 320px;
}

.hk-condition__action {
    margin-top: 30px;
}

.hk-condition__image {
    right: 60px;
    top: 30px;
    width: 199px;
}

/* ---------- Мероприятия ---------- */

.hk-events__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 34px;
}

.hk-event {
    flex: 0 1 calc(50% - 17px);
    border-radius: var(--hk-radius-card);
    min-height: 440px;
    padding: 30px 48px 50px;
    display: flex;
    flex-direction: column;
}

.hk-event--purple {
    background: var(--hk-purple-card);
    color: #fff;
}

.hk-event--white {
    background: #fff;
    color: var(--hk-black);
}

.hk-event__date {
    align-self: flex-end;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--hk-orange);
    margin-bottom: 32px;
}

.hk-event__title {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 24px;
    max-width: 420px;
}

.hk-event--white .hk-event__title {
    font-size: 28px;
}

.hk-event__text {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.55;
    flex-grow: 1;
    margin-bottom: 30px;
    max-width: 454px;
}

.hk-event .hk-btn {
    align-self: flex-start;
    min-width: 220px;
}

/* ---------- Ресурсы и поддержка ---------- */

.hk-resources__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 39px;
}

.hk-resource-panel {
    flex: 0 1 calc(50% - 19.5px);
    /* колонка не должна распирать строку шире 50% — иначе панель переносится */
    min-width: 0;
    background: var(--hk-purple);
    border-radius: var(--hk-radius-panel);
    padding: 25px 0px 0px;
    color: #fff;
}

.hk-resource-panel__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding: 0px 25px 25px;
}

.hk-resource-panel__name {
    font-size: 28px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 10px;
}

.hk-resource-panel__sub {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
}

.hk-resource-panel__icon {
    width: 79px;
    height: auto;
    flex-shrink: 0;
}

.hk-resource-panel__card {
    background: #fff;
    border-radius: var(--hk-radius-panel);
    padding: 25px 25px 25px;
    color: var(--hk-black);
    width: 100.2%;
    height: 83%;
    box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.1);
}

.hk-tools {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 30px;
}

.hk-tool {
    flex: 0 1 calc(50% - 15px);
}

.hk-tool__name {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--hk-purple);
}

.hk-tool__name img {
    width: 23px;
    height: 23px;
}

.hk-tool__text {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--hk-black);
    padding-left: 35px;
}

.hk-courses {
    list-style: none;
}

.hk-courses li {
    margin-bottom: 14px;
}

.hk-courses li:last-child {
    margin-bottom: 0;
}

.hk-courses a {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.3;
    color: var(--hk-purple);
    text-decoration: underline;
}

.hk-courses a:hover {
    text-decoration: underline;
}

/* ---------- Партнер ---------- */

.hk-partner {
    padding: 90px 0;
}

.hk-partner__inner {
    display: flex;
    flex-wrap: nowrap;
    gap: 39px;
}

.hk-partner__card {
    flex: 0 1 calc(50% - 19.5px);
    background: #fff;
    border-radius: var(--hk-radius-panel);
    min-height: 460px;
    padding: 33px 60px 40px;
}

.hk-partner__card--image {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 45px;
    background-image: url("/local/templates/hakaton/images/background.png");
}

.hk-partner__card--image img {
    width: 370px;
    max-width: 100%;
}

.hk-partner__name {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.55;
    color: var(--hk-black);
    max-width: 460px;
    margin-bottom: 24px;
    white-space: nowrap;
}

.hk-partner__card p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.55;
    color: var(--hk-black);
    max-width: 460px;
    margin-bottom: 16px;
}

.hk-partner__card p:last-child {
    margin-bottom: 0;
}

/* ---------- FAQ ---------- */

.hk-faq {
    padding: 20px 0 60px;
}

.hk-faq .hk-section__title {
    font-size: 40px;
    line-height: 1.55;
    color: var(--hk-black);
    margin-bottom: 10px;
}

.hk-faq__list {
    max-width: 1160px;
}

.hk-faq__item {
    border-bottom: 1px solid #eee;
}

.hk-faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.35;
    color: #111828;
    text-align: left;
}


.plus {
    transition: 0.3s;
    width: 100%;
    max-width: 24px;
    height: 100%;
    max-height: 24px;
}

.hk-faq__item.is-open .plus {
    transform: rotate(45deg);
}

.hk-faq__answer {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: grid-template-rows 0.2s ease-in-out;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.55;
    color: #111828;
}

.hk-faq__item.is-open .hk-faq__answer {
    grid-template-rows: 1fr;
}

.hk-faq__answer-inner {
    min-height: 0;
}

.hk-faq__answer p {
    margin-bottom: 10px;
}

.hk-faq__answer p:last-child {
    margin-bottom: 0;
}

.hk-faq__answer ul {
    margin: 0 0 10px 20px;
}

/* ---------- Форма заявки ---------- */

.hk-form-section {
    background: var(--hk-bg-gray);
    padding: 50px 0;
}

.hk-form-section__card {
    background: white;
    border-radius: var(--hk-radius-panel);
    max-width: 1043px;
    margin: 0 auto;
    padding: 76px 100px 84px;
}

.hk-form-section__head {
    display: flex;
    flex-wrap: nowrap;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 42px;
}

.hk-form-section__title {
    flex: 0 1 calc(50% - 20px);
    font-size: 36px;
    font-weight: 500;
    line-height: 1;
    color: var(--hk-text);
}

.hk-form-section__note {
    flex: 0 1 calc(50% - 20px);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.55;
    color: var(--hk-text);
    margin-left: auto;
    max-width: 355px;
}

.hk-form {
    max-width: 441px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hk-form input[type="text"],
.hk-form input[type="email"],
.hk-form select,
.hk-form textarea {
    width: 100%;
    height: 50px;
    padding: 0 15px;
    border: 1px solid var(--hk-input-border);
    border-radius: 4px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 400;
    color: var(--hk-black);
    background: #fff;
    transition: border-color .2s ease;
}

.hk-form textarea {
    height: auto;
    min-height: 100px;
    padding: 13px 15px;
    resize: vertical;
}

.hk-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23101828' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.hk-form select:invalid {
    color: #868b93;
}

.hk-form input:focus,
.hk-form select:focus,
.hk-form textarea:focus {
    outline: none;
    border-color: var(--hk-purple);
}

.hk-form input::placeholder,
.hk-form textarea::placeholder {
    color: #868b93;
}

.hk-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.55;
    color: var(--hk-black);
    cursor: pointer;
    margin-top: 6px;
}

.hk-checkbox input {
    margin-top: 3px;
    width: 16px;
    height: 16px;
    accent-color: var(--hk-purple);
    flex-shrink: 0;
}

.hk-checkbox a {
    color: var(--hk-salmon);
}

.hk-form__submit {
    margin-top: 30px;
    width: 215px;
    min-width: 0;
    height: 52px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
}

/* ---------- Подвал ---------- */

.hk-footer {
    background: #fff;
    padding: 29px 0;
}

.hk-footer__inner {
    display: flex;
    flex-wrap: nowrap;
    gap: 76px;
    align-items: flex-start;
}

.hk-footer__logo,
.hk-footer__inner > .hk-logo {
    flex: 0 0 auto;
}

.hk-footer__legal {
    flex: 1 1 auto;
}

.hk-footer__logo img {
    width: 127px;
    height: auto;
}

.hk-footer__legal {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.55;
    color: var(--hk-black);
    max-width: 460px;
}

.hk-footer__legal a {
    color: var(--hk-orange);
}

.hk-footer__contacts {
    display: flex;
    flex: 0 0 auto;
    margin-left: auto;
    flex-direction: column;
    gap: 4px;
    text-align: left;
}

.hk-footer__contact {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.55;
    color: var(--hk-black);
}

.hk-footer__contact:hover,
.hk-footer__contact--tg {
    color: var(--hk-purple);
}

.hk-event__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

/* ============================================================
   Адаптив (брейкпоинты оригинала: 1199 / 959 / 639 / 479)
   ============================================================ */

@media (max-width: 1024px) {
    .hk-hero__content,
    .hk-hero__image {
        flex: 0 1 calc(50% - 20px);
        max-width: none;
    }

    .hk-hero__title {
        font-size: 44px;
    }

    .hk-metrics__grid,
    .hk-features__grid,
    .hk-stages__grid {
        flex-wrap: wrap;
    }

    .hk-metric {
        flex-basis: calc(50% - 12.5px);
    }

    .hk-stage {
        flex-basis: calc(50% - 10px);
        /* иначе на узких экранах карточка распирает строку и уезжает на новую */
        min-width: 0;
    }

    .hk-feature {
        flex-basis: calc(50% - 10px);
        min-height: 0;
    }

    .hk-conditions__col {
        flex: 1 1 0;
        max-width: none;
    }

    .hk-condition--big {
        flex: 1.4 1 0;
    }

    .hk-header__socials {
        display: none;
    }

    .hk-resource-panel__card {
        width: 100.3%;
        height: 77.8%;
    }
}

@media (max-width: 768px) {
    .hk-header__inner {
        height: 80px;
    }

    .hk-header__cta {
        display: none;
    }

    .hk-burger {
        display: flex;
        margin-left: auto;
    }

    .hk-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 300px;
        max-width: 85vw;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        margin-left: 0;
        padding: 88px 28px 28px;
        transform: translateX(100%);
        transition: transform .25s ease;
    }

    .hk-nav.is-open {
        transform: translateX(0);
    }

    .hk-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .hk-menu__link {
        font-size: 18px;
    }

    .hk-nav__cta {
        display: inline-flex;
        margin-top: 28px;
        min-width: 0;
        width: 100%;
    }

    .hk-hero__inner,
    .hk-about__inner,
    .hk-conditions__grid,
    .hk-partner__inner,
    .hk-form-section__head {
        flex-wrap: wrap;
    }

    .hk-hero__content,
    .hk-hero__image,
    .hk-about__image,
    .hk-about__panel,
    .hk-event,
    .hk-resource-panel,
    .hk-partner__card {
        flex: 0 1 100%;
        max-width: none;
    }

    .hk-hero__image {
        order: -1;
        justify-content: flex-start;
    }

    .hk-about__image img,
    .hk-about__panel {
        min-height: 0;
    }

    .hk-conditions__col,
    .hk-condition--big {
        flex: 0 1 100%;
        max-width: none;
    }

    .hk-condition--big {
        min-height: 0;
    }

    .hk-condition__image {
        position: static;
        margin-top: 20px;
    }

    .hk-form-section__card {
        padding: 48px 40px;
    }

    .hk-form-section__head {
        gap: 16px;
    }

    .hk-form-section__title,
    .hk-form-section__note {
        flex: 0 1 100%;
        margin-left: 0;
    }

    .hk-footer__inner {
        flex-direction: column;
        gap: 24px;
    }

    .hk-footer__contacts {
        margin-left: 0;
    }

    .hk-direction {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .hk-hero__image img {
        width: 100%;
    }

    .hk-resource-panel__card {
        width: 100.3%;
        height: 78.7%;
    }

    .hk-section {
        padding: 56px 0;
    }

    .hk-section__title {
        font-size: 32px;
        margin-bottom: 28px;
    }

    .hk-section__subtitle {
        margin: -16px 0 28px;
    }

    .hk-feature,
    .hk-metric,
    .hk-stage,
    .hk-tool {
        flex-basis: 100%;
    }

    .hk-direction--b2b,
    .hk-direction--b2o,
    .hk-direction--it,
    .hk-direction--b2c,
    .hk-direction--b2c-core {
        min-height: 0;
    }

    .hk-direction {
        min-width: auto;
        flex-direction: column;
    }

    .hk-resource-panel__head {
        flex-wrap: wrap;
    }

    .hk-direction--it .hk-direction__tag {
        margin-top: 24px;
    }

    .hk-event {
        padding: 24px;
        min-height: 0;
    }

    .hk-event__title {
        font-size: 28px;
    }

    .hk-event--white .hk-event__title {
        font-size: 24px;
    }

    .hk-condition {
        flex-direction: column;
        padding: 24px;
    }

    .hk-condition--big {
        padding: 24px;
    }

    .hk-partner__card {
        padding: 28px 24px;
        min-height: 0;
    }

    .hk-about__panel {
        padding: 28px 24px;
    }

    .hk-partner__name {
        white-space: normal;
    }

    .hk-resource-panel__icon {
        width: 55px;
    }

    .hk-condition__image {
        display: none;
    }

    .hk-direction--it {
        min-width: 350px;
    }
}

@media (max-width: 376px) {
    .hk-hero {
        padding: 30px 0 56px;
    }

    .hk-hero__title {
        font-size: 34px;
        line-height: 1.1;
    }

    .hk-hero__subtitle {
        font-size: 18px;
    }

    .hk-hero__image img {
        width: 100%;
    }

    .hk-section__title {
        font-size: 28px;
    }

    .hk-faq .hk-section__title {
        font-size: 30px;
    }

    .hk-direction__tag {
        font-size: 36px;
    }

    .hk-form-section__card {
        padding: 32px 20px;
    }

    .hk-form__submit {
        width: 100%;
    }

    .hk-btn {
        min-width: 0;
    }

    .hk-resource-panel__head {
        gap: 10px;
    }

    .hk-resource-panel__icon {
        width: 35px;
    }

    .hk-partner__name {
        white-space: normal;
    }
}

/* ---------- Попап результата отправки форм ---------- */

.hk-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.hk-modal[hidden] {
    display: none;
}

.hk-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(16, 24, 40, .55);
}

.hk-modal__window {
    position: relative;
    width: 100%;
    max-width: 480px;
    background: #fff;
    border-radius: var(--hk-radius-panel);
    padding: 44px 40px 40px;
    text-align: center;
}

.hk-modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: none;
    cursor: pointer;
}

.hk-modal__title {
    font-size: 28px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--hk-text);
    margin-bottom: 14px;
}

.hk-modal--error .hk-modal__title {
    color: var(--hk-orange);
}

.hk-modal__text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.55;
    color: var(--hk-text);
    white-space: pre-line;
}

.hk-modal__text:empty {
    display: none;
}

.hk-modal__button {
    margin-top: 30px;
    width: 215px;
    min-width: 0;
    height: 52px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
}

@media (max-width: 376px) {
    .hk-modal__window {
        padding: 40px 20px 32px;
    }

    .hk-modal__title {
        font-size: 24px;
    }

    .hk-modal__button {
        width: 100%;
    }
}

.login-logo[data-v-0d8f5caa] {
    display: flex;
    gap: 4px;
    align-items: flex-start;
    font-weight: 700;
    font-size: 1.7rem;
    font-family: Unbounded, sans-serif;
    line-height: 1.7rem;
    text-transform: uppercase;
    cursor: pointer;
    color: white;;
}

.login-logo .page[data-v-0d8f5caa] {
    color: #e22c63;
}

.icon[data-v-48df4567] {
    display: flex;
    align-items: center;
    transition: all .2s ease;
}

.hk-resource-panel__icon.turbo {
    width: 250px;
}

.hk-section.hk-resources {
    padding-bottom: 150px;
}

/* ---------- Отзывы ---------- */

.hk-reviews__grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    align-items: stretch;
}

.hk-review {
    flex: 0 1 calc(25% - 15px);
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: var(--hk-radius-card);
    padding: 24px;
}

.hk-review__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--hk-card-purple);
    color: var(--hk-purple);
    margin-bottom: 24px;
}

.hk-review__text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.55;
    color: var(--hk-text);
    margin-bottom: 30px;
}

.hk-review__author {
    margin-top: auto;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--hk-text);
}

@media (max-width: 1024px) {
    .hk-reviews__grid {
        flex-wrap: wrap;
    }

    .hk-review {
        flex-basis: calc(50% - 10px);
    }
}

@media (max-width: 576px) {
    .hk-review {
        flex-basis: 100%;
    }

    .hk-review__text {
        margin-bottom: 24px;
    }
}


/* End */
/* /local/templates/hakaton/fonts/fonts.css?1783591716733 */
/* /local/templates/hakaton/css/style.css?178902413930098 */
