@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible:ital,wght@0,400;0,700;1,400;1,700&family=Geologica:wght@100..900&display=swap');

@font-face {
    font-family: "TheSecretThings";
    src: url('thesecretthings.woff2') format('woff2'), url('thesecretthings.woff') format('woff');
}

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    *zoom: 1;
}

body {    
    background: #FCF8F5;
    overflow-y: scroll;
    overflow-x: hidden;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    line-height: 150%;
    font-family: "Atkinson Hyperlegible", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 17px;
    color: #222222;
    animation: move-background 50s linear infinite;
    will-change: background-position;
}

body.single {
    background: #FCF8F5;
}

.overflow {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    width: 100%;
    max-width: 3840px;
}

.grecaptcha-badge { 
    visibility: hidden;
}

::selection,
::-moz-selection {
    background: #1E2D59;
    color: #F29727;
}

a:link, a:active, a:focus, a:visited, a:hover {
    transition: color 0.3s ease;
    font-weight: 700;
    color: inherit;
    text-decoration: underline;
}

a:hover {
    color: #F29727;
}

strong {
    font-weight: 700;
}

em {
    font-style: italic;
}

:is(h1, h2, h3, h4, h5, h6) {
    font-family: "Geologica", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.hand {
    font-family: "TheSecretThings";
}

section h2 {
    padding-bottom: 56px;
    line-height: 110%;
    font-weight: 700;
    font-size: 3.85em;
}

section h3 {
    padding-bottom: 32px;
    line-height: 130%;
    font-weight: 400;
    font-size: 1.64em;
}

section p,
section ul:not(.hand),
section ol {
    padding-bottom: 32px;
    line-height: 150%;
}

#up {
    position: absolute;
    top: 0;
}

a.up {
    position: fixed;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-content: center;
    align-content: center;
    -webkit-align-items: center;
    align-items: center;
    right: 8px;
    bottom: 8px;
    width: 44px;
    height: 44px;
    z-index: 99999999999;
    opacity: 0;
}

a.up.active {
    opacity: 1;
}

a.up span {
    width: 44px;
    height: 44px;
    color: #222222;
    cursor: pointer;
    z-index: 10;
}

a.up span::before {
    content: '';
    background-color: #F4F0ED;
    border-radius: 50%;
    animation: glow 5s infinite;
    filter: blur(.5px);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

a.up span::after {
    content: '';
    border-left: 1px solid #222222;
    border-bottom: 1px solid #222222;
    transform: rotate(-225deg);
    display: inline-block;
    position: absolute;
    top: 6px;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 10px;
    height: 10px;
}

.btn-wrap {
    transition: box-shadow 0.3s ease-in-out;
    background-color: #F29727;
    border: 2px solid #222222;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    display: inline-block;
    position: relative;
    margin: 0 auto 32px;
    width: auto;
}

* + .btn-wrap {
    margin-top: 32px;
}

.btn-wrap:hover {
    box-shadow: 0 0 15px 3px #F29727;
}

.btn-wrap a {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    color: #222222;
    text-decoration: none;
}

.btn-wrap p {
    text-align: center;
    padding: 16px 80px;
    padding-bottom: 16px !important;
    line-height: 100%;
    font-family: "Geologica", serif;
    font-size: .77em;
    text-transform: uppercase;
    letter-spacing: .2em;
}

.home header {
    background: url(../gfx/header.jpg) no-repeat;
    background-size: auto 860px;
    background-position: left 53% bottom;
}

header .navbar-wrap {
    position: relative;
    margin: 0 auto;
    padding: 32px 0;
    width: 100%;
    max-width: 1440px;
    z-index: 9;
}

header .navbar-wrap nav {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    margin: 0 auto;
    padding: 0 60px;
    width: calc(100% - 120px);
}

header .navbar-wrap nav .logo h1 {
    background: url(../gfx/logo-2.svg) no-repeat;
    background-size: 126px 106px;
    position: relative;
    float: left;
    width: 126px;
    height: 106px;
    text-indent: -998em;
    overflow: visible;
    z-index: 99;
}

.home header .navbar-wrap nav .logo h1 {
    background: url(../gfx/logo.svg) no-repeat;
}

header .navbar-wrap nav .navbar {
    width: 100%;
}

header .navbar-wrap nav .navbar ul {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: flex-start;
    align-content: flex-start;
    column-gap: 72px;
    margin-top: -6px;
    padding-bottom: 0;
    width: 100%;
    height: 100%;
    min-height: 100%;
    font-family: "Geologica", serif;
    font-size: .77em;
    text-transform: uppercase;
    letter-spacing: .2em;
}

header .navbar-wrap nav .navbar ul > li {
    position: relative;
}

header .navbar-wrap nav .navbar ul > li:nth-child(1)::after,
header .navbar-wrap nav .navbar ul > li:nth-child(4)::after {
    content: '';
    background: #222222;
    position: absolute;
    -webkit-transform:  rotate(-56deg);
    -moz-transform:  rotate(-56deg);
    -ms-transform:  rotate(-56deg);
    -o-transform:  rotate(-56deg);
    transform:  rotate(-56deg);
    transform-origin: top left;
    top: 18.5px;
    right: -3px;
    width: .5px;
    height: 77.5px;
}

header .navbar-wrap nav .navbar ul > li:nth-child(2)::after {
    content: '';
    background: #222222;
    position: absolute;
    -webkit-transform:  rotate(71.5deg);
    -moz-transform:  rotate(71.5deg);
    -ms-transform:  rotate(71.5deg);
    -o-transform:  rotate(71.5deg);
    transform: rotate(71.5deg);
    transform-origin: bottom left;
    bottom: 15.5px;
    right: -3px;
    width: .5px;
    height: 67.5px;
}

header .navbar-wrap nav .navbar ul > li:nth-child(3)::after {
    content: '';
    background: #222222;
    position: absolute;
    -webkit-transform:  rotate(68.5deg);
    -moz-transform:  rotate(68.5deg);
    -ms-transform:  rotate(68.5deg);
    -o-transform:  rotate(68.5deg);
    transform: rotate(68.5deg);
    transform-origin: bottom left;
    bottom: 13px;
    right: -3px;
    width: .5px;
    height: 69px;
}

.home header .navbar-wrap nav .navbar ul > li:nth-child(1)::after,
.home header .navbar-wrap nav .navbar ul > li:nth-child(2)::after,
.home header .navbar-wrap nav .navbar ul > li:nth-child(3)::after,
.home header .navbar-wrap nav .navbar ul > li:nth-child(4)::after {
    background: #F2EEEB;
}

header .navbar-wrap nav .navbar ul > li:nth-child(2),
header .navbar-wrap nav .navbar ul > li:nth-child(5) {
    margin-top: 56px;
}

header .navbar-wrap nav .navbar ul > li:nth-child(3) {
    margin-top: 28.5px;
}

header .navbar-wrap nav .navbar ul li a {
    transition: color 0.3s ease;
    position: relative;
    font-weight: 400;
    color: #222222;
    text-decoration: none;
}

header .navbar-wrap nav .navbar ul li a {
    color: #222222;
}

.home header .navbar-wrap nav .navbar ul li a {
    color: #F4F0ED;
}

header .navbar-wrap nav .navbar ul li a:hover {
    color: #F29727;
}

header .navbar-wrap nav .navbar > .offcanvas-toggle {
    display: none;
    position: relative;
    width: 44px;
    height: 44px;
    color: #222222;
    cursor: pointer;
}

header .navbar-wrap nav .navbar > .offcanvas-toggle::before {
    content: '';
    background-color: #F4F0ED;
    border-radius: 50%;
    animation: glow 5s infinite;
    filter: blur(.5px);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 44px;
    height: 44px;
}

header .navbar-wrap nav .navbar > .offcanvas-toggle > div {
    position: absolute;
    top: 12.5px;
    left: 9px;
}

header .navbar-wrap nav .navbar > .offcanvas-toggle > div i {
    border-top: 1px solid #222222;
    display: block;
    margin: 4px;
    width: 18px;
}

.offcanvas-nav {
    display: none;
    background: #1E2D59;
    transform: translateX(-100%);
    transition: all 0.2s;
    position: fixed;
    top: 0;
    left: 0;
    width: 330px;
    height: 100%;
    z-index: 9999999;
}

.offcanvas-nav.active {
    transform: translateX(0%);
    transition: all 0.2s;
}

.offcanvas-nav nav {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-content: flex-start;
    align-content: flex-start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    padding: 0;
    width: 100%;
    height: 100%;
}

.offcanvas-nav nav .navbar {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-content: flex-start;
    align-content: flex-start;
    -webkit-align-items: center;
    align-items: center;
    text-align: center;
    margin-top: 0;
    width: 100%;
    height: 100%;
}

.offcanvas-nav nav .navbar > ul {    
    padding-bottom: 0;
    width: 100%;
    font-family: "Geologica", serif;
    font-size: .77em;
    text-transform: uppercase;
    letter-spacing: .2em;
}

.offcanvas-nav nav .navbar > ul > li + li {
    padding-top: 32px;
}

.offcanvas-nav nav .navbar > ul > li.social-media {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: flex-start;
    column-gap: 20px;
}

.offcanvas-nav nav .navbar > ul > li a {
    font-weight: 400;
    color: #F29727;
    text-decoration: none;
}

.offcanvas-nav nav .navbar > ul > li.current-menu-item a {
    font-weight: 400;
}

.offcanvas-nav .offcanvas-close-inside {
    text-align: right;
    position: absolute;
    top: 1.5px;
    right: 0;
    width: 57px;
    height: 78px;
    cursor: pointer;
}

.offcanvas-nav .offcanvas-close-inside::before,
.offcanvas-nav .offcanvas-close-inside::after {
    content: ' ';
    background-color: #F29727;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 1px;
    height: 22px;
}

.offcanvas-nav .offcanvas-close-inside::before {
    transform: rotate(45deg);
}

.offcanvas-nav .offcanvas-close-inside::after {
    transform: rotate(-45deg);
}

.offcanvas-close-outside {
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999999;
}

.active + .offcanvas-close-outside {
    display: block;
}

header .wrap {
    position: relative;
    margin: 0 auto;
    padding: 0 168px;
    width: calc(100% - 336px);
    max-width: 1120px;
    color: #F4F0ED;
}

header .wrap .content {
    padding: 32px 0 172px;
    max-width: 620px;
}

header .wrap .content h2 {
    position: relative;
    line-height: 110%;
    font-weight: 700;
    font-size: 3.85em;
}

header .wrap .content h2::before {
    content: '';
    background: url(../gfx/gwiazdki-1.svg) no-repeat;
    background-size: contain;
    position: absolute;
    bottom: -48px;
    left: -65px;
    width: 434px;
    height: 117px;
    pointer-events: none;
}

header .wrap .content h3 {
    padding-top: 56px;
    line-height: 120%;
    font-weight: 400;
    font-size: 1.64em;
}

header .wrap .content .hand {
    text-align: center;
    -webkit-transform: rotate(-10deg);
    -moz-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    -o-transform: rotate(-10deg);
    transform: rotate(-10deg);
    position: absolute;
    right: 45px;
    bottom: 28px;
    line-height: 100%;
    font-size: 3.1em;
    color: #F29727;
}

header .little-star {
    top: -36px;
    left: 384px;
}

.home .section-1 {
    position: relative;
    margin: 0 auto;
    width: 100%;
    max-width: 1440px;
}

.home .section-1 .wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    align-content: stretch;
    position: relative;
    margin: 0 auto;
    padding: 60px;
    width: calc(100% - 120px);
}

.home .section-1 .wrap::before {
    content: '';
    border: .5px solid #222222;
    position: absolute;
    top: 100px;
    right: 60px;
    bottom: 100px;
    left: 120px;
    z-index: 2;
    pointer-events: none;
}

.home .section-1 .wrap .image {
    position: relative;
    overflow: hidden;
    width: 41%;
}

.home .section-1 .wrap .image div {
    background-image: url(../gfx/karol-wojcicki-3.jpg);
    background-size: cover;
    background-position: center left 43%;
    transform: translateY(0);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.home .section-1 .wrap .image .hand {
    text-align: center;
    -webkit-transform: rotate(-10deg);
    -moz-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    -o-transform: rotate(-10deg);
    transform: rotate(-10deg);
    position: absolute;
    left: 67px;
    top: 240px;
    line-height: 100%;
    font-size: 2.1em;
    color: #F29727;
}

.home .section-1 .wrap .content {
    padding: 100px 60px 88px;
    width: calc(59% - 120px);
}

.home .section-1 .wrap::after {
    content: '';
    background: url(../gfx/karol-wojcicki-2.jpg) no-repeat;
    background-size: auto 116%;
    background-position: center bottom;
    border-radius: 50%;
    position: absolute;
    bottom: -143px;
    right: 120px;
    width: 348px;
    height: 348px;
    z-index: 2;
}

@keyframes move-background {
    0% {
        background-position: center top 50%;
    }

    50% {
        background-position: center top 40%;
    }

    100% {
        background-position: center top 50%;
    }
}

@keyframes move-content {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10%);
    }
    100% {
        transform: translateY(0);
    }
}

.home .section-2 {
    position: relative;
    width: 100%;
    height: 680px;
}

.home .section-2 .wrap {
    background: url(../gfx/kosmos-1.jpg) no-repeat;
    background-size: cover;
    background-position: center center;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: move-background 40s linear infinite;
    will-change: background-position;
}

.home .section-2 .wrap .content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: 0 auto;
    width: 100%;
    max-width: 1440px;
    color: #F4F0ED;
    animation: move-content 40s linear infinite;
}

.home .section-2 .wrap .content ul {
    text-align: center;
}

.home .section-2 .wrap .content ul li {
    position: absolute;
}


.home .section-2 .wrap .content ul li:nth-child(1) {
    top: 144px;
    left: 312px;
}

.home .section-2 .wrap .content ul li:nth-child(2) {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    top: 0;
    bottom: 0;
    left: 208px;
    margin: auto 0;
}

.home .section-2 .wrap .content ul li:nth-child(3) {
    bottom: 144px;
    left: 312px;
}

.home .section-2 .wrap .content ul li:nth-child(4) {
    bottom: 195px;
    right: 312px;
}

.home .section-2 .wrap .content ul li:nth-child(5) {
    top: 195px;
    right: 208px;
}

.home .section-2 .wrap .content ul li:nth-child(1)::before {
    content: '';
    background: #F2EEEB;
    -webkit-transform: rotate(30deg);
    -moz-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    -o-transform: rotate(30deg);
    transform: rotate(30deg);
    transform-origin: top left;
    position: absolute;
    top: calc(50% + 1.5px);
    left: calc(100% + 5px);
    width: 100px;
    height: 1px;
}

.home .section-2 .wrap .content ul li:nth-child(1)::after {
    content: '';
    background-color: #F4F0ED;
    border-radius: 50%;
    animation: glow 5s infinite;
    filter: blur(.5px);
    position: absolute;
    top: 90.5px;
    right: -105px;
    height: 10px;
    width: 10px;
}

.home .section-2 .wrap .content ul li:nth-child(2)::before {
    content: '';
    background: url(../gfx/line.svg) no-repeat;
    position: absolute;
    top: calc(50% + 1px);
    left: calc(100% + 5px);
    width: 100px;
    height: 5px;
}

.home .section-2 .wrap .content ul li:nth-child(2)::after {
    content: '';
    background-color: #F4F0ED;
    border-radius: 50%;
    animation: glow 5s infinite;
    filter: blur(.5px);
    position: absolute;
    top: calc(50% - 1.5px);
    left: calc(100% + 110px);
    height: 10px;
    width: 10px;
}

.home .section-2 .wrap .content ul li:nth-child(3)::before {
    content: '';
    background: #F2EEEB;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    transform-origin: bottom left;
    position: absolute;
    top: 0;
    left: calc(100% + 5px);
    width: 100px;
    height: 1px;
}

.home .section-2 .wrap .content ul li:nth-child(3)::after {
    content: '';
    background-color: #F4F0ED;
    border-radius: 50%;
    animation: glow 5s infinite;
    filter: blur(.5px);
    position: absolute;
    top: -82px;
    right: -87px;
    height: 10px;
    width: 10px;
}

.home .section-2 .wrap .content ul li:nth-child(4)::before {
    content: '';
    background: #F2EEEB;
    -webkit-transform: rotate(30deg);
    -moz-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    -o-transform: rotate(30deg);
    transform: rotate(30deg);
    transform-origin: bottom right;
    position: absolute;
    top: calc(50% - 1.5px);
    right: calc(100% + 5px);
    width: 100px;
    height: 1px;
}

.home .section-2 .wrap .content ul li:nth-child(4)::after {
    content: '';
    background-color: #F4F0ED;
    border-radius: 50%;
    animation: glow 5s infinite;
    filter: blur(.5px);
    position: absolute;
    top: 3px;
    left: -105px;
    height: 10px;
    width: 10px;
}

.home .section-2 .wrap .content ul li:nth-child(5)::before {
    content: '';
    background: url(../gfx/line.svg) no-repeat;
    position: absolute;
    top: calc(50% + 1px);
    right: calc(100% + 10px);
    width: 100px;
    height: 5px;
}

.home .section-2 .wrap .content ul li:nth-child(5)::after {
    content: '';
    background-color: #F4F0ED;
    border-radius: 50%;
    animation: glow 5s infinite;
    filter: blur(.5px);
    position: absolute;
    top: calc(50% - 1.5px);
    right: calc(100% + 115px);
    height: 10px;
    width: 10px;
}

.home .section-2 .wrap span:nth-of-type(1) {
    background: url(../gfx/gwiazdki-2.svg) no-repeat;
    background-size: contain;
    position: absolute;
    top: 108px;
    left: 208px;
    width: 52px;
    height: 57px;
    z-index: 5;
}

.home .section-2 .wrap span:nth-of-type(2) {
    background: url(../gfx/gwiazdki-3.svg) no-repeat;
    background-size: contain;
    position: absolute;
    right: 0;
    bottom: 128px;
    left: 108px;
    margin: auto;
    width: 40px;
    height: 41px;
    z-index: 5;
}

.home .section-2 .wrap span:nth-of-type(3) {
    background: url(../gfx/gwiazdki-4.svg) no-repeat;
    background-size: contain;
    position: absolute;
    top: 88px;
    right: 396px;
    width: 44px;
    height: 39px;
    z-index: 5;
}

.home .section-2 .wrap span:nth-of-type(4) {
    background: url(../gfx/gwiazdki-5.svg) no-repeat;
    background-size: contain;
    position: absolute;
    right: 200px;
    bottom: 80px;
    width: 53px;
    height: 54px;
    z-index: 5;
}

.home .section-2 .wrap span:nth-of-type(5) {
    background: url(../gfx/gwiazdki-6.svg) no-repeat;
    background-size: contain;
    position: absolute;
    bottom: 40px;
    left: 120px;
    width: 39px;
    height: 42px;
    z-index: 5;
}

.home .section-2 .wrap .little-star {
    top: 112px;
    left: calc(50% + 56px);
}

.home .section-2 .wrap .little-star + .little-star {
    top: auto;
    right: 200px;
    bottom: 240px;
    left: auto;
}

.home .section-2 .wrap .little-star + .little-star + .little-star {
    top: auto;
    right: auto;
    bottom: 160px;
    left: 200px;
}

.home .section-3 {
    margin: 0 auto;
    width: 100%;
    max-width: 1440px;
}

.home .section-3 .wrap {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    position: relative;
    margin: 0 auto;
    padding: 80px 60px 68px;
    width: calc(100% - 120px);
}

.home .section-3 .wrap h2 {
    padding-bottom: 80px;
}

.home .section-3 .wrap .items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    column-gap: 60px;
}

.home .section-3 .wrap .items .item {
    text-align: center;
    flex: 1;
}

.home .section-3 .wrap .items .item h3 {
    position: relative;
    padding-bottom: 24px;
    z-index: 9;
}

.home .section-3 .wrap .items .item:nth-child(2) h3 {
    line-height: 106%;
}

.home .section-3 .wrap .items .item p {
    position: relative;
    line-height: 150%;
    font-size: .9em;
    z-index: 9;
}

.home .section-3 .wrap .btn-wrap {
    margin-top: 48px;
}

.home .section-3 .wrap .items .item .image {
    border-radius: 50%;
    margin: 0 auto 28px;
    width: 184px;
}

.home .section-3 .wrap .items .item .image::before {
    content: '';
    display: block;
    padding-bottom: 100%;
}

.home .section-3 .wrap .items .item:nth-child(1) .image {
    background: url(../gfx/pokazy-nieba.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}

.home .section-3 .wrap .items .item:nth-child(2) .image {
    background: url(../gfx/bieszczadzkie-warsztaty.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}

.home .section-3 .wrap .items .item:nth-child(3) .image {
    background: url(../gfx/spotkania-i-wyklady.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}

.home .section-3 .wrap .items .item:nth-child(4) .image {
    background: url(../gfx/wyprawy-po-zorze.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}

.home .section-3 .wrap .hand {
    text-align: center;
    -webkit-transform: rotate(10deg);
    -moz-transform: rotate(10deg);
    -ms-transform: rotate(10deg);
    -o-transform: rotate(10deg);
    transform: rotate(10deg);
    position: absolute;
    right: 220px;
    top: 60px;
    line-height: 100%;
    font-size: 2.1em;
    z-index: 8;
}

.home .section-4 {
    background: #F4F0ED;
    position: relative;
    z-index: 6;
}

.home .section-4 .wrap {
    position: relative;
    margin: 0 auto;
    width: 100%;
    max-width: 1440px;
}

.home .section-4 .wrap::before {
    content: '';
    background: url(../gfx/rysunek.svg) no-repeat;
    background-size: contain;
    position: absolute;
    top: -156px;
    right: calc(100% - 472px);
    width: 520px;
    height: 409px;
    pointer-events: none;
    mix-blend-mode: multiply;
}

.home .section-4 .wrap::after {
    content: '';
    background: #222222;
    position: absolute;
    right: 60px;
    bottom: 98px;
    width: .5px;
    height: calc(100% - 38px);
}

.home .section-4 .wrap .content {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    margin: 0 auto;
    padding: 80px 120px 68px;
    width: calc(100% - 240px);
}

.home .section-4 .wrap .content h2 {
    padding-bottom: 80px;
}

.home .section-4 .wrap .content .items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    column-gap: 60px;
}

.home .section-4 .wrap .content .items .item {
    text-align: center;
    flex: 1;
}

.home .section-4 .wrap .content .items .item .thumbnail {
    width: 100%;
}

.home .section-4 .wrap .content .items .item .thumbnail::before {
    content: '';
    display: block;
    padding-bottom: 75%;
}

.home .section-4 .wrap .content .items .item h3 {
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    padding-top: 24px;
    padding-bottom: 24px;
    z-index: 9;
}

.home .section-4 .wrap .content .items .item h3 a {
    font-weight: 400;
}

.home .section-4 .wrap .content .items .item p {
    position: relative;
    line-height: 150%;
    font-size: .9em;
    z-index: 9;
}

.home .section-4 .wrap .content .btn-wrap {
    margin-top: 48px;
}

.home .section-4 .wrap .content .hand {
    text-align: center;
    -webkit-transform: rotate(10deg);
    -moz-transform: rotate(10deg);
    -ms-transform: rotate(10deg);
    -o-transform: rotate(10deg);
    transform: rotate(10deg);
    position: absolute;
    top: -40px;
    right: 48px;
    line-height: 100%;
    font-size: 2.1em;
}

.home .section-5 {
    background: #F4F0ED;
    position: relative;
    z-index: 5;
}

.home .section-5 .wrap {
    position: relative;
    margin: 0 auto;
    width: 100%;
    max-width: 1440px;
}

.home .section-5 .wrap .content {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    width: 100%;
}

.home .section-5 .wrap .content .items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    width: 100%;
}

.home .section-5 .wrap .content .items .item {
    position: relative;
    width: 25%;
}

.home .section-5 .wrap .content .items .item::before {
    content: '';
    display: block;
    padding-bottom: 75%;
}

.home .section-5 .wrap .content .items .item:nth-child(1) {
    background: url(../gfx/z-glowa-w-gwiazdach-1.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}

.home .section-5 .wrap .content .items .item:nth-child(2) {
    background: #F29727;
}

.home .section-5 .wrap .content .items .item:nth-child(2) .hand {
    text-align: center;
    -webkit-transform: rotate(-10deg);
    -moz-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    -o-transform: rotate(-10deg);
    transform: rotate(-10deg);
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    line-height: 100%;
    font-size: 2.1em;
}

.home .section-5 .wrap .content .items .item:nth-child(3) {
    background: url(../gfx/z-glowa-w-gwiazdach-2.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}

.home .section-5 .wrap .content .items .item:nth-child(4) {
    background: url(../gfx/z-glowa-w-gwiazdach-3.jpg) no-repeat;
    background-size: 100% auto;
    background-position: center;
}

.home .section-5 .wrap .content .items .item:nth-child(5) {
    background: url(../gfx/z-glowa-w-gwiazdach-4.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}

.home .section-5 .wrap .content .items .item:nth-child(6) {
    background: url(../gfx/z-glowa-w-gwiazdach-5.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}

.home .section-5 .wrap .content .items .item:nth-child(7) {
    background: url(../gfx/z-glowa-w-gwiazdach-6.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}

.home .section-5 .wrap .content .items .item:nth-child(8) {
    background: url(../gfx/z-glowa-w-gwiazdach-7.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}

.home .section-6 {
    background: #F4F0ED;
    position: relative;
    z-index: 5;
}

.home .section-6 .container {
    position: relative;
    margin: 0 auto;
    width: 100%;
    max-width: 1440px;
}

.home .section-6 .wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    align-content: stretch;
    position: relative;
    margin: 0 auto;
    padding: 60px 60px 133px;
    width: calc(100% - 120px);
}

.home .section-6 .wrap::before {
    content: '';
    border: .5px solid #222222;
    position: absolute;
    top: 100px;
    right: 120px;
    bottom: 100px;
    left: 60px;
    z-index: 2;
    pointer-events: none;
}

.home .section-6 .wrap .content {
    padding: 100px 0 0 60px;
    width: calc(50% - 60px);
}

.home .section-6 .wrap .content p {
    font-size: 1.1em;
}

.home .section-6 .wrap .form {
    position: relative;
    padding: 100px 0 0 0;
    width: calc(50% - 60px);
}

.home .section-6 .wrap .form .hand {
    -webkit-transform: rotate(-10deg);
    -moz-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    -o-transform: rotate(-10deg);
    transform: rotate(-10deg);
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    position: absolute;
    bottom: 158px;
    left: -212px;
    line-height: 100%;
    font-size: 2.1em;
}

form p {
    padding-bottom: 0 !important;
}

form label {
    display: block;
    font-family: "Atkinson Hyperlegible", sans-serif;
    font-weight: 400;
    font-size: .77em;
}

form input:not([type="submit"]):not([type="checkbox"]),
form textarea {
    background: #FCF8F5;
    border: 0;
    margin: 0 0 16px;
    padding: 0 16px;
    width: calc(100% - 32px);
    height: 49px;
    font-family: "Atkinson Hyperlegible", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.3em;
    color: #222222;
    outline: none;
    z-index: 10;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    border-radius: 0 !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

form textarea {
    padding: 16px;
    height: 120px;
}

form input[type="submit"],
form button {
    background: #F29727;
    border: 2px solid #222222;
    transition: box-shadow 0.3s ease-in-out;
    margin: -4px 0 16px;
    padding: 0 16px;
    width: calc(100% - 36px);
    height: 45px;
    font-family: "Geologica", serif;
    font-weight: 500;
    font-size: .77em;
    letter-spacing: .2em;
    font-style: normal;
    font-size: 1em;
    color: #222222;
    text-transform: uppercase;
    cursor: pointer;
    outline: none;
    z-index: 10;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    border-radius: 0 !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

form input[type="submit"]:hover,
form button:hover {
    box-shadow: 0 0 15px 3px #F29727 !important;
}

::placeholder {
    opacity: .3;
    font-weight: 400;
    font-style: italic;
    color: #222222;
}

.wpcf7-not-valid-tip {
    text-align: right !important;
    position: absolute !important;
    top: -7px !important;
    right: 80px !important;
    font-family: "Atkinson Hyperlegible", sans-serif;
    font-size: 1em !important;
    letter-spacing: 0 !important;
    color: #F24F27 !important;
    text-transform: none !important;
    pointer-events: none;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output,
.wpcf7 form .wpcf7-response-output,
.wpcf7 form.sent .wpcf7-response-output {
    text-align: right !important;
    position: absolute !important;
    border: 0 !important;
    right: 80px !important;
    bottom: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    line-height: 130%;
    font-family: "Atkinson Hyperlegible", sans-serif;
    font-size: .77em !important;
    letter-spacing: 0 !important;
    color: #F24F27 !important;
    text-transform: none !important;
}

.home .section-7 {
    background: #FCF8F5;
    position: relative;
    z-index: 5;
}

.home .section-7 .container {
    position: relative;
    margin: 0 auto;
    width: 100%;
    max-width: 1440px;
}

.home .section-7 .wrap {
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    position: relative;
    margin: 0 auto;
    padding: 80px 60px 100px;
    width: calc(100% - 120px);
    max-width: 764px;
}

.home .section-7 .wrap ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    column-gap: 120px;
    padding-top: 58px;
    padding-bottom: 0;
}

.home .section-7 .wrap ul li {
    text-align: center;
    position: relative;
    font-family: "Geologica", serif;
    font-size: 1.1em;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.home .section-7 .wrap ul li {
    padding-left: 65px;
}

.home .section-7 .wrap ul li a {
    font-weight: 500;
    text-decoration: none;
}

.home .section-7 .wrap ul li a:hover {
    color: #222222;
}

.home .section-7 .wrap ul li:nth-child(1) a::before {
    content: '';
    background: url(../gfx/gwiazdki-5-2.svg) no-repeat;
    background-size: auto;
    background-size: contain;
    position: absolute;
    top: -14px;
    left: 0;
    width: 53px;
    height: 54px;
}

.home .section-7 .wrap ul li:nth-child(2) a::before {
    content: '';
    background: url(../gfx/gwiazdki-2-2.svg) no-repeat;
    background-size: auto;
    background-size: contain;
    position: absolute;
    top: -14px;
    left: 0;
    width: 53px;
    height: 54px;
}

.home .section-7 .circle {
    position: absolute;
    top: -40px;
    right: -574px;
    width: 514px;
    height: 514px;
}

.home .section-7 .circle::after {
    content: '';
    border: .5px solid #222222;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    width: 514px;
    height: 514px;
    z-index: 7;
}

.home .section-7 .circle .planet-6 {
    position: absolute;
    top: 150px;
    left: 32px;
    width: 100px;
    height: 100px;
    z-index: 0;
}

.home .section-7 .circle .planet-6 img {
    border-radius: 50%;
}

footer {
    margin: 0 auto;
    width: 100%;
    max-width: 1440px;
}

footer .items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    position: relative;
    margin: 0 auto;
    padding: 28px 60px;
    width: calc(100% - 120px);
}

.home footer .items::before {
    content: '';
    background: #222222;
    position: absolute;
    top: 0;
    right: 60px;
    left: 60px;
    width: calc(100% - 120px);
    height: .5px;
}

footer .items .item {
    flex: 1;
}

footer .items .item p {
    padding-bottom: 0;
    line-height: 150%;
    font-size: .9em;
}

footer .items .item:nth-child(2) {
    text-align: center;
}

footer .items .item:nth-child(3) {
    text-align: right;
}

/**/

.asteroid {
    transform: translate(-50%, -50%);
    will-change: transform;
    transition: transform 0.1s linear;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 80%;
    left: 72px;
    width: 132px;
    height: 101px;
    z-index: 9;
    overflow: visible;
    pointer-events: none;
}

.asteroid img {
    animation: float-diagonal 3s ease-in-out infinite alternate;
    position: absolute;
    top: 50%;
    right: -50%;
    width: 100%;
    height: auto;
    pointer-events: none;
}

.asteroid-name {
    top: 80%;
    left: 72px;
    width: 132px;
    height: 101px;
    z-index: 9;
}

.asteroid-name > div {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    position: absolute;
    top: 50%;
    right: 0;
    width: 100%;
    height: auto;
    pointer-events: none;
}

.asteroid-name > div span {
    background: #222222;
    line-height: 120%;
    font-family: "Geologica", serif;
    font-size: .65em;
}

.planet {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 120px;
    height: 120px;
    z-index: 8;
    overflow: visible;
    pointer-events: none;
}

.planet img {
    animation: float-diagonal 3s ease-in-out infinite alternate;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: auto;
    pointer-events: none;
}

.planet-1 {
    top: 25%;
    right: -160px;
    width: 160px;
    height: 160px;
}

.planet-2 {
    top: 0;
    left: 0;
    width: 240px;
    height: 240px;
}

.planet-1 img,
.planet-2 img {
    border-radius: 50%;
    filter: blur(.5px);
}

.planet-3 {
    right: -460px;
    bottom: -460px;
    width: 460px;
    height: 460px;
    position: absolute;
}

.planet-3 img {
    animation: float 3s ease-in-out infinite alternate;
    border-radius: 50%;
    filter: blur(2.5px);
}

.planet-4 {
    bottom: 0;
    left: 0;
    width: 180px;
    height: 180px;
}

.planet-4 img {
    border-radius: 50%;
    filter: blur(.5px);
}

.section-7 .planet-wrap {
    position: absolute;
    display: inline-block;
    left: -120px;
    top: -280px;
    width: 460px;
    height: 460px;
}

.section-7 .planet-wrap .planet-5 {
    width: 460px;
    height: 460px;
    position: absolute;
}

.section-7 .planet-wrap .text-circle {
    transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    left: 50%;
    width: 540px;
    height: 540px;
    z-index: 9;
}

.section-7 .planet-wrap .text-circle text {
    font-family: "Geologica", serif;
    font-size: .3em;
    text-transform: uppercase;
    text-anchor: middle;
    dominant-baseline: middle;
}

.section-7 .planet-wrap .text-circle text a {
    letter-spacing: 1em;
    font-weight: 400;
    text-decoration: none;
}

.section-7 .planet-wrap .planet-5 img {
    animation: float-and-spin 300s linear infinite alternate;
    border-radius: 50%;
    top: 0;
    right: 0;
}

@keyframes float-and-spin {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-10px) rotate(-360deg); }
}

.little-star {
    background-color: #F4F0ED;
    border-radius: 50%;
    animation: glow 5s infinite;
    filter: blur(.5px);
    position: absolute;
    margin: 0 auto;
    height: 10px;
    width: 10px;
}

@keyframes float {
  0% {
    transform: translate(-50%, calc(-50% - 5px));
  }
  50% {
    transform: translate(-50%, calc(-50% + 5px));
  }
  100% {
    transform: translate(-50%, calc(-50% - 5px));
  }
}

@keyframes float-diagonal {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(calc(-50% - 5px), calc(-50% + 5px)) scale(1.05);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes spin-reverse {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}

@keyframes glow {
    0% {
        box-shadow: 0 0 -28px 3px #F2EEEB;
    }
    40% {
        box-shadow: 0 0 15px 3px #F2EEEB;
    }
    60% {
        box-shadow: 0 0 15px 3px #F2EEEB;
    }
    100% {
        box-shadow: 0 0 -28px 3px #F2EEEB;
    }
}

/**/

.content-area {
    background: #FCF8F5;
    border: .5px solid #222222;
    margin: 40px auto;
    padding: 60px 60px 0;
    width: calc(100% - 240px);
    max-width: 1200px;
}

.page .content-area {
    padding-bottom: 28px;
}

.content-area .entry-header h1.entry-title {
    text-align: center;
    padding-bottom: 80px;
    line-height: 110%;
    font-weight: 700;
    font-size: 3.14em;
}

.content-area .entry-header h1.entry-title {
    padding-bottom: 48px;
}

.content-area .entry-header .featured-image {
    margin-bottom: 48px;
    width: 100%;
}

.content-area .entry-header .featured-image::before {
    content: '';
    display: block;
    padding-bottom: 50%;
}

.content-area .entry-header h1.entry-title,
.content-area .entry-content,
.content-area .entry-taxonomy {
    margin: 0 auto;
    max-width: 764px;
}

.content-area .post-navigation {
    display: none;
}

.content-area .entry-content h1 {
    padding-bottom: 32px;
    line-height: 130%;
    font-weight: 400;
    font-size: 2.14em;
}

.content-area .entry-content h2 {
    padding-bottom: 32px;
    line-height: 130%;
    font-weight: 400;
    font-size: 1.64em;
}

.content-area .entry-content h2 {
    padding-bottom: 32px;
    line-height: 130%;
    font-weight: 400;
    font-size: 1.51em;
}

.content-area .entry-content h3 {
    padding-bottom: 32px;
    line-height: 140%;
    font-weight: 400;
    font-size: 1.39em;
}

.content-area .entry-content h4 {
    padding-bottom: 32px;
    line-height: 140%;
    font-weight: 400;
    font-size: 1.26em;
}

.content-area .entry-content h5 {
    padding-bottom: 32px;
    line-height: 140%;
    font-weight: 400;
    font-size: 1.14em;
}

.content-area .entry-content h6 {
    padding-bottom: 32px;
    line-height: 140%;
    font-weight: 400;
    font-size: 1.08em;
}

.content-area .entry-content * + :is(h1, h2, h3, h4, h5, h6) {
    padding-top: 16px;
}

.content-area .entry-content p {
    padding-bottom: 32px;
}

.content-area .entry-content .wp-block-image {
    margin: 0;
}

.content-area .entry-content img,
.entry-header img {
    margin-bottom: 48px;
    max-width: 100%;
    height: auto;
}

.content-area .entry-content iframe {
    margin-bottom: 48px;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
}

.content-area .entry-content * + img,
.content-area .entry-content * + .wp-block-image,
.content-area .entry-content * + iframe {
    margin-top: 16px;
}

.content-area .entry-content figcaption {
    margin-bottom: 48px;
    font-size: .77em;
    color: #222222;
}

.content-area .entry-content img + figcaption {
    margin-top: -32px;
}

.content-area .entry-content .wp-block-quote {
    border-left: .5px solid #222222;
    margin: 0 0 32px 32px;
    padding-top: 32px;
    padding-left: 32px;
    line-height: 140%;
    font-weight: 400;
    font-size: 1.39em;
}

.content-area .entry-content .wp-block-quote > * {
    font-size: 1em;
}