
.nav__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow: hidden;
    margin-bottom: 30px;
}
.showing {
    max-height: 37rem;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.nav__menu li {
    list-style: none;
    position: relative;
    white-space: nowrap;
    padding: 1rem 0 0;
}
.nav__menu li a {
    display: block;
    font-size: 1rem;
    color: #222;
    text-decoration: none;
}
.nav-toggle {
    display: block;
    background-color: transparent;
    width: 40px;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    position: relative;
    display: block;
    height: 4px;
    border-radius: 35px;
    width: 100%;
    margin-top: 0;
    background-color: #000;
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
}
.nav-toggle span.mrg {
    margin-top: 5px;
}

.nav__menu .dropdown ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: static;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
.nav__menu .dropdown ul.show {
    max-height: 20rem;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    margin-top: 30px;
}
.nav__menu .dropdown li a {
    display: block;
    font-size: 0.875rem;
    text-transform: capitalize;
    color: #222;
    text-decoration: none;
}
.nav__menu li a:hover {
    color: #0062a3;
}
.nav__menu .dropdown > a:after {
    content: " ";
    margin-left: 5px;
display: inline-flex;
width: 12px;
min-width: 12px;
height: 8px;
background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iOCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTAuNTg1LjI5Mkw2IDQuODc3IDEuNDE1LjI5MiAwIDEuNzA3bDYgNiA2LTZMMTAuNTg1LjI5MnoiIGZpbGw9IiMyMTM1NjAiLz48L3N2Zz4=);
background-size: 100% 100%;
background-repeat: no-repeat;
}
.nav__menu .active.dropdown > a:after {
    content: " ";
}
.nav__menu .dropdown .dropdown > a:after {
    content: " ";
    font-weight: 900;
    font-size: 0.875rem;
    padding-left: 5px;
    color: #7e7e7e;
}
.nav__menu .dropdown .active.dropdown > a:after {
    content: " ";
}
.menu-toggle {
    max-height: 0;
    overflow: hidden;
}
.menu-toggle,
.menu-toggle.active {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.menu-toggle.active {
    max-height: 100vh;
}
.resize-animation-stopper * {
    -webkit-transition: none !important;
    transition: none !important;
    -webkit-animation: none !important;
    animation: none !important;
}