@charset "UTF-8";

/* base START */
:root {
    --gutter: 2rem;
    --wrapper: 117rem;
    --wrapper-padding: calc((100% - var(--wrapper)) / 2 - var(--gutter));
    --sidewrap: calc(var(--wrapper) + var(--wrapper-padding) * 2 + var(--gutter) * 2);
    
    --section-padding: 16rem;

    --font-almony: 'Almoni Tzar ML v5 AAA', sans-serif;
    --font-assistant: 'Assistant', sans-serif;
    --color-blue: #338BDB;
    --color-blue-d: #082642;
    --color-blue-l: #F5F9FD;
    --color-blue-600: #0B2E4F;
    --color-blue-300: #B0CBE4;
    --color-blue-200: #BBD8F3;
    --color-blue-100: #F5F9FD;
    --color-green-bright: #43E8D3;
    --color-red: #FF4500;
    --color-orange: #FF7E47;
    --color-yellow: #FDAD13;
    --color-gray-500: #36373C;
    --color-gray-400: #5F5F63;
    --color-gray-300: #66798A;
    --color-default: var(--color-blue-d);
}

html {
    display: block;
    overflow-x: clip;
    width: 100%;
    height: 100%;
}

body {
    display: block;
    font-family: var(--font-assistant);
    font-weight: 400;
    font-size: 1.6rem;
    line-height: normal;
    color: var(--color-default);
    background: #fff;
}

@media screen and (max-width: 1024.9px) {
    :root {
        --section-padding: 12rem;
    }
}

@media screen and (max-width: 575.9px) {
    :root {
        --gutter: 1.6rem;
        --section-padding: 8rem;
    }
}
/* base END */



/* containers START */
section {
    width: 100%;
    padding: var(--section-padding) 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    scroll-margin-top: calc(var(--section-padding) + 2rem);
}

section.no-padding {
    padding: 0;
}

section:not(.no-padding) + .no-padding {
    margin-top: var(--section-padding);
}

section.no-padding + section:not(.no-padding) {
    padding-top: calc(var(--section-padding) * 2);
}

/*section:not(.no-padding):last-child {
    padding-bottom: calc(var(--section-padding) * 2);
}*/

section:has(.bg) {
    position: relative;
    z-index: 1;
}

section.blue {
    background: var(--color-blue-l);
}
/* containers END */



/* btn START */
.btn,
[type="submit"] {
    --btn-color: var(--color-blue);

    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    max-width: 100%;
    min-height: 5.6rem;
    padding: 1rem 6rem;

    background: var(--btn-color);
    border: 0.1rem solid var(--btn-color);
    border-radius: 10rem;
    font-family: var(--font-assistant);
    font-weight: 700;
    font-size: 1.8rem;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
    color: #fff;
    
    overflow: hidden;
    cursor: pointer;
    position: relative;
    z-index: 1;
    transition: 0.3s ease-out;
}

.btn_s {
    min-height: 4.6rem;
    padding-inline: 3rem;
    font-size: 1.6rem;
}

.btn_transparent {
    background: transparent;
    border-color: var(--color-blue-d);
    color: var(--color-blue-d);
}

@media screen and (max-width: 575.9px) {
    .btn {
        width: 100%;
    }
}



@media (hover: hover) and (pointer: fine) {
    .btn:hover {
        background: transparent;
        color: var(--color-blue);
    }

    .btn_transparent:hover {
        background: var(--color-blue-d);
        color: #fff;
    }
}

@media (hover: none) {
    .btn:active {
        background: transparent;
        color: var(--color-blue);
    }

    .btn_transparent:active {
        background: var(--color-blue-d);
        color: #fff;
    }
}
/* btn END */



/* popup START */
.popup {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    inset: 0;
    z-index: 99;
    transition: 0.6s ease-out;
}

.popup:not(.active) {
    opacity: 0;
    pointer-events: none;
}

.popup__overlay {
    background: var(--color-default);
    opacity: 0.5;
    position: absolute;
    inset: 0;
    z-index: -1;
}

.popup__wrapper {
    width: 80rem;
    max-height: calc(100vh - 4rem);
    padding-inline: 3.2rem;
    background: #fff;
    border-radius: 0 0 0 10rem;
    overflow: hidden;
}

.popup__header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 0 0 auto;
    width: 100%;
    height: 6.4rem;
}

.popup__close {
    z-index: 1;
    cursor: pointer;
}

.popup__close line {
    stroke: #000;
    transition: 0.3s;
}

.popup__close:hover line {
    stroke: red;
}

.popup__inner {
    flex: 1;
    width: 100%;
    padding-bottom: 3.2rem;
    position: relative;
    overflow-y: auto;
}

.popup__content {
    width: 63rem;
    max-width: 99%;
    align-items: center;
    text-align: center;
    gap: 4rem;
    margin-inline: auto;
}

.popup__image {
    width: 28.3rem;
}

.popup__info {
    align-items: center;
    gap: 1.6rem;
}

.popup__text {
    font-size: 2.1rem;
}

.popup__form {
    text-align: initial;
}

.popup__form .form__content {
    gap: 3.2rem;
}

.popup__form .form__fields {
    gap: 2.4rem;
}


@media screen and (max-width: 575.9px) {
    .popup__wrapper {
        padding-inline: 1.6rem;
    }
}
/* popup END */




/* header START */
.header {
    width: 100%;
    padding-block: 2rem;
    position: sticky;
    top: 0;
    z-index: 10;
    overflow-x: clip;
    transition: 0.3s ease-out;

    font-family: var(--font-almony);
    font-weight: 400;
    font-size: 1.8rem;
}

.header.scrolled {
    background: rgb(255 255 255 / 85%);
    backdrop-filter: blur(1rem);
}

.header:hover {
    background: #fff;
}

.header.slide-up:not(.menu-opened) {
    translate: 0 -100%;
}

.header.menu-opened {
    z-index: 999999;
}

.header__wrapper.wrapper {
    width: 100%;
    padding-inline: 5rem;
}

.header__content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.header__btns {
    display: flex;
    gap: 1.2rem;
    margin-right: auto;
}

.header__menu-toggler {
    display: none;
    margin-left: auto;
}

@media screen and (max-width: 1024.9px) {
    .header__btns,
    .header__nav {
        display: none;
    }

    .header__content {
        justify-content: center;
        position: relative;
    }

    .header__menu-toggler {
        display: block;
        position: absolute;
        right: 0;
        top: 50%;
        translate: 0 -50%;
    }
}

@media screen and (min-width: 1025px) {
    .header:not(:hover) {
        overflow: hidden;
    }
}

@media screen and (max-width: 575.9px) {
    .header__wrapper.wrapper {
        padding-inline: 1.6rem;
    }

}
/* header END */



/* header__menu START */
.header__menu {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.header__menu a[href="#"] {
    pointer-events: none;
}

.header__menu li.menu-item-has-children > a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-left: 1.5rem;
}

.header__menu li.menu-item-has-children > a::before {
    content: "";
    aspect-ratio: 1;
    width: 0.5rem;
    border: 0.1rem solid currentColor;
    border-bottom-color: transparent;
    border-left-color: transparent;
    position: absolute;
    left: 0;
    top: 50%;
    translate: 0 -0.5rem;
    transform: rotate(135deg);
    transition: 0.3s;
}

.header__menu li.menu-item-has-children:hover > a::before  {
    translate: 0 0;
    transform: rotate(315deg);
}


.header__menu li:hover > .submenu {
    pointer-events: auto;
    opacity: 1;
}

.header__menu .submenu {
    box-shadow: 1rem 1rem 1rem rgba(0, 0, 0, 0.15);
    position: absolute;
    top: calc(100% - 0.1rem);
    left: 0;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease-out;
}

.submenu {
    width: 100%;
    background: #fff;
}

.submenu::before {
    content: "";
    display: block;
    width: 100%;
    height: 3.6rem;
    position: absolute;
    bottom: 100%;
    left: 0;
    pointer-events: on;
}

.submenu__inner {
    display: flex;
    flex-direction: row-reverse;
    gap: 2rem;
    padding-block: 2.4rem 3.2rem;
}

.submenu__title {
    font-weight: 600;
}

.submenu__list {
    gap: 2rem;
    flex: 0 0 auto;
    width: 17.8rem;
}

.submenu__list ul {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.submenu__posts {
    gap: 2rem;
    flex: 1;
}
/* header__menu END */



/* menu-news START */
.menu-news {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 4rem;
}

.menu-news .menu-news-item {
    display: flex;
    gap: 2.4rem;
    padding: 1.6rem;
    border-radius: 0.5rem 0.5rem 0.5rem 5rem;
    transition: 0.3s ease-out;
}

.menu-news-item:hover {
    background: var(--color-blue-100);
}

.menu-news-item::after {
    display: none !important;
}

.menu-news-item__image {
    flex: 0 0 auto;
    max-width: 100%;
    width: 16.5rem;
    aspect-ratio: 165/85;
    border-radius: 1.6rem;
    overflow: hidden;
}

.menu-news-item__content {
    gap: 0.8rem;
}

.menu-news-item__title {
    font-weight: 600;
}

.menu-news-item__link {
    color: var(--color-blue);
    text-decoration: underline;
}
/* menu-news END */



/* footer START */
.footer {
    padding-top: 10rem;
    background: var(--color-blue-d);
    color: #fff;
}

.footer__inner {
    gap: 8rem;
    width: 100%;
}

.footer__logos {
    display: flex;
    align-items: center;
    gap: 3.2rem;
    justify-content: flex-end;
}

.footer__content {
    gap: 4rem;
    width: 100%;
}

.footer__info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3.2rem;
    width: 100%;
    padding-block: 4rem;
    border: 0.1rem solid #0B2E4F;
    border-left: 0;
    border-right: 0;
}

.footer-contacts {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.2rem;
}

.footer-contacts__item {
    padding: 1.4rem 2.4rem;
    background: var(--color-blue-600);
    border-radius: 10rem;
    font-weight: 700;
    transition: 0.3s;
}

.footer-contacts__item:hover {
    background: var(--color-blue);
}

@media screen and (max-width: 575.9px) {
    .footer__inner {
        gap: 6rem;
    }

    .footer__content {
        gap: 3.2rem;
    }

    .footer__info {
        padding-block: 3.2rem;
    }

    .footer-contacts__item {
        font-weight: 600;
        font-size: 1.4rem;
    }

    .footer__socials {
        order: 1;
    }
}
/* footer END */



/* footer-menu START */
.footer-menu {
    columns: 4;
    column-gap: 15.2rem;
    font-weight: 600;
    line-height: 1.5;
}

.footer-menu a[href="#"] {
    opacity: 0;
    pointer-events: none;
}

.footer-menu li {
    break-inside: avoid;
}

.footer-menu li + li {
    margin-top: 0.8rem;
}

@media screen and (max-width: 767.9px) {
    .footer-menu {
        columns: 2;    
    }
}

@media screen and (max-width: 575.9px) {
    .footer-menu {
        column-gap: 3.2rem;
    }
}
/* footer-menu END */



/* copyright START */
.copyright {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.6rem;
    padding-block: 4rem;
    font-size: 1.4rem;
}

.copyright-menu {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.copyright-menu li {
    display: flex;
    align-items: center;
}

.copyright-menu li:has(+ li)::after {
    content: "";
    flex: 0 0 auto;
    display: block;
    height: 1.6rem;
    width: 0.1rem;
    background: var(--color-blue-600);
    margin-inline: 1.6rem;
}

.copyright p > a {
    color: inherit;
}

@media screen and (max-width: 575.9px) {
    .copyright-menu {
        gap: 0.8rem;
    }
}
/* copyright END */



/* socials START */
.socials {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.socials__item {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    width: 4.8rem;
    background: var(--color-blue);
    border-radius: 100%;
    cursor: pointer;
    transition: 0.4s ease-out;
}

@media (hover: hover) and (pointer: fine) {
    .socials__item:hover {
        scale: 1.05;    
    }

    .socials__item:hover ~ .socials__item,
    .socials__item:has(~ .socials__item:hover) {
        scale: 0.95;
        opacity: 0.9;
        filter: blur(0.1rem);
    }
}
/* socials END */



/* sharing START */
.sharing {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    padding-top: 1.4rem;
}

.sharing__list {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}
/* sharing END */



/* global START */
.logo > * {
    width: 100%;
}

.header-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2.4rem;
}

.header-margin {
    margin-bottom: 8rem;
}

.title strong,
.title-l strong,
.title-m strong,
.title-s strong,
.title-xs strong,
.title-xxs strong {
    color: var(--color-blue);
}

.back-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    font-size: 1.6rem;
}

.back-link span {
    font-family: monospace;
}


@media screen and (max-width: 1024.9px) {
    .header-margin {
        margin-bottom: 6rem;
    }
}

@media screen and (max-width: 575.9px) {
    .header-block {
        gap: 1.6rem;
    }

    .header-margin {
        margin-bottom: 4rem;
    }
}
/* global END */




/* cookie-banner START */
body .cmplz-cookiebanner .cmplz-buttons .cmplz-btn.cmplz-view-preferences,
body .cmplz-cookiebanner .cmplz-links.cmplz-documents,
body .cmplz-cookiebanner .cmplz-links .cmplz-link,
body .cmplz-footer,
body .cmplz-logo {
    display: none;
}

body #cmplz-cookiebanner-container {
    width: 100%;
    background: var(--color-blue-100);
    border-radius: 10rem 0 0 0;
    box-shadow: 0 0.4rem 3rem #28507926;
    position: fixed;
    inset: 0;
    top: auto;
    z-index: 999;
}


body .cmplz-cookiebanner {
    gap: 0;
    grid-column-gap: 6rem;
    box-sizing: border-box;
    width: calc(var(--wrapper) + var(--gutter)*2);
    max-width: 100%;
    padding: 3rem var(--gutter);
    background: transparent;
    border: unset;
    margin: 0 auto;
    position: static;
    transform: none !important;
}

body .cmplz-cookiebanner .cmplz-header {
    display: flex;
    justify-content: flex-start;
}

body .cmplz-cookiebanner .cmplz-title {
    font-family: var(--font-almony);
    font-size: 4rem;
    margin-bottom: 1rem;
}

body .cmplz-cookiebanner .cmplz-title::after {
    content: " Cookie ";
    font-weight: 600;
    color: var(--color-blue);
}

body .cmplz-cookiebanner .cmplz-buttons {
    grid-column-start: 4;
    gap: 1.6rem;
}

body .cmplz-cookiebanner .cmplz-buttons .cmplz-btn {
    min-width: 27rem;
    min-height: 5.6rem;
    font-weight: 600;
    font-size: 1.8rem;
    transition: 0.3s;
}

body .cmplz-cookiebanner .cmplz-buttons .cmplz-btn.cmplz-deny {
    background: transparent;
}

body .cmplz-cookiebanner .cmplz-buttons .cmplz-btn.cmplz-deny:hover {
    background: var(--color-blue-d);
    color: #fff;
}

body .cmplz-cookiebanner .cmplz-buttons .cmplz-btn.cmplz-accept:hover {
    background: transparent;
    color: var(--color-blye);
}

@media screen and (max-width: 1024.9px) {
    body .cmplz-cookiebanner .cmplz-buttons {
        grid-column-start: unset;
        grid-column: span 4;
    }

    body .cmplz-cookiebanner .cmplz-body {
        margin-bottom: 3.2rem;
    }

    body .cmplz-cookiebanner .cmplz-header .cmplz-title {
        display: block !important;
        font-size: 2.8rem;
    }

    body .cmplz-cookiebanner .cmplz-message {
        margin-right: 0 !important;
        font-size: 1.8rem;
    }
}
/* cookie-banner END */



/* chat START */

.ai-agent-avatar-content-wrapper {
    align-items: flex-start !important;
}

@media screen and (max-width: 768px) {
    .embedded-agent-container:not(:has(.chat-button-variant-2,.chat-button-variant-3)).align-right {
        justify-content: start !important;
    }
}

@media screen and (max-width: 575px) {
    .embedded-agent-container.align-right .ai-agent-chat-avatar-container {
        right: 1rem !important;
    }
}
/* chat END */