@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

:root {
    --default-color: #fa4d00;
    --default-lighten-color: #0c77e6;
    --default-catifsh-color: rgb(0, 0, 0);
    --default-header-color: #003266;
    --default-footer-color: #04386e;
    --btn-text: #fff;
}

*, :after, :before {
    box-sizing: border-box
}

li, ol, ol[class], ul, ul[class] {
    margin: 0;
    padding: 0
}

blockquote, body, dd, dl, figcaption, figure, h1, h2, h3, h4, li, ol[class], p, ul[class] {
    margin: 0
}

body {
    background: #fff;
    color: #000;
    font-family: "Ubuntu", sans-serif;
    font-size: 16px;
    letter-spacing: .5px;
    line-height: 1.4;
    min-height: 100vh;
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed
}

body.-toggle,
html.-toggle {
    overflow: hidden
}

li, ol[class], ul[class] {
    list-style: none
}

a {
    text-decoration: none
}

a:not([class]) {
    -webkit-text-decoration-skip: ink;
    text-decoration-skip-ink: auto
}

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

button, input, select, textarea {
    border: none;
    font: inherit
}

[role=button], button {
    cursor: pointer
}

@media (prefers-reduced-motion:reduce) {
    * {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important
    }
}

@media (max-width:768px) {
    body {
        font-size: 14px;
        overflow-x: hidden
    }
}

.container {
    margin-left: auto;
    margin-right: auto;
    max-width: 1220px;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
}

/* HEADER */
.header {
    background: var(--default-header-color);
    padding: 24px 0;
}

.header-wrap {
    grid-gap: 20px;
    align-items: center;
    display: grid;
    grid-template-columns: max-content 1fr;
}

.header-logo__img {
    height: auto;
    width: 180px;
}

.menu-wrap {
    grid-gap: 20px;
    align-items: center;
    display: grid;
    grid-template-columns: 1fr max-content max-content;
    z-index: 10;
}

.main-nav {
    padding-right: 45px;
    text-align: right;
}

.main-nav__list {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 32px;
}

.nav-item {
    font-size: 16px;
    position: relative;
    font-weight: bold;
}

.nav-item__link {
    color: #fff;
    transition: color 0.2s ease;
}

.main-nav__list li:hover > a {
    color: var(--default-color);
}

.header-lang {
    display: flex;
    align-items: center;
    color: #fff;
}

/* BUTTON */
.btn {
    background: var(--default-color);
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    line-height: 42px;
    text-transform: uppercase;
    width: fit-content;
}

.btn a {
    color: var(--btn-text);
    display: block;
    padding: 0 42px;
    font-weight: bold;
}

.btn:hover {
    opacity: .86
}

/* MOBILE MENU BUTTON */
.menu-mob-btn {
    background: var(--default-color);
    background-size: 15px;
    border: 1px solid var(--default-color);
    border-radius: 4px;
    display: none;
    height: 42px;
    justify-self: flex-end;
    width: 42px;
    position: relative;
}

.menu-mob-btn::before,
.menu-mob-btn::after,
.menu-mob-btn span {
    content: '';
    display: block;
    width: 18px;
    height: 2px;
    background: #fff;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.3s;
}

.menu-mob-btn::before { top: 12px; }
.menu-mob-btn span { top: 19px; }
.menu-mob-btn::after { top: 26px; }

.menu-mob-btn.-toggle::before {
    top: 19px;
    transform: translateX(-50%) rotate(45deg);
}
.menu-mob-btn.-toggle span { opacity: 0; }
.menu-mob-btn.-toggle::after {
    top: 19px;
    transform: translateX(-50%) rotate(-45deg);
}

/* BREADCRUMB */
.breadcrumb {
    background: #f8f9fa;
    padding: 12px 0;
    font-size: 14px;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.breadcrumb-item {
    margin: 0;
    padding: 0;
}

.breadcrumb-item::before {
    display: none !important;
}

.breadcrumb-item a {
    color: var(--default-lighten-color);
    transition: color 0.2s;
}

.breadcrumb-item a:hover {
    color: var(--default-color);
    text-decoration: underline;
}

.breadcrumb-item + .breadcrumb-item::before {
    display: inline !important;
    content: "›";
    color: #999;
    margin-right: 8px;
    background: none !important;
    border-radius: 0;
    width: auto;
    height: auto;
    line-height: normal;
    font-size: 16px;
    font-weight: normal;
    position: static;
    text-align: left;
}

.breadcrumb-item.active {
    color: #666;
}

/* MAIN */
.main {
    padding: 54px 0;
}

/* ARTICLE / POST */
article {
    overflow: hidden;
}

.post-entry p:not(:last-child) {
    margin-bottom: 24px;
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6 {
    line-height: 1.2;
    margin-bottom: 14px
}

.post-entry h1 { font-size: 32px }
.post-entry h2 { font-size: 28px }
.post-entry h3 { font-size: 24px }
.post-entry h4 { font-size: 20px }

.post-entry a { color: #0855cc }
.post-entry a:hover { color: #0b4e35 }

.post-entry table {
    font-size: 14px;
    margin-bottom: 24px;
    width: 100%
}

.post-entry table tr:first-child {
    background: var(--default-color) !important
}

.post-entry table tr:first-child td {
    color: #fff;
    font-weight: 700
}

.post-entry table tr:nth-child(odd) {
    background: var(--default-lighten-color)
}

.post-entry table tr td,
.post-entry table tr th {
    padding: 16px 12px
}

.post-entry .img-block {
    margin-bottom: 24px
}

.post-entry .img-block img {
    border-radius: 15px;
    margin: 0 auto;
}

.post-entry img {
    height: auto !important;
}

.post-entry ol,
.post-entry ul {
    counter-reset: num;
    list-style-type: none;
    margin-bottom: 24px;
    margin-left: 32px
}

.post-entry ol li,
.post-entry ul li {
    margin: 0 0 16px;
    padding: 0;
    position: relative
}

.post-entry ol li:before {
    background: var(--default-color);
    border-radius: 50%;
    color: #fff;
    content: counter(num);
    counter-increment: num;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    height: 24px;
    left: -32px;
    line-height: 24px;
    position: absolute;
    text-align: center;
    top: 0;
    width: 24px
}

.post-entry ul li:before {
    background: var(--default-color);
    border-radius: 50%;
    color: #fff;
    content: "✔";
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    height: 24px;
    left: -32px;
    line-height: 24px;
    position: absolute;
    text-align: center;
    top: 0;
    width: 24px
}

.post-entry .btn {
    margin-bottom: 25px;
}

.post-entry .btn a {
    color: #fff;
}

.post-entry blockquote {
    margin-bottom: 1.2rem;
    background-color: var(--default-color);
    color: #FFFFFF;
    padding: 40px;
    padding-left: 80px;
    position: relative;
    border-radius: 8px;
}

.post-entry blockquote::before {
    position: absolute;
    left: 20px;
    top: 20px;
    width: 40px;
    height: 40px;
    content: url("data:image/svg+xml,%3Csvg fill='%23FFFFFF' width='40px' height='40px' viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M464 256h-80v-64c0-35.3 28.7-64 64-64h8c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24h-8c-88.4 0-160 71.6-160 160v240c0 26.5 21.5 48 48 48h128c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48zm-288 0H96v-64c0-35.3 28.7-64 64-64h8c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24h-8C71.6 32 0 103.6 0 192v240c0 26.5 21.5 48 48 48h128c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48z'/%3E%3C/svg%3E");
}

@media(max-width:580px) {
    .post-entry blockquote {
        padding: 24px;
        padding-left: 56px;
    }
    .post-entry blockquote::before {
        top: 16px;
        left: 16px;
        width: 24px;
        height: 24px;
        content: url("data:image/svg+xml,%3Csvg fill='%23FFFFFF' width='24px' height='24px' viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M464 256h-80v-64c0-35.3 28.7-64 64-64h8c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24h-8c-88.4 0-160 71.6-160 160v240c0 26.5 21.5 48 48 48h128c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48zm-288 0H96v-64c0-35.3 28.7-64 64-64h8c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24h-8C71.6 32 0 103.6 0 192v240c0 26.5 21.5 48 48 48h128c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48z'/%3E%3C/svg%3E");
    }
}

/* FAQ */
.faq-block {
    margin-bottom: 32px;
    margin-top: 32px
}

.faq-block .faq-block--title {
    color: #000;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px
}

.faq-block .faq-block--items .faq-block--items__item:not(:last-child) {
    margin-bottom: 16px
}

.faq-block .faq-block--items .faq-block--items__item .faq-block--items__item--header {
    background: #f7f7f7;
    border: 1px solid var(--default-color);
    border-radius: 4px;
    font-size: 18px;
    font-weight: 700;
    padding: 20px;
    position: relative;
    cursor: pointer;
}

.faq-block .faq-block--items .faq-block--items__item .title-faq {
    max-width: 80%;
    width: 80%
}

.faq-block .faq-block--items .faq-block--items__item .title-faq:after {
    background: var(--default-color);
    background-size: 14px;
    border-radius: 4px;
    content: "▶";
    color: #fff;
    font-size: 14px;
    height: 42px;
    line-height: 42px;
    text-align: center;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    transition: transform 0.3s ease;
}

.faq-block .faq-block--items .faq-block--items__item .faq-block--items__item--content {
    display: none
}

.faq-block .faq-block--items .faq-block--items__item.-toggle .faq-block--items__item--header {
    background: var(--default-color);
    color: #fff
}

.faq-block .faq-block--items .faq-block--items__item.-toggle .title-faq:after {
    transform: translateY(-50%) rotate(90deg);
}

.faq-block .faq-block--items .faq-block--items__item.-toggle .faq-block--items__item--content {
    display: block;
    padding: 20px
}

.faq-block .faq-block--items .faq-block--items__item.-toggle .faq-block--items__item--content p:not(:last-child) {
    margin-bottom: 8px
}

.faq-block .faq-block--items .faq-block--items__item.-toggle .faq-block--items__item--content a {
    color: #0855cc
}

.faq-block .faq-block--items .faq-block--items__item.-toggle .faq-block--items__item--content a:hover {
    color: #0b4e35
}

/* ALIGN */
.alignright {
    float: right;
    margin-left: 20px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .alignright {
        max-width: 100%;
        margin: 16px auto 24px auto;
        float: none;
        order: 2;
    }
}

.alignleft {
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
}

/* TOC */
.toc-container {
    background: #f9f9f9;
    border: 1px solid #aaa;
    border-radius: 30px;
    padding: 20px 30px;
    margin-bottom: 24px;
    width: 100%;
}

.toc-container .toc-title {
    font-weight: 700;
    text-align: center;
    font-size: 18px;
    margin-bottom: 10px;
}

.toc-container .toc-list {
    padding-left: 35px;
}

.toc-container .toc-list li {
    padding-bottom: 10px !important;
    list-style: none;
}

.toc-container .toc-list li::before {
    display: none;
}

.toc-container .toc-list li a {
    color: #0855cc;
}

.toc-container .toc-list li a:hover {
    color: var(--default-color);
}

/* FOOTER */
.footer {
    background: var(--default-footer-color);
    padding: 42px 0;
    color: #fff;
}

.footer-wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-left {
    width: 40%;
}

.footer-logo {
    display: block;
    width: 100%;
    max-width: 200px;
    margin-bottom: 30px;
}

.footer-left__text {
    font-size: 14px;
    opacity: .5;
    line-height: 150%;
}

.footer-right {
    width: 55%;
}

.footer-nav__list {
    display: block;
    columns: 2;
    margin-bottom: 30px;
}

.footer-nav__list li {
    display: block;
    margin-bottom: 10px;
}

.footer-nav__list li a {
    color: #fff;
    font-size: 15px;
}

.footer-nav__list li a:hover {
    text-decoration: underline;
}

.footer-nav__list li::before {
    display: none;
}

.footer-info {
    display: flex;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding-top: 20px;
}

.footer-info__img {
    margin: 0 auto;
    object-fit: contain;
}

/* ABOUT SECTION */
.about-section {
    margin-bottom: 20px;
}

.about-section__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 10px;
}

.about-section__content {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.about-section__column {
    flex: 1;
    min-width: 180px;
}

.about-section__subtitle {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--default-color);
}

.about-section__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-section__list li {
    margin-bottom: 8px;
}

.about-section__list li::before {
    display: none;
}

.about-section__link {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    transition: color 0.2s;
}

.about-section__link:hover {
    color: #fff;
    text-decoration: underline;
}

/* LANGUAGE SWITCHER */
.language-switcher {
    position: relative;
    display: inline-block;
}

.language-switcher-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 4px;
    padding: 6px 12px;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
}

.language-switcher-toggle:hover {
    border-color: rgba(255,255,255,0.6);
}

.flag-icon {
    display: inline-block;
    width: 24px;
    height: 16px;
}

.flag-icon svg {
    width: 100%;
    height: 100%;
}

.arrow-down {
    font-size: 10px;
}

.language-switcher-dropdown {
    display: none;
    position: absolute;
    bottom: 100%;
    right: 0;
    background: #1a4a7a;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    min-width: 180px;
    padding: 8px 0;
    z-index: 100;
    margin-bottom: 4px;
    list-style: none;
}

.language-switcher.active .language-switcher-dropdown {
    display: block;
}

.language-switcher-dropdown li {
    margin: 0;
}

.language-switcher-dropdown li::before {
    display: none;
}

.language-switcher-dropdown li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s;
}

.language-switcher-dropdown li a:hover {
    background: rgba(255,255,255,0.1);
}

.lang-name {
    font-size: 14px;
}

/* SCROLL TOP */
.scroll-top {
    position: fixed;
    bottom: 85px;
    right: 15px;
    z-index: 9;
}

.scroll-top__button {
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .3s;
}

@media (hover: hover) {
    .scroll-top__button:hover {
        transform: scale(1.2);
        opacity: .7;
    }
}

/* BTN BLOCK */
.btn-block {
    align-items: center;
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 16px;
}

.btn-block__link {
    align-items: center;
    background: rgb(254, 88, 2);
    border-radius: 25px;
    color: #fff !important;
    display: flex;
    flex: 1 0;
    font-size: 16px;
    font-weight: 700;
    gap: 8px;
    justify-content: center;
    line-height: 24px;
    max-width: 320px;
    padding: 12px;
    text-decoration: none;
}

.btn-block__link:hover {
    opacity: .86;
}

@media (max-width: 520px) {
    .btn-block {
        flex-direction: column;
        gap: 5px;
    }
    .btn-block .btn-block__link {
        max-width: none;
        width: 100%;
    }
}

/* MOBILE */
@media (max-width:768px) {
    .menu-mob-btn {
        display: block
    }

    .header-logo__img {
        max-height: 42px;
        max-width: 180px;
        width: auto;
    }

    .menu-wrap {
        grid-gap: 16px;
        background: #000;
        display: none;
        grid-template-columns: 86px 1fr;
        height: calc(100% - 82px);
        left: 0;
        padding: 20px;
        place-content: flex-start;
        position: fixed;
        top: 82px;
        width: 100%;
    }

    .menu-wrap.-toggle {
        display: grid
    }

    .main-nav {
        grid-column: 1 / 3;
        grid-row: 1;
        margin-bottom: 64px;
        padding: 0;
        text-align: left;
        padding-right: 44px;
    }

    .main-nav__list {
        display: block;
    }

    .main-nav__list li:not(:last-child) {
        border-bottom: 1px solid hsla(0, 0%, 100%, .1);
        display: block;
        margin-bottom: 20px;
        padding-bottom: 20px
    }

    .header .btn {
        grid-row: 2;
        text-align: center;
    }

    .header .btn a {
        padding: 0 10px;
    }

    .footer-wrap {
        flex-direction: column;
    }

    .footer-left,
    .footer-right {
        width: 100%;
    }

    .footer-left {
        margin-bottom: 30px;
    }

    .about-section__content {
        flex-direction: column;
        gap: 20px;
    }
}

.nav-item__link, .footer-nav__list li a {
    color: #fff;
}

/* PROMO BLOCK */
.promo-wrapper {
    margin: 24px 0;
}

.promo-block {
    background: linear-gradient(135deg, #003266 0%, #04386e 50%, #0c77e6 100%);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    color: #fff;
    box-shadow: 0 8px 32px rgba(0, 50, 102, 0.3);
}

.promo-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.promo-icon {
    font-size: 36px;
}

.promo-title {
    font-size: 20px;
    font-weight: 700;
}

.promo-offer {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 20px;
    line-height: 1.5;
}

.promo-code-simple {
    margin-bottom: 16px;
}

.promo-code-simple .code {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    border: 2px dashed rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    padding: 12px 32px;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 3px;
    font-family: 'Roboto', monospace;
}

.promo-btn {
    display: inline-block;
    background: var(--default-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.3s, transform 0.2s;
    margin-bottom: 4px;
}

.promo-btn:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.promo-btn.copied {
    background: #28a745;
}

@media (max-width: 580px) {
    .promo-block {
        padding: 20px;
    }
    .promo-title {
        font-size: 17px;
    }
    .promo-code-simple .code {
        font-size: 18px;
        padding: 10px 20px;
        letter-spacing: 2px;
    }
}
