html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

:root {
    --blue-darker: #11428a;
    --blue-dark: #1859B5;
    --blue-light: #2C7AE3;
    --blue-lighter: #72ADFB;
    --yellow-dark: #ffa700;
    --yellow-light: #FFD11C;
}
sup {
    font-size: small;
    vertical-align:super;
}
sub {
    font-size: small;
    vertical-align: sub;
}
strong {
    font-weight: 700;
}
html {
    scroll-behavior: smooth;
}
body {
    background-color: #fff;
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
}
body * {
    box-sizing: border-box;
}
a, a:hover, a:visited, a:active {
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    color: var(--blue-dark);
}
a:hover {
    color: var(--blue-light);
}
a:active {
    color: var(--blue-lighter);

}
header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 4rem;
    z-index: 1000;
    background-color: #08121a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    padding: 0 2rem 0 0.5em;
    opacity: 1;
    transition: all 0.2s ease-in-out;
}
header.hidden {
    top: -4rem;
    opacity: 0;
}
.logoButton {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}
header .logo {
    height: 3.5rem;
    width: 3rem;

}
header .logoNapys {
    height: 3.5rem;
    width: 10rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-right: 2rem;
}
header .logoNapys svg {
    width: 100%;
    margin: 0 0 0 0.5rem;
}
header .logoNapys path {
}
.headerLeft,
.headerRight {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;

}
.miniMenu {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.miniMenu a {
    padding: 1rem 1rem;
    color: #fff;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}
.miniMenu a:hover {
    color: var(--yellow-light);
}
.sharingIcon {
    margin-top: 0.25rem;
}
.sharingIcon span {
    margin-bottom: 0.25rem;
}
.sharingBlock {
    height: 2rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-left: 1rem;
    color: #fff;
}
.sharingDropdown {
    max-width: 0;
    transition: all 0.5s ease-in-out;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: center;
    opacity: 0;
}
.sharingBlock:hover .sharingDropdown {
    max-width: 20rem;
    opacity: 1;
}
.sharingBlock svg {
    height: 1rem;
    width: 1rem;
    margin: 0.25rem 0.5rem 0.5rem 0.25rem;
    color: var(--yellow-dark);
}
.sharingBlock svg:hover {
    color: var(--yellow-light);
}
.sharingBlock path {
    fill: currentColor;
    transition: all 0.2s ease-in-out;
}
.sharingIcon {
    display: flex;
    justify-content: center;
    align-items: center;
}
.langSelect {
    margin-left: 1rem;
}
.langSelect a {
    padding: 1rem;
    color: var(--yellow-light);
}
.langSelect a:hover {
    color: var(--yellow-dark);
}

.button {
    background-color: var(--blue-light);
    border-radius: 0.5rem;
    height: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1.5rem;
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    transition: all 0.2s ease-in-out;
}
.button:hover {
    background-color: var(--blue-dark);
    color: #fff;
}
.button:active {
    background-color: var(--blue-lighter);
}
.chapterAnchor {
    position: absolute;
    top: calc(-4rem + 1px);
    left: 0;
    width: 0;
    height: 0;
}

.firstSlide {
    width:100%;
    min-height: 100vh;
    background-color: #000;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10vh;
    overflow: hidden;
    background-image: url("/media/slide1back.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
}
.firstSlide:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #254061;
    opacity: 0.85;
    background-repeat: no-repeat;
    background-size: cover;
    pointer-events: none;
    z-index: 3;
}
.firstSlide .content {
    position: relative;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 20vh - 4rem);
    width: 100%;
}
.firstSlide .fsSlogan {
    margin-top: 2.5rem;
    font-size: 3rem;
    font-weight: 700;
}
.firstSlide .fsEssence {
    margin-top: 2rem;
    font-size: 1.5rem;
    line-height: 1.5;
    max-width: 60rem;
}
.firstSlide .fsChapters {
    margin-top: 2rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    width: 100%;
}
.firstSlide .fsChapters a {
    margin: 1rem;
    font-weight: 700;
    color: var(--yellow-light);
}
.firstSlide .fsChapters a:hover {
    color: var(--yellow-dark);

}



.footer {
    background-color: #171a23;
    padding: 4rem 10vh;
    color: #fff;
    font-size: 1.25rem;
    line-height: 1.25;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
}
.footer .logos,
.socialBlock,
.contacts1,
.contacts2 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin-right: 2rem;
}
.logoNapys svg {
    width: 15rem;
    height: auto;
    margin-right: 2rem;
}
.socialBlock h4,
.contacts1 h5,
.contacts2 h5 {
    font-size: 2rem;
    font-weight: 700;
 }
.socialBlock h5 {
    font-size: 1.75rem;
    font-weight: 700;
}
.definition {
    color: #bbb;
}
.social {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 1rem 0 2rem 0;
}
.social a {
    display: block;
    height: 3rem;
    width: 3rem;
    margin-right: 1rem;
}
.social a svg {
    width: 100%;
    height: 100%;
}
.socialBlock a {
    color: var(--yellow-dark);
}
.socialBlock a:hover {
    color: var(--yellow-light);
}
.dividedSlide {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: row;
    justify-content: stretch;
    align-items: stretch;
}
.halfSlide {
    height: 50vh;
    min-height: auto;
}
.autoHeight {
    min-height: auto;
}
.firstDivided {
    margin-top: 4rem;
    min-height: auto;
    height: calc(100vh - 4rem);
}
.fistBlock {
    margin-top: 4rem;
}
.textPart {
    width: 50%;
    height: 100%;
    background: #ffffff;
    color: #171a23;
    padding: 4rem 8rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.halfSlide .textPart h2 {
}
.pureText {
    background-color: #fff;
    padding: 4rem 8rem;
    font-size: 1.5rem;
    color: #000;
}
.textPart h1 {
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 3rem;
}
.textPart h1 .ua2gether {
    font-size: 3rem;
}
.ua2gether {
    font-weight: 700;
    color: var(--blue-darker);
    font-family: 'Roboto Condensed', sans-serif;
}
.ua2gether strong {
    color: var(--yellow-dark)
}
.textPart h2, .pureText h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.pureText h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.textPart h4, .textPart p, .pureText p {
    font-weight: 500;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.textPart h4 strong, .textPart p strong {
    font-weight: 700;
}
.textPart ul, .pureText ul {
    list-style-type: disc;
    font-weight: 500;
    font-size: 1.5rem;
}
.textPart ul li, .pureText ul li {
    margin-bottom: 1rem;
    margin-left: 2rem;
}
.picPart {
    width: 50%;
    background: #eeeeee;
    align-items: stretch;
}

.halfSlide .picPart {
    height: 50vh;
}
.picPart img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.halfSlide .picPart img {
    height: 50vh;
}
.twoColsText {
    padding: 4rem 4rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    font-size: 1.5rem;
}
.twoColsText.dark {
    background-color: #171a23;
    color: #fff;
    position: relative;
}
.twoColsText.dark.pattern:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    z-index: 1;
    pointer-events: none;
    background-image: url("/media/pattern.png");
    background-size: auto 100%;
    background-repeat: repeat;
}
.twoColsText div.col {
    width: calc(50% - 8rem);
    margin: 0 4rem;
    position: relative;
    z-index: 2;
}
.twoColsText div.col:first-of-type p {
    margin-left: 0.75rem
}
.twoColsText h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}
.initial {
    position: relative;
    padding-left: 4rem;
}
.initial span {
    position: absolute;
    left: -1.5rem;
    top: -1rem;
    font-size: 8rem;
    font-family: 'Roboto Condensed', sans-serif;
}
.partners {
    padding: 4rem 6rem;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    background-color: #fff;
    color: #000;
    min-height: calc(100vh - 4rem - 16rem);
}
.partners .partner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 2rem;
}
.partners .partner img {
    height: calc((100vw - 12rem - 20rem) / 5);
    width: calc((100vw - 12rem - 20rem) / 5);
    margin-bottom: 2rem;
    object-fit: contain;
    object-position: center;
}
.partner p {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
}



@media (max-width: 1600px) {
    html, body {
        font-size: 12px;
    }
}
@media (max-width: 1400px) {
    html, body {
        font-size: 10px;
    }
    .miniMenu a {
        font-size: 1.25rem;
    }
    .sharingBlock span {
        font-size: 1.25rem;
    }
}
@media (max-width: 1199px) {


}


@media (max-width: 1000px) {
    .miniMenu a {
        font-size: 1.25rem;
    }
    .sharingBlock span {
        font-size: 1.25rem;
    }
    .firstSlide {
        min-height: auto;
        padding: 4rem;
    }
    .firstSlide .content {
        min-height: auto;
    }
    .footer {
        padding: 4rem;
    }
    .socialBlock,
    .contacts1,
    .contacts2 {
        padding-right: 2rem;
    }
    .fsLogo svg {
        max-width: 30vw;
    }
    .fsChapters {
        flex-shrink: 0;
        flex-wrap: wrap;
    }
    .dividedSlide {
        flex-direction: column;
    }
    .dividedSlide .picPart {
        display: none;
    }
    .dividedSlide .textPart {
        width: 100%;
    }
    .firstDivided {
        height: auto;
    }
    .twoColsText {
        flex-direction: column;
    }
    .twoColsText div.col {
        width: calc(100% - 8rem);
    }
    .twoColsText div.col:first-of-type p {
        margin-left: 0;
    }
    .initial {
        padding-left: 0;
    }
    .initial span {
        display: none;
    }
    .halfSlide {
        height: auto;
    }
    .partners {
        flex-wrap: wrap;
        height: auto;
        justify-content: flex-start;
    }
    .partner {
        margin-bottom: 4rem !important;
        width: 40%;
    }
    .partners .partner img {
        height: calc((100vw - 12rem - 20rem) / 2);
        width: calc((100vw - 12rem - 20rem) / 2);
        margin-bottom: 2rem;
        object-fit: contain;
        object-position: center;
    }
    .socialBlock {
        width: 100%;
    }
}

@media (max-width: 960px) {
    html, body {
        font-size: 14px;
    }
    .miniMenu,
    .sharingBlock {
        display: none;
    }

    .firstSlide .content {
        width: 100%;
    }
    .firstSlide .fsChapters a {
        text-align: center;
    }
    .footer {
        flex-wrap: wrap;
    }
    .socialBlock {
        margin-bottom: 4rem;
    }
    .textPart, .twoColsText, .pureText {
        padding: 2rem;
    }
    .twoColsText div.col {
        margin: 0;
        width: 100%;
    }
    .fsLogo svg {
        max-width: 60vw;
        max-height: 5rem;
    }
    .partners {
        flex-direction: column;
        align-items: center;
    }
    .partners .partner img {
        height: 70vw;
        width: 70vw;
    }
    header .logo {
        display: none;
    }
    .socialBlock {
        margin-bottom: 0;
    }
}
@media (max-width: 760px) {


}
@media (max-width: 670px) {
}
@media (max-width: 540px) {
    .firstSlide .fsSlogan {
        font-size: 2rem;
    }
    .firstSlide {
        padding: 2rem 1rem;
    }
    header {
        padding-right: 0;

    }
    .footer {
        padding: 1rem;
    }
    .textPart h2, .pureText h2 {
        font-size: 2rem;

    }
    .textPart h1 {
        font-size: 1.25rem;
    }
    .textPart h4,
    .textPart p,
    .pureText p,
    .textPart ul li,
    .pureText ul li {
        font-size: 1.25rem;

    }
    .pureText h3 {
        font-size: 1.5rem;

    }
}
@media (max-width: 420px) {
}
@media (max-width: 380px) {
}