.main-navigation {
    display: block;
    width: 100%;
    background-color: #FFFFFF;
    height: 74px;
    position: fixed;
    z-index: 9990;
    top: 0;
    left: 0;
}

.main-navigation .main-navigation--inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 100%;
}

.main-navigation .main-navigation--inner .main-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.navbar-nav .nav-item .nav-link,
.navbar-nav .nav-link>.fe {
    font-size: 1rem;
    line-height: 1.2;
}

.navbar-nav .nav-link>.fe {
    min-width: 0px;
}

.navbar-nav.horizontal {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.navbar-nav.nav-black .nav-link {
    color: #12263F;
}

.navbar-style-2 .nav-link {
    position: relative;
}

.navbar-style-2 .nav-link:before {
    content: '';
    position: absolute;
    bottom: -18px;
    left: 1rem;
    right: 1rem;
    height: 3px;
    background-color: #d12323;
    -webkit-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
    opacity: 0;
}

.navbar-style-2 .nav-link.active-link:before {
    bottom: -18px;
    opacity: 1;
    color: red !important;
}

.navbar-style-2 .nav-link:hover:before {
    bottom: -18px;
    opacity: 1;
    color: red !important;
}

.mobile-only {
    display: none;
}

@media screen and (max-width: 767px) {
    .mobile-only {
        display: block;
    }
}

@media screen and (max-width: 767px) {
    .desktop-only {
        display: none;
    }
}

