/* Custom CSS */

body .jupiterx-site {
    overflow-x: hidden;
}

body.home .jupiterx-main-content {
    padding: 0;
}

body.home .jupiterx-content {
    margin-top: -16px;
}

body.page-id-742 .jupiterx-main-content {
    padding: 0;
}

body.page-id-742 .jupiterx-content {
    margin-top: -16px;
}

.wr_header {
    
}

    .wr_header > .top {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-end;
        align-items: center;
        /*height: 25px;*/
        background: #063d6d;
        color: #FFF;
        font-size: 14px;
    }
        .wr_header > .top > .left {
            display: flex;
            color: #FFF;
            font-size: 16px;
            flex-direction: row;
            padding: 0 0 0 20px;
        }

        .wr_header > .top > .left > .phone {
            display: block;
            padding: 0 5px 0 50px;
            color: #FFF;
        }

        .wr_header > .top > .right {
            /*height: 100%;*/
            margin: 0 20px;
        }

        .wr_header > .top > .top-search-form {
            display: flex;
            align-items: center;
            margin: 5px 20px;
        }

            .wr_header > .top > .top-search-form input[type="search"] {
                padding: 4px 8px;
                border: 1px solid #FFF;
                background: rgba(255, 255, 255, 0.2);
                color: #FFF;
                font-size: 13px;
                border-radius: 3px 0 0 3px;
                outline: none;
                width: 150px;
                height: 26px;
                box-sizing: border-box;
            }

                .wr_header > .top > .top-search-form input[type="search"]::placeholder {
                    color: rgba(255, 255, 255, 0.7);
                }

                .wr_header > .top > .top-search-form input[type="search"]:focus {
                    background: rgba(255, 255, 255, 0.3);
                }

            .wr_header > .top > .top-search-form button {
                padding: 4px 8px;
                border: 1px solid #FFF;
                border-left: 0;
                background: rgba(255, 255, 255, 0.2);
                color: #FFF;
                cursor: pointer;
                border-radius: 0 3px 3px 0;
                display: flex;
                align-items: center;
                justify-content: center;
                height: 26px;
                box-sizing: border-box;
            }

                .wr_header > .top > .top-search-form button:hover {
                    background: #ffcc40;
                    color: #063d6d;
                }

            .wr_header > .top > .right > div > ul {
                list-style: none;
                display: flex;
                flex-direction: row;
                margin: 0;
                padding: 0;
            }

                .wr_header > .top > .right > div > ul > li > a {
                    display: block;
                    color: #FFF;
                    font-size: 14px;
                    padding: 0 20px;
                    height: 35px;
                    line-height: 35px;
                    background-color: #534741;
                    text-transform: uppercase;
                }

                    .wr_header > .top > .right > div > ul > li > a:hover {
                        color: #534741;
                        background-color: #FFF;
                    }

@media screen and (max-width: 768px)
{
    .wr_header > .top {
        flex-direction: column;
        justify-content: center;
    }

    .wr_header > .top > .left {
        margin: 5px;
        text-align: center;
    }

    .wr_header > .top > .phone {
        margin: 5px;
    }
}
        
.wr_header > .menu > ul {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-evenly;
    align-items: center;
    height: 120px;
    background: #ebebeb;
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 2px solid #063d6d;
    border-bottom: 2px solid #063d6d;
}
    .wr_header > .menu > ul > li {
        position: relative;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-grow: 1;
        border-right: 2px solid #063d6d;
    }

        .wr_header > .menu > ul > li:last-of-type {
            border-right: 0;
        }

        .wr_header > .menu > ul > li > a {
            height: 100%;
            font-weight: 600;
            font-size: 18px;
            color: #063d6d;
            display: flex;
            flex-grow: 1;
            justify-content: center;
            align-items: center;
            text-transform: uppercase;
        }

            .wr_header > .menu > ul > li > a:hover,
            .wr_header > .menu > ul > li:hover > a
            {
                background: #ffcc40;
            }

        .wr_header > .menu > ul > li.logo_container {
            /*flex: 0 0 162px;*/
            flex: 1 1 25%;
        }

        .wr_header > .menu > ul > li > .logo {
            display: block;
            flex: 0 0 180px;
            height: auto;
        }
        
            .wr_header > .menu > ul > li > .logo:hover,
            .wr_header > .menu > ul > li:hover > .logo {
                background: none;
            }

            .wr_header > .menu > ul > li > .logo > img {
                object-fit: contain;
                position: relative;
                top: 10px;
            }

.wr_header > .menu > ul > li > ul {
    position: absolute;
    top: 116px;
    left: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    display: none;
}

.wr_header > .menu > ul > li:hover > ul {
    display: block;
}

.wr_header > .menu > ul > li > ul > li > a {
    display: block;
    color: #063d6d;
    /*background: #4c4443;*/
    background: #ebebeb;
    border-bottom: 2px solid #dedddf;
    padding: 5px 10px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3rem;
    text-transform: uppercase;
}

    .wr_header > .menu > ul > li > ul > li > a:hover {
        background: #ffcc40;
    }

    .wr_header > .menu > ul > li > ul > li:last-of-type > a {
        border-bottom: 0;
    }

@media screen and (max-width: 1200px) {
    .wr_header > .top > .right > div > ul > li > a {
        padding: 0 10px;
    }
}

@media screen and (max-width: 1024px) {
    /*.wr_header > .top > .right {
        display: none;
    }*/

    .wr_header > .menu > ul > li > a {
        font-size: 15px;
    }

    .wr_header > .menu > ul > li > ul > li > a {
        font-size: 14px;
    }
}

@media screen and (max-width: 768px) {
    .wr_header > .menu {
        display: none;
    }
}

/*.raven-nav-menu-mobile .raven-nav-menu a {
    text-shadow: 1px 1px 2px #597081;
}

    .raven-nav-menu-mobile .raven-nav-menu a:hover {
        text-shadow: none;
    }*/

.standard-button {
    display: inline-block;
    min-width: 200px;
    font-size: 18px;
    font-weight: 700;
    color: #FFF;
    background: #063d6d;
    padding: 10px 25px;
    text-align: center;
    text-transform: uppercase;
}

    .standard-button:hover {
        background: #000;
        color: #FFF;
    }

    .standard-button.full-width {
        display: block;
    }

    .standard-button.standard-button-center {
        display: block;
        margin: 0 auto;
        width: 225px;
    }

    .standard-button.standard-button-banners {
        margin-top: 15px;
        border: 2px solid #FFF;
        padding: 5px 10px;
    }

        .standard-button.standard-button-banners:hover {
            color: #FFF;
            text-decoration: none;
        }

.raven-post-button {
    display: inline-block;
    min-width: 200px;
    font-size: 18px;
    font-weight: 700;
    color: #FFF;
    background: #063d6d;
    padding: 10px 25px;
    text-align: center;
    text-transform: uppercase;
}

    .raven-post-button:hover {
        background: #000;
        color: #FFF;
    }

    .raven-post-button .raven-post-button-text {
        font-size: 18px;
        font-weight: 700;
        color: #FFF;
    }

        .raven-post-button:hover .raven-post-button-text {
            color: #FFF;
        }

.banners h1 {
    text-shadow: 1px 1px 2px #000;
}

.banners a {
    color: #FFF;
}

    .banners a:hover {
        color: #FFF;
        text-decoration: underline;
    }

.jet-banner img {
    width: 100%;
}

@media screen and (max-width: 1600px) and (min-width: 1401px) {
    .banners .jet-banner__text {
        font-size: 16px;
        line-height: 1.2em;
    }
}

@media screen and (max-width: 1400px) and (min-width: 1025px) {
    .banners h1 {
        font-size: 20px;
    }

    .banners .jet-banner__text {
        font-size: 14px;
        line-height: 1em;
    }

    .standard-button.standard-button-banners {
        margin-top: 15px;
    }
}

@media screen and (max-width: 500px) {
    .banners h1 {
        font-size: 20px;
    }

    .banners .jet-banner__text {
        font-size: 14px;
        line-height: 1em;
    }

    .standard-button.standard-button-banners {
        margin-top: 15px;
    }
}

.copyright {
    font-size: 14px;
    color: #FFF;
    padding: 0 1rem;
}

    .copyright a {
        color: #FFF;
    }

        .copyright a:hover {
            color: #FFF;
            text-decoration: underline;
        }

@media screen and (max-width: 900px) {
    .copyright {
        font-size: 14px;
    }
}

@media screen and (max-width: 600px) {
    .copyright {
        font-size: 12px;
    }
}

/*.wpcf7 input[type=text],
.wpcf7 input[type=tel],
.wpcf7 input[type=email],
.wpcf7 textarea {
    display: block;
    width: 100%;
    background: #ebebeb;
    padding: 10px 20px;
    font-size: 18px;
    border: 1px solid #000;
}

.wpcf7 textarea {
    height: 100px;
}

    .wpcf7 input[type=text]::placeholder,
    .wpcf7 input[type=tel]::placeholder,
    .wpcf7 input[type=email]::placeholder,
    .wpcf7 textarea::placeholder {
        color: #a2a2a2;
        text-transform: uppercase;
    }

.wpcf7 input[type=submit] {
    display: block;
    width: 100%;
    text-align: center;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    font-size: 30px;
    font-weight: 700;
    color: #FFF;
    background: #143059;
    padding: 10px 10px;
    text-transform: uppercase;
    cursor: pointer;
    border: 0;
}

    .wpcf7 input[type=submit]:hover {
        background: #000;
    }*/

@media screen and (min-width: 769px) {
    .jupiterx-main .jupiterx-main-header:not(.jupiterx-main-header-custom) {
        padding-top: 2.5rem;
    }
}

.breadcrumb a {
    color: #FFF;
}

    .breadcrumb a:hover {
        color: #ffcc40;
    }

.wpp-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding: 0;
    list-style: none;
    gap: 20px;
    margin: 1em 0 2em 0;
}

.wpp-list > li {
    display: flex;
    flex-direction: column;
    flex: 0 0 25%;
    border: 1px solid rgba(0,0,0,0.125);
    border-radius: 0.25rem;
    font-size: 1rem;
    margin-bottom: 0 !important;
}

.wpp-thumbnail {
    width: 100%;
}

a.wpp-post-title {
    display: block;
    padding: 20px 15px;
    color: #000;
    flex-grow: 1;
}

a.wpp-post-title:hover {
    color: #000;
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .wpp-list {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 500px) {
    .wpp-list {
        grid-template-columns: 1fr;
    }
}

body.single .jupiterx-content {
    padding-bottom: 60px;
}