nav {
    /* opacity: 0.8; */
}
.navbar-nav {
    display: flex;
    justify-content: flex-start;
    list-style: none;
    padding: 0;
}

.navbar-hidden {
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
}

.navbar-scroll {
    opacity: 0;
    transition: opacity 0.5s;
}

.navbar-scroll.navbar-expand-lg {
    display: none;
}

#navbarNav {
    justify-content: space-between;
    align-items: center;
}

.fix-top-bar {
    padding-top: 132px;
}

.copyrightMSC {
    font-size: 12px;
    color: white;
    font-weight: 200;
}

.footer {
    background-color: #53534A;
    padding: 20px;
}

.footerColWrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    height: 100%;
    margin-bottom: 1.5rem;
}

.footerColContent {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    height: 100%;
    margin-bottom: 1.5rem;
}

.footerLogo {
    max-width: 240px;
    min-width: 120px;
    padding: 1rem;
}

.footerTitle {
    margin-bottom: 10px;
    text-align: left;
    color: white;
    font-size: 1.25rem;
    font-weight: 500;
}

.footerList {
    list-style-type: none;
    padding-left: 0;
    text-align: left;
}

.footerListItem a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    font-weight: 200;
    line-height: 2.5rem;
}

.footerSocialMediaList {
    display: flex;
    list-style-type: none;
    gap: 10px;
}

.footerListSocialMediaItem {
    margin: 5px;
}
.footerListSocialMediaItem:first-child {
    margin-left: 0;
}
.footerListSocialMediaItem a {
    color: white;
    font-size: 24px;
}

.socialFooterIcons {
    list-style-type: none;
    padding-left: 0;
    margin-left: 10px;
    display: flex;
    gap: 10px;
    color: white;
    transform: translateX(1rem);
}

.text-centerFooter {
    font-weight: 200;
    font-size: 16px;
    color: white;
    text-align: center;
}


@media (max-width: 992px) {
    .footerColWrapper {
        align-items: center;
    }

    .footerLogo {
        margin: 1rem;
    }
    
}

@media (max-width: 768px) {
    .footerColContent {
        align-items: center;
    }

    .footerList {
        text-align: center;
    }
}