﻿@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap");
@import url("https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css");

body {
    padding: 0px;
    margin: 0px;
    font-family: 'Roboto';
    /*min-height: calc(100vh + 600px);*/
}

@media (max-width: 1024px) {
    body.mobile-menu-open {
        overflow: hidden;
    }
}

.desktop-menu {
    position: relative;
    width: 100%;
}

@media (max-width: 1024px) {
    .desktop-menu {
        display: none;
    }
}

.desktop-menu .item-toggle-button {
    text-indent: -9999px;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
}

    .desktop-menu .item-toggle-button:after {
        content: "";
        text-indent: 0px;
        font-family: "FontAwesome";
        color: #f8b700;
        -webkit-transition: all 200ms linear;
        -o-transition: all 200ms linear;
        -moz-transition: all 200ms linear;
        transition: all 200ms linear;
    }

    .desktop-menu .item-toggle-button:hover:after {
        color: white;
    }

    .desktop-menu .item-toggle-button.is-open:after {
        -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        transform: rotate(180deg);
        color: white;
    }

.desktop-menu nav {
    background: #211510;
    height: 50px;
    margin: 40px 30px 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
    -webkit-transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1) 0s;
    -o-transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1) 0s;
    -moz-transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1) 0s;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1) 0s;
}

    .desktop-menu nav ul {
        list-style: none;
        padding: 0px;
        margin: 0px;
        height: 100%;
    }

        .desktop-menu nav ul li {
            float: left;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 0px 20px;
            height: 100%;
            position: relative;
        }

            .desktop-menu nav ul li a {
                color: #f8b700;
                font-family: var(--regular), sans-serif;
                font-weight: 500;
                height: 100%;
                text-decoration: none;
                display: flex;
                align-items: center;
                font-size: 16px;
                -webkit-transition: all 200ms linear;
                -o-transition: all 200ms linear;
                -moz-transition: all 200ms linear;
                transition: all 200ms linear;
            }

                .desktop-menu nav ul li a:hover {
                    color: white;
                }

                    .desktop-menu nav ul li a:hover + .item-toggle-button:after {
                        color: white;
                    }

            .desktop-menu nav ul li.is-open > a {
                color: white;
            }

            .desktop-menu nav ul li .secondary-nav {
                position: absolute;
                top: calc(100% + 1px);
                left: 0;
                max-height: 0px;
                opacity: 0;
                overflow: hidden;
                -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1) 0s;
                -o-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1) 0s;
                -moz-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1) 0s;
                transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1) 0s;
                background: #211510;
                min-width: 200px;
            }

                .desktop-menu nav ul li .secondary-nav ul li {
                    float: none;
                    padding: 10px 20px;
                    display: block;
                }

                    .desktop-menu nav ul li .secondary-nav ul li a {
                        font-size: 16px;
                        display: inline-block;
                    }

                .desktop-menu nav ul li .secondary-nav.is-open {
                    max-height: 100vh;
                    opacity: 1;
                    -webkit-transition: max-height 0.7s ease-out, opacity 0.4s cubic-bezier(0.23, 1, 0.32, 1);
                    -o-transition: max-height 0.7s ease-out, opacity 0.4s cubic-bezier(0.23, 1, 0.32, 1);
                    -moz-transition: max-height 0.7s ease-out, opacity 0.4s cubic-bezier(0.23, 1, 0.32, 1);
                    transition: max-height 0.7s ease-out, opacity 0.4s cubic-bezier(0.23, 1, 0.32, 1);
                }

            .desktop-menu nav ul li .tertiary-nav {
                max-height: 0px;
                overflow: hidden;
                -webkit-transition: max-height 0ms linear;
                -o-transition: max-height 0ms linear;
                -moz-transition: max-height 0ms linear;
                transition: max-height 0ms linear;
            }

                .desktop-menu nav ul li .tertiary-nav ul li {
                    float: none;
                    padding: 10px 20px;
                }

                    .desktop-menu nav ul li .tertiary-nav ul li a {
                        font-size: 14px;
                    }

                .desktop-menu nav ul li .tertiary-nav.is-open {
                    max-height: 100%;
                    -webkit-transition: max-height 200ms linear;
                    -o-transition: max-height 200ms linear;
                    -moz-transition: max-height 200ms linear;
                    transition: max-height 200ms linear;
                }

.desktop-menu.is-sticky {
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 2000;
}

    .desktop-menu.is-sticky nav {
        margin: 0px;
    }

@keyframes Sidebar-out {
    from {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        -moz-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }

    to {
        -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        -o-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

@keyframes Sidebar-in {
    from {
        -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        -o-transform: translateX(-100%);
        transform: translateX(-100%);
    }

    to {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        -moz-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }
}

.mobile-menu {
    display: none;
}

@media (max-width: 1024px) {
    .mobile-menu {
        display: block;
    }
}

.mobile-menu .item-toggle-button {
    text-indent: -9999px;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
}

    .mobile-menu .item-toggle-button:after {
        content: "";
        text-indent: 0px;
        font-family: "FontAwesome";
        color: #f8b700;
        -webkit-transition: all 200ms linear;
        -o-transition: all 200ms linear;
        -moz-transition: all 200ms linear;
        transition: all 200ms linear;
    }

    .mobile-menu .item-toggle-button:hover:after {
        color: white;
    }

    .mobile-menu .item-toggle-button.is-open:after {
        -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        transform: rotate(180deg);
        color: white;
    }

.mobile-menu .header_bar {
    height: 50px;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 999999;
}

    .mobile-menu .header_bar .mobile-toggle {
        height: 50px;
        width: 50px;
        cursor: pointer;
    }

.mobile-toggle span {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    width: 1.5rem;
    height: 1.5rem;
    border: 0;
    background: transparent;
    gap: 0.4rem;
    align-content: center;
}

    .mobile-toggle span > div {
        margin-left: 10px;
        margin-right: 10px;
        background: white;
        height: 2px;
        width: 100%;
        transition: all .5s;
        transform-origin: left;
    }



.mobile-menu nav {
    display: block;
    position: fixed;
    top: 50px;
    left: 0;
    bottom: 0;
    width: 100%;
    max-width: 265px;
    overflow-x: hidden;
    animation-name: Sidebar-out;
    animation-duration: 0.2s;
    animation-fill-mode: forwards;
    background: black;
    z-index: 1000004;
}

    .mobile-menu nav ul {
        list-style: none;
        padding: 12px 12px 2px 12px;
        margin: 0px;
        /*height: 100%;*/
        /*border-bottom: 1px solid white;*/
    }

        .mobile-menu nav ul li {
            /*padding: 7px;*/
            position: relative;
        }

            .mobile-menu nav ul li a {
                padding: 7px 0;
                padding: 7px 0;
                color: #FFF;
                font-family: var(--condensed);
                font-size: 20px;
            }

                .mobile-menu nav ul li a:hover {
                    color: white;
                }

                    .mobile-menu nav ul li a:hover + .item-toggle-button:after {
                        color: white;
                    }

            .mobile-menu nav ul li.is-open > a {
                color: white;
            }

            .mobile-menu nav ul li .secondary-nav {
                max-height: 0px;
                overflow: hidden;
                -webkit-transition: max-height 0ms linear;
                -o-transition: max-height 0ms linear;
                -moz-transition: max-height 0ms linear;
                transition: max-height 0ms linear;
            }

                .mobile-menu nav ul li .secondary-nav ul li {
                    float: none;
                    padding: 10px 20px;
                }

                    .mobile-menu nav ul li .secondary-nav ul li a {
                        font-size: 16px;
                    }

                .mobile-menu nav ul li .secondary-nav.is-open {
                    max-height: 100%;
                    -webkit-transition: max-height 200ms linear;
                    -o-transition: max-height 200ms linear;
                    -moz-transition: max-height 200ms linear;
                    transition: max-height 200ms linear;
                }

            .mobile-menu nav ul li .tertiary-nav {
                max-height: 0px;
                overflow: hidden;
                -webkit-transition: max-height 0ms linear;
                -o-transition: max-height 0ms linear;
                -moz-transition: max-height 0ms linear;
                transition: max-height 0ms linear;
            }

                .mobile-menu nav ul li .tertiary-nav ul li {
                    float: none;
                    padding: 10px 20px;
                }

                    .mobile-menu nav ul li .tertiary-nav ul li a {
                        font-size: 14px;
                    }

                .mobile-menu nav ul li .tertiary-nav.is-open {
                    max-height: 100%;
                    -webkit-transition: max-height 200ms linear;
                    -o-transition: max-height 200ms linear;
                    -moz-transition: max-height 200ms linear;
                    transition: max-height 200ms linear;
                }

.mobile-menu:not(.is-animating) nav {
    display: none;
}

.back-menu {
    content: "";
    position: fixed;
    top: 50px;
    left: 0px;
    width: 100vw;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000002;
}

.mobile-menu.is-open:not(.is-animating) nav, .mobile-menu.is-animating:not(.is-open) nav {
    display: block;
    animation-name: Sidebar-in;
    animation-duration: 0.2s;
    animation-fill-mode: forwards;
}

.header-style {
    height: 50px;
    z-index: 500000;

}

#siteFooter .footerContainer a {
    text-decoration: none;
}
