:root {
    --primary: #5CC4B8;
    --dark: #4F6466;
    --light: #ffffff;
    --green: #4F6466;
}

.re-header, .re-menu {
    display: none;
}

.re-milestone-group {
    display: none;
}

@media screen and (max-width: 1199px) {

    .re-header {
        display: block;
        padding: 0 20px 0 15px;
        background-color: rgba(255, 255, 255, 0.95);
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 65px;
        z-index: 2000;
        border-bottom: solid 1px #ddd;
    }

    .re-header .row {
        height: 65px;
        position: relative;
    }

    .re-header a {
        color: var(--dark);
        text-decoration: none;
    }

    .menu-open {
        display: inline-block;
        cursor: pointer;
    }

    .menu-close {
        display: none;
        cursor: pointer;
    }

    .re-menu {
        display: block;
        background-color: rgba(255, 255, 255, 0.95);
        width: 100%;
        height: 100%;
        padding-bottom: 200px;
        overflow-x: scroll;
        left: 0;
        top: -100%;
        z-index: 1800;
        position: fixed;
        transition: all 0.3s ease 0s;
        opacity: 0;
    }

    .re-menu.show {
        top: 65px;
        opacity: 1;
    }

    .re-menu ul {
        margin: 0;
        padding: 0;
    }

    .re-menu ul li a {
        margin: 0 !important;
        color: var(--dark);
        text-decoration: none;
        width: 100%;
        display: block;
        padding: 15px;
        border-bottom: solid 1px var(--primary);
    }

    .re-menu ul li.sub-gate a {
        border-bottom: none !important;
    }

    .re-menu ul li.sub-gate ul {
        padding-bottom: 10px;
        border-bottom: solid 1px var(--primary) !important;
    }

    .re-menu ul li.sub-gate ul li a {
        padding: 0 15px 10px 35px;
        font-size: 0.9em;
    }

    .re-menu a {
        color: var(--dark);
        opacity: 1;
        text-decoration: none;
    }

    .re-menu a:hover, .re-menu a.active {
        color: var(--primary);
    }

    body {
        padding-top: 65px;
    }

}

@media screen and (max-width: 1024px) {

}

@media screen and (max-width: 991px) {

}

@media screen and (max-width: 768px) {

}

@media screen and (max-width: 410px) {

}