@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");


/* ==========================================================================
   CSS RESET / NORMALIZE
   ========================================================================== */

html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
}

main {
    display: block;
}

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

pre {
    font-family: monospace, monospace;
    font-size: 1em;
}

a {
    background-color: transparent;
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    text-decoration: underline dotted;
}

b,
strong {
    font-weight: 700;
}

code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

img {
    border-style: none;
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

[type=button],
[type=reset],
[type=submit],
button {
    -webkit-appearance: button;
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring,
button:-moz-focusring {
    outline: 1px dotted ButtonText;
}

fieldset {
    padding: 0.35em 0.75em 0.625em;
}

legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal;
}

textarea {
    overflow: auto;
}

[type=checkbox],
[type=radio] {
    box-sizing: border-box;
    padding: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
    height: auto;
}

[type=search] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}


/* ==========================================================================
   BASE / GLOBAL
   ========================================================================== */

body * {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    -webkit-text-size-adjust: none !important;
    text-size-adjust: none !important;
    font-family: "Jost", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    background: #153824;
    color: #f5f5f5;
}

body > main > article {
    min-height: calc(100vh - 260px);
}

body > main > article:after {
    content: "";
    display: block;
    min-height: 1px;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 30px 0;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.2;
}

a {
    color: #ebbc52;
    text-decoration: none;
}

a:hover,
a:active,
a:focus {
    text-decoration: underline;
}

p {
    margin: 0 0 30px 0;
}

ul ul {
    margin-left: 30px;
}

.clear {
    clear: both;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.text-center {
    text-align: center;
}

@media (min-width: 540px) {
    .text-right {
        text-align: right;
    }
}


/* ==========================================================================
   LAYOUT — CONTAINER & GRID
   ========================================================================== */

.container {
    margin: 0 auto;
    max-width: 1710px;
    padding: 0 15px;
    position: relative;
    z-index: 2;
}

@media (min-width: 992px) {
    .container {
        padding: 0 30px;
    }
}

@media (min-width: 1200px) {
    .container {
        padding: 0 60px;
    }
}

.row {
    margin: 0 -20px;
    clear: both;
}

.row:after {
    content: "";
    display: block;
    clear: both;
}

.row .col-sm-3,
.row .col-sm-4,
.row .col-sm-6,
.row .col-sm-8,
.row .col-md-3,
.row .col-md-4,
.row .col-md-6,
.row .col-md-8,
.row .col-lg-2,
.row .col-lg-3,
.row .col-lg-4,
.row .col-lg-6,
.row .col-lg-8 {
    width: 100%;
    float: left;
    padding: 0 20px;
}

@media (min-width: 540px) {
    .row .col-sm-3 { width: 25%; }
    .row .col-sm-4 { width: 33.33%; }
    .row .col-sm-6 { width: 50%; }
    .row .col-sm-8 { width: 66.66%; }
}

@media (min-width: 992px) {
    .row .col-md-3 { width: 25%; }
    .row .col-md-4 { width: 33.33%; }
    .row .col-md-6 { width: 50%; }
    .row .col-md-8 { width: 66.66%; }
}

@media (min-width: 1200px) {
    .row .col-lg-2 { width: 16.66%; }
    .row .col-lg-3 { width: 25%; }
    .row .col-lg-4 { width: 33.33%; }
    .row .col-lg-6 { width: 50%; }
    .row .col-lg-8 { width: 66.66%; }
}


/* ==========================================================================
   COMPONENTS — BUTTON
   ========================================================================== */

.btn {
    display: inline-block;
    background: none;
    padding: 10px 30px;
    color: #fff;
    background: #0c3b2e;
    cursor: pointer;
    text-decoration: none;
    border: none;
    transition: all 0.3s ease-in-out;
}

.btn:hover,
.btn:active,
.btn:focus {
    background: #0c3b2e;
}


/* ==========================================================================
   COMPONENTS — PAGINATION
   ========================================================================== */

.pagination {
    display: block;
    text-align: center;
}

.pagination > li {
    display: inline-block;
}

.pagination > li > a {
    text-decoration: none;
    display: inline-block;
    padding: 3px 5px;
}

.pagination > li > a.prev {
    margin-right: 15px;
}

.pagination > li > a.next {
    margin-left: 15px;
}

.pagination > li > span.current {
    display: inline-block;
    padding: 3px 10px;
    z-index: 2;
    color: #fff;
    cursor: default;
    background: #0c3b2e;
}


/* ==========================================================================
   COMPONENTS — WORDPRESS CONTENT
   ========================================================================== */

.main-content .wp-caption {
    max-width: 100%;
}

.main-content img {
    max-width: 100%;
    height: auto;
}

.main-content img.aligncenter {
    display: block;
    margin: 0 auto;
}

.main-content img.alignright {
    float: right;
    margin-left: 15px;
}

.main-content img.alignleft {
    float: left;
    margin-right: 15px;
}


/* ==========================================================================
   NAVBAR
   ========================================================================== */

.alt-navbar {
    height: 73px;
}

@media (min-width: 992px) {
    .alt-navbar {
        height: 84px;
    }
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
    padding-left: 15px;
    padding-right: 15px;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0);
    transition:
        background 0.35s ease-in-out,
        border 0.35s ease-in-out,
        backdrop-filter 0.35s ease-in-out;
}

.mobile-menu{
        display: none!important;
    }

@media (min-width: 992px) {
    .navbar {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (min-width: 1200px) {
    .navbar {
        padding-left: 60px;
        padding-right: 60px;
    }
}

.navbar.scrolled {
    background: rgba(9, 34, 21, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom-color: rgba(255, 255, 255, 0.14);
}

.navbar a {
    color: #fff;
}

.navbar a:hover,
.navbar a:active,
.navbar a:focus {
    color: #ebbc52;
}

/* Brand / Logo */
.navbar .brand {
    float: left;
    padding: 18px 0;
    position: relative;
    z-index: 2;
}

.navbar .brand img {
    display: block;
    width: auto;
    height: 60px;
}

@media (min-width: 992px) {
    .navbar .brand img {
        transition: height 0.35s ease-in-out;
    }

    .navbar .brand {
        padding: 22px 0;
        transition: padding 0.35s ease-in-out;
    }

    .navbar .brand img {
        height: 91px;
    }

    .navbar.scrolled .brand {
        padding: 16px 0;
    }

    .navbar.scrolled .brand img {
        height: 40px;
    }
}

@media (min-width: 1200px) {
    .navbar .brand {
        padding: 40px 0;
    }

    .navbar.scrolled .brand {
        padding: 16px 0;
    }
}

/* Header CTA */
.navbar .header-cta {
    float: right;
    display: none;
    align-items: center;
    gap: 14px;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
}

@media (min-width: 1100px) {
    .navbar .header-cta {
        display: flex;
        padding: 0 0 0 0px;
        height: 73px;
    }

    .scrolled .navbar .header-cta {
        height: 63px;
    }
}

@media (min-width: 1200px) {
    .navbar .header-cta {
        margin-top: 40px;
        transition: margin 0.25s ease-in-out;
    }

    .navbar.scrolled .header-cta {
        margin-top: 0;
    }
}

.navbar .header-cta .question {
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.02em;
    opacity: 0.85;
    white-space: nowrap;
}

@media (min-width: 1200px) {
    .navbar .header-cta .question {
        font-size: 16px;
    }
}

.navbar .header-cta .header-btn {
    margin-left: 10px;
    background: none;
    border: 1px solid #ebbc52;
    padding: 8px 20px;
    color: #ebbc52;
}

.navbar .header-cta .header-btn:hover,
.navbar .header-cta .header-btn:active,
.navbar .header-cta .header-btn:focus {
    background: #ebbc52;
    color: #0e2d1c;
}

/* Hamburger toggler */
#menu-toggler-checkbox {
    display: none;
}

.navbar .menu-toggler {
    float: right;
    display: inline-block;
    margin: 12px 0;
    width: 52px;
    height: 42px;
    padding: 12px;
    cursor: pointer;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(9, 34, 21, 0.45);
    transition: background 0.25s ease-in-out, border 0.25s ease-in-out;
}

@media (min-width: 1100px) {
    .navbar .menu-toggler {
        display: none;
    }
}

.navbar .menu-toggler i {
    display: block;
    margin: 0 0 5px 0;
    border-bottom: 2px solid #fff;
    opacity: 0.9;
}

.navbar .menu-toggler:hover {
    background: rgba(9, 34, 21, 0.65);
    border-color: rgba(235, 188, 82, 0.45);
}

/* Navigation menu */
.navbar-menu {
    position: relative;
    display: none;
    margin: 0 20px;
    clear: both;
    left: 30%;
    transform: translateX(-50%);
}

@media (min-width: 1100px) {
    .navbar-menu {
        display: block;
        margin: 0 0 0 120px;
        clear: none;
    }

    .navbar-menu .menu-wrap {
        padding-right: 340px;
        text-align: center;
    }

    .navbar-menu .menu-wrap nav {
        text-align: left;
    }
}

@media (min-width: 1200px) {
    .navbar-menu {
        margin-top: 40px;
        transition: margin 0.25s ease-in-out;
    }

    .scrolled .navbar-menu {
        margin-top: 0;
    }
}

.navbar-menu ul,
.navbar-menu li {
    display: block;
    margin: 0;
    padding: 0;
}

@media (min-width: 1100px) {
    .navbar-menu ul,
    .navbar-menu li {
        display: inline-block;
    }
    .mobile-menu{
        display: none;
    }
}

.navbar-menu li a {
    display: block;
    padding: 14px 20px;
    text-decoration: none;
    font-size: 16px;
    color: #fff;
}

@media (min-width: 1100px) {
    .navbar-menu li a {
        padding: 28px 18px;
        display: inline-block;
        transition: padding 0.35s ease-in-out, color 0.2s ease-in-out;
    }

    .scrolled .navbar-menu li a {
        padding: 22px 15px;
    }
}

@media (min-width: 1700px) {
    .navbar-menu li a {
        font-size: 18px;
        padding: 28px 25px;
    }

    .scrolled .navbar-menu li a {
        padding: 22px 25px;
    }
}

@media (max-width: 1099px) {
    .navbar-menu {
        background: rgba(9, 34, 21, 0.96);
        border-top: 1px solid rgba(255, 255, 255, 0.14);
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
        padding: 8px 0 14px 0;
    }

    .navbar-menu li {
        display: block;
    }

    .mobile-menu{
        display: block!important;
    }

    .navbar-menu li a {
        padding: 14px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar-menu li:last-child a {
        border-bottom: none;
    }
}

/* Submenu */
.navbar-menu .sub-menu {
    display: block;
    padding: 0;
}

.navbar-menu .sub-menu li {
    display: block;
}

.navbar-menu .sub-menu li a {
    display: block;
}

#menu-toggler-checkbox:checked + .navbar-menu {
    display: block;
}

@media (min-width: 11y00px) {
    .sub-menu {
        display: none;
        position: absolute;
        background: rgba(9, 34, 21, 0.96);
        border: 1px solid rgba(255, 255, 255, 0.14);
        z-index: 10;
        margin-top: 0;
        padding: 8px 0;
    }

    .sub-menu li {
        display: block;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .sub-menu li a {
        padding: 10px 16px;
        white-space: nowrap;
        border-bottom: none;
        font-size: 13px;
        letter-spacing: 0.06em;
    }

    .sub-menu li:first-child {
        border-top: none;
    }

    a:hover + .sub-menu,
    a:focus + .sub-menu,
    a:active + .sub-menu,
    .sub-menu:hover,
    .sub-menu:focus,
    .sub-menu:active {
        display: block;
    }
}

/* WordPress admin bar offset */
.admin-bar .navbar {
    top: 32px;
}

@media (max-width: 767px) {
    .admin-bar .navbar {
        top: 46px;
    }
}

@media (max-width: 600px) {
    html #wpadminbar {
        position: fixed;
    }
}


/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer-warning {
    background: #0e2d1c;
    padding: 70px 0 60px 0;
}

@media (max-width: 991px) {
    .footer-warning {
        padding: 55px 0 30px 0;
    }
}

.footer-warning .warning-text {
    color: #789082;
}

.footer-warning .warning-text strong {
    color: #fff;
    font-weight: 400;
}

.footer-warning .warning-text p {
    margin: 0 0 14px 0;
}

.footer-warning .warning-text p:last-child {
    margin: 0;
}

.footer-warning .warning-text a {
    color: #ebbc52;
    text-decoration: none;
    border-bottom: 1px solid rgba(235, 188, 82, 0.55);
}

.footer-warning .warning-text a:hover,
.footer-warning .warning-text a:active,
.footer-warning .warning-text a:focus {
    color: #fff;
    border-bottom-color: #fff;
}

.footer-warning .warning-cta {
    margin: 28px 0 0 0;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-site {
    border-top: 1px solid #214a33;
    padding: 10px 0;
    color: #D8E5DA;
    margin-top: 60px;
}

.footer-site .copy {
    padding-top: 19px;
}

.footer-site .copy p {
    display: inline-block;
    margin: 0;
}

@media (max-width: 539px) {
    .footer-site .text-right {
        text-align: left;
        margin-top: 8px;
    }
}

.footer-site .footer-cta {
    display: inline-block;
    padding-left: 30px;
}

@media (max-width: 449px) {
    .footer-site .footer-cta {
        display: block;
        padding-top: 20px;
        padding-left: 0;
    }
}

.footer-site .footer-cta .btn {
    margin-left: 10px;
    background: none;
    border: 1px solid #ebbc52;
    padding: 8px 20px;
    color: #ebbc52;
}

.footer-site .footer-cta .btn:hover,
.footer-site .footer-cta .btn:active,
.footer-site .footer-cta .btn:focus {
    background: #ebbc52;
    color: #0e2d1c;
}


/* ==========================================================================
   PAGE — HOMEPAGE (.page-fp)
   ========================================================================== */

.page-fp {
    width: 100%;
    overflow: hidden;
}


/* --------------------------------------------------
   S1 — Hero
   -------------------------------------------------- */

.page-fp .s1 {
    position: relative;
    min-height: calc(70vh - 84px);
    overflow: hidden;
}

.page-fp .s1 .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: contain;
    opacity: 1;
}

.page-fp .s1 .container,
.page-fp .s1 .wrap {
    position: relative;
    z-index: 4;
}

.page-fp .s1 .container {
    z-index: 3;
    min-height: inherit;
    display: flex;
    align-items: center;
    padding: 90px 15px 60px 15px;
}

@media (min-width: 600px) {
    .page-fp .s1 .container {
        padding: 100px 15px 70px 15px;
    }
}

@media (min-width: 992px) {
    .page-fp .s1 .container {
        padding: 120px 30px 90px 30px;
    }
}

@media (min-width: 1200px) {
    .page-fp .s1 .container {
        padding: 120px 60px 90px 60px;
    }
}

.page-fp .s1 .wrap {
    width: 100%;
}

.page-fp .s1 h1 {
    margin: 0;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.1;
    font-size: 40px;
    font-size: clamp(28px, 7vw, 46px);
}

@media (min-width: 992px) {
    .page-fp .s1 h1 {
        font-size: clamp(30px, 6.3vw, 120px);
    }
}

@media (min-width: 1740px) {
    .page-fp .s1 h1 {
        font-size: 120px;
    }
}

.page-fp .s1 h1 .first-part {
    display: block;
    padding-top: 2vw;
    padding-bottom: 10px;
    padding-bottom: 2.1vw;
}

@media (min-width: 1710px) {
    .page-fp .s1 h1 .first-part {
        padding-top: 50px;
        padding-bottom: 40px;
    }
}

.page-fp .s1 h1 .second-part {
    display: block;
    text-align: right;
}

.page-fp .s1 .hero-link {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    float: right;
    margin: 24px 0 0 0;
    padding: 8px 0;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
}

@media (min-width: 1200px) {
    .page-fp .s1 .hero-link {
        font-size: 18px;
    }
}

.page-fp .s1 .hero-link .txt {
    display: inline-block;
    color: #ebbc52;
}

.page-fp .s1 .hero-link .arrow {
    display: inline-block;
    line-height: 0;
}

.page-fp .s1 .hero-link .arrow svg {
    display: block;
    width: 57px;
    height: auto;
}

.page-fp .s1 .hero-link:hover,
.page-fp .s1 .hero-link:active,
.page-fp .s1 .hero-link:focus {
    opacity: 0.85;
}

@media (max-width: 767px) {
    .page-fp .s1 .hero-link {
        float: none;
        margin: 18px 0 0 0;
    }
}


/* --------------------------------------------------
   S2 — O nás
   -------------------------------------------------- */

.page-fp .s2 {
    padding: 85px 0 0 0;
}

@media (max-width: 991px) {
    .page-fp .s2 {
        padding: 60px 0 0 0;
    }
}

.page-fp .s2 h2 {
    margin: 0;
    padding-bottom: 10px;
    color: #789082;
    font-size: 16px;
    font-weight: 400;
}

.page-fp .s2 h3 {
    margin: 0 0 12px 0;
    font-size: 36px;
}

.page-fp .s2 .col-md-4 {
    position: relative;
}

.page-fp .s2 svg {
    display: none;
}

@media (min-width: 992px) {
    .page-fp .s2 svg {
        display: block;
        position: absolute;
        right: -11px;
        top: 50px;
    }
}

.page-fp .s2 h4 {
    margin: 60px 0 30px 0;
    font-size: 24px;
}

.page-fp .s2 p {
    margin: 0 0 14px 0;
}

.page-fp .s2 ul {
    font-size: 18px;
    margin: 12px 0 0 0;
    padding: 0 0 0 18px;
}

@media (min-width: 1200px) {
    .page-fp .s2 ul {
        font-size: 20px;
    }
}

.page-fp .s2 ul li {
    margin: 0 0 10px 0;
}

.page-fp .s2 ul li::marker {
    color: #ebbc52;
}

@media (min-width: 992px) {
    .page-fp .s2 .content {
        border-top: 1px solid #214a33;
        border-bottom: 1px solid #214a33;
    }

    .page-fp .s2 .row .col-md-4 {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .page-fp .s2 .row .col-md-8 {
        border-left: 1px solid #214a33;
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

@media (min-width: 992px) and (min-width: 1200px) {
    .page-fp .s2 .row .col-md-8 {
        padding-left: 130px;
    }
}


/* --------------------------------------------------
   S3 — Tím
   -------------------------------------------------- */

.page-fp .s3 {
    padding: 0 0 85px 0;
}

@media (max-width: 991px) {
    .page-fp .s3 {
        padding: 0 0 65px 0;
    }
}

.page-fp .s3 h2 {
    margin: 60px 0 30px 0;
    font-size: 36px;
}

.page-fp .s3 .team {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 0;
}

@media (min-width: 768px) {
    .page-fp .s3 .team {
        grid-template-columns: repeat(4, 1fr);
    }
}

.page-fp .s3 .team .item {
    padding: 30px;
    border: 1px solid #214a33;
    margin-top: -1px;
}

@media (min-width: 768px) {
    .page-fp .s3 .team .item {
        padding: 10px;
        margin-top: 0;
        margin-left: -1px;
    }
}

.page-fp .s3 .person {
    border-bottom: 1px solid #214a33;
    background: none;
}

@media (min-width: 768px) {
    .page-fp .s3 .person {
        border-bottom: none;
        margin: 0;
        padding: 0 0 30px 0;
    }
}

.page-fp .s3 .img {
    position: relative;
    height: 60px;
}

.page-fp .s3 .img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.page-fp .s3 h3 {
    margin: 0 0 6px 0;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.page-fp .s3 .pos {
    font-size: 13px;
    letter-spacing: 0.02em;
    opacity: 0.8;
}


/* --------------------------------------------------
   S4 — Filozofia / Accordion
   -------------------------------------------------- */

.page-fp .s4 {
    background: #0e2d1c;
    padding: 80px 0 90px 0;
}

@media (max-width: 991px) {
    .page-fp .s4 {
        padding: 60px 0 70px 0;
    }
}

.page-fp .s4 .content-wrap {
    border-top: 1px solid #214a33;
}

.page-fp .s4 h2 {
    margin: 60px 0 40px 0;
    font-size: 36px;
}

@media (min-width: 992px) {
    .page-fp .s4 .row {
        display: flex;
    }

    .page-fp .s4 .col-md-8 {
        order: 1;
    }

    .page-fp .s4 .col-md-4 {
        position: relative;
        order: 2;
    }
}

@media (min-width: 992px) and (min-width: 1400px) {
    .page-fp .s4 .col-md-4 {
        padding-left: 80px;
    }
}

.page-fp .s4 svg {
    display: none;
}

@media (min-width: 992px) {
    .page-fp .s4 svg {
        display: block;
        position: absolute;
        left: 15px;
        top: -23px;
    }
}

@media (min-width: 992px) and (min-width: 1400px) {
    .page-fp .s4 svg {
        left: 80px;
    }
}

.page-fp .s4 .txt p {
    margin: 0 0 14px 0;
}

/* Accordion */
.page-fp .s4 .accordion {
    list-style: none;
    margin: 0;
    padding: 0;
}

.page-fp .s4 .accordion .item {
    border: 1px solid #214a33;
    margin-top: -1px;
}

.page-fp .s4 .accordion .opener {
    display: block;
    padding: 18px 0;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    color: #ebbc52;
    position: relative;
    padding-left: 65px;
}

@media (min-width: 992px) {
    .page-fp .s4 .accordion .opener {
        font-size: 24px;
    }
}

@media (min-width: 1200px) {
    .page-fp .s4 .accordion .opener {
        padding-left: 135px;
    }
}

.page-fp .s4 .accordion .opener:after {
    content: "+";
    position: absolute;
    line-height: 1;
    left: 20px;
    top: 20px;
    width: 30px;
    height: 30px;
    overflow: hidden;
    text-align: center;
    font-weight: 300;
    border: 1px solid #ebbc52;
    border-radius: 15px;
    box-sizing: border-box;
}

@media (min-width: 1200px) {
    .page-fp .s4 .accordion .opener:after {
        left: 35px;
    }
}

.page-fp .s4 .accordion .opener.active {
    color: #fff;
}

.page-fp .s4 .accordion .opener.active:after {
    content: "-";
    color: #ebbc52;
}

.page-fp .s4 .accordion .content {
    padding: 0 0 18px 20px;
}

@media (min-width: 1200px) {
    .page-fp .s4 .accordion .content {
        padding-left: 135px;
    }
}

.page-fp .s4 .accordion .content p {
    margin: 0;
}

.page-fp .s4 .accordion .content img {
    display: inline-block;
    margin: 30px;
    height: 80px;
    width: auto;
}

.page-fp .s4 .accordion .content ul {
    list-style-type: disc;
    margin-left: 0;
    padding-left: 15px;
}

.page-fp .s4 .accordion .content ul li {
    margin: 0 0 10px 0;
}

.page-fp .s4 .accordion .content ul li::marker {
    color: #ebbc52;
}


/* --------------------------------------------------
   S5 — Fondy
   -------------------------------------------------- */

.page-fp .s5 {
    padding: 85px 0 95px 0;
    position: relative;
    overflow: hidden;
}

@media (max-width: 991px) {
    .page-fp .s5 {
        padding: 60px 0 70px 0;
    }
}

.page-fp .s5 h2 {
    margin: 0;
    text-align: center;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 100px;
}

@media (max-width: 599px) {
    .page-fp .s5 h2 {
        font-size: 60px;
    }
}

.page-fp .s5 .subtitle {
    margin: 0 0 60px 0;
    text-align: center;
    font-size: 20px;
}

.page-fp .s5 .funds {
    position: relative;
    z-index: 1;
}

@media (min-width: 1200px) {
    .page-fp .s5 .funds .col-lg-4:nth-child(1) .fund {
        box-shadow: 19px 0 #d8e5da;
    }

    .page-fp .s5 .funds .col-lg-4:nth-child(2) .fund {
        box-shadow: 19px 0 #d8e5da, -19px 0 #d8e5da;
    }

    .page-fp .s5 .funds .col-lg-4:nth-child(3) .fund {
        box-shadow: -19px 0 #d8e5da;
    }
}

.page-fp .s5 .fund {
    padding: 40px 25px 20px 25px;
    margin-bottom: 10px;
    min-height: 100%;
    background: #d8e5da;
    color: #153824;
}

@media (max-width: 991px) {
    .page-fp .s5 .fund {
        margin-bottom: 20px;
    }
}

.page-fp .s5 .fund h3 {
    font-size: 36px;
}

.page-fp .s5 .fund h4 {
    font-size: 16px;
    margin: 20px 0 5px 0;
    color: #789082;
    font-weight: 400;
    text-transform: none;
}

.page-fp .s5 .fund p {
    margin: 0 0 20px 0;
}

.page-fp .s5 .fund ul {
    margin: 10px 0 0 0;
    padding: 0 0 0 18px;
}

.page-fp .s5 .fund ul li {
    margin: 0 0 10px 0;
}

.page-fp .s5 .fund small {
    color: #789082;
}

/* Fund accordion — "Viac informácií" toggle link */
.page-fp .s5 .fund-opener {
    display: inline-block;
    margin: 10px 0 18px 0;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #ebbc52;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s, color 0.2s;
}

.page-fp .s5 .fund-opener::after {
    content: ' +';
    font-size: 15px;
    font-weight: 400;
    display: inline-block;
}

.page-fp .s5 .fund-opener.active::after {
    content: ' −';
}

.page-fp .s5 .fund-opener:hover {
    color: #f5d98a;
    border-color: #ebbc52;
}

.page-fp .s5 .funds-cta {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    float: right;
    margin: 25px 0 0 0;
    padding: 8px 0;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
    color: #ebbc52;
}

.page-fp .s5 .funds-cta .txt {
    display: inline-block;
}

.page-fp .s5 .funds-cta .arrow {
    display: inline-block;
    line-height: 0;
}

.page-fp .s5 .funds-cta .arrow svg {
    display: block;
    width: 57px;
    height: auto;
}

.page-fp .s5 .funds-cta:hover,
.page-fp .s5 .funds-cta:active,
.page-fp .s5 .funds-cta:focus {
    color: #fff;
}

@media (max-width: 991px) {
    .page-fp .s5 .funds-cta {
        float: none;
    }
}


/* --------------------------------------------------
   S6 — Prečo investovať
   -------------------------------------------------- */

@media (min-width: 992px) {
    .page-fp .s6 {
        padding: 0 0 30px 0;
    }
}

@media (min-width: 1200px) {
    .page-fp .s6 {
        padding: 70px 0 80px 0;
    }
}

.page-fp .s6 h2 {
    margin: 0;
    padding-bottom: 10px;
    color: #789082;
    font-size: 16px;
    font-weight: 400;
}

.page-fp .s6 h3 {
    margin: 0 0 40px 0;
    font-size: 24px;
    line-height: 1.4;
}

.page-fp .s6 h4 {
    margin: 0 0 20px 0;
    font-size: 24px;
}

.page-fp .s6 .content {
    border-top: 1px solid #214a33;
}

@media (min-width: 992px) {
    .page-fp .s6 .row .col-md-4:nth-child(1) p {
        max-width: 412px;
    }

    .page-fp .s6 .row .col-md-4:nth-child(2) {
        border-left: 1px solid #214a33;
        border-right: 1px solid #214a33;
    }
}

.page-fp .s6 .col-content {
    padding: 30px 0;
}

@media (min-width: 1200px) {
    .page-fp .s6 .col-content {
        padding: 60px 0;
    }
}

.page-fp .s6 .col-content p {
    margin: 0 0 12px 0;
}

.page-fp .s6 .col-content ul {
    margin: 8px 0 0 0;
    padding: 0 0 0 18px;
}

.page-fp .s6 .col-content ul li {
    margin: 0 0 10px 0;
}

.page-fp .s6 .col-content ul li::marker {
    color: #ebbc52;
}


/* --------------------------------------------------
   S8 — Carousel
   -------------------------------------------------- */

.page-fp .s8 .owl-dots {
    text-align: center;
    margin-top: 18px;
}

.page-fp .s8 .owl-dots .owl-dot {
    display: inline-block;
    margin: 0 6px;
}

.page-fp .s8 .owl-dots .owl-dot span {
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
}

.page-fp .s8 .owl-dots .owl-dot.active span {
    background: rgba(235, 188, 82, 0.9);
}


/* --------------------------------------------------
   S9 — Dokumenty
   -------------------------------------------------- */

.page-fp .s9 {
    background: #0e2d1c;
    padding: 90px 0 70px 0;
}

@media (max-width: 991px) {
    .page-fp .s9 {
        padding: 60px 0;
    }
}

.page-fp .s9 h2 {
    margin: 60px 0;
    max-width: 375px;
    font-size: 36px;
}

.page-fp .s9 .content {
    border-top: 1px solid #214a33;
}

.page-fp .s9 .documents {
    position: relative;
    margin: 0;
    padding: 0 0 20px 0;
    display: block;
    overflow: hidden;
    transition: height 1s ease-in-out;
}

.page-fp .s9 .documents:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    left: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(14, 45, 28, 0) 0%,
        rgba(14, 45, 28, 0.7) 40%,
        rgba(14, 45, 28, 0.85) 50%,
        #0e2d1c 100%
    );
    transition: height 1s ease-in-out;
}

.page-fp .s9 .documents.hdn:after {
    height: 47px;
}

@media (min-width: 600px) {
    .page-fp .s9 .documents.hdn:after {
        height: 100px;
    }
}

.page-fp .s9 .documents li {
    display: block;
    margin: -1px 0 0 0;
}

.page-fp .s9 .documents li a {
    position: relative;
    color: #fff;
    display: block;
    border: 1px solid #214a33;
    padding: 20px 20px 20px 80px;
}

.page-fp .s9 .documents li a:hover,
.page-fp .s9 .documents li a:active,
.page-fp .s9 .documents li a:focus {
    z-index: 1;
    border-color: #ebbc52;
    color: #ebbc52;
}

.page-fp .s9 .documents li a .type {
    display: block;
    font-size: 12px;
}

@media (min-width: 600px) {
    .page-fp .s9 .documents li a .type {
        display: inline-block;
        padding-left: 20px;
        font-size: 16px;
    }
}

.page-fp .s9 .documents li a svg {
    position: absolute;
    left: 30px;
    top: 25px;
}

.page-fp .s9 .s9-show-more {
    display: inline-block;
    padding: 10px 30px;
    margin: 0 0 0 -30px;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
    color: #ebbc52;
    cursor: pointer;
}

.page-fp .s9 .s9-show-more:hover {
    text-decoration: underline;
}


/* --------------------------------------------------
   S10 — Kontakt
   -------------------------------------------------- */

.page-fp .s10 {
    padding: 80px 0 90px 0;
    overflow: hidden;
}

@media (max-width: 991px) {
    .page-fp .s10 {
        padding: 60px 0 70px 0;
    }
}

.page-fp .s10 h2 {
    font-size: 80px;
    font-weight: 400;
}

@media (min-width: 1200px) {
    .page-fp .s10 h2 {
        font-size: 100px;
    }
}

.page-fp .s10 .info p {
    margin: 0 0 10px 0;
}

/* Contact form */
.page-fp .s10 .form {
    padding: 22px;
    background: #d8e5da;
    color: #153824;
    position: relative;
    z-index: 2;
}

.page-fp .s10 .form br {
    display: none;
}

.page-fp .s10 .form input[type=text],
.page-fp .s10 .form input[type=email],
.page-fp .s10 .form input[type=tel],
.page-fp .s10 .form textarea,
.page-fp .s10 .form select {
    width: 100%;
    border: 1px solid #153824;
    background: none;
    padding: 12px 12px;
    font-size: 14px;
    outline: none;
    margin-bottom: 14px;
}

.page-fp .s10 .form input[type=text]:focus,
.page-fp .s10 .form input[type=email]:focus,
.page-fp .s10 .form input[type=tel]:focus,
.page-fp .s10 .form textarea:focus {
    border-color: #ebbc52;
}

.page-fp .s10 .form textarea {
    min-height: 120px;
    resize: vertical;
}

.page-fp .s10 .form .btn,
.page-fp .s10 .form input[type=submit],
.page-fp .s10 .form button[type=submit] {
    display: inline-block;
    padding: 17px 40px;
    background: #153824;
    color: #ebbc52;
    text-transform: uppercase;
    font-size: 18px;
    border: none;
    cursor: pointer;
}

.page-fp .s10 .form .btn:hover,
.page-fp .s10 .form input[type=submit]:hover,
.page-fp .s10 .form button[type=submit]:hover {
    background: #ebbc52;
    color: #153824;
}


/* ==========================================================================
   PRINT
   ========================================================================== */

@media print {
    header,
    footer,
    nav {
        display: none !important;
    }
}
