header{ 
    position: fixed;
    border-bottom: 1px solid #0000001a;
    z-index: 80;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
    width: 100vw;
    /* background-image: url(../img/bg-services.jpg); */
    background-size: cover;
    background-position: bottom;
    height: var(--nav-height);
}
nav{
    height: var(--main-height);
    width: 80px;
    position: absolute;
    right: -80px;
    top: var(--nav-height);
    overflow: auto;
    background-color: white;
    transition: all 0.5s ease-in-out;
    box-shadow: 3px 9px 9px 0px black;
}
.main-nav.open{
    right: 0;
}
nav>ul{
    width: 100%;
}
.nav>li{
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    align-items: center;
}
.nav>li>a {
    position: relative;
    padding: 12px 8px;
    color: #0b0f28;
    text-transform: uppercase;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
    font-weight: 400;
    font-size: 14px;
}
.nav>li>a>img {
    fill: #f0394d;
    width: auto;
    height: 21px;
    display: block;
    text-align: center;
    margin: 0px auto 6px auto;
}    
.nav li.active a:after {
    content: "";
    height: 3px;
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    background: linear-gradient(90deg, var(--bride-color), var(--groom-color));
}

.nav li a:hover, .main-nav li a:focus {
    background-color: transparent;
    color: #dd0a37;
}

.nav li a:hover {
    color: #dd0a37;
}

.navbar-toggle{
    color: white;
    background: linear-gradient(137deg, var(--bride-color), var(--groom-color));
    font-size: 1.6rem;
    position: relative;
    float: right;
    padding: 5px 9px;
    margin-top: 2px;
    margin-right: 3px;
    margin-bottom: 0;
    border: 0;
    border-radius: 4px;
}
#header > .container-fluid{
    width: 100%;
    height: 100%;
    /* background-color: yellow; */
}
.navbar-header{
    width: 100%;
}
.navbar-brand{
    padding: 0;
}
.navbar-brand img{
    height: calc(var(--nav-height) - 20px);
}
@media only screen and (min-width: 769px) {
    nav{
        top: 0;
        width: max-content;
        height: var(--nav-height);
        box-shadow: unset;
        right: 0;
    }
    nav>ul{
        display: flex;
    }
    .nav>li>a {
        padding: 6px 20px;
    }
}
