/* Variables */
:root {
    --kiroe-dark-blue: #05468F;
    --kiroe-yellow: #FFD500;
    --kiroe-white: #fff;
    --kiroe-gray: #D7D7D7;
    --kiroe-light-gray: #F6F6F6;
    --kiroe-text-light-gray: #919191;
    --kiroe-text-light-dark: #333333;
    --kiroe-text-dark: #121318;
    --kiroe-text-white: #fff;
    --kiroe-link-blue: #2F80ED;
    --kiroe-link-light-blue: #54B0FF;
    --kiroe-button-blue: #2F80ED;
    --kiroe-border-light-gray: #CECECE;
    --kiroe-border-dark-gray: #E9E9E9;
    --kiroe-bg-dark: #212121;
}

/* Variables */

/* Fonts */

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/roboto/robotoflex.ttf') format('truetype');
    font-weight: 100 1000;
    font-stretch: 1% 100%;
    font-style: normal;
    font-display: swap;
}

/* Fonts */

/* Body */
body {
    font-family: "Roboto", sans-serif;
    color: var(--kiroe-text-dark);
    min-height: 100vh;
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed;
    line-height: 1.4;
    overflow: auto;
    overflow-x: hidden;
    overflow-y: auto;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

hr.vertical {
    margin: unset;
    border: unset;
    border-right: 1px solid #C8C8C8;
}

/* Body */

/* Commons */
.kiroe_transition {
    transition: .5s;
}

.kiroe_pointer {
    cursor: pointer;
}

.kiroe_relative {
    position: relative;
}

.kiroe_border {
    border: 1px solid;
}

.kiroe_border-light_gray {
    border-color: var(--kiroe-border-light-gray);
}

.kiroe_border-dark_gray {
    border-color: var(--kiroe-border-dark-gray);
}

.kiroe_border-8 {
    border-radius: 8px;
}

.kiroe_border-10 {
    border-radius: 10px;
}

.link_hover {
    transition: .5s;
}

.kiroe_scale {
    transition: .5s;
}

.kiroe_link {
    color: var(--kiroe-link-blue);
    cursor: pointer;
}

.link_underline {
    width: fit-content;
    position: relative;
}

.link_underline:after {
    content: "";
    position: absolute;
    bottom: 1px;
    left: 0;
    height: 1px;
    border-radius: 5px;
    width: 100%;
    background-color: var(--kiroe-link-blue);
}

.to_top {
    border: 1px solid #CECECE;
    border-radius: 10px;
    background-color: #fff;
}

li::marker {
    color: var(--kiroe-button-blue);
    margin: 20px;
    font-size: 24px;
    line-height: 0;
}

.grecaptcha-badge {
    display: none !important;
}

/* Commons */

/* Lazy load  */

.lazy_bg_animation {
    background-image: url(../images/loading.svg);
    background-repeat: no-repeat;
    background-position: 50%;
    background-color: var(--kiroe-light-gray);
}

.lazy:not(.loaded) {
    opacity: 0;
}

.lazy.loaded {
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Lazy load  */

/* Header */

.kiroe_header {
    position: sticky;
    top: -0;
    z-index: 99;
    border-bottom: 1px solid;
    border-color: var(--kiroe-border-light-gray);
}

.kiroe_header-notify {
    padding: 2px 0;
    background-color: var(--kiroe-dark-blue);
}

.kiroe_header-notify_item {
    gap: 7px;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--kiroe-yellow);
}

.kiroe_header-nav {
    padding: 0 40px;
    background-color: var(--kiroe-light-gray);
}

/* .kiroe_header-nav_side {
    width: 310px;
} */

.kiroe_header-logo {
    gap: 24px;
}

.kiroe_header-logo_image {
    width: 58px;
}

.kiroe_header-logo_tagline {
    gap: 5px;
}

.kiroe_header-logo_tagline span {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.1;
    color: var(--kiroe-text-light-gray);
}

.kiroe_header-logo_tagline span:first-child {
    font-size: 16px;
    font-weight: 700;
    color: var(--kiroe-text-dark);
}

.kiroe_header-informers {
    gap: 16px;
}

.kiroe_header-informer_item {
    width: 56px;
    height: 56px;
    background-color: var(--kiroe-white);
}

.kiroe_header-informer_wrapper {
    width: 240px;
    height: 56px;
}

.kiroe_header-user_informer {
    padding: 8px 10px;
    width: 100%;
    min-height: 56px;
    background-color: var(--kiroe-white);
    position: absolute;
    white-space: nowrap;
    top: 0;
}

.kiroe_header-user_informer_item {
    gap: 8px;
    margin: -9px -10px;
    padding: 9px 10px 6px;
    border-radius: 8px;
}

.kiroe_header-user_informer_item > svg {
    color: var(--kiroe-button-blue);
}

.kiroe_header-user_informer_item_ttl {
    font-size: 12px;
    font-weight: 500;
    color: #919191;
}

.kiroe_header-user_informer_item.active .dropdown_icon {
    transform: rotate(180deg);
}

.kiroe_header-user_informer_dropdown {
    display: none;
}

.kiroe_header-user_informer_list {
    padding: 10px 0 2px;
    margin-top: 12px;
    gap: 10px;
    border-top: 1px solid var(--kiroe-border-light-gray);
}

.kiroe_header-user_informer_list .kiroe_contact-item:not(:last-child) {
    margin-bottom: unset;
}

.kiroe_header-informer_wrapper .dropdown_icon {
    margin-left: auto;
}

/* Header */

/* Header menu */

.kiroe_header-nav_menu .kiroe_header-informers,
.mobile_menu_header {
    display: none;
}

.menu_list {
    list-style: none;
    padding: unset;
    margin: unset;
}

.menu_eventer {
    transition: .5s;
}

.menu_link.active .menu_eventer {
    transform: rotate(180deg);
}

.menu_item {
    position: relative;
}

.menu_link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--kiroe-text-light-dark);
    font-weight: 400;
    font-size: 16px;
}

.menu_group_kiroe_header>.menu_list {
    display: flex;
    align-items: center;
}

.menu_group_kiroe_header .menu_list>.menu_item.menu_item_1 {
    transition: .5s;
}

.menu_group_kiroe_header .menu_item.menu_item_1>.menu_link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 88px;
    padding: 0 12px;
    cursor: pointer;
    text-align: center;
}

.menu_group_kiroe_header .menu_item.menu_item_1>.menu_link.active {
    background-color: var(--kiroe-gray);
}

.kiroe_submenu_wrapper {
    display: none;
    position: fixed;
    top: 113px;
    left: 0;
    width: 100%;
    max-height: calc(100dvh - 113px);
    background-color: var(--kiroe-white);
    box-shadow: 0px 4px 4px 0px #00000040;
    border: 1px solid #DCDCDC;
    border-radius: 0 0 10px 10px;
    padding: 40px calc((100% - 1300px) / 2);
    overflow: auto;
}


.menu_group_kiroe_header .menu_list.menu_list_2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.menu_group_kiroe_header .menu_item {
    transition: .5s;
}

.menu_group_kiroe_header .menu_item.menu_item_2>.menu_link {
    font-size: 16px;
    line-height: 22px;
    font-weight: 700;
}

.menu_group_kiroe_header .menu_item.menu_item_2>.menu_link .menu_eventer {
    display: none;
}

.menu_group_kiroe_header .menu_list.menu_list_3 {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.hidden_contact_phone {
    display: none;
}

/* Header menu */

/* Search */

.search_wrapper {
    margin: 20px 0px 0px 0px;
    border: 1px solid #DFDFDF;
    background-color: #fff;
    width: 720px;
    max-width: 90vw;
    height: 56px;
    border-radius: 8px;
    position: relative;
}

.search_wrapper_bg {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background-color: #12181AF2;
    backdrop-filter: saturate(180%) blur(20px);
}

.search_ttl {
    display: none;
}

.search_icon {
    position: absolute;
    left: 16px;
    color: #575C78;
    z-index: 2;
    width: 24px;
    height: 24px;
}

.search_close {
    position: absolute;
    gap: 4px;
    top: 40px;
    right: calc((100% - 1200px) / 2);
    font-size: 16px;
    font-weight: 700;
    color: var(--kiroe-text-white);
    cursor: pointer;
    padding: 12px 8px;
    background: #1f1f1ff2;
    border-radius: 10px;
}

.search_btn {
    position: absolute;
    gap: 6px;
    right: 12px;
    height: 40px;
    border: unset;
    border-radius: 8px;
    padding: 0px 14px;
    font-size: 16px;
    font-weight: 700;
    color: var(--kiroe-text-white);
    cursor: pointer;
    z-index: 2;
    transition: .5s;
    background-color: var(--kiroe-button-blue);
}

.search_input {
    width: 100%;
    height: 100%;
    margin: unset;
    border: unset;
    padding: 0 136px 0 50px;
    font-size: 16px;
    color: #4F4F4F;
}

.search_input::placeholder {
    font-family: 'Roboto';
    color: #C6C6C6;
}

.search_text {
    color: rgba(255, 255, 255, .6);
    font-size: 15px;
    font-weight: 400;
    text-align: center;
    height: 20px;
    line-height: 20px;
    margin: 30vh 0px 0px 0px;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.search_esc {
    border: 1px solid rgba(255, 255, 255, .6);
    font-size: 12px;
    font-weight: 400;
    margin: 0px 5px;
    padding: 4px 8px;
    border-radius: 8px;
}

.autocomplete-suggestions {
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    max-width: 100%;
    max-height: calc(70vh - 130px) !important;
    position: absolute;
    top: 70px;
    left: 0;
    z-index: 9999;
    border-radius: 8px;
    padding: 24px 16px;
    background-color: #fff;
}

.autocomplete-suggestions::-webkit-scrollbar,
.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar,
.kiroe_submenu_wrapper::-webkit-scrollbar {
    background-color: rgba(0, 0, 0, 0.05);
    width: 14px;
    height: 14px;
}

.autocomplete-suggestions::-webkit-scrollbar-thumb,
.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-thumb,
.kiroe_submenu_wrapper::-webkit-scrollbar-thumb {
    background-color: #4F4F4F;
    background-clip: content-box;
    border: 3px solid transparent;
    border-radius: 8px;
}

.autocomplete-suggestions::-webkit-scrollbar-thumb:hover,
.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-thumb:hover,
.kiroe_submenu_wrapper::-webkit-scrollbar-thumb:hover {
    background-color: #222222;
}

.autocomplete-suggestions::-webkit-scrollbar-track,
.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-track,
.kiroe_submenu_wrapper::-webkit-scrollbar-track {
    background-color: transparent;
}

/* Search */

/* Footer */

.kiroe_footer {
    background-color: var(--kiroe-bg-dark);
    color: var(--kiroe-text-white);
}

.kiroe_footer-copyright {
    padding: 16px 0 15px;
    font-size: 14px;
    border-top: 1px solid #4F4F4F;
}

.kiroe_footer-copyright_dev a {
    color: var(--kiroe-link-light-blue);
    text-decoration: underline 0.15em var(--kiroe-bg-dark);
    text-underline-offset: 0.2em;
    transition: text-decoration-color 300ms, text-underline-offset 300ms;
}

.kiroe_footer-top {
    padding: 60px 0 40px;
    display: grid;
    grid-template-columns: minmax(400px, 1fr) minmax(0, 1fr) minmax(0, 1fr);
    column-gap: 100px;
}

.kiroe_footer-top_item {
    gap: 24px;
}

.kiroe_footer-header {
    font-size: 24px;
    font-weight: 500;
    line-height: 22px;
}

.footer_menu_eventer {
    display: none;
}

/* .kiroe_footer-item_dropdown_column {
    column-gap: 64px;
} */

.kiroe_footer-item_dropdown .menu_list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.kiroe_footer-item_dropdown .menu_link {
    position: relative;
    width: fit-content;
    color: var(--kiroe-link-light-blue);
    text-decoration: underline 0.15em var(--kiroe-bg-dark);
    text-underline-offset: 0.2em;
    transition: text-decoration-color 300ms, text-underline-offset 300ms;
}

.footer-contact_item {
    gap: 12px;
    color: var(--kiroe-link-light-blue);
}

/* Footer */

/* Contacts section */

.kiroe_contacts_wrapper {
    border-top: 1px solid #EDEDED;
}

.kiroe_contacts-section {
    padding: 60px 0 54px;
    gap: 40px;
}

.kiroe_contacts-section_list {
    gap: 16px;
    min-width: 252px;
}

.kiroe_contacts-section_list_double {
    column-gap: 40px;
}

.kiroe_contact-item {
    gap: 8px;
}

.kiroe_contact-item:not(:last-child) {
    margin-bottom: 10px;
}

.kiroe_contact-item svg {
    color: var(--kiroe-link-blue);
    min-width: 24px;
}

.kiroe_contact-tll {
    font-size: 13px;
    line-height: 17px;
    font-weight: 500;
    margin-bottom: 4px;
    color: var(--kiroe-text-light-gray);
}

.kiroe_contact-item_address .kiroe_contact-tll {
    margin-bottom: 8px;
}

.kiroe_contact-item a {
    font-weight: 500;
}

.kiroe_contact-item a:not(:last-child) {
    margin-bottom: 6px;
}

.kiroe_contact-item.kiroe_contact-item_address a {
    font-weight: 400;
    line-height: 1.35;
}

.kiroe_contact-desc {
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
}

.kiroe-social_link_item {
    width: 100%;
    height: 56px;
    gap: 8px;
    padding: 0 12px 0 16px;
    cursor: pointer;
    border: 1px solid #CECECE;
    border-radius: 10px;
    transition: .5s;
}

.kiroe-social_link_item svg:last-child {
    margin-left: auto;
}

/* Contacts section */

/* Kiroe Fancybox */

.kiroe_fancybox-content {
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0px 0px 40px 0px #00000033;
}

.kiroe_fancy_close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    cursor: pointer;
    position: absolute;
    top: 28px;
    right: 24px;
}

.fancybox_header {
    border-bottom: 1px solid #CECECE;
    padding-bottom: 18px;
    margin-bottom: 24px;
    font-size: 24px;
    font-weight: 700;
    color: #121318;
    padding-right: 24px;
}

.fancybox_body_desc {
    max-width: 500px;
}

/* Kiroe Fancybox */

/* Kiroe bots */

.fancybox_telegram_ttl {
    gap: 8px;
    font-size: 24px;
    font-weight: 700;
}

.fancybox_telegram_ttl svg {
    width: 28px;
    height: 28px;
}

.kiroe_fancybox_telegram-item:not(:last-child) {
    border-bottom: 1px solid #CECECE;
    padding-bottom: 24px;
    margin-bottom: 24px;
}

.kiroe_fancybox_telegram-item_ttl {
    margin-bottom: 12px;
    font-weight: 700;
}

.kiroe_fancybox_telegram_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 16px;
    column-gap: 40px;
}

.kiroe_fancybox_telegram_link {
    font-size: 16px;
    font-weight: 500;
    color: var(--kiroe-link-blue);
}

/* Kiroe bots */

/* Post item  */

.kiroe_news_item {
    gap: 8px;
}

.kiroe_news_item_image {
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-bottom: 4px;
}

.kiroe_news_item_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.kiroe_news_item_info {
    gap: 8px;
    color: var(--kiroe-text-light-gray);
}

.kiroe_news_item_name {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: 18px;
    font-weight: 500;
    transition: .5s;
}

/* Post item  */

/* Contact sidebar */

.kiroe_sidebar_contact_wrapper {
    position: fixed;
    right: 40px;
    bottom: 190px;
    transition: .5s;
    z-index: 98;
}

.kiroe_sidebar_contact_inner {
    border: 1px solid #CECECE;
    border-radius: 10px;
    background: #fff;
    min-width: 252px;
}

.kiroe_contact_tab:not(.active) {
    animation: pulse-blue 2s infinite;
}

@keyframes pulse-blue {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgb(47 128 237 / 70%);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(52, 172, 224, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(52, 172, 224, 0);
    }
}

.sidebar_toggle {
    margin-left: auto;
    cursor: pointer;
}

.sidebar_toggle svg {
    transition: .5s;
}

.active .sidebar_toggle svg {
    transform: rotate(180deg);
}

.kiroe_sidebar_contact_slide {
    display: none;
    padding: 0px 12px 12px;
}

.kiroe_sidebar_contact_slide_inner {
    gap: 10px;
}

.fn_sidebar_toggle {
    padding: 12px;
    cursor: pointer;
}

.kiroe_sidebar_contact_wrapper .kiroe_contact-item:not(:last-child) {
    margin-bottom: unset;
}

/* Contact sidebar */

.mobile_menu_btn-wrapper {
    display: none;
}

/* Other pages */

.page_menu_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 27px;
    box-shadow: 0px 0px 15px 0px #0000001A;
    padding: 24px 16px 35px;
    font-size: 16px;
    border-radius: 10px;
    text-align: center;
    transition: .5s;
}

/* Other pages */

.kiroe_mobile-contacts {
    position: fixed;
    right: 16px;
    bottom: 48px;
    z-index: 99;
}

.coin {
    position: relative;
    width: 56px;
    height: 56px;
    transform-style: preserve-3d;
    animation: flip 8s infinite;
}

.coin .front,
.coin .back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: white;
    border-radius: 50%;
}

.coin .front {
    background-color: #004AAD;
    animation: pulse-orange 2s infinite;
}

.coin .back {
    background-color: #004AAD;
    transform: rotateY(180deg);
    animation: pulse-orange 2s infinite;
}

.coin .front svg,
.coin .back svg {
    width: 70%;
    height: 70%;
}

@keyframes pulse-orange {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 74, 173, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 121, 63, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 121, 63, 0);
    }
}

@keyframes flip {

    0%,
    20%,
    80%,
    100% {
        transform: rotateY(0deg);
    }

    40%,
    60% {
        transform: rotateY(180deg);
    }
}

.mobile_contacts-wrapper {
    display: none;
    position: fixed;
    top: 0;
    background: #fff;
    z-index: 99;
    height: 100dvh;
    width: 100%;
}

.mobile_contacts-header {
    padding: 24px 16px 16px;
    font-size: 24px;
    font-weight: 500;
    border-bottom: 1px solid #EDEDED;
}

.mobile_contacts-item {
    padding: 24px 16px;
    border-bottom: 1px solid #EDEDED;
    gap: 16px;
}

.mobile_contacts-item_icon {
    color: #2F80ED;
}

.mobile_contacts-items_list {
    gap: 10px;
    width: 100%;
}

.mobile_contact-item:not(:last-child) {
    padding-bottom: 10px;
    border-bottom: 1px solid #EDEDED;
}