.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-image: linear-gradient(#000, #0e3949, #445f69);
    padding: 0 5rem 0 1rem;
    position: fixed;
    top: 0px;
    bottom: 0;
    width: 100%;
    height: 5rem;
    z-index: 999;
    box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.03);
}

.rightSide {
    display: flex;
    gap: 2rem;
    align-content: center;
}

.logo {
  height: 2.5rem;
  justify-self: flex-start;
}

.relative {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
}

.messageLabel {
    position: absolute;
    top: .5rem;
    right: 0;
    background-color: red;
    color: white;
    font-size: .5rem;
    padding: 0 .25rem;
    border-radius: 50%;
}

.messageLogo {
    height: 1.5rem;
    display: block;
}

.ring-bell {
    animation: jingle .3s linear;
    animation-iteration-count: 10;
    -moz-animation: jingle .3s linear;
    -moz-animation-iteration-count: 10;
    -webkit-animation: jingle .3s linear;
    -webkit-animation-iteration-count: 10;
    -ms-animation: jingle .3s linear;
    -ms-animation-iteration-count: 10;
    -o-animation: jingle .3s linear;
    -o-animation-iteration-count: 10;
}

@keyframes jingle{
    0%, 100% {
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
    }
    25% {
        transform: rotate(30deg);
        -webkit-transform: rotate(30deg);
        -moz-transform: rotate(30deg);
        -ms-transform: rotate(30deg);
        -o-transform: rotate(30deg);
    }
    50% {
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
    }
    75% {
        transform: rotate(-30deg);
        -webkit-transform: rotate(-30deg);
        -moz-transform: rotate(-30deg);
        -ms-transform: rotate(-30deg);
        -o-transform: rotate(-30deg);
    }
}

.menu-logo {
    display: none;
    height: 3.5rem;
}

@media (max-width: 34em) {
    .logo {
        height: 2.5rem;
    }
}

    .menu-icon {
        margin-left: 1.5rem;
        display: none !important;
        width: 40px !important;
    }

    .profile-pic {
        border-radius: 50px !important;
        margin-right: .5rem;
        margin-left: 1.5rem;
        width: 40px !important;
    }

    .main-nav-list {
        justify-self: flex-end;
        list-style: none;
        display: flex;
        gap: 1.2rem !important;
    }

        .main-nav-list li {
            display: flex;
            align-items: center;
        }

    .main-nav-link:link,
    .main-nav-link:visited {
        display: inline-block;
        text-decoration: none;
        color: #fff;
        font-weight: 200;
        font-size: 1.2rem !important;
        border-radius: 15px;
        padding: 10px;
        transition: all .3s;
    }

    .main-nav-link:hover,
    .main-nav-link:active {
        color: #fff;
        background-color: #cf711f;
    }

    /* MOBILE */
    .btn-mobile-nav {
        border: none;
        background: none;
        cursor: pointer;
        display: none;
    }

    .icon-mobile-nav {
        height: 3rem;
        width: 2rem;
        color: #fff;
    }

        .icon-mobile-nav[name="close-outline"] {
            display: none;
        }

    /**************************/
    /* BELOW 1344px (Smaller desktops) */
    /**************************/
    @media (max-width: 90em) {
        /* MOBILE NAVIGATION */
        .btn-mobile-nav {
            display: block;
            z-index: 9999;
        }

        .main-nav {
            background-image: linear-gradient(#000, #0e3949, #608897);
            -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(10px);
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100vh;
            transform: translateX(0%);
            display: flex;
            align-items: start;
            padding: 1rem 1rem;
            justify-content: start;
            opacity: 0;
            pointer-events: none;
            visibility: hidden;
            font-size: 14px;
            padding-bottom: 100px !important;
        }

        .header {
            padding: 0 2rem 0 1rem;
        }

        .nav-open .menu-logo {
            display: block;
            margin-bottom: 1rem;
        }

        .nav-open .menu-icon {
            display: inline-block !important;
        }

        .nav-open .main-nav {
            opacity: 1;
            pointer-events: auto;
            visibility: visible;
            transform: translateX(0);
            overflow: auto !important;
            padding: .8rem 0 5rem 0 !important;
            margin-bottom: 2rem !important;
        }

        .nav-open .main-nav-link {
            width: 90%;
            margin-left: 1rem;
        }

        .nav-open .main-nav-list {
            width: 90%;
        }

        .nav-open .icon-mobile-nav[name="close-outline"] {
            display: block;
        }

        .nav-open .icon-mobile-nav[name="menu-outline"] {
            display: none;
        }

        .main-nav-list {
            flex-direction: column;
        }

            .main-nav-list li {
                padding-bottom: 0rem !important;
            }

        .main-nav-link:link,
        .main-nav-link:visited {
            font-size: 1.2rem !important;
        }
    }

    /**************************/
    /* BELOW 1200px (Landscape Tablets) */
    /**************************/
    @media (max-width: 75em) {
    }

    /**************************/
    /* BELOW 944px (Tablets) */
    /**************************/
    @media (max-width: 59em) {
    }

    /**************************/
    /* BELOW 704px (Smaller tablets) */
    /**************************/

    @media (max-width: 44em) {
        .nav-col {
            grid-row: 1;
            grid-column: span 2;
            margin-bottom: 3.2rem;
        }
    }

    /**************************/
    /* BELOW 544px (Phones) */
    /**************************/
    @media (max-width: 34em) {
        .profile-Picture {
            width: 100%;
        }
    }
    /**************************/
    /* Fixing Safari flexbox gap */
    /**************************/

    .no-flexbox-gap .main-nav-list li:not(:last-child) {
        margin-right: 4.8rem;
    }

    .no-flexbox-gap .list-item:not(:last-child) {
        margin-bottom: 1.6rem;
    }

    .no-flexbox-gap .list-icon:not(:last-child) {
        margin-right: 1.6rem;
    }

    .no-flexbox-gap .benefit-icon {
        margin-right: 1.6rem;
    }

    @media (max-width: 75em) {
        .no-flexbox-gap .main-nav-list li:not(:last-child) {
            margin-right: 3.2rem;
        }
    }

    @media (max-width: 59em) {
        .no-flexbox-gap .main-nav-list li:not(:last-child) {
            margin-right: 0;
            margin-bottom: 4.8rem;
        }

        /*    .main-nav-list {
        gap: 1.2rem;
    }
*/
        .profile-pic {
            margin-right: 0;
        }
    }
