.menu.cta li a:hover {
    color: inherit;
}

/**
Stop double clicks from selecting text
 */
.tcw-super-nav {
    user-select: none; /* standard syntax */
    -webkit-user-select: none; /* webkit (safari, chrome) browsers */
    -moz-user-select: none; /* mozilla browsers */
    -khtml-user-select: none; /* webkit (konqueror) browsers */
    -ms-user-select: none; /* IE10+ */
}

.tcw-super-nav .tab {
    cursor: pointer;
}

@media only screen and (min-width: 1025px) {
    .tcw-super-nav {
        display: flex;
    }

    .tcw-super-nav > div {
        display: flex;
        margin-right: auto;
    }

    .tcw-super-nav .mobile-footer {
        display: none;
    }

    .tcw-super-nav > div > * {
        display: none;
    }

    .tcw-super-nav > div > .logo {
        display: block;
        display: flex;
    }

    .tcw-super-nav > div > .logo img {
        height: 40px;
        margin: 10px;
    }

    .tcw-super-nav > nav,
    .tcw-super-nav > nav > ul {
        display: flex;
        margin: 0;
        padding: 0;
        list-style-type: none;
    }

    .tcw-super-nav > div > .logo h6,
    .tcw-super-nav > nav > ul > li > a > h6,
    .tcw-super-nav > nav > ul .tab > a > h6 {
        margin: 0;
        padding: 0;
        line-height: 60px;
        padding: 0 1.2vw;
        white-space: nowrap;
    }

    .tcw-super-nav > div > .logo h6 {
        padding-left: 0;
    }

    .tcw-super-nav > nav > ul .tab > input,
    .tcw-super-nav > nav > ul .tab > label {
        display: none;
    }

    .tcw-super-nav > nav > ul .tab > .tab-content {
        position: absolute;
        width: 85%;
        left: 10%;
        display: none;
        box-shadow: 0px 9999px 0 9999px rgba(30, 61, 74, 0.8);
    }

    .tcw-super-nav > nav > ul .tab > .tab-content.dynamic-width {
        width: auto;
        left: auto;
    }

    /* Hover is controlled by JS click event in script.js */
    .tcw-super-nav > nav > ul li:not(.search) .tab:hover > .tab-content {
        display: block;
    }

    .tcw-super-nav > nav > ul.main.menu li > a > h6:hover,
    .tcw-super-nav > nav > ul.main.menu li > .tab > a > h6:hover {
        box-shadow: inset 0px -4px 0 0px #11884b;
        transition: box-shadow 0.2s;
    }

    .tcw-super-nav > nav > ul.cta.menu li > a > h6 {
        min-width: 10vw;
        text-align: center;
        padding: 0;
    }

    /* hide sticky to bottom buttons on larger screens */
    .sticky-to-bottom .cta.menu {
        display: none;
    }

}

/*******************************
Tablet
***********************/

@media only screen and (max-width: 1200px) {
    .tcw-super-nav > div > .logo h6,
    .tcw-super-nav > nav > ul > li > a > h6,
    .tcw-super-nav > nav > ul .tab > a > h6 {
        font-size: 16px;
    }
}

/*******************************
Mobile
***********************/

@media only screen and (max-width: 1024px) {
    .tcw-super-nav {
        display: flex;
        flex-direction: column;
        height: 100vh;
    }

    .tcw-super-nav > nav {
        max-height: calc(100vh - 60px);
        overflow: scroll;
        display: flex;
        flex-wrap: wrap;
    }

    .tcw-super-nav ul.menu,
    .tcw-super-nav ul.menu > li > a > h6 {
        margin: 0;
        padding: 0;
        list-style-type: none;
    }

    /* LOGO */
    .tcw-super-nav > div {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px;
    }

    .tcw-super-nav > div svg {
        width: 18px;
    }

    .tcw-super-nav > div a {
        margin-left: 14px;
        display: inline-block;
    }

    .tcw-super-nav > div a.logo {
        display: flex;
        align-items: center;
        margin-right: auto;
        margin-left: 0px;
    }

    .tcw-super-nav > div a h6 {
        margin: 0;
        padding: 0;
        white-space: nowrap;
    }

    .tcw-super-nav > div a img {
        height: 40px;
        width: auto;
        margin-right: 10px;
    }

    /* Main Menu */
    .tcw-super-nav .main.menu li {
        border-top: 1px solid #e5e5e5;
    }

    .tcw-super-nav .main.menu li:nth-last-child(2) {
        border-bottom: 1px solid #e5e5e5;
    }

    .tcw-super-nav .main.menu li > a > h6,
    .tcw-super-nav .main.menu li > .tab > a > h6 {
        line-height: 64px;
        padding: 0;
        padding-left: 20px;
        margin: 0;
    }

    .tcw-super-nav .main.menu li > a {
        display: block;
    }

    .tcw-super-nav .main.menu li.search {
        display: none;
    }

    /* Tab */
    .tcw-super-nav .tab {
        display: flex;
        flex-flow: wrap;
        justify-content: space-between;
    }

    .tcw-super-nav .tab input {
        display: none;
    }

    .tcw-super-nav .tab-content {
        max-height: 0;
        transition: max-height 0.35s;
        overflow: hidden;
        width: 100%;
    }

    .tcw-super-nav .tab input:checked ~ .tab-content {
        max-height: 1000vh;
    }

    /* Tab Icon */
    .tcw-super-nav .tab label {
        width: 80px;
        height: 64px;
        padding: 24px 34px;
        border-left: 1px solid #e5e5e5;
    }

    .tcw-super-nav .tab {
        width: 50%;
    }

    .tcw-super-nav .tab label svg {
        display: none;
        width: 16px;
        height: 16px;
    }

    .tcw-super-nav .tab input[type="checkbox"]:checked + label {
        background: #edfef5;
    }

    .tcw-super-nav .tab input[type="checkbox"] + label svg.open {
        display: block;
    }

    .tcw-super-nav .tab input[type="checkbox"]:checked + label svg.open {
        display: none;
    }

    .tcw-super-nav .tab input[type="checkbox"]:checked + label svg.closed {
        display: block;
    }

    /* Mobile MENU */
    .tcw-super-nav .mobile.menu {
        display: flex;
        padding: 0;
        margin: 0;
    }

    /* CTA MENU */
    .tcw-super-nav .cta.menu {
        display: flex;
        order: -1;
        width: 100%;
    }

    .tcw-super-nav .cta.menu > li {
        flex: 1;
        height: 60px;
        align-items: center;
        justify-content: center;
        text-align: center;
        vertical-align: middle;
        line-height: 60px;
        display: flex;
    }

    /* Mobile Footer */
    .tcw-super-nav .mobile-footer.menu {
        width: 100%;
        padding-bottom: 40px;
    }

    .tcw-super-nav .mobile-footer.menu li:not(.embed) {
        width: 100%;
    }

    .tcw-super-nav .mobile-footer.menu li:not(.embed) a {
        display: block;
        width: 100%;
    }

    .tcw-super-nav .mobile-footer.menu li:not(.embed) a h6 {
        font-weight: normal;
        color: #777777;
        padding: 0px 20px;
        padding-top: 20px;
    }

    .tcw-super-nav .mobile-footer.menu li.embed {
        padding: 20px;
    }

    .tcw-super-nav .mobile-footer.menu li.embed .elementor-social-icons-wrapper {
        text-align: left;
    }

    .tcw-super-nav .mobile-footer.menu li.embed .elementor-social-icon {
        font-size: 20px;
    }

    .tcw-super-nav .menu-toggle {
        width: 48px;
        text-align: center;
    }

    .tcw-super-nav .menu-toggle span {
        border-bottom: 2px solid #b2ffd4;
    }

    .tcw-super-nav.closed {
        height: 60px;
    }

    .tcw-super-nav.closed > nav {
        display: none;
    }

    .tcw-super-nav.closed .menu-toggle svg {
        display: none;
    }

    .tcw-super-nav.closed .menu-toggle span {
        display: block;
    }

    .tcw-super-nav .menu-toggle span {
        display: none;
    }

    .sticky-to-bottom.tcw-super-nav {
        height: auto;
    }

    .home .elementor-element .tcw-super-nav .cta.menu {
        /* hide the buttons in the nav dropdown on mobile */
        display: none;
    }

    .sticky-to-bottom .cta.menu {
        /* show the buttons on the bottom of the page */
        display: -ms-flexbox;
        display: flex;
        justify-content: space-between;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding-left: 0;
        margin-bottom: 0;
        list-style: none;

        position: fixed;
        bottom: 0;
        border-style: solid;
        border-width: 1px 0px 0px 0px;
        border-color: #cbcbcb;
        box-shadow: 0 -2px 6px 0px rgba(0, 0, 0, 0.27);
        transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
        z-index: 999;

    }

    .sticky-to-bottom .cta.menu a {
        text-decoration: none;
    }

}
