.top_menu ul {
    list-style: none;
    list-style-type: none;
    margin: 0px;
    padding: 0px;
    background-color: #000;
    display: flex;
    justify-content: flex-end;
}

.home .top_menu ul {
    background-color: transparent!important;
}

.top_menu ul li {
    /*position: relative;*/
}

.top_menu ul li .sub_menu {
    display: none;
    padding: 20px;
    background-color: #000;
}




.top_menu ul li a {
    display: inline-block;
    padding: 20px 40px;
    color: rgba(255, 255, 255, 0.6);
    font-family: "Axiom Header";
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 3px;
    font-style: normal;
    position: relative;
    white-space: nowrap;
}


.top_menu ul li:hover .sub_menu {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 0 auto;
    position: absolute;
    top: 176px;
    left: 0;
    right: 0;
    width: 100%;
}

.top_menu ul li.selected > a {
    position: relative;
}
.top_menu ul:not(.sub_menu) > li:hover > a:before,
.top_menu ul:not(.sub_menu) > li.parent:hover > a:after,
.top_menu ul:not(.sub_menu) > li.selected > a:after {
    background: #000;
    border-radius: 3px;
    content: '';
    display: block;
    margin-left: -13px;
    position: absolute;
    bottom: -45px;
    left: 50%;
    transform: rotate(45deg);
    height: 20px;
    width: 20px;
}
.top_menu ul:not(.sub_menu) > li.parent:hover > a:before{
    bottom: -83px;
}
.top_menu ul li:hover .sub_menu:before {
    background: transparent;
    content: '';
    position: absolute;
    bottom: 100%;
    left: 0;
    height: 80px;
    width: 100%;
}
.fusion-is-sticky .top_menu ul li:hover .sub_menu:before {
    height: 70px;
}
.top_menu ul:not(.sub_menu) > li.selected > a:after {
    transition: ease 300ms;
}

.fusion-is-sticky .top_menu ul:not(.sub_menu) > li:hover > a:before,
.fusion-is-sticky .top_menu ul:not(.sub_menu) > li.parent:hover > a:after,
.fusion-is-sticky .top_menu ul:not(.sub_menu) > li.selected > a:after{
    bottom: -7px;
}
.fusion-is-sticky .top_menu ul:not(.sub_menu) > li.parent:hover > a:after {
    bottom: -50px;
}
.fusion-is-sticky  .top_menu ul li:hover .sub_menu {
    top: 113px;
}

.top_menu .sub_menu li {
    padding: 29px 15px 29px 0;
    line-height: 1.2;
    width: 16%;
}

.top_menu ul li.selected > a {
    color: #FFF;
}
.top_menu ul li:hover > a {
    color: #FFF;
}

.top_menu ul li:hover .sub_menu li a {
    padding: 0px;
}
.home .fusion-header {
    background-color: transparent;
}
.home .top_menu ul:not(.sub_menu) > li:hover > a:before,
.home .top_menu ul:not(.sub_menu) > li.parent:hover > a:after,
.home .top_menu ul:not(.sub_menu) > li.selected > a:after {
    display: none;
}
.fusion-body.home .fusion-is-sticky.fusion-header-wrapper .fusion-header {
    background-color: transparent;
}

@media screen and (max-width: 1350px){
    .top_menu .sub_menu li {
        width: 20%;
    }
}
@media screen and (max-width: 1200px){
    .top_menu {
        display: none;
    }
}