html body:not(.spec) {
    margin-top: 0px !important;
}

/* Rudimentary CSS for demonstration */

.search_btn {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 70px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 16;
    box-shadow: inset 0px 0px 5px transparent;
    background-color: white;
    transition: all 0.5s ease;
}

.search_btn:focus {
    background-color: lightgray;
}

.search_btn:hover {
    background-color: lightgray;
}

.nav-item h2 {
    font-weight: inherit;
    font-size: inherit;
    font-family: din, arial;
    line-height: inherit;
}

.search_btn svg {
    width: 40px;
    height: 40px;
    color: gray;
    opacity: 0.3;
}

#my_m_nav {
    display: none;
    opacity: 0;
    transition: all 0.5s ease;
}

#my_nav {
    display: grid;
    align-items: center;
    position: relative;
    opacity: 0;
    transition: all 0.5s ease;
    position: sticky;
    top: 0px;
    z-index: 99997;
    background-color: white;
}

#my_nav .logo-container {
    position: absolute;
    width: 200px;
    margin-left: 30px;
    z-index: 16;
}


#my_nav .ham_btn {
    display: none;
}

/* mega menu list */
.nav-menu {
    display: flex;
    justify-content: flex-end;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 15;
    padding-right: 70px;
}

.nav-menu * {
    box-sizing: border-box;
}

/* a top level navigation item in the mega menu */
.nav-item {
    display: inline-block;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item>a {
    position: relative;
    padding-right: 30px !important;
}

.nav-item a:hover {
    color: #f04324 !important;
    text-decoration: underline;
}

.nav-item:not(.section-style-4) > a::after {
    position: absolute;
    right: 15px;
    top: 42%;
    content: " ";
    pointer-events: none;
    transition: all 0.5s ease;
    display: grid;
    justify-content: center;
    align-items: center;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;

    border-top: 8px solid #555;
}

.focus {
    color: #f04324 !important;
}

.nav-item>a[aria-expanded="true"]::after {
    transform: rotate(180deg);
    border-top: 8px solid #f04324;
}

/* first descendant link within a top level navigation item */
.nav-item>a {
    border-right: 1px solid #dedede;
    display: inline-block;
    margin: 0 0 0px 0;
    padding: 0.5em 1em;
    position: relative;
}

/* focus/open states of first descendant link within a top level navigation item */
.nav-item>a:focus,
.nav-item>a.open {
    /*     border: 1px solid #dedede; */
}

/* open state of first descendant link within a top level 
navigation item */
.nav-item>a.open {
    /*     background-color: #fff; */
    /*     border-bottom: none; */
    z-index: 0;
}

/* sub-navigation panel */
.sub-nav {
    background-color: #fff;
    border: 1px solid #dedede;
    display: grid;
    opacity: 0;
    grid-template-columns: repeat(auto-fit, minmax(5px, auto));
    grid-template-rows: auto 1fr;
    pointer-events: none;
    margin-top: -0px;
    padding: 0.5em 1em;
    position: absolute;
    /* top: 3.2em; */
    width: 100%;
    left: 0px;
    padding-top: 20px;
    transition: all 0.5s ease;
    column-gap: 10px;
    visibility: hidden;
}

.nav-item:not(.section-style-3) .sub-nav {
    padding: 30px 60px;
}

/* sub-navigation panel open state */
.sub-nav.open {
    /*     display: block; */
    /* top: 3.7em; */
    display: grid !important;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

.sub-nav .depth-1 {
    grid-row-start: 2;
    grid-template-rows: repeat(auto-fit, minmax(min-content, 1px));
}

.sub-nav>a:nth-child(1) {
    grid-row-start: 1;
    grid-row-end: 2;
    grid-column-start: 1;
    grid-column-end: 2;
}

/* list of items within sub-navigation panel */
.sub-nav ul {
    display: inline-block;
    margin: 0 1em 0 0;
    padding: 0;
    vertical-align: top;
}

/* list item within sub-navigation panel */
.sub-nav li {
    display: block;
    line-height: 2;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

#my_nav a {
    color: #555;
    line-height: 1.8 !important;
}

#my_nav .nav-item>a {
    font-family: din, arial;
    font-size: 1rem;
    font-weight: 600;
    height: 60px;
    display: flex;
    align-items: center;
    max-width: 250px;
}

#my_nav .nav-item .sub-nav>a {
    font-family: din, arial;
    font-size: 22px;
    font-weight: bold;
    margin-left: 10px;
    margin-right: 10px;
}

#my_nav .nav-item:not(.section-style-2) .sub-nav .depth-1>a {
    font-family: din, arial;
    font-size: 1rem;
    font-weight: bold;
    margin-left: 10px;
    margin-right: 10px;
}

#my_nav .nav-item:not(.section-style-2) .sub-nav .depth-1 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
    grid-template-rows: 25px 1fr;
    order: 1;
}

#my_nav .nav-item:not(.section-style-2) .sub-nav .depth-1>a {
    grid-row-start: 1;
    grid-row-end: 2;
}

#my_nav .nav-item:not(.section-style-2) .sub-nav .depth-1 .depth-2 {
    grid-row-start: 2;
    grid-row-end: 3;
    margin-left: 10px;
    margin-right: 10px;
}

/*********************************** Menu Styling Selections **************************************/

#my_nav .nav-item.section-style-2 .sub-nav>a {
    font-family: din, arial;
    font-size: 1rem;
    font-weight: bold;
    margin-left: 10px;
    margin-right: 10px;
}

#my_nav .nav-item.section-style-2 .depth-1 {
    margin-left: 10px;
    margin-right: 10px;
}

#my_nav .nav-item.section-style-2 .sub-nav .depth-1>a:first-child {
    font-family: din, arial;
    font-size: unset;
    font-weight: normal;
}

#my_nav .nav-item.section-style-3 {
    position: relative;
}

#my_nav .nav-item.section-style-3 .sub-nav {
    width: 250px;
    display: flex !important;
    flex-direction: column !important;
}

#my_nav .nav-item.section-style-3 .sub-nav.open {
    width: 250px;
}

#my_nav .nav-item.section-style-3 .sub-nav>a {
    font-weight: normal;
    font-size: 1rem;
}

#my_nav .nav-item.section-style-4 .sub-nav {
    display: none !important;
}

#my_nav .nav-item.section-style-4 > a {
    padding-right: 16px !important;
}

#my_nav .nav-item.column-1-style-2.section-style-2 .sub-nav>div:nth-of-type(1) {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 10px;
}

#my_nav .nav-item.column-2-style-2.section-style-2 .sub-nav>div:nth-of-type(2) {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 10px;
}

#my_nav .nav-item.column-3-style-2.section-style-2 .sub-nav>div:nth-of-type(3) {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 10px;
}

#my_nav .nav-item.column-4-style-2.section-style-2 .sub-nav>div:nth-of-type(4) {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 10px;
}

#my_nav .nav-item.column-5-style-2.section-style-2 .sub-nav>div:nth-of-type(5) {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 10px;
}

#my_nav .nav-item.column-6-style-2.section-style-2 .sub-nav>div:nth-of-type(6) {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 10px;
}

#my_nav .nav-item.column-1-style-1.section-style-2 .sub-nav>div:nth-of-type(1) {
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 10px;
}

#my_nav .nav-item.column-2-style-1.section-style-2 .sub-nav>div:nth-of-type(2) {
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 10px;
}

#my_nav .nav-item.column-3-style-1.section-style-2 .sub-nav>div:nth-of-type(3) {
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 10px;
}

#my_nav .nav-item.column-4-style-1.section-style-2 .sub-nav>div:nth-of-type(4) {
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 10px;
}

#my_nav .nav-item.column-5-style-1.section-style-2 .sub-nav>div:nth-of-type(5) {
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 10px;
}

#my_nav .nav-item.column-6-style-1.section-style-2 .sub-nav>div:nth-of-type(6) {
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 10px;
}

#my_nav .nav-item.column-1-style-3.section-style-2 .sub-nav>div:nth-of-type(1) {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 10px;
}

#my_nav .nav-item.column-2-style-3.section-style-2 .sub-nav>div:nth-of-type(2) {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 10px;
}

#my_nav .nav-item.column-3-style-3.section-style-2 .sub-nav>div:nth-of-type(3) {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 10px;
}

#my_nav .nav-item.column-4-style-3.section-style-2 .sub-nav>div:nth-of-type(4) {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 10px;
}

#my_nav .nav-item.column-5-style-3.section-style-2 .sub-nav>div:nth-of-type(5) {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 10px;
}

#my_nav .nav-item.column-6-style-3.section-style-2 .sub-nav>div:nth-of-type(6) {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 10px;
}

.c-style-1 {
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 10px;
}

.c-style-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 10px;
}

.c-style-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 10px;
}

.section-style-2 .filler {
    display: none !important;
}

.section-style-3 .filler {
    display: none !important;
}

.section-style-4 .filler {
    display: none !important;
}

@media screen and (min-width: 1269px) {
    .section-style-2 .filler {
        display: none !important;
    }
    
    .section-style-3 .filler {
        display: none !important;
    }
    
    .section-style-4 .filler {
        display: none !important;
    }
}

/*********************************** Menu Styling Selections End **************************************/

/*********************************** Custom HTML **************************************/

#my_nav .nav-item .sub-nav .mm-custom.alignment-0 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(50px, auto));
    align-content: center;
    column-gap: 10px;
    margin-right: 20px;
    order: -1;
    grid-row: 1/-1;
}

#my_nav .nav-item .sub-nav .mm-custom.alignment-1 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(50px, auto));
    align-content: center;
    column-gap: 10px;
    margin-right: 20px;
    order: 200;
    grid-row: 1/-1;
}

#my_nav .nav-item .sub-nav .mm-custom.alignment-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(50px, auto));
    align-content: center;
    column-gap: 10px;
    margin-right: 20px;
    order: 200;
    grid-row: 3/-1;
}

#my_nav .nav-item .sub-nav .mm-custom.alignment-0 p {
    margin: 0px;
}

#my_nav .nav-item .sub-nav .menu-text {
    font-size: 1em;
}

/*********************************** Custom HTML End **************************************/

/*********************************** Custom Styling End **************************************/

/* #my_nav .nav-item:nth-child(2) .sub-nav {
    grid-template-columns: 1fr 4fr !important;
} */

/*********************************** Custom Styling End **************************************/

@media screen and (max-width: 1270px) {
    .click-block {
        pointer-events: none !important;
    }

    .click-block * {
        pointer-events: none !important;
    }
    
    #my_nav .nav-menu {
        display: none;
        padding-right: 0px;
    }

    #my_nav {
        width: 100%;
        height: 60px;
    }

    .mobile-menu-cont {
        display: none;
        border: 0.5px solid #cdcdcd;
        max-width: calc(100vw - 75px) !important;
    }
                                                            
    #my_m_nav {
        display: grid;
        height: auto;
    }

    #my_m_nav .menu {
        display: flex !important;
        flex-direction: column;
        flex-wrap: nowrap;
        padding-right: 0px;
    }

    #my_m_nav .menu .nav-item {
        width: 100%;
        display: flex !important;
        flex-direction: column;
        border-bottom: 0.5px solid #cdcdcd
    }

    #my_m_nav .menu .nav-item a {
        width: 100%;
    }

    .mobile-menu-cont {
        width: 350px;
        background: white;
        position: fixed;
        right: 0px;
        top: 0px;
        height: 100vh;
        z-index: 999999;
        overflow: scroll;
        transform-style: preserve-3d;
    }

    #my_m_nav .sub-nav {
        flex-direction: column;
        position: relative;
        height: 0px;
        top: 0px;
        display: none;
        padding: 10px 30px !important;
        pointer-events: none;
    }

    #my_m_nav .sub-nav.open {
        top: 0px;
        display: flex !important;
        flex-direction: column;
        height: auto;
        pointer-events: auto;
    }

    #my_m_nav .sub-nav .depth-1 {
        display: flex !important;
        flex-direction: column;
        height: auto;
    }

    #my_m_nav .sub-nav .depth-1 .depth-2 {
        display: flex !important;
        flex-direction: column;
        height: auto;
    }

    #my_m_nav a {
        color: #555;
        line-height: 1.8 !important;
    }
    
    #my_m_nav .nav-item>a {
        font-family: din, arial;
        font-size: 1rem;
        font-weight: 600;
        height: 35px;
        display: flex;
        align-items: center;
    }
    
    #my_m_nav .nav-item .sub-nav>a {
        font-family: din, arial;
        font-size: 22px;
        font-weight: bold;
    }
    
    #my_m_nav .nav-item:not(.section-style-2) .sub-nav .depth-1>a {
        font-family: din, arial;
        font-size: 1rem;
        font-weight: bold;
    }

    #my_m_nav .nav-item.section-style-2 .sub-nav>a {
        font-family: din, arial;
        font-size: 1rem;
        font-weight: bold;
    }
    
    #my_m_nav .nav-item.section-style-2 .sub-nav .depth-1>a:first-child {
        font-family: din, arial;
        font-size: unset;
        font-weight: normal;
    }
    
    #my_m_nav .nav-item.section-style-3 {
        position: relative;
    }
    
    #my_m_nav .nav-item.section-style-3 .sub-nav>a {
        font-weight: normal;
        font-size: 1rem;
    }
    
    #my_m_nav .nav-item.section-style-4 .sub-nav {
        display: none !important;
    }

    #my_nav {
        grid-template-columns: 80px 1fr;
    }

    #my_nav .logo-container {
        position: relative;
        margin-left: 0px;
    }

    #my_nav .ham_btn {
        display: block;
        margin-left: 20px;
        width: 100%;
        cursor: pointer;
    }

    #my_nav .ham_btn rect {
        opacity: 1;
        transition: all 0.5s ease;
        transform-origin: center;
    }

    @keyframes pulse {
      from {
          transform: scale(100%);
          opacity: 1;
      }
      to {
          transform: scale(80%);
          opacity: 0.5;
        }
    }

    #my_nav .ham_btn:focus rect {
      animation-name: pulse;
      animation-duration: 1.0s;
      animation-iteration-count: infinite;
      animation-direction: alternate;
    }

    #my_nav .ham_btn.open rect:nth-child(1) {
        transform: rotate(45deg) translate(0px, 30px);
    }

    #my_nav .ham_btn.open rect:nth-child(2) {
        opacity: 0;
    }

    #my_nav .ham_btn.open rect:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -25px);
    }
    
    .mobile-menu-cont.open {
        display: block;
        background: white;
        z-index: 99999
    }

    .mobile-menu-cont.open + .mobile-overlay {
        position: fixed;
        left: 0px;
        top: 0px;
        right: 0px;
        bottom: 0px;
        background-color: black;
        opacity: 0.8;
        z-index: 9999;
    }
}

@media screen and (min-width: 1269px) {
    .search-wrapper {
        height: 150px !important;
    }
}