﻿/*Bright red: var(--secondary-color), Default red: var(--default-color)*/

:root {
    --default-color: #a11b1b;
    --secondary-color: #d12323;
    --link-color: #d12323;
    --panel-color: #f5f5f5;
    --panel-color-highlight: #c2c2c2;
    --background-color: #fff;
    --text-color: rgba(0, 0, 0, 1);
    --text-color-hover: rgba(0, 0, 0, 0.6);
    --muted-text-color: #aaa;
    --separator-color: #eee;
    --separator-color-distinct: #d6d6d6;
    --nav-background-color: rgba(250,250,250,.95);
    --nav-icon-color: rgba(33,33,33,.2);
    --sidenav-background-color: #fff;
    --gradient-button-background-color: #fff;
    --gradient-button-background-color-hover: #fff;
    --gradient-button-color: #a11b1b;
    --gradient-button-color-hover: #d12323;
    --font-weight-bold: bold;
    --background-fade-color-start: #f0f0f0;
}

[data-theme="dark"] {
    --default-color: #a11b1b;
    --secondary-color: #d12323;
    --link-color: #e04848;
    --panel-color: #333;
    --panel-color-highlight: #666;
    --background-color: #171717;
    --text-color: rgba(255, 255, 255, 1);
    --text-color-hover: rgba(255, 255, 255, 0.6);
    --muted-text-color: #9c9c9c;
    --separator-color: #2e2e2e;
    --separator-color-distinct: #474747;
    --nav-background-color: rgba(38,38,38,.95);
    --nav-icon-color: #777;
    --sidenav-background-color: rgba(38,38,38,1);
    --gradient-button-background-color: rgba(161, 27, 27, 0.5);
    --gradient-button-background-color-hover: rgba(161, 27, 27, 0.8);
    --gradient-button-color: #fff;
    --gradient-button-color-hover: #fff;
    --font-weight-bold: normal;
    --background-fade-color-start: #444;
}


@font-face {
    font-family: 'Julius Sans One';
    src: url('../lib/fonts/JuliusSansOne-Regular.woff') format('woff');
    src: url('../lib/fonts/JuliusSansOne-Regular.woff2') format('woff2');
    src: url('../lib/fonts/JuliusSansOne-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Roboto';
    src: url('../lib/fonts/Roboto-Light.woff') format('woff');
    src: url('../lib/fonts/Roboto-Light.woff2') format('woff2');
    src: url('../lib/fonts/Roboto-Light.ttf') format('truetype');
}

@font-face {
    font-family: 'Josefin Sans';
    src: url('../lib/fonts/JosefinSans-Regular.woff') format('woff');
    src: url('../lib/fonts/JosefinSans-Regular.woff2') format('woff2');
    src: url('../lib/fonts/JosefinSans-Regular.ttf') format('truetype');
}

strong {
    font-weight: var(--font-weight-bold) !important;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
}

    body a {
        text-decoration: none;
    }

        body a:hover {
            color: var(--link-color);
        }

p a {
    color: var(--link-color);
    text-decoration: underline;
}

.w3-select {
    border-bottom: none;
}

.w3-input {
    border-bottom: none;
}

fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0;
}

    fieldset legend {
        display: block;
        width: 100%;
        padding: 0;
        font-size: 21px;
        line-height: inherit;
        color: #333;
        border: 0;
        border-bottom: 1px solid #e5e5e5;
    }

.rendered-body {
    margin-top: 80px;
}

.validation-summary-errors ul {
    list-style: none;
    padding-left: 0;
}

.display-flex {
    display: flex;
}

.uppercase {
    text-transform: uppercase;
}

.gradient-button {
    border-image: linear-gradient(to right, var(--default-color) 0%, var(--secondary-color) 100%) !important;
    border-image-slice: 1 !important;
    border-width: 2px !important;
    text-transform: uppercase;
    background-color: var(--gradient-button-background-color) !important;
    color: var(--gradient-button-color) !important;
    border: 1px solid;
}

    .gradient-button.dark {
        border-image: linear-gradient(to right, #a11b1b 0%, #d12323 100%) !important;
        border-image-slice: 1 !important;
        background-color: rgba(161, 27, 27, 0.8) !important;
        color: #fff !important;
    }

    .gradient-button:hover {
        background-color: var(--gradient-button-background-color-hover) !important;
        color: var(--gradient-button-color-hover) !important;
    }

    .gradient-button.dark:hover {
        background-color: rgba(161, 27, 27, 1) !important;
        color: #fff !important;
    }

.slick-dots li.slick-active button:before {
    color: var(--text-color);
}

.slick-dots li button:before {
    color: var(--text-color);
}

.mode-toggle {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 17px;
}

    .mode-toggle input {
        opacity: 0;
        width: 0;
        height: 0;
    }

    .mode-toggle .slider {
        position: absolute;
        cursor: pointer;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--nav-icon-color);
        -webkit-transition: .4s;
        transition: .4s;
    }

        .mode-toggle .slider:before {
            position: absolute;
            content: "";
            height: 13px;
            width: 13px;
            left: 2px;
            bottom: 2px;
            background-color: white;
            -webkit-transition: .4s;
            transition: .4s;
        }

    .mode-toggle input:checked + .slider {
        background-color: var(--nav-icon-color);
    }

        .mode-toggle input:checked + .slider:before {
            background-color: #333;
        }

    .mode-toggle input:focus + .slider {
        box-shadow: 0 0 1px var(--nav-icon-color);
    }

    .mode-toggle input:checked + .slider:before {
        -webkit-transform: translateX(13px);
        -ms-transform: translateX(13px);
        transform: translateX(13px);
    }

.page-width-home {
    width: 1600px;
    max-width: 1600px;
    margin: 0 auto;
}

.page-width-content {
    width: 1140px;
    max-width: 1140px;
    margin: 0 auto;
    padding-top: 40px;
}

.page-width-full {
    width: 100%;
    max-width: 100%;
}

/*WELCOME MESSAGE*/
.welcome-message {
    color: #b3b3b3;
}

    .welcome-message .upper {
        font-size: 28px;
    }

    .welcome-message .lower {
        font-size: 48px;
        text-transform: uppercase;
        padding-left: 48px;
        font-family: 'Julius Sans One', sans-serif;
        font-weight: 200;
    }
/*WELCOME MESSAGE*/


/*NAVIGATION*/
.nav-menu {
    background-color: var(--nav-background-color);
    box-shadow: 0 2px 2px -2px rgba(0,0,0,.15);
    border-bottom: 1px solid var(--separator-color);
}

    .nav-menu .nav-bar {
        height: 80px;
        display: flex;
        flex-direction: row;
        align-items: center;
    }

        .nav-menu .nav-bar .open-side-nav {
            color: var(--text-color) !important;
        }

            .nav-menu .nav-bar .open-side-nav:hover {
                color: var(--text-color-hover) !important;
                background-color: transparent !important;
            }

        .nav-menu .nav-bar .command-compass {
            display: flex;
            flex-direction: row;
            align-items: center;
            margin-left: 80px;
        }

            .nav-menu .nav-bar .command-compass .command-acronym {
                margin-left: 6px;
                font-weight: bold;
                letter-spacing: 6px;
            }

        .nav-menu .nav-bar .right-side-links {
            height: 70px;
            display: flex;
            flex-direction: row;
            align-items: center;
        }

            .nav-menu .nav-bar .right-side-links .menu-icons a:hover {
                color: var(--nav-icon-color);
            }

            .nav-menu .nav-bar .right-side-links .menu-icons .options-container:hover {
                background-color: unset !important;
                color: unset !important;
            }

            .nav-menu .nav-bar .right-side-links .right-side-link {
                margin-left: 36px;
            }

                .nav-menu .nav-bar .right-side-links .right-side-link a:hover {
                    color: var(--text-color);
                }

                .nav-menu .nav-bar .right-side-links .right-side-link .social-icon, .menu-icon {
                    color: var(--nav-icon-color);
                    font-size: 20px;
                    margin-right: 3px;
                }

            .nav-menu .nav-bar .right-side-links .nav-search {
                margin-right: 16px;
                position: relative;
                display: inline-block;
            }

                .nav-menu .nav-bar .right-side-links .nav-search .toggle-search-form {
                    width: 36px;
                    height: 36px;
                    padding: 0;
                    border: none;
                    color: white;
                    font-size: 24px;
                    line-height: 24px;
                    border-radius: 3px;
                    cursor: pointer;
                    background-color: var(--default-color);
                    background-image: linear-gradient(to right, var(--default-color) 0%,var(--secondary-color) 100%);
                }

                    .nav-menu .nav-bar .right-side-links .nav-search .toggle-search-form.action-search:before {
                        font-family: "Font Awesome 5 Free";
                        font-weight: 900;
                        content: "\f002";
                    }

                    .nav-menu .nav-bar .right-side-links .nav-search .toggle-search-form.action-close:before {
                        font-family: "Font Awesome 5 Free";
                        font-weight: 900;
                        content: "\f00d";
                    }

                .nav-menu .nav-bar .right-side-links .nav-search .search-form {
                    display: none;
                    position: absolute;
                    right: 40px;
                    width: 440px;
                }

                    .nav-menu .nav-bar .right-side-links .nav-search .search-form span {
                        display: flex;
                        flex-direction: row;
                        align-items: center;
                        position: relative;
                    }

                    .nav-menu .nav-bar .right-side-links .nav-search .search-form .submit-search {
                        width: 36px;
                        height: 36px;
                        padding: 0;
                        background-color: #222;
                        background-image: linear-gradient(to right, #222 0%, #808080 100%);
                        border: none;
                        color: white;
                        font-size: 24px;
                        line-height: 24px;
                        border-radius: 3px;
                        cursor: pointer;
                        border-top-left-radius: 0;
                        border-bottom-left-radius: 0;
                    }

                    .nav-menu .nav-bar .right-side-links .nav-search .search-form .search-input {
                        border: 1px solid var(--separator-color-distinct) !important;
                        border-top-left-radius: 3px;
                        border-bottom-left-radius: 3px;
                        padding: 6px;
                        background-color: var(--background-color);
                        color: var(--text-color);
                    }

.sidenav-overlay {
    background-color: #000;
    opacity: .5;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: none;
}

.side-nav::-webkit-scrollbar-track {
    background-color: var(--panel-color);
}

.side-nav::-webkit-scrollbar {
    width: 6px;
    background-color: var(--panel-color);
}

.side-nav::-webkit-scrollbar-thumb {
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, var(--secondary-color)), color-stop(1, var(--default-color)));
}

.side-nav {
    font-size: 16px;
    width: 400px;
    padding: 0 24px;
    z-index: 2000;
    top: 0;
    background-color: var(--sidenav-background-color);
}

    .side-nav .close-side-nav {
        position: absolute;
        top: 5px;
        right: 0;
        color: var(--text-color) !important;
    }

        .side-nav .close-side-nav:hover {
            color: var(--text-color-hover) !important;
            background-color: transparent !important;
        }

    .side-nav .top {
        text-align: center;
        font-size: 18px;
        border-bottom: 1px solid var(--separator-color-distinct);
        padding: 12px 0;
        font-weight: 600;
        font-family: 'Julius Sans One', sans-serif;
    }

    .side-nav .first-level-block {
        border-bottom: 1px solid var(--separator-color-distinct);
    }

        .side-nav .first-level-block.home-block {
            position: relative;
        }

            .side-nav .first-level-block.home-block .menu-icons {
                position: absolute;
                right: 0;
                top: 0;
            }

                .side-nav .first-level-block.home-block .menu-icons .options-button {
                    margin-left: 16px;
                    font-size: 14px;
                }

        .side-nav .first-level-block .nav-item {
            margin: 12px 0;
        }

        .side-nav .first-level-block .first-level-item {
            text-transform: uppercase;
            font-weight: 600;
        }

        .side-nav .first-level-block .second-level-item {
            color: var(--muted-text-color);
        }

            .side-nav .first-level-block .second-level-item:hover {
                color: var(--link-color);
            }

.nav-menu .popup {
    background-color: var(--separator-color);
    top: 81px;
}

    .nav-menu .popup a {
        color: var(--text-color);
    }

    /*.nav-menu .popup.language-options {
        right: 231.5px;
    }*/

    .nav-menu .popup.theme-options {
        /*right: 169.5px;*/
        padding: 6px;
    }

.nav-menu .theme-option.active {
    border: 3px solid var(--separator-color-distinct);
}

.side-nav .welcome-message {
    color: var(--text-color);
}

.side-nav .options-button {
    color: var(--muted-text-color);
}

.side-nav .popup {
    background-color: var(--separator-color);
    top: 37px;
    background-color: var(--panel-color);
}

    .side-nav .popup a {
        color: var(--text-color);
    }

    .side-nav .popup.language-options {
        right: 52px;
    }

    .side-nav .popup.theme-options {
        right: 0;
        padding: 6px;
    }

.side-nav .theme-option.active {
    border: 3px solid var(--link-color);
}

.nav-menu .theme-option.active {
    border: 3px solid var(--link-color);
}

.arrow-up {
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 20px solid var(--separator-color);
    position: absolute;
    left: 26px;
    top: -21px;
}
/*NAVIGATION*/

.photo {
    position: relative;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

    .photo img {
        object-fit: cover;
        object-position: center;
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: top;
        object-position: top;
    }

.section-tag {
    color: white;
    background: linear-gradient(to right, var(--default-color) 0%, var(--secondary-color) 100%);
}

.home-container .home-content {
    margin-top: 24px;
}

    .home-container .home-content header {
        border-bottom: 1px solid var(--separator-color-distinct);
        margin: 80px 0 40px 0;
    }

        .home-container .home-content header h1 {
            margin: 0;
            position: relative;
            display: inline-block;
            font-family: 'Julius Sans One', sans-serif !important;
            font-size: 36px;
        }

            .home-container .home-content header h1:after {
                background-color: var(--secondary-color);
                bottom: -1px;
                content: '';
                display: inline-block;
                height: 1px;
                left: 0;
                position: absolute;
                width: 101%;
            }

    .home-container .home-content .home-content-block {
        border-top: 1px solid var(--separator-color);
        padding-top: 20px;
    }

/*HOME ROTATOR*/
.home-rotator .photo {
    height: 749.59px;
    width: 100%;
    /*border-bottom: 10px solid var(--default-color);*/
}

.home-rotator .photo-text {
    width: 40%;
    color: white;
    bottom: 10px;
}

    .home-rotator .photo-text .title {
        /*text-shadow: rgb(51, 51, 51) 1px 1px 1px;*/
        font-weight: 600;
        line-height: 64px;
    }
/*HOME ROTATOR*/

/*FEATURE MODULES*/
.feature-modules .feature .photo {
    width: 100%;
    height: 263.72px;
    border-left: 1px solid var(--background-color);
    border-bottom: 1px solid var(--background-color);
}

    .feature-modules .feature .photo:before {
        content: "";
        position: absolute;
        display: block;
        height: 100%;
        width: 100%;
    }

    .feature-modules .feature .photo:hover:before {
        background: linear-gradient(to right, rgba(161, 27, 27, .6) 0%,rgba(209, 35, 35, .6) 100%);
    }

.feature-modules .feature .photo-text {
    color: white;
}
/*FEATURE MODULES*/

/*LATEST NEWS*/
.latest-news > div {
    padding: 0;
}

.latest-news .photo {
    height: 287.44px;
    background-color: var(--panel-color);
}

.latest-news .more-in-headlines-links .more-in-latest-news {
    text-transform: uppercase;
    padding: 10px 5px;
    background-color: var(--panel-color);
    letter-spacing: 3px;
    color: var(--text-color);
}

.latest-news .more-in-headlines-links .more-in-headlines-link {
    border-bottom: 1px solid var(--separator-color);
    padding: 6px 0;
    line-height: normal;
}
/*LATEST NEWS*/


/*LATEST PRESS RELEASES*/
.latest-press-releases {
    display: flex;
    flex-direction: row;
    width: 100%;
    padding: 0;
}

    .latest-press-releases .container {
        display: flex;
    }

        .latest-press-releases .container .press-release {
            width: 100%;
            background-color: var(--panel-color);
            position: relative;
            border-top: 5px solid;
            border-image-source: linear-gradient(to right, var(--default-color), var(--secondary-color));
            border-image-slice: 1;
            box-sizing: border-box
        }

        .latest-press-releases .container:last-of-type .press-release {
            border: none;
        }

        .latest-press-releases .container .photo {
            height: 240px;
        }

        .latest-press-releases .container .press-release .description {
            padding-bottom: 32px;
        }

        .latest-press-releases .container .press-release .release-date {
            position: absolute;
            bottom: 8px;
            font-size: 14px;
            color: #999;
        }

        .latest-press-releases .container .view-more {
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

            .latest-press-releases .container .view-more .text {
                font-size: 32px;
                padding: 8px;
            }

                .latest-press-releases .container .view-more .text span {
                    text-transform: uppercase;
                    font-size: 26px;
                }

            .latest-press-releases .container .view-more i {
                font-size: 64px
            }
/*LATEST PRESS RELEASES
            
                
/*BIOGRAPHIES*/
.bios {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
}

    .bios .bio-panel {
        display: flex;
    }

        .bios .bio-panel.top {
            width: 50%;
            margin-bottom: 48px;
            justify-content: flex-start;
        }

            .bios .bio-panel.top:first-child {
                justify-content: flex-end;
            }

        .bios .bio-panel.bottom {
            width: 33.333333333%;
            justify-content: center;
        }

    .bios .bio {
        display: flex;
        width: 533.33px;
    }

        .bios .bio:hover {
            background-color: var(--panel-color);
        }

    .bios a:hover {
        color: unset;
    }

    .bios .bio .photo {
        width: 200px;
        height: 200px;
        min-width: 200px;
        min-height: 200px;
        border-radius: 100px;
        background-size: 200px !important;
        background-position: top !important;
    }

    .bios .bio .text {
        margin-left: 16px;
        width: 333.33px;
    }

        .bios .bio .text hr {
            width: 80px;
            border-image: linear-gradient(to right, var(--default-color) 0%,var(--secondary-color) 100%) !important;
            border-image-slice: 1 !important;
            border-width: 3px !important;
        }

        .bios .bio .text .full-name {
            letter-spacing: 1.5px;
        }

        .bios .bio .text .branch-of-service {
            padding-top: 8px;
            font-style: italic;
            color: var(--muted-text-color);
        }

        .bios .bio .text .position-title {
            font-weight: bold;
        }
/*BIOGRAPHIES*/

/*JUICER*/
.juicer-feed {
    font-size: 13px !important;
}

    .juicer-feed li.feed-item {
        border: 1px solid var(--separator-color) !important;
    }

        .juicer-feed li.feed-item .j-poster {
            background-color: var(--panel-color) !important;
        }

            .juicer-feed li.feed-item .j-poster h3 {
                color: var(--text-color) !important;
            }

        .juicer-feed li.feed-item .j-text {
            background-color: var(--panel-color) !important;
        }

            .juicer-feed li.feed-item .j-text .j-message {
                color: var(--text-color) !important;
            }

                .juicer-feed li.feed-item .j-text .j-message a {
                    color: var(--muted-text-color) !important;
                }

                    .juicer-feed li.feed-item .j-text .j-message a:hover {
                        color: var(--secondary-color) !important;
                    }

    .juicer-feed h1.referral {
        display: none !important;
    }

    .juicer-feed .j-paginate, .juicer-button {
        border-image: linear-gradient(to right, var(--default-color) 0%, var(--secondary-color) 100%) !important;
        border-image-slice: 1 !important;
        border-width: 2px !important;
        text-transform: uppercase;
        background: var(--gradient-button-background-color) !important;
        color: var(--gradient-button-color) !important;
        transition: none !important;
    }

        .juicer-feed .j-paginate:hover, .juicer-button:hover {
            background: var(--gradient-button-background-color-hover) !important;
            color: var(--gradient-button-color-hover) !important;
        }

    .juicer-feed .j-loading {
        border: 4px solid var(--secondary-color);
    }

        .juicer-feed .j-loading:before {
            background-color: var(--secondary-color) !important;
        }

    .juicer-feed .j-meta a:hover {
        color: var(--secondary-color) !important;
    }
/*JUICER*/

/*LATEST VIDEOS*/
.video-thumbnails .photo {
    width: 100%;
    cursor: pointer;
}

    .video-thumbnails .photo.primary {
        height: 675px;
    }

    .video-thumbnails .photo.secondary {
        height: 337.5px;
    }

    .video-thumbnails .photo .play {
        background-color: transparent;
    }

        .video-thumbnails .photo .play:before {
            content: "\f04b";
            color: white;
            font-family: 'Font Awesome 5 Free';
            opacity: .5;
            font-style: normal;
            font-weight: 900;
        }

    .video-thumbnails .photo.primary .play:before {
        font-size: 80px;
    }

    .video-thumbnails .photo.secondary .play:before {
        font-size: 40px;
    }

    .video-thumbnails .photo .white-border {
        width: 33%;
        height: 33%;
        border: 1px solid white;
    }

.see-more {

}

    .see-more a {
        border: 2px solid !important;
        font-size: 12px !important;
        font-weight: bold;
        letter-spacing: 0.5px;
        text-align: center;
        padding: 12px 0 10px !important;
        cursor: pointer;
        background-color: transparent;
        width: 150px;
        display: block;
        text-transform: uppercase;
        margin: 50px auto;
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    }
/*LATEST VIDEOS*/

/*MODAL*/
/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 80px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.95); /* Black w/ opacity */
}


/* Modal Content (Map) */
.map-modal {
    padding-top: 0;
}

    .map-modal .modal-content {
        margin: auto;
        display: block;
        width: 100%;
        height: 100vh;
    }

    .map-modal .map-control.country-panels {
        position: absolute;
        z-index: 1000;
        left: 80px;
        top: 15px;
        width: 220px;
    }

        .map-modal .map-control.country-panels .country-group {
            margin-bottom: 12px;
        }

            .map-modal .map-control.country-panels .country-group .countries {
                color: white;
                background-color: rgba(0, 0, 0, 0.5);
                box-shadow: 0 0 15px rgba(255,255,255,0.2);
                display: none;
            }

            .map-modal .map-control.country-panels .country-group .show-countries {
                outline: none;
            }

                .map-modal .map-control.country-panels .country-group .show-countries.central-europe {
                    background-color: rgba(181, 28, 28, 0.75);
                }

                .map-modal .map-control.country-panels .country-group .show-countries.eastern-europe {
                    background-color: rgba(13, 71, 161, 0.75);
                }

                .map-modal .map-control.country-panels .country-group .show-countries.levant {
                    background-color: rgba(255, 236, 61, 0.75);
                }

                .map-modal .map-control.country-panels .country-group .show-countries.northern-europe {
                    background-color: rgba(0, 99, 102, 0.75);
                }

                .map-modal .map-control.country-panels .country-group .show-countries.southeastern-europe {
                    background-color: rgba(73, 20, 138, 0.75);
                }

                .map-modal .map-control.country-panels .country-group .show-countries.southern-europe {
                    background-color: rgba(28, 95, 32, 0.75);
                }

                .map-modal .map-control.country-panels .country-group .show-countries.southwestern-asia {
                    background-color: rgba(230, 80, 0, 0.75);
                }

                .map-modal .map-control.country-panels .country-group .show-countries.southwestern-europe {
                    background-color: rgba(136, 14, 79, 0.75);
                }

                .map-modal .map-control.country-panels .country-group .show-countries.western-europe {
                    background-color: rgba(26, 34, 127, 0.75);
                }

                .map-modal .map-control.country-panels .country-group .show-countries.alliance {
                    background-color: rgba(255, 255, 255, 0.75);
                }

                .map-modal .map-control.country-panels .country-group .show-countries.central-europe:hover {
                    background-color: rgba(181, 28, 28, 0.95);
                }

                .map-modal .map-control.country-panels .country-group .show-countries.eastern-europe:hover {
                    background-color: rgba(13, 71, 161, 0.95);
                }

                .map-modal .map-control.country-panels .country-group .show-countries.levant:hover {
                    background-color: rgba(255, 236, 61, 0.95);
                }

                .map-modal .map-control.country-panels .country-group .show-countries.northern-europe:hover {
                    background-color: rgba(0, 99, 102, 0.95);
                }

                .map-modal .map-control.country-panels .country-group .show-countries.southeastern-europe:hover {
                    background-color: rgba(73, 20, 138, 0.95);
                }

                .map-modal .map-control.country-panels .country-group .show-countries.southern-europe:hover {
                    background-color: rgba(28, 95, 32, 0.95);
                }

                .map-modal .map-control.country-panels .country-group .show-countries.southwestern-asia:hover {
                    background-color: rgba(230, 80, 0, 0.95);
                }

                .map-modal .map-control.country-panels .country-group .show-countries.southwestern-europe:hover {
                    background-color: rgba(136, 14, 79, 0.95);
                }

                .map-modal .map-control.country-panels .country-group .show-countries.western-europe:hover {
                    background-color: rgba(26, 34, 127, 0.95);
                }

                .map-modal .map-control.country-panels .country-group .show-countries.alliance {
                    background-color: rgba(255, 255, 255, 0.95);
                }

    .map-modal .modal-content .map-control.country-info {
        margin: 56px 15px 0 0;
        color: white;
        width: 440px;
        background-color: white;
        padding: 20px;
        opacity: .9;
        color: black;
        border-radius: 3px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
    }

        .map-modal .modal-content .map-control.country-info .fact-box {
            display: flex;
            flex-direction: row;
            align-items: flex-start;
            margin-bottom: 12px;
        }

            .map-modal .modal-content .map-control.country-info .fact-box ul li {
                border: none;
                padding: 4px 8px;
            }

        .map-modal .modal-content .map-control.country-info h4 {
            margin: 0 0 12px;
        }

        .map-modal .modal-content .map-control.country-info .body {
            width: 100%;
            max-height: 420px;
            margin-top: 24px;
        }

            .map-modal .modal-content .map-control.country-info .body p {
                margin-bottom: 0;
            }

    .map-modal .modal-content .legend {
        line-height: 18px;
        color: #555;
    }

        .map-modal .modal-content .legend i {
            width: 18px;
            height: 18px;
            float: left;
            margin-right: 8px;
            opacity: 0.7;
        }

/* Modal Content (Video) */
.video-modal .modal-content {
    margin: auto;
    display: block;
    max-width: 60%;
}

    .video-modal .modal-content .video-wrapper {
        position: relative;
        padding-bottom: 56.25%; /* 16:9 */
        padding-top: 25px;
        height: 0;
    }

        .video-modal .modal-content .video-wrapper .embedded-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

@-webkit-keyframes zoom {
    from {
        -webkit-transform: scale(0)
    }

    to {
        -webkit-transform: scale(1)
    }
}

@keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

/* Modal Content (Image Gallery) */
.gallery-modal .modal-content {
    margin: auto;
    display: block;
    width: 800px;
}

    .gallery-modal .modal-content .image {
        padding: 16px 0;
        margin-bottom: 80px;
    }

        .gallery-modal .modal-content .image .background {
            background-color: black;
            border: 1px solid #ddd;
            margin-bottom: 16px;
        }

        .gallery-modal .modal-content .image .photo {
            height: unset !important;
        }

        .gallery-modal .modal-content .image .photo.portrait {
            width: 60%;
            margin: 0 auto;
        }

        .gallery-modal .modal-content .image .photo img {
            border: 1px solid #474747;
        }

        .gallery-modal .modal-content .image .title {
            font-size: 32px !important;
            color: white !important;
            margin-bottom: 16px;
        }

        .gallery-modal .modal-content .image .caption {
            margin-bottom: 16px;
        }

            .gallery-modal .modal-content .image .caption .description {
                font-size: 16px !important;
                color: #bbb !important;
            }

    .gallery-modal .modal-content .slick-prev {
        left: -37px;
        top: 40%;
    }

        .gallery-modal .modal-content .slick-prev:before {
            content: "\f104";
            font-family: 'Font Awesome 5 Free';
            font-size: 40px;
            font-weight: 600;
        }

    .gallery-modal .modal-content .slick-next {
        right: -37px;
        top: 40%;
    }

        .gallery-modal .modal-content .slick-next:before {
            content: "\f105";
            font-family: 'Font Awesome 5 Free';
            font-size: 40px;
            font-weight: 600;
        }

/* The Close Button */
.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

    .close:hover,
    .close:focus {
        color: #bbb;
        text-decoration: none;
        cursor: pointer;
    }

.map-modal .close {
    color: white;
    z-index: 1000;
    top: 5px;
    right: 15px;
    line-height: 40px;
}

    .map-modal .close:hover,
    .map-modal .close:focus {
        color: var(--separator-color);
    }

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px) {
    .modal-content {
        width: 100%;
    }
}
/*MODAL*/

/*COMPONENTS*/
.components {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
}

    .components .component-panel {
        display: flex;
        width: 33.333333333%;
        justify-content: center;
    }

    .components .component {
        display: flex;
        width: 533.33px;
    }

        .components .component:hover {
            background-color: var(--panel-color);
        }

    .components a:hover {
        color: unset;
    }

    .components .component .photo {
        height: 200px;
        min-width: 200px;
        text-align: center;
    }

        .components .component .photo img {
            width: unset;
        }

    .components .component .text {
        margin-left: 16px;
        width: 333.33px;
    }

        .components .component .text hr {
            width: 80px;
            border-image: linear-gradient(to right, var(--default-color) 0%,var(--secondary-color) 100%) !important;
            border-image-slice: 1 !important;
            border-width: 3px !important;
        }

        .components .component .text .full-name {
            letter-spacing: 1.5px;
        }
/*COMPONENTS*/

/*FOOTER*/
footer {
    background-color: rgba(33, 33, 33, 0.9);
    padding: 40px 0;
    position: relative;
    border-top: 10px solid var(--separator-color-distinct);
    margin: 80px 0 0;
    min-height: 385px;
    font-size: 18px;
}

    footer .footer-content {
        display: flex;
        flex-direction: row;
    }

        footer .footer-content .footer-col {
            border-right: 1px solid #B6B6B6;
            padding: 0 40px;
            min-height: 305px;
        }

            footer .footer-content .footer-col:first-of-type {
                border-left: 1px solid #B6B6B6;
            }

    footer .compass-tilt {
        position: absolute;
        left: 40px;
        bottom: 0;
        z-index: -1;
    }

    footer .contact-us {
        color: white;
    }

        footer .contact-us a {
            margin-top: 20px;
            border: 2px solid white;
            cursor: pointer;
            outline: none;
            background-color: rgba(33,33,33,.66);
            color: #fff;
        }

            footer .contact-us a:hover {
                background-color: rgba(255, 255, 255, 0.05) !important;
                color: white !important;
            }

    footer .header {
        text-transform: uppercase;
        color: white;
        font-size: 20px;
        padding-bottom: 20px;
    }

    footer .links ul {
        padding-left: 0;
        margin-top: -10px;
    }

    footer .links li {
        list-style-type: none;
        padding-top: 10px;
    }

        footer .links li a {
            color: #B6B6B6;
        }

            footer .links li a.disclaimer {
                cursor: pointer;
            }

    footer .follow-us {
    }

        footer .follow-us .block {
        }

            footer .follow-us .block span {
                background-color: #333;
                width: 68px;
                height: 68px;
                text-align: center;
                font-size: 40px;
                border-radius: 34px;
                padding-top: 14px;
                color: #fff;
            }
/*FOOTER*/

/*IMAGES*/
.attached-images {
    margin-bottom: 32px;
}

    .attached-images .slide .background {
        background-color: black;
    }

    .attached-images .slider-nav .background .photo {
        width: 100%;
        cursor: pointer;
    }

    .attached-images .slide .background .photo {
        height: 480px;
    }

        .attached-images .slide .background .photo.portrait {
            width: 40%;
            margin: 0 auto;
        }

    .attached-images .slide .photos-count {
        font-size: 18px;
        padding: 5px 0 10px 0;
    }

    .attached-images .slide .caption .byline {
        font-size: 13px;
        color: var(--muted-text-color);
        margin-bottom: 10px;
    }

        .attached-images .slide .caption .byline span {
            text-transform: uppercase;
        }

    .attached-images .slide .caption .description {
        font-size: 13px;
        padding: 0;
        font-style: normal;
        display: block;
        color: var(--text-color);
        line-height: 20px;
    }

    .attached-images .slider-nav {
        border-top: 2px solid var(--separator-color-distinct);
        padding-top: 20px;
        margin-top: 20px;
        width: 100%;
    }

        .attached-images .slider-nav .photo {
            cursor: pointer;
            width: 120px !important;
            height: 80px !important;
            margin-right: 32px;
        }

        .attached-images .slider-nav .slick-current.slick-active .photo {
            border: 3px solid;
            border-image: linear-gradient(to right, var(--default-color) 0%,var(--secondary-color) 100%) !important;
            border-image-slice: 1 !important;
            border-width: 3px !important;
        }

    .attached-images .slick-slider .slick-track {
        margin: 0;
    }

    .attached-images .slick-slider .slick-list {
        height: 80px;
    }
/*IMAGES*/

/*ATTRIBUTION*/
.media-release-content .title-desc .title {
    font-size: 48px;
}

.media-release-content .title-desc .description {
    font-size: 24px;
    color: var(--muted-text-color);
}

.media-release-content .attribution {
    margin: 20px 0;
    border-top: 1px solid var(--separator-color);
    border-bottom: 1px solid var(--separator-color);
    padding: 20px 0;
}

    .media-release-content .attribution span.indent {
        margin-left: 24px;
    }

    .media-release-content .attribution strong {
        text-transform: uppercase;
    }
/*ATTRIBUTION*/

/*SOCIAL SHARING*/
.social {
    float: right;
}

    .social .addthis_sharing_toolbox a {
        background-color: var(--background-color) !important;
    }

        .social .addthis_sharing_toolbox a svg {
            fill: var(--text-color) !important;
        }
/*SOCIAL SHARING*/

/*BREADCRUMBS*/
.page-content .breadcrumbs .page-title {
    color: var(--link-color);
}
/*BREADCRUMBS*/

/*RELATED*/
.related {
    list-style: none;
    padding: 0;
    margin-left: 80px;
    text-align: left;
}

    .related .header {
        font-size: 13px;
        text-transform: uppercase;
        padding: 10px 5px;
        background-color: var(--panel-color);
    }

    .related li {
        padding: 15px 5px;
        border-bottom: 1px solid var(--separator-color);
        font-size: 12px;
    }
/*RELATED*/

/*CONTENT*/
.page-content {
    margin-bottom: 48px;
}

    /*.page-content .download-image {
        margin-top: 24px;
        width: 100%;
        line-height: 32px;
    }*/

    .page-content .related.child-page {
        margin-bottom: 24px;
    }

    .page-content .description, .media-release-content .description {
        color: var(--muted-text-color);
    }

    .page-content .body, .media-release-content .body {
        font-size: 16px;
        line-height: 32px;
    }

        .page-content .body p {
            margin-top: 0;
        }

    .page-content .media-release-content .body {
        margin-top: 40px;
    }

    .page-content .main {
        margin-top: 48px;
        border-top: 1px solid var(--separator-color-distinct);
        padding-top: 24px;
    }

.media-release-content .recommended {
    align-self: center;
}

.media-release-content .recommended {
    display: flex;
    flex-direction: column;
    margin-left: 80px;
}

    .media-release-content .recommended .header {
        font-size: 13px;
        text-transform: uppercase;
        border-top: 1px solid var(--separator-color-distinct);
        padding: 5px 0 30px 0;
        font-weight: bold;
    }

    .media-release-content .recommended .content-link {
        padding: 10px 0;
        border-bottom: 1px solid var(--separator-color);
        display: flex;
        flex-direction: row;
        align-items: center;
    }


        .media-release-content .recommended .content-link .photo {
            width: 120px;
            height: 80px;
        }

        .media-release-content .recommended .content-link .title {
            margin-left: 12px;
        }

.media-release-content .siblings-container {
    margin-top: 40px;
}

.media-release-content .siblings {
    border-top: 1px solid var(--separator-color-distinct);
    padding: 10px 0 40px 0;
    margin: 40px 0;
    display: flex;
}

    .media-release-content .siblings .header {
        font-size: 26px;
    }

        .media-release-content .siblings .header a {
            text-transform: uppercase;
            font-size: 20px;
            color: var(--secondary-color);
        }

    .media-release-content .siblings .link {
        background-color: var(--panel-color);
        position: relative;
    }

        .media-release-content .siblings .link .caption {
            padding: 8px;
        }

        .media-release-content .siblings .link.with-photo {
            border-top: 3px solid var(--secondary-color);
            flex-basis: 100%;
            clear: both;
            -webkit-box-flex: 1;
            -webkit-flex: 1 1 auto;
            -ms-flex: 1 1 auto;
            flex: 1 1 auto;
            min-height: 100%;
        }

            .media-release-content .siblings .link.with-photo .photo {
                height: 200px;
            }

            /*.media-release-content .siblings .link.with-photo .caption {
                margin-bottom: 30px;
            }*/

            .media-release-content .siblings .link.with-photo .title {
                font-weight: var(--font-weight-bold);
                font-size: 17px;
                padding-bottom: 24px;
            }

        .media-release-content .siblings .link small {
            color: #999;
        }

        .media-release-content .siblings .link.with-photo .author {
            color: #085394;
            font-size: 15px;
        }

    .media-release-content .siblings .text-only-links {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        align-content: stretch;
    }

    .media-release-content .siblings .link.text-only {
        flex-grow: 1;
        margin-bottom: 5px;
    }

        .media-release-content .siblings .link.text-only:last-child {
            margin-bottom: 0;
        }

    .media-release-content .siblings a:last-child .link.text-only {
        margin-bottom: 0;
    }

    .media-release-content .siblings a:first-child .link.text-only {
        border-top: 3px solid #0c7cdf;
    }

    .media-release-content .siblings .link.text-only .title {
        font-weight: var(--font-weight-bold);
        font-size: 15px;
        margin-bottom: 2px;
    }

    .media-release-content .siblings .link.text-only .author {
        color: #085394;
        font-size: 13px;
        margin-bottom: 30px;
    }

    .media-release-content .siblings .link .release-date {
        position: absolute;
        bottom: 2px;
        font-size: 11px;
        color: #999;
    }
/*CONTENT*/

/*IMAGE*/
.media-release-content .image .background {
    background-color: black;
}

    .media-release-content .image .background .photo {
        width: 100%;
    }

        .media-release-content .image .background .photo.portrait {
            width: 40%;
            margin: 0 auto;
        }

/*IMAGE*/

/*Bright red: var(--secondary-color), Default red: var(--default-color)*/
/*TAGS*/
.tags {
    margin: 16px 0;
}

    .tags .tag {
        margin: 0 6px 12px 0;
        background-color: var(--panel-color);
        color: var(--text-color) !important;
    }

        .tags .tag:hover {
            background-image: linear-gradient(to right, var(--default-color) 0%, var(--secondary-color) 100%);
            color: white !important;
        }
/*TAGS*/

/*FORMS*/
.form-content header {
    background-color: var(--panel-color);
    color: var(--text-color);
    border-bottom: none !important;
}

.form-content .aside {
    border: 1px solid var(--separator-color);
}

    .form-content .aside .expand-header {
        cursor: pointer;
    }

.form-content label {
    font-weight: var(--font-weight-bold);
}

.form-content .aside address {
    margin-bottom: 12px;
}

.form-content .form-border {
    border: 1px solid var(--separator-color-distinct);
}

.form-content input, select, textarea {
    background-color: var(--panel-color);
    color: var(--text-color);
}

.form-content label {
    font-weight: var(--font-weight-bold);
}

.form-content fieldset legend {
    border-bottom: 1px solid var(--separator-color);
    color: var(--muted-text-color);
}
/*FORMS*/

/*SEARCH RESULTS*/
.search-results .info {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

    .search-results .info .count {
        width: 50%;
    }

    .search-results .info .filter-form {
        width: 50%;
    }

        .search-results .info .filter-form span {
            display: flex;
            flex-direction: row;
            align-items: center;
            position: relative;
            justify-content: center;
        }

        .search-results .info .filter-form .filter-input {
            width: 220px;
            border: 1px solid var(--separator-color-distinct) !important;
            border-top-left-radius: 3px;
            border-bottom-left-radius: 3px;
            padding: 6px;
            background-color: var(--background-color);
            color: var(--text-color);
        }

        .search-results .info .filter-form .filter-results {
            width: 36px;
            height: 36px;
            background-color: #222;
            background-image: linear-gradient(to right, #222 0%, #808080 100%);
            border: none;
            color: white;
            font-size: 24px;
            line-height: 24px;
            border-radius: 3px;
            cursor: pointer;
            border-top-left-radius: 0;
            border-bottom-left-radius: 0;
            padding: 0;
        }

.search-results .search-result {
    margin: 0 4px;
    border-bottom: 1px solid var(--separator-color-distinct);
}

    .search-results .search-result:nth-of-type(2) {
        border-top: 1px solid var(--separator-color-distinct);
    }

    .search-results .search-result .content-type {
        letter-spacing: 2px;
        color: var(--muted-text-color);
    }

    .search-results .search-result .created-on span:first-child {
        margin-right: 24px;
    }


    .search-results .search-result .photo {
        height: 220px;
    }

    .search-results .search-result .text {
        padding: 8px 16px;
    }

        .search-results .search-result .text .created-on {
            color: var(--muted-text-color);
        }

        .search-results .search-result .text.no-padding {
            padding: 0;
        }

.search-results .pagination-links .active {
    background: linear-gradient(to right, var(--default-color) 0%,var(--secondary-color) 100%) !important;
    color: white;
}

.search-results .feed-panels {
    margin: 0 4px 20px;
}

.search-results .feed-panel-header {
    box-sizing: content-box;
    background-color: var(--panel-color);
    color: var(--text-color);
    display: flex;
    flex-direction: row;
    border: 1px solid var(--separator-color);
    border-bottom: 0;
    margin-top: 16px;
    min-height: 30px;
    text-align: left;
}

    .search-results .feed-panel-header .protocol {
        padding: 2px 16px;
        flex-grow: 1;
        font-size: 20px;
    }

    .search-results .feed-panel-header .copy-feed-url {
        padding: 2px 10px;
        background-color: transparent;
        border: 0 solid var(--separator-color-distinct);
        border-left-width: 1px;
        color: var(--muted-text-color);
        cursor: pointer;
        display: flex;
        align-items: center;
        line-height: normal;
    }

.search-results .feed-panel {
    font-size: .875rem;
    overflow: auto;
    border: 1px solid var(--separator-color);
    background-color: var(--background-color);
    font-smooth: auto;
    padding: 1rem;
    margin: 1rem 0 0;
    white-space: pre;
    word-spacing: normal;
    word-break: normal;
    word-wrap: normal;
    -webkit-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
    -webkit-overflow-scrolling: touch;
    text-align: left;
    margin-top: 0;
    line-height: 0;
}

    .search-results .feed-panel .text {
        position: relative;
        border: 0;
        padding: 0;
        display: block;
        line-height: 19px;
    }

.search-results .image-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
}

    .search-results .image-grid .card {
        background: var(--panel-color);
        position: relative;
        padding: 8px;
        width: 260px;
        height: 320px;
        margin-bottom: 20px;
        border: 1px solid var(--separator-color-distinct);
    }

    .search-results .image-grid a:first-child .card {
        margin-left: 0;
    }

    .search-results .image-grid a:nth-child(4n+4) .card {
        margin-right: 0;
    }

    .search-results .image-grid .card:hover {
        background: linear-gradient(to bottom, var(--panel-color) 60%,var(--background-color) 100%);
        transition: background 200ms ease;
    }

    .search-results .image-grid .card .photo {
        height: 180px;
        transition: height 200ms ease;
        background-repeat: no-repeat !important;
        background-size: cover !important;
        background-position: top !important
    }

    .search-results .image-grid .card:hover .photo {
        height: 140px;
        transition: height 200ms ease;
    }

    .search-results .image-grid .card .photo:before {
        content: "";
        position: absolute;
        display: block;
        height: 100%;
        width: 100%;
    }

    .search-results .image-grid .card:hover .photo:before {
        background: transparent;
    }

    .search-results .image-grid .card .title {
        margin-top: 8px;
        letter-spacing: 2px;
        font-size: 14px;
        max-height: 100px;
        overflow: hidden;
        font-weight: var(--font-weight-bold);
    }

    .search-results .image-grid .card:hover .title {
        margin-top: 8px;
        color: var(--muted-text-color);
    }

    .search-results .image-grid .card .view-gallery {
        display: none;
        font-size: 12px;
        letter-spacing: 3px;
        position: absolute;
        bottom: 8px;
        text-transform: uppercase;
        font-family: "Josefin Sans", sans-serif;
        color: var(--link-color);
        font-weight: var(--font-weight-bold);
    }

    .search-results .image-grid .card:hover .view-gallery {
        display: block;
    }

/*SEARCH RESULTS*/
/*NEWS AND SECTION PAGES*/
.news-page {
    background: linear-gradient(to bottom, var(--background-fade-color-start) 0%, var(--background-color) 80%);
    margin-bottom: -80px;
    position: relative;
}

    .news-page .header-background {
        background-color: #1a1a1a;
        height: 400px;
        clip-path: polygon(0 0%, 100% 0, 100% 100%, 0 80%);
        position: relative;
    }

        .news-page .header-background header {
            color: white;
            position: absolute;
            top: calc(50% - 80px);
            left: 50%;
            transform: translate(-50%, -50%);
        }

            .news-page .header-background header h1 {
                font-size: 4rem;
                font-weight: 500;
                line-height: 1.2em;
                text-shadow: 0 0 10px rgba(0,0,0,0.3);
                font-family: 'Julius Sans One', sans-serif;
                margin: 0;
            }

.page-wrap {
    background-color: var(--background-color);
    padding: 48px;
    min-height: 60vh;
    position: relative;
    top: -160px;
}

    .page-wrap .news-items .content-link .content-type {
        color: var(--link-color);
        font-size: 18px;
    }

    .page-wrap .news-items .content-link .title {
        font-size: 1.5rem;
        line-height: 1.2em;
        color: var(--text-color);
    }

    .page-wrap .menu-bar {
        margin-bottom: 48px;
        display: flex;
        border-radius: 4px;
    }

        .page-wrap .menu-bar .menu-item {
            text-transform: uppercase;
            font-size: 16px;
            letter-spacing: 2px;
            font-weight: bold;
            padding: 15px 10px;
            position: relative;
            flex-grow: 2;
            border: none;
            color: var(--muted-text-color);
            transition: all 0.25s;
            background-color: var(--panel-color);
        }

            .page-wrap .menu-bar .menu-item:first-of-type {
                border-top-left-radius: 4px;
                border-bottom-left-radius: 4px;
            }


            .page-wrap .menu-bar .menu-item:last-of-type {
                border-top-right-radius: 4px;
                border-bottom-right-radius: 4px;
            }

            .page-wrap .menu-bar .menu-item:hover {
                cursor: pointer;
            }

            .page-wrap .menu-bar .menu-item:not(.active):hover {
                background-color: var(--panel-color-highlight);
                color: var(--text-color-hover);
                z-index: 100;
                transition: all 0.5s;
            }

            .page-wrap .menu-bar .menu-item.active {
                background: linear-gradient(to bottom, var(--default-color) 0%, var(--secondary-color) 100%);
                color: white;
            }

                .page-wrap .menu-bar .menu-item.active:hover {
                    color: white !important;
                }

                .page-wrap .menu-bar .menu-item.active:after {
                    content: "";
                    z-index: 100;
                    display: block;
                    position: absolute;
                    width: 0;
                    height: 0;
                    border-left: 15px solid transparent;
                    border-right: 15px solid transparent;
                    border-top: 15px solid var(--secondary-color);
                    bottom: -15px;
                    left: calc(50% - 15px);
                }

    .page-wrap .action-bar {
        display: flex;
        justify-content: center;
        margin-top: 48px;
    }

        .page-wrap .action-bar .load-more {
            font-size: 17px;
            font-weight: bold;
            padding: 1em 2.2em;
        }
/*NEWS*/
