* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lato', sans-serif;
}
:root {
    --text-color-white: #fff;
}

body {
    background: url("images/backgrounds/sniezny-krajobraz.jpg") no-repeat center center fixed;
    background-size: cover;
    min-width: 480px;
}

/* -- Wrapper -- */
.wrapper {
    width: 100%;
}/* -- END Wrapper -- */
    /* -- Header -- */
    header {
        position: relative;
        display: flex;
        margin: 0 auto;
        max-width: 1000px;
    }
        .logo-header {
            display: flex;
            align-items: center;
            text-align: center;
        }
            .logo {
                max-width: 220px;
            }
            .title {
                font-size: 30px;
                letter-spacing: 1px;
                line-height: 1.3;
                text-transform: uppercase;
                text-shadow: 3px 3px 5px #003366;
                color: var(--text-color-white);
            }
    @media (max-width: 768px) {
        header {
            justify-content: center;
        }
            .logo {
                max-width: 100px;
            }
            .title {
                font-size: 16px;
            }
    }
    /* -- Social Media -- */
    .social-media {
        position: absolute;
        top: 0;
        right: 0;
        display: flex;
        gap: 16px;
        padding: 15px;
        background-color: rgba(0, 0, 0, 0.6);
        box-shadow: 0 0 5px #000;
        border-bottom-left-radius: 15px;
        border-bottom-right-radius: 15px;
    }
        .social-media a[aria-label*="Facebook"] i {
            color: #0d6efd;
        }
        .social-media a[aria-label*="YouTube"] i {
            color: #e00;
        }
        .social-media a i {
            font-size: 34px;
            transition: transform 0.3s ease-in-out;
        }
            .social-media a:hover i {
                transform: scale(1.9);
            }
    @media(max-width: 768px) {
        .social-media {
            top: 75px;
            padding: 5px;
            gap: 5px;
            border-radius: 0;
        }
            .social-media a i {
                font-size: 20px;
                transition: transform 0.3s ease-in-out;
            }
                .social-media a:hover i {
                    transform: scale(1.5);
                }
    }/* -- END Social Media -- *//* -- END Header -- */
/* -------------------------------------------------------- */
    /* -- Slider -- */
    .slider {
        position: relative;
        max-width: 1000px;
        margin: 0 auto;
    }
        .slider img {
            width: 750px;
            height: 150px;
            display: none;
            box-shadow: 0 0 7px #fff;
            margin: 0 auto;
        }
            img.displaySlide {
                display: block;
                animation-name: fade;
                animation-duration: 1.5s;
            }
                @keyframes fade {
                    from {opacity: .5;}
                    to {opacity: 1;}
                }
    @media (max-width: 768px) {
    .slider {
        margin: 30px 10px 10px;
    }
        .slider img {
            width: 100%;
            height: 80px;
        }
    }/* -- END Slider -- */
/* -------------------------------------------------------- */
    /* -- Nav -- */
    nav {
        background-color: rgba(0, 0, 0, 0.9);
        box-shadow: 0 0 10px #00994d;
        margin-top: 15px;
        z-index: 100;
        display: flex;
        justify-content: center;
        padding: 20px 0;
        position: sticky;
        top: 0;
    }
        .navbar {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }
            .navbar li {
                margin: 3px;
                list-style: none;
                position: relative;
            }
            .navbar a {
                display: inline-block;
                padding: 7px;
                font-size: 24px;
                font-weight: bold;
                text-align: center;
                text-transform: uppercase;
                position: relative;
                text-decoration: none;
                color: var(--text-color-white);
            }
                .navbar a i {
                    font-weight: bold;
                }
                .navbar a::after {
                    content: "";
                    position: absolute;
                    left: 0;
                    bottom: 3px;
                    width: 0;
                    height: 3px;
                    background-color: #00994d;
                    transition: width 0.3s ease-in-out;
                }
                .navbar a:hover::after,
                .navbar a.active::after {
                    width: 100%;
                }
                .navbar a.active {
                    background-color: #00994d;
                    border-radius: 5px;
                }
        .submenu {
            background-color: rgba(0, 0, 0, 0.9);
            box-shadow: 0 0 10px #00994d;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            display: none;
            list-style: none;
            padding: 5px 0;
            min-width: 120px;
            text-align: center;
            z-index: 100;
        }
            .submenu li {
                display: block;
            }
            .submenu a {
                display: inline-block;
                position: relative;
                transition: color 0.3s ease-in-out;
                font-size: 18px;
            }
                .submenu a::after {
                    content: "";
                    position: absolute;
                    left: 0;
                    bottom: 0;
                    width: 0;
                    height: 1.5px;
                    background-color: #00994d;
                    transition: width 0.3s ease-in-out;
                }
                    .submenu a:hover::after {
                        width: 100%;
                    }
                        .navbar li:hover .submenu {
                            display: block;
                        }
        .submenu a.active::after {
            width: 100%;
        }
        .submenu a.active {
            background-color: #00994d;
            border-radius: 5px;
        }
    @media(max-width: 768px) {
        nav {
            padding: 5px 0;
        }
            .navbar a {
                font-size: 20px;
            }
            .submenu {
                min-width: 100px;
            }
                .submenu a {
                    font-size: 14px;
                }
    }/* -- END Nav -- */
/* -------------------------------------------------------- */
    /* -- Main -- */
    main {
        max-width: 1000px;
        margin: 5px auto 10px;
        padding: 10px;
    }
        .section-groups {
            display: none;
        }
            .section-groups.active {
                display: block;
            }
    @media(max-width: 768px) {
        main {
            padding: 3px;
        }
    }/* -- END Main -- */
            /* -- Article -- */
            article {
                background-color: rgba(0, 0, 0, 0.7);
                box-shadow: 0 0 10px #00994d;
                display: flex;
                flex-direction: row;
                gap: 20px;
                flex-wrap: wrap;
                padding: 15px;
                margin-top: 10px;
                border-radius: 10px;
                align-items: flex-start;
            }
            article:first-child {
                margin-top: 0;
            }
                .home-img {
                    max-width: 160px;
                    flex-shrink: 0;
                    align-self: flex-start;
                }
                    .home-img img {
                        width: 100%;
                        height: auto;
                    }
                .home-article-text {
                    flex: 1;
                    display: flex;
                    flex-direction: column;
                    text-align: justify;
                    min-width: 200px;
                }
                    .home-title {
                        font-size: 22px;
                        margin-bottom: 15px;
                        letter-spacing: 1.5px;
                        color: var(--text-color-white);
                        text-shadow: 2px 2px 3px #00994d;
                    }
                    .home-text {
                        font-size: 18px;
                        line-height: 1.7;
                        letter-spacing: 1px;
                        color: var(--text-color-white);
                    }
                    .home-text-hidden {
                        font-size: 18px;
                        line-height: 1.7;
                        letter-spacing: 1px;
                        max-height: 0;
                        opacity: 0;
                        overflow: hidden;
                        transition: max-height 0.6s ease-in-out, opacity 0.6s ease-in-out;
                        color: var(--text-color-white);
                    }
                        .home-text-hidden.show {
                            max-height: 1000px;
                            opacity: 1;
                        }
                    .home-button {
                        align-self: flex-end;
                        margin-top: 10px;
                        color: #000;
                        padding: 10px 20px;
                        border: none;
                        background-color: #fff;
                        transition: all 0.3s ease-in-out;
                        cursor: pointer;
                        border-radius: 5px;
                    }
                        .home-button:hover {
                            background-color: #00994d;
                            color: var(--text-color-white);
                        }
            .rekolekcje25 {
                color: #ff93ff;
                text-decoration: none;
                font-weight: bold;
                letter-spacing: 1px;
            }
            @media(max-width: 768px) {
                article {
                    flex-direction: row;
                    gap: 0;
                    padding: 7px;
                    margin-top: 5px;
                }
                article:first-child {
                    margin-top: 10px;
                }
                .home-img {
                    max-width: 100px;
                    height: auto;
                    flex-shrink: 0;
                    margin-right: 10px;
                }
                    .home-article-text {
                        min-width: 0;
                    }
                        .home-title {
                            font-size: 18px;
                        }
                        .home-text,
                        .home-text-hidden {
                            font-size: 14px;
                            line-height: 1.5;
                            text-align: justify;
                        }
                        .home-button {
                            font-size: 14px;
                            padding: 8px 16px;
                        }
            }/* -- END Article -- */
        /* -- All Sections -- */
        .section-about,
        .section-group,
        .section-world,
        .section-formation,
        .section-materials,
        .section-support,
        .section-links,
        .section-contact,
        .section-media {
            padding: 10px;
            background-color: rgba(0, 0, 0, 0.7);
            box-shadow: 0 0 7px #00994d;
            border-radius: 10px;
        }/* -- END All Sections -- */
            /* -- About -- *//* -- Group -- *//* -- World -- *//* -- Formation -- *//* -- Materials -- *//* -- Support -- *//* -- Links -- *//* -- Contact -- *//* -- Media -- */
            .about-h2,
            .group-h2,
            .world-h2,
            .formation-h2,
            .materials-h2,
            .support-h2,
            .media-h2 {
                background-color: #00994d;
                box-shadow: 0 0 5px #fff;
                margin-top: 15px;
                padding: 7px 0;
                text-align: center;
                text-transform: uppercase;
                letter-spacing: 1px;
                text-shadow: 2px 2px 3px #000;
                border-radius: 5px;
                font-size: 22px;
                color: var(--text-color-white);
            }
            .about-h2:first-child,
            .group-h2:first-child,
            .world-h2:first-child,
            .formation-h2:first-child,
            .materials-h2:first-child,
            .support-h2:first-child,
            .media-h2:first-child {
                margin-top: 0;
            }
            .about-h2,
            .group-h2,
            .formation-h2 {
                cursor: pointer;
                position: relative;
            }
                .about-h2::after,
                .group-h2::after,
                .formation-h2::after {
                    content: '▶';
                    position: absolute;
                    right: 20px;
                    top: 0;
                    font-size: 28px;
                    transition: transform 0.3s ease-in-out;
                }
                    .about-h2.active::after,
                    .group-h2.active::after,
                    .formation-h2.active::after {
                        content: '▼';
                        padding-top: 2px;
                    }
            .about-toggle-content,
            .group-toggle-content,
            .formation-toggle-content {
                max-height: 0;
                overflow: hidden;
                opacity: 0;
                transition: max-height 0.6s ease-in-out, opacity 0.6s ease-in-out;
            }
                .about-toggle-content.active,
                .group-toggle-content.active,
                .formation-toggle-content.active {
                    max-height: 100%;
                    opacity: 1;
                }
                    .formation-img {
                        float: left;
                        box-shadow: 0 0 5px #000;
                        margin: 10px 20px 0 0;
                    }
                .about-toggle-content ul {
                    padding-left: 70px;
                }
                    .about-toggle-content ul li {
                        line-height: 1.5;
                    }
            .about-text,
            .group-text,
            .formation-text,
            .support-text {
                text-align: justify;
                font-size: 18px;
                line-height: 1.7;
                padding: 10px 20px;
                letter-spacing: 1px;
                color: #fff;
            }
            .about-text,
            .formation-text {
                text-indent: 40px;
            }
                .about-img {
                    width: 550px;
                    margin: 10px auto;
                    display: block;
                    box-shadow: 0 0 7px #00994d;
                }
                .about-ul,
                .formation-ul {
                    list-style: none;
                    padding: 0 20px;
                    font-size: 18px;
                    letter-spacing: 1px;
                    color: #fff;
                }
                .formation-ul {
                    padding-left: 60px;
                    line-height: 1.5;
                }
                    .about-ul li,
                    .formation-ul li {
                        margin-bottom: 5px;
                        position: relative;
                        padding-left: 30px;
                    }
                        .about-ul li::before,
                        .formation-ul li::before {
                            content: "✔";
                            position: absolute;
                            left: 0;
                            color: #fff;
                            font-weight: bold;
                        }
                #bold-text,
                .sky-formation {
                    font-weight: bold;
                }
            .about-text-right {
                text-align: right;
                font-size: 18px;
                padding-right: 20px;
                line-height: 1.5;
                letter-spacing: 1px;
                color: #fff;
            }
            @media (max-width: 768px) {
                .section-about,
                .section-group,
                .section-world,
                .section-formation,
                .section-materials,
                .section-support,
                .section-links,
                .section-contact,
                .section-media {
                    margin-top: 10px;
                }
                    .about-h2,
                    .group-h2,
                    .world-h2,
                    .formation-h2,
                    .materials-h2,
                    .support-h2,
                    .media-h2 {
                        font-size: 18px;
                        padding: 5px;
                    }
                        .about-h2::after,
                        .group-h2::after,
                        .formation-h2::after {
                            font-size: 20px;
                        }
                    .about-text,
                    .group-text,
                    .formation-text {
                        font-size: 14px;
                        padding: 5px 10px;
                    }
                    .about-text,
                    .formation-text {
                        text-indent: 20px;
                    }
                    .about-img {
                        width: 350px;
                        height: 500px;
                        float: none;
                        display: block;
                        margin: 10px auto;
                    }
                        .formation-img {
                            width: 130px;
                            height: 90px;
                        }
                    .about-toggle-content ul,
                    .formation-toggle-content ul {
                        padding-left: 35px;
                    }
                        .about-ul,
                        .formation-ul {
                            padding: 0 10px;
                            font-size: 14px;
                        }
            }/* -- END About -- *//* -- END Group -- *//* -- END Formation -- *//* -- END Materials -- *//* -- END Support -- *//* -- END Links -- *//* -- END Contact -- *//* -- END Media -- */
            /* -- World -- */
            .world-map {
                box-shadow: 0 0 7px #00994d;
                display: block;
                margin: 20px auto;
            }
            .world-block {
                display: flex;
                flex-direction: column;
                padding: 10px;
                max-width: 800px;
                margin: auto;
            }
                .world-item {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    font-size: 18px;
                    border-bottom: 2px solid #00994d;
                    padding: 20px 0;
                    letter-spacing: 1px;
                }
                    .country-info {
                        display: flex;
                        align-items: center;
                        gap: 15px;
                    }
                        .country {
                            font-weight: bold;
                            color: #fff;
                        }
                        .flag {
                            width: 40px;
                            flex-shrink: 0;
                        }
                    .world-item a {
                        color: #fff;
                        padding: 10px 20px;
                        text-decoration: none;
                        transition: all 0.5s ease-in-out;
                    }
                        .world-item a:hover {
                            color: #fff;
                            background-color: #00994d;
                            border-radius: 5px;
                        }
                    .globe-fa {
                        font-size: 45px;
                        color: #00994d;
                    }
                    @media(max-width: 768px) {
                        .world-map {
                            width: 90%;
                            min-width: unset;
                        }
                        .world-item {
                            padding: 10px 0;
                        }
                            .country {
                                font-size: 14px;
                            }
                        .world-item a {
                            padding: 5px 10px;
                            font-size: 14px;
                        }
                    }/* -- END World -- */
            /* -- Formation -- */
            .f-titles-span {
                display: block;
                font-size: 18px;
                padding: 10px;
                font-weight: 600;
                color: #fff;
                letter-spacing: 1px;
                text-shadow: 1px 1px 2px #000;
                background-color: #00994d;
                margin: 0 30px;
                border-radius: 5px;
                box-shadow: 0 0 3px #fff;
                cursor: pointer;
                position: relative;
                transition: background-color 0.5s ease-in-out;
            }
            .f-titles-span:first-child {
                margin-top: 20px;
            }
                .f-titles-span:hover {
                    background-color: #00661a;
                }
            .f-titles-span::after {
                content: '▶';
                position: absolute;
                right: 20px;
                top: 0;
                font-size: 28px;
                transition: transform 0.3s ease-in-out;
            }
                .f-titles-span.active::after {
                    content: '▼';
                    padding-top: 2px;
                }
            .f-content-block {
                padding: 10px;
                margin: 0 auto;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 5px;
                width: 90%;
                max-height: 0;
                overflow: hidden;
                opacity: 0;
                transition: all 0.6s ease-in-out;
            }
                .f-content-block.active {
                    max-height: 100%;
                    opacity: 1;
                }
                    .f-books {
                        display: flex;
                        flex-direction: row;
                        gap: 10px;
                        padding: 30px 0;
                    }
                        .f-book {
                            display: flex;
                            justify-content: center;
                            flex-direction: column;
                            align-items: center;
                            padding: 5px;
                            text-align: center;
                            gap: 10px;
                            border-radius: 5px;
                            box-shadow: 0 0 5px #000;
                            width: 180px;
                        }
                        .f-book a {
                            background-color: #003366;
                            border-radius: 5px;
                            padding: 10px;
                        }
                            .f-book a i {
                                font-size: 52px;
                                color: #fff;
                            }
                .f-subtitle-span {
                    display: block;
                    margin: 0 auto;
                    padding: 10px 10px 10px 20px;
                    background-color: #00994d;
                    box-shadow: 0 0 7px #fff;
                    color: #fff;
                    width: 100%;
                    border-radius: 5px;
                    font-size: 18px;
                    cursor: pointer;
                    position: relative;
                    transition: all 0.5s ease-in-out;
                }
                    .f-subtitle-span:hover {
                        background-color: #fff;
                        color: #00994d;
                    }
                .f-subtitle-span::after {
                    content: '▶';
                    position: absolute;
                    right: 20px;
                    top: 0;
                    font-size: 28px;
                    transition: transform 0.3s ease-in-out;
                }
                    .f-subtitle-span.active::after {
                        content: '▼';
                        padding-top: 2px;
                    }
                    .formation-subtitle-content {
                        display: flex;
                        justify-content: center;
                        width: 90%;
                        margin: 0 auto;
                        background: linear-gradient(to left, #00994d, #00cc66, #66ff99);
                        box-shadow: 0 0 5px #00994d;
                        border-radius: 5px;
                        max-height: 0;
                        overflow: hidden;
                        opacity: 0;
                        transition: all 0.5s ease-in-out;
                    }
                        .formation-subtitle-content.active {
                            max-height: 100%;
                            opacity: 1;
                            margin: 10px auto;
                        }
                        .formation-subtitle-books {
                            display: flex;
                            flex-direction: column;
                            align-items: center;
                            justify-content: center;
                            gap: 20px;
                            width: 30%;
                            color: #fff;
                            text-align: center;
                            background-color: #00cc66;
                            padding: 10px 0;
                        }
                            .formation-book-item {
                                background-color: #66ff99;
                                box-shadow: 0 0 3px #000;
                                border-radius: 5px;
                                width: 90%;
                                height: 110px;
                                display: flex;
                                flex-direction: column;
                                justify-content: center;
                                gap: 10px;
                                color: #000;
                            }
                                .formation-book-item a i {
                                    font-size: 56px;
                                    color: #000;
                                }
                                .formation-book-item a {
                                    text-decoration: none;
                                }
                        .formation-subtitle-audio {
                            display: flex;
                            flex-direction: column;
                            align-items: center;
                            justify-content: center;
                            width: 70%;
                            padding: 10px;
                        }
                            .formation-subtitle-audio-items {
                                display: flex;
                                flex-direction: column;
                                align-items: center;
                                gap: 10px;
                                margin-bottom: 20px;
                            }
                            .formation-subtitle-audio-items:last-child {
                                margin-bottom: 0;
                            }
                                .formation-subtitle-audio-item {
                                    font-size: 18px;
                                    color: #000;
                                }
            @media(max-width: 768px) {
                .formation-title {
                    margin: 10px 0 5px 20px;
                    padding: 5px;
                    font-size: 18px;
                    width: 50%;
                }
                    .formation-subtitle {
                        padding: 5px 5px 5px 10px;
                        font-size: 14px;
                    }
                        .formation-subtitle::after {
                            font-size: 18px;
                        }
                        .formation-subtitle-content {
                            flex-direction: column;
                            align-items: center;
                            width: 95%;
                        }
                            .formation-subtitle-books {
                                flex-direction: row;
                                align-items: center;
                                width: 100%;
                                padding: 5px;
                            }
                                .formation-book-item span {
                                    font-size: 14px;
                                }
                                .formation-book-item {
                                    width: 130px;
                                    height: 90px;
                                    gap: 3px;
                                }
                                    .formation-book-item a i {
                                        font-size: 36px;
                                    }
                                .formation-subtitle-books a {
                                    font-size: 14px;
                                    padding: 5px 30px;
                                    text-align: center;
                                }
                                .formation-subtitle-audio-item {
                                    font-size: 14px;
                                }
                            .formation-subtitle-audio-items audio {
                                width: 250px;
                                height: 30px;
                            }
                    .f-titles-span {
                        font-size: 14px;
                        margin: 0 10px;
                    }
                    .f-titles-span::after {
                        font-size: 24px;
                    }
                        .f-content-block {
                            width: 97%;
                        }
                            .f-subtitle-span {
                                font-size: 14px;
                                width: 97%;
                            }
                            .f-subtitle-span::after {
                                font-size: 24px;
                            }
                        .f-books {
                            flex-direction: column;
                            gap: 10px;
                            margin-top: 5px;
                        }
            }/* -- END Formation -- */
            /* -- Materials -- */
            .download-files {
                margin-top: 20px;
            }
                .download-header {
                    display: flex;
                    align-items: center;
                    gap: 15px;
                    padding: 10px;
                    justify-content: center;
                    margin-bottom: 15px;
                }
                    .download-text {
                        font-size: 18px;
                        letter-spacing: 1px;
                        padding: 10px;
                        text-shadow: 1px 1px 2px #000;
                        font-weight: bold;
                        color: #fff;
                    }
                    .download-header img {
                        width: 30px;
                        cursor: pointer;
                        box-shadow: 0 0 10px #00994d;
                    }
                .pdf-list {
                    padding-left: 75px;
                    font-size: 18px;
                }
                    .pdf-list li {
                        position: relative;
                        list-style-type: decimal;
                        color: #fff;
                    }
                        .pdf-list li a {
                            display: block;
                            width: 100%;
                            text-decoration: none;
                            color: #fff;
                            width: calc(100% - 2em);
                            padding: 10px;
                            margin: 0 0 10px 10px;
                            border-radius: 4px;
                            letter-spacing: 1px;
                            border-left: 4px solid #00994d;
                            box-shadow: 0 0 5px #fff;
                            transition: all 0.5s ease-in-out;
                        }
                            .pdf-list li a:hover {
                                background-color: #00994d;
                                border-left: 4px solid #e0e7ff;
                                color: #fff;
                            }
            @media(max-width: 768px) {
                .download-files {
                    margin-top: 10px;
                }
                    .download-header {
                        gap: 5px;
                        padding: 5px;
                        margin-bottom: 10px;
                    }
                        .download-text {
                            font-size: 14px;
                            padding: 5px;
                        }
                        .download-header img {
                            margin-right: 5px;
                        }
                    .pdf-list {
                        padding-left: 25px;
                        font-size: 14px;
                    }
            }/* -- END Materials -- */
            /* -- Support -- */
            .support-box {
                background-color: rgba(0, 0, 0, 0.3);
                box-shadow: 0 0 5px #00994d;
                width: 97%;
                margin: 20px auto 10px auto;
                border-radius: 5px;
            }
                .support-shadow {
                    color: #fff;
                    font-weight: 600;
                    font-size: 20px;
                    text-shadow: 2px 2px 3px #00994d;
                }
                    .section-support-ad {
                        display: flex;
                        justify-content: center;
                        padding: 10px 0 20px 0;
                        font-size: 18px;
                        gap: 50px;
                    }
                        .section-support-ad a {
                            text-decoration: none;
                            background-color: #00994d;
                            box-shadow: 0 0 7px #fff;
                            color: var(--color-white-text);
                            padding: 15px 25px;
                            border-radius: 5px;
                            transition: all .5s ease-in-out;
                        }
                            .section-support-ad a:hover {
                                background-color: #fff;
                                color: #000;
                            }
            @media(max-width: 768px) {
                .section-support-ad {
                    padding: 5px 0 10px 0;
                    font-size: 14px;
                    gap: 10px;
                }
                    .support-box {
                        margin: 10px auto 5px auto;
                    }
                        .support-text {
                            font-size: 14px;
                            padding: 5px 10px;
                        }
                        .support-shadow {
                            font-size: 16px;
                        }
                            .section-support-ad {
                                padding: 5px 0 10px 0;
                                font-size: 14px;
                                gap: 20px;
                            }
                                .section-support-ad a {
                                    padding: 7px 15px;
                                }
            }/* -- END Support -- */
            /* -- Links -- */
            .links-block {
                display: flex;
                flex-wrap: wrap;
                align-items: center;
                justify-content: center;
                width: 100%;
                margin: 20px auto;
                gap: 15px;
            }
                .img-link {
                    width: 150px;
                    height: 70px;
                    object-fit: contain;
                    margin-bottom: 20px;
                }
                .link {
                    font-weight: 600;
                    font-size: 18px;
                    letter-spacing: 1px;
                }
                .links-item {
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    justify-content: center;
                    text-align: center;
                    background-color: transparent;
                    padding: 20px;
                    width: 450px;
                    height: 200px;
                    text-decoration: none;
                    box-shadow: 0 0 7px #00994d;
                    border-radius: 5px;
                    color: #fff;
                    transition: all 0.5s ease-in-out;
                }
                    .links-item:hover {
                        background-color: #00994d;
                        color: #fff;
                    }
            @media(max-width: 768px) {
                .links-block {
                    margin: 5px auto;
                    gap: 15px;
                }
                    .img-link {
                        width: 130px;
                        height: 50px;
                        margin-bottom: 10px;
                    }
                    .link {
                        font-size: 14px;
                    }
                    .links-item {
                        padding: 10px;
                        width: 300px;
                        height: 150px;
                    }
            }/* -- END Links -- */
            /* -- Contact -- */
            .contact-header,
            .contact-content,
            .contact-footer {
                display: flex;
                align-items: center;
                gap: 15px;
                width: 97%;
                margin: 10px auto;
                padding: 30px;
                background-color: rgba(0, 0, 0, 0.3);
                box-shadow: 0 0 5px #00994d;
                border-radius: 5px;
            }
            .contact-content,
            .contact-footer {
                flex-direction: column;
            }
                .contact-header img {
                    width: 120px;
                }
                .contact-div-text {
                    padding: 13px 20px;
                }
                    .contact-div-text h2 {
                        font-size: 20px;
                        color: #fff;
                        margin-bottom: 15px;
                    }
                    .contact-div-text p {
                        display: flex;
                        align-items: center;
                        font-size: 18px;
                        line-height: 1.6;
                        letter-spacing: 1px;
                        gap: 10px;
                        color: #fff;
                    }
                .contact-text {
                    letter-spacing: 1px;
                    font-weight: 600;
                    color: #fff;
                    font-size: 18px;
                    margin-top: 40px;
                }
                    .contact-text:first-child {
                        margin-top: 0;
                    }
                .contact-name {
                    font-size: 18px;
                    color: #fff;
                }
                .contact-email {
                    color: #fff;
                    font-size: 18px;
                    letter-spacing: 1px;
                }
            @media (max-width: 768px) {
                .contact-header {
                    flex-direction: column;
                    text-align: center;
                    padding: 10px 0;
                    gap: 5px;
                }
                    .contact-header img {
                        width: 80px;
                    }
                    .contact-div-text {
                        padding: 7px 10px;
                    }
                    .contact-div-text p {
                        margin: 0 auto;
                        display: block;
                        width: fit-content;
                    }
                        .contact-div-text h2 {
                            font-size: 16px;
                            margin-bottom: 15px;
                        }
                        .contact-div-text p {
                            font-size: 14px;
                            gap: 5px;
                        }
                    .contact-text,
                    .contact-name,
                    .contact-email {
                        font-size: 14px;
                    }
                    .contact-text {
                        margin-top: 20px;
                    }
            }/* -- END Contact -- */
            
            /* -- Media -- */
            /* -- News -- */
            .news-header {
                display: flex;
                align-items: center;
                gap: 15px;
                padding: 10px;
                justify-content: center;
                margin: 20px;
            }
                .news-text {
                    font-size: 18px;
                    letter-spacing: 1px;
                    padding: 10px;
                    text-shadow: 1px 1px 2px #000;
                    font-weight: bold;
                    color: #fff;
                }
                .news-header img {
                    width: 30px;
                    cursor: pointer;
                    box-shadow: 0 0 10px #00994d;
                }
            .news-title {
                display: block;
                padding: 5px;
                font-size: 28px;
                border-radius: 5px;
                text-align: center;
                font-weight: 600;
                letter-spacing: 1px;
                background: linear-gradient(to bottom, #00994d, #00cc66, #66ff99);
                box-shadow: 0 0 5px #fff;
                text-shadow: 2px 2px 3px #000;
                color: #fff;
                width: 85%;
                margin: 0 auto 20px auto;
            }
                .news-list {
                    display: flex;
                    justify-content: center;
                    flex-wrap: wrap;
                    gap: 20px;
                    margin: 20px auto;
                }
                .news-list:last-child {
                    margin-bottom: 0;
                }
                    .news-main {
                        border-radius: 10px;
                        box-shadow: 0 0 10px #00994d;
                        transition: all 0.5s ease-in-out;
                    }
                        .news-main:hover {
                            transform: scale(1.05);
                            box-shadow: 0 0 20px #00cc66;
                        }
                    .news-second {
                        border-radius: 10px;
                        box-shadow: 0 0 10px #00994d;
                        transition: all 0.5s ease-in-out;
                    }
                        .news-second:hover {
                            transform: scale(1.02);
                            box-shadow: 0 0 20px #00cc66;
                        }
            @media (max-width: 768px) {
                .news-header {
                    margin: 10px;
                    padding: 5px;
                }
                    .news-text {
                        font-size: 14px;
                        padding: 5px;
                    }
                .news-title {
                    padding: 2px;
                    font-size: 20px;
                    margin: 0 auto 10px auto;
                }
                    .news-list {
                        gap: 10px;
                    }
                        .news-main {
                            width: 250px;
                        }
                        .news-second {
                            width: 130px;
                        }
            }/* -- END News -- */
            /* -- Audio -- */
            .audio-title-span {
                display: block;
                padding: 5px;
                font-size: 24px;
                border-radius: 5px;
                text-align: center;
                font-weight: 600;
                letter-spacing: 1px;
                background: linear-gradient(to bottom, #00994d, #00cc66, #66ff99);
                box-shadow: 0 0 5px #fff;
                text-shadow: 2px 2px 3px #000;
                color: #fff;
                width: 95%;
                margin: 10px auto 30px auto;
            }
                .audio-row {
                    display: flex;
                    justify-content: center;
                    gap: 50px;
                    flex-wrap: wrap;
                    margin-bottom: 40px;
                }
                .audio-row:last-child {
                    margin-bottom: 0;
                }
                    .audio-box {
                        display: flex;
                        flex-direction: column;
                        align-items: center;
                        width: 350px;
                    }
                        .audio-title {
                            font-weight: bold;
                            color: #fff;
                            font-size: 18px;
                            margin-bottom: 10px;
                        }
                        .audio-box audio {
                            width: 100%;
                        }
            @media (max-width: 768px) {
                .audio-title-span {
                    font-size: 20px;
                    margin: 15px auto;
                }
                    .audio-row {
                        gap: 20px;
                        margin-bottom: 20px;
                    }
                        .audio-title {
                            font-size: 14px;
                            margin-bottom: 5px;
                        }
                        .audio-box audio {
                            width: 80%;
                            height: 40px;
                        }
            }/* -- END Audio -- */
            /* -- Gallery -- */
            .images-title {
                display: block;
                padding: 5px;
                font-size: 24px;
                border-radius: 5px;
                text-align: center;
                font-weight: 600;
                letter-spacing: 1px;
                background: linear-gradient(to bottom, #00994d, #00cc66, #66ff99);
                box-shadow: 0 0 5px #fff;
                text-shadow: 2px 2px 3px #000;
                color: #fff;
                width: 95%;
                margin: 10px auto 0 auto;
                position: relative;
                cursor: pointer;
            }
            .images-title::after {
                content: '▶';
                position: absolute;
                right: 20px;
                top: 0;
                font-size: 28px;
                transition: transform 0.3s ease-in-out;
            }
                .images-title.active::after {
                    content: '▼';
                    padding-top: 2px;
                }
            .images-content-block {
                margin: 0 auto;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                width: 90%;
                max-height: 0;
                overflow: hidden;
                opacity: 0;
                transition: all 0.6s ease-in-out;
            }
                .images-content-block.active {
                    max-height: 100%;
                    opacity: 1;
                }
                .gallery {
                    display: grid;
                    grid-template-columns: 1fr 1fr 1fr 1fr;
                    gap: 15px 15px;
                    list-style: none;
                    width: 90%;
                    margin: 0 auto;
                    padding: 10px;
                }
                    .thumbnail {
                        width: 100%;
                        overflow: hidden;
                        border-radius: 10px;
                        cursor: pointer;
                        box-shadow: 0 0 10px #fff;
                        border: 1px solid #fff;
                    }
                        .thumbnail img {
                            width: 100%;
                            height: 100%;
                            display: block;
                            transition: all 0.5s ease-in-out;
                        }
                            .thumbnail img:hover {
                                transform: scale(1.5);
                            }
            @media (max-width: 768px) {
                .images-title {
                    padding: 5px;
                    font-size: 20px;
                    margin: 15px auto 0 auto;
                }
                .images-title::after {
                    font-size: 22px;
                }
                    .images-content-block {
                        padding-top: 10px;
                    }
                    .gallery {
                        grid-template-columns: 1fr 1fr;
                        gap: 10px 10px;
                        padding: 5px;
                    }
            }/* -- END Gallery -- *//* -- END Media -- */
            /* -- Popup -- */
            .popup {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(0, 0, 0, 0.8);
                display: flex;
                align-items: center;
                justify-content: center;
                z-index: 1000;
            }
            .popup.hidden {
                display: none;
            }
                .popup__content {
                    max-width: 60%;
                    max-height: 100%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    position: relative;
                }
                    .popup__img {
                        max-width: 65%;
                        max-height: 50%;
                        border-radius: 8px;
                        object-fit: contain;
                    }
                    .popup__close {
                        position: absolute;
                        top: 10px;
                        right: 10px;
                        font-size: 70px;
                        cursor: pointer;
                        border-radius: 50%;
                        color: #fff;
                        font-weight: bold;
                    }
                        .popup__arrow {
                            position: absolute;
                            top: 50%;
                            transform: translateY(-50%);
                            font-size: 65px;
                            cursor: pointer;
                            color: #fff;
                            font-weight: bold;
                            border-radius: 7%;
                        }
                            .popup__arrow.left {
                                left: 10%;
                            }
                            .popup__arrow.right {
                                right: 10%;
                            }/* -- Popup -- */
    /* -- Button UP -- */
    #backToTop {
        position: fixed;
        bottom: 40px;
        right: 20px;
        background-color: #00cc66;
        z-index: 1000;
        width: 50px;
        height: 50px;
        border: none;
        border-radius: 50%;
        cursor: pointer;
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
        transition: background-color 0.3s ease;
        display: flex;
        justify-content: center;
        align-items: center;
    }
        #backToTop:hover {
            background-color: #00994d;
        }
        #backToTop i {
            font-size: 50px;
            color: #fff;
            pointer-events: none;
            font-weight: bold;
        }/* -- END Button UP -- */  
        body.no-scroll {
            overflow: hidden;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
        }