@charset "UTF-8";
:root {
    --blue: #010156;
    --indigo: #6812f3;
    --purple: #6f42c2;
    --pink: #e93f8e;
    --red: #f20d0d;
    --orange: #fd7e17;
    --yellow-light: #fbeea8;
    --yellow: #ad6200;
    --green: #448344;
    --teal: #5abfdd;
    --cyan: #30638d;

    --green-light: #234616;
    --green-dark: #0D1901;

    --white: white;
    --gray-25: #fcfcf9;
    --gray-50: #f9f9f5;
    --gray-75: #f0f0f0;
    --gray-100: #e6e6e6;
    --gray-150: #d9d9d9;
    --gray-200: #cccccc;
    --gray-250: #bfbfbf;
    --gray-300: #b3b3b3;
    --gray-400: #999999;
    --gray-500: #808080;
    --gray-600: #666666;
    --gray-700: #4d4d4d;
    --gray-800: #333333;
    --gray-900: #1a1a1a;
    --black: black;

    --primary: #010156;
    --secondary: #6d757e;
    --success: #448344;
    --info: #30638d;
    --warning: #ad6200;
    --danger: #a51f18;
    --light: #f9fafb;
    --dark: #353b41;

    --white-rgb: rgb(255, 255, 255);
    --primary-rgb: rgb(1, 1, 86);
    --secondary-rgb: rgb(109, 117, 126);
    --success-rgb: rgb(68, 131, 68);
    --info-rgb: rgb(48, 99, 141);
    --warning-rgb: rgb(173, 98, 0);
    --danger-rgb: rgb(165, 31, 24);
    --light-rgb: rgb(249, 250, 251);
    --dark-rgb: rgb(53, 59, 65);
    --black-rgb: rgb(0, 0, 0);
    --black-rgba: rgba(0, 0, 0, 0);

    --body-background: var(--kdp-green-1st);
    --main-background: var(--white);

    --gradient-linear-green: linear-gradient(110deg, rgba(51, 164, 56, 1) 60%, rgba(123, 53, 42, 0) 100%);
    --gradient-radial-blue: radial-gradient(farthest-corner at 50% 60%, #0088cc, #13246f);

    --kdp-orange: #ffbe4f;
    --kdp-orange-dark: #f39600;
    --kdp-green: rgb(18, 57, 19);
    --kdp-green-alpha: rgba(18, 57, 19, .8);
    --kdp-gray-alpha: rgba(18, 19, 19, .8);

    --kdp-green-1st: rgb(18, 57, 19);
    --kdp-green-2nd: rgb(35, 70, 22);
    --kdp-green-3rd: rgb(71, 154, 45);
    --kdp-green-4th: rgb(137, 202, 65);
    --kdp-green-5th: rgb(18, 57, 19);
    --kdp-green-6th: rgb(18, 57, 19);
    --kdp-orange-1st: rgb(221, 184, 95);

    --kdp-green-a-1st: rgba(18, 57, 19, .9);
    --kdp-green-a-2nd: rgba(35, 70, 22, .9);
    --kdp-green-a-3rd: rgba(71, 154, 45, .92);
    --kdp-green-a-4th: rgba(137, 202, 65, .94);
    --kdp-green-a-5th: rgba(18, 57, 19, .30);
    --kdp-green-a-6th: rgba(18, 57, 19, .65);
    --kdp-orange-a-1st: rgba(221, 184, 95, .96);
    --kdp-aplha: rgba(0,0,0,0);

    --font-sans-serif: -apple-system, sans-serif;
    --font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --font-blogger-sans: 'BloggerSans';
    --font-cyrulik-sharp: 'CyrulikSharp';

    --body-font-size: 1rem;
    --body-font-weight: 400;
    --body-line-height: 1.5;
    --body-text-align: left;
    --body-font-family: var(--myriad-sc), sans-serif;

    --myriad-sc: 'Myriad W05 SemiCondensed';
    --myriad-c: 'Myriad W05 Condensed';
    --myriad-bc: 'Myriad W05 Black Condensed';

    --headings-font-family: var(--font-cyrulik-sharp), sans-serif;

    --item-margin: 1rem;
    --item-hmargin: 0 var(--item-margin);
    --item-vmargin: var(--item-margin) 0;
    --menu-top-background: var(--green-dark);
    --menu-top-font-family: var(--font-cyrulik-sharp), sans-serif;
    --menu-top-dropdown-item-margin: .625rem 2rem;

    --ico-margin: 1rem;
    --article-margin: 4rem 0 4.5rem;
    --section-margin: 6rem 0 6.5rem;
    --footer-margin: 4rem 0 4.5rem;
    --footer-logotypes-margin: var(--half) var(--regular);
    --copyright-margin: 1rem;

    --page-wrapper: 90vw;
    --footer-wrapper: 960px;
    --content-wrapper: 760px;
    --small-wrapper: 700px;
    --header-wrapper: 1024px;
    --blog-wrapper: var(--header-wrapper);

    --cover-height: 420px;
    --blog-width: 480px;

    --thin: .375rem;
    --half: .5rem;
    --small: .75rem;
    --regular: 1rem;
    --regular-half: 1.5rem;
    --double: 2rem;
    --double-half: 2.5rem;
    --triple: 3rem;
    --triple-half: 3.5rem;
    --quadruple: 4rem;
    --quadruple-half: 4.5rem;
    --six-half: 6.5rem;

    --radius: 12px;
    --radius-menu: 6px;
    --cols: 2;
    --gap: 32px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
    :root {
        scroll-behavior: smooth;
    }
}

html {
    font: 16px/24px sans-serif;
}

body {
    background-color: var(--body-background);
    color: var(--white);
    font-family: var(--body-font-family);
    font-size: var(--body-font-size);
    font-weight: var(--body-font-weight);
    line-height: var(--body-line-height);
    margin: 0;
    text-align: var(--body-text-align);
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: var(--black-rgba);
}

main {
    background-color: var(--main-background);
    color: var(--black);
}

footer {
    padding: var(--footer-margin);
}

hr {
    margin: 1rem 0;
    color: inherit;
    background-color: currentColor;
    border: 0;
    opacity: 0.25;
}

hr:not([size]) {
    height: 1px;
}

h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-family: var(--headings-font-family);
    font-weight: 500;
    line-height: 1.2;
}

h1, .h1 {
    font-size: calc(1.375rem + 1.5vw);
}

@media (min-width: 1200px) {
    h1, .h1 {
        font-size: 2.5rem;
    }
}

h2, .h2 {
    font-size: calc(1.325rem + 0.9vw);
}

@media (min-width: 1200px) {
    h2, .h2 {
        font-size: 2rem;
    }
}

h3, .h3 {
    font-size: calc(1.3rem + 0.6vw);
}

@media (min-width: 1200px) {
    h3, .h3 {
        font-size: 1.75rem;
    }
}

h4, .h4 {
    font-size: calc(1.275rem + 0.3vw);
}

@media (min-width: 1200px) {
    h4, .h4 {
        font-size: 1.5rem;
    }
}

h5, .h5 {
    font-size: 1.25rem;
}

h6, .h6 {
    font-size: 1rem;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

abbr[title],
abbr[data-bs-original-title] {
    cursor: help;
    text-decoration: underline dotted;
    text-decoration-skip-ink: none;
    -webkit-text-decoration: underline dotted;
    -webkit-text-decoration-skip-ink: none;
}

address {
    margin-bottom: 1rem;
    font-style: normal;
    line-height: inherit;
}

ol,
ul {
    padding-left: 2rem;
}

ol,
ul,
dl {
    margin-top: 0;
    margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
    margin-bottom: 0;
}

dt {
    font-weight: 700;
}

dd {
    margin-bottom: 0.5rem;
    margin-left: 0;
}

blockquote {
    margin: 2rem auto 2rem 3rem;
    width: 75%;
}

b,
strong {
    font-weight: bolder;
}

small, .small {
    font-size: 0.875em;
}

mark, .mark {
    padding: 0.2em;
    background-color: var(--yellow-light);
}

sub,
sup {
    position: relative;
    font-size: 0.75em;
    line-height: 0;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

a {
    color: var(--white);
    text-decoration: underline;
}

a:not([href]):not([class]), a:not([href]):not([class]):hover {
    color: inherit;
    text-decoration: none;
}

pre,
code,
kbd,
samp {
    font-family: var(--font-monospace);
    font-size: 1em;
    direction: ltr /* rtl:ignore */;
    unicode-bidi: bidi-override;
}

pre {
    display: block;
    margin-top: 0;
    margin-bottom: 1rem;
    overflow: auto;
    font-size: 0.875em;
}

pre code {
    font-size: inherit;
    color: inherit;
    word-break: normal;
}

code {
    font-size: 0.875em;
    color: var(--pink);
    word-wrap: break-word;
}

a > code {
    color: inherit;
}

kbd {
    padding: 0.2rem 0.4rem;
    font-size: 0.875em;
    color: white;
    background-color: var(--gray-900);
    border-radius: 0.2rem;
}

kbd kbd {
    padding: 0;
    font-size: 1em;
    font-weight: 700;
}

figure {
    margin: 0 0 1rem;
}

img,
svg {
    vertical-align: middle;
    width: 100%;
}

table {
    border-collapse: collapse;
    caption-side: bottom;
    width: 100%;
}

caption {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    color: var(--gray-600);
    text-align: left;
}

th {
    text-align: inherit;
    text-align: -webkit-match-parent;
}

thead,
tbody,
tfoot,
tr,
td,
th {
    border-color: inherit;
    border-style: solid;
    border-width: 0;
}

label {
    display: inline-block;
}

button {
    border-radius: 0;
}

button:focus:not(:focus-visible) {
    outline: 0;
}

input,
button,
select,
optgroup,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

button,
select {
    text-transform: none;
}

[role=button] {
    cursor: pointer;
}

select {
    word-wrap: normal;
}

select:disabled {
    opacity: 1;
}

[list]::-webkit-calendar-picker-indicator {
    display: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
    -webkit-appearance: button;
}

button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
    cursor: pointer;
}

::-moz-focus-inner {
    padding: 0;
    border-style: none;
}

textarea {
    resize: vertical;
}

fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0;
}

legend {
    float: left;
    width: 100%;
    padding: 0;
    margin-bottom: 0.5rem;
    font-size: calc(1.275rem + 0.3vw);
    line-height: inherit;
}

@media (min-width: 1200px) {
    legend {
        font-size: 1.5rem;
    }
}

legend + * {
    clear: left;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
    padding: 0;
}

::-webkit-inner-spin-button {
    height: auto;
}

[type=search] {
    outline-offset: -2px;
    -webkit-appearance: textfield;
}

::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
    padding: 0;
}

::-webkit-file-upload-button {
    font: inherit;
}

::file-selector-button {
    font: inherit;
}

::-webkit-file-upload-button {
    font: inherit;
    -webkit-appearance: button;
}

output {
    display: inline-block;
}

iframe {
    border: 0;
}

summary {
    display: list-item;
    cursor: pointer;
}

progress {
    vertical-align: baseline;
}

[hidden] {
    display: none !important;
}
