.oht-hamburger {
    display: none;
}

.article-menu-posts {
    display: none;
}
.article-menu-outer{
    text-align: left!important;
    position: absolute;
    top: 0;
    width: 80%;
}
.article-menu-outer > div > ul > li:nth-child(3).mobile-active {
    margin-top: 60px;
}

.article-menu-dropdown-icon {
    color: white;
    font-size: 24px;
    align-self: center;
}

.article-menu-hamburger {
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    margin: 10px;
    padding: 10px;
    background: #ccc;
    border: none;
    border-radius: 5px;
    color: black;
    font-family: Josefin Sans;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    outline: none;
    z-index: 1000;
}
.article-menu-hamburger.mobile-active {
    /* make background inivisible */
    background: transparent;
}
.article-menu-hamburger-line {
    width: 20px;
    height: 1px;
    background: black;
    margin: 4px;
    border-radius: 4px;
}

.article-menu-item-0 {
    display:none!important;
    font-family: "Cormorant Garamond";
    font-weight: 300;
    font-size: 2em;
    margin-top: 6px;
}

.article-menu-link {
    color: white;
    text-decoration: none;
}

.article-menu-item-0.mobile-active {
    display:flex!important;
    justify-items: flex-end;
    -webkit-animation: slide-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) forwards;
            animation: slide-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) forwards;
}
.article-menu-item-0.mobile-active > .article-dropdown-submenu {
    display: none;
    opacity: unset;
    visibility: unset;
}
.article-dropdown-submenu.mobile-active {
    display: block;
    opacity: unset;
    visibility: unset;
    background: transparent;
    -webkit-animation: slide-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) forwards;
	        animation: slide-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) forwards;
}
.article-dropdown-submenu > li {
    display:none;
}
.article-dropdown-submenu.mobile-active > li {
    display:inline-block;
    margin-left: 20px;
    font-size: 0.8em;
}
.article-dropdown-submenu > li > a {
    display: none;
}

.article-dropdown-submenu.mobile-active > li > a {
    display: block;
}

.article-menu-image-background {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #000000;
    transition: all 0.6s ease;
}

div.article-menu-image-background.background-active {
    display: block;
    -webkit-animation: slide-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) forwards, shadow-inset-left 2s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: slide-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) forwards, shadow-inset-left 2s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
/*
 * ----------------------------------------
 * animation shadow-inset-left
 * ----------------------------------------
 */
 @-webkit-keyframes shadow-inset-left {
    0% {
      -webkit-box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0);
              box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0);
    }
    100% {
      -webkit-box-shadow: inset 6px 0 20px -6px rgba(0, 0, 0, 1);
              box-shadow: inset 6px 0 20px -6px rgba(0, 0, 0, 1);
    }
  }
  @keyframes shadow-inset-left {
    0% {
      -webkit-box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0);
              box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0);
    }
    100% {
      -webkit-box-shadow: inset 6px 0 20px -6px rgba(0, 0, 0, 1);
              box-shadow: inset 6px 0 20px -6px rgba(0, 0, 0, 1);
    }
  }

/**
 * ----------------------------------------
 * animation slide-right
 * ----------------------------------------
 */
 @-webkit-keyframes slide-right {
    0% {
      -webkit-transform: translateX(-100px);
              transform: translateX(-100px);
    }
    100% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
  }
  @keyframes slide-right {
    0% {
      -webkit-transform: translateX(-100px);
              transform: translateX(-100px);
    }
    100% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
  }
  






/* Set 1024px as the breakpoint for the dropdown menu */
@media (min-width: 1024px) {
    /* CSS FOR DROPDOWN MENU */
    #menu-left-utility,
    #oht_default_header_layout {
        display: none;
    }

    #oht_menu_widgets {
        display: grid;
        grid-template-columns: auto auto;
        column-gap: 15px;
        align-items: start;
        justify-content: left;
    }
    .article-menu-outer {
        position: relative;
        width: 100%;
    }
    .article-menu-hamburger {
        display: none;
    }

    .article-menu-item-0 {
        display: inline-block!important;
    }
    .article-menu-link {
        color: rgba(0, 0, 0, 1);
        font-family: Josefin Sans;
        font-size: 22px;
        list-style-type: none;
    }

    .article-menu-item-0:hover .article-menu-posts {
        display: flex;
    }

    .article-menu-item-0:hover .article-dropdown-submenu {
        display: block !important;
    }

    .article-menu-item-0:after {
        position: inherit;
        display: block;
        transform: scaleX(0);
        margin: 0 30px 0 30px;
        top: -40px;
        content: '';
        border-top: solid 1px #000000;
        transition: transform 250ms ease-in-out;
    }

    .article-menu-item-0:hover:after {
        transform: scaleX(1);
    }

    .article-menu-item-1:after {
        position: inherit;
        display: block;
        transform: scaleX(0);
        margin: 0 40px 0 40px;
        content: '';
        border-top: solid 1px #000000;
        transition: transform 250ms ease-in-out;
    }
    .article-dropdown-submenu > li > a {
        display: block;
    }
    .article-dropdown-submenu > li {
        display: block;
    }

    .article-menu-item-1:hover:after {
        color: #ff787e !important;
        background: rgba(255, 255, 255, 0);
        border-color: #ff787e;
        transform: scaleX(1);
    }

    .article-menu-item-1>.article-menu-link:hover {
        color: #ff787e !important;
    }

    .article-menu-posts {
        position: absolute;
        background: whitesmoke;
        border: 1px solid #ccc;
        padding: 10px;
        z-index: 100;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
        height: 560px;
        top: 100%;
    }

    .article-menu-post {
        width: 300px;
        display: grid;
        text-align: center;
    }

    .article-menu-post-link {
        margin: 2px;
        padding: 0px !important;
        width: unset !important;
    }

    .article-menu-post-image {
        width: 300px;
        height: 400px;
    }

    .article-menu-post-title {
        color: #000000;
        text-decoration: none;
        font-family: Josefin Sans;
        font-size: 16px;
        line-height: 1.4;
    }

    .article-menu-post-date {
        color: #000000;
        font-family: Cormorant Garamond;
        font-size: 14px;
        font-style: italic;
        letter-spacing: 1px;
    }

    .article-dropdown-submenu {
        display: none !important;
        position: absolute !important;
        text-align: center !important;
        width: 200px !important;
        margin: 1px !important;
        background: whitesmoke !important;
        top: 100% !important;
    }

    .article-menu-item-1>.article-menu-posts {
        box-shadow: unset;
        border: unset;
        display: none !important;
    }

    .active-posts {
        margin: 1px !important;
        padding-left: 0px;
        left: 200px;
        height: 558px;
    }

    /*NAVIGATION MENU*/
    .article-menu-post-nav {
        position: absolute;
        bottom: 0px;
        display: flex;
        margin: 10px 0;
        font-size: 0.6em;
    }

    .article-menu-post-nav>div {
        padding: 0px 10px 0px 10px;
    }

    .loader-overlay {
        display: none;
        align-self: end;
        position: relative;
        line-height: 0;
        margin: 0;
        padding: 0;
        z-index: 1000;
        font-size: 10px;
        top: -320px;
        left: 50%;
        width: 1em;
        height: 1em;
        border-radius: 50%;
        text-indent: -9999em;
        animation: mulShdSpin 1.1s infinite ease;
        transform: translateZ(0);
    }

    @keyframes mulShdSpin {

        0%,
        100% {
            box-shadow: 0em -2.6em 0em 0em #ffffff, 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.5), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7);
        }

        12.5% {
            box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.7), 1.8em -1.8em 0 0em #ffffff, 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5);
        }

        25% {
            box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.5), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7), 2.5em 0em 0 0em #ffffff, 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
        }

        37.5% {
            box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5), 2.5em 0em 0 0em rgba(255, 255, 255, 0.7), 1.75em 1.75em 0 0em #ffffff, 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
        }

        50% {
            box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.5), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.7), 0em 2.5em 0 0em #ffffff, -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
        }

        62.5% {
            box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.5), 0em 2.5em 0 0em rgba(255, 255, 255, 0.7), -1.8em 1.8em 0 0em #ffffff, -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
        }

        75% {
            box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.5), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.7), -2.6em 0em 0 0em #ffffff, -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
        }

        87.5% {
            box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.5), -2.6em 0em 0 0em rgba(255, 255, 255, 0.7), -1.8em -1.8em 0 0em #ffffff;
        }
    }
}