@media(min-width: 992px){
  .dropdown-menu {
    top: 200%;
    display: unset;
    visibility: hidden;
    opacity: 0;
    background-color: #fff;
    border: unset;
    padding: 0rem 0;
    min-width: 450px;
    max-width: 100%;
    border-radius: 0px 2px 2px 2px;
    -ms-border-radius: 0px 2px 2px 2px;
    -webkit-border-radius: 0px 2px 2px 2px;
    -moz-border-radius: 0px 2px 2px 2px;
    -o-border-radius: 0px 2px 2px 2px;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.1);
}
.dropdown:hover .dropdown-menu {
    top: 100%;
    opacity: 1;
    visibility: visible;
}
.dropdown-toggle::after {
    display: inline-block;
    margin-left: .4955em;
    vertical-align: 0.095em;
    content: "";
    border-top: .4em solid;
    border-right: .4em solid transparent;
    border-bottom: 0;
    border-left: .4em solid transparent;
}
}
@media(min-width: 576px){
    .breaking-caret:after{
        right: 3px;
    }
}
@media screen and (max-width:575.9px) and (min-width: 320px){
    .breaking-caret:after{
        content:unset;
    }
}