* {
    padding: 0;
    margin: 0;
    scroll-behavior: smooth;
}

.container-wbs-gallery {
    margin: 0px;
    padding: 0px;
    width: 100%;
    height: auto;
    
}

.sidebar {
    height: 70px;
    background: rgb(248, 252, 254);
    width: 100%;
    position: sticky;
    top: 0;
    display: flex;
    box-shadow: 0px 4px 12px 0px rgba(119, 119, 119, 0.15);
    align-items: center;
    justify-content: center;
}
.sidebar ul{
    display: flex;
    justify-content: space-around;
    width: 80%;
}
.sidebar ul li {
    margin-left: 2rem;
    padding: 30px 0px;
    list-style: none;
}

.sidebar ul li a {
    font-family: Montserrat;
    font-size: 14px;
    font-weight: 700;
    line-height: 19.5px;
    text-align: center;    
    color: rgb(142, 142, 142);
    text-decoration: none;
}

.sidebar a.active {
    font-size: 14px;
    font-weight: 700;
    color: rgba(13, 55, 69, 1);
}
.sidebar a:hover{
    color: rgb(0, 129, 176);
}

.right-side {
    max-height: 100vh;
    background: rgba(255, 255, 255, 1);
    width: 100%;
    flex: 1;
    overflow-y: auto;
    /* Adjust height considering the navbar height */

}

.banner {
    width: 100%;
    height: 40%;
    background-color: aqua;
}

.navigation-menu {
    position: relative;
    background-color: rgba(35, 35, 35, 0.841);
    backdrop-filter: blur(10px);
}

.banner-label {
    width: 100%;
    height: 70px;
    align-items: center;
}

/*.banner-span {
    width: 35px;
    height: 100%;
    background: rgba(154, 1, 1, 1);
}

.banner-header {
    height: 100%;
    background: rgba(154, 1, 1, 1);
    display: flex;
    align-items: center;
    width: 100%;
}*/

.banner-header p{
    font-family: Playfair Display;
font-size: 28px;
font-weight: 900;
text-align: left;
color: rgb(30, 30, 30);
padding: 50px;
}



.gallery{
    padding: 50px;
    max-width: 100%;
    display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 2fr));
    grid-auto-rows: auto;
    grid-auto-flow: dense;
    height: 100%;
}
.gallery > div{
    display: flex;
    justify-content: center;
    align-items: center;
}
.gallery .wide{
    grid-column: span 3;
}
.gallery .tall{
    grid-row: span 3;
}

.gallery .big{
    grid-column: span 2;
    grid-row: span 2;
}

.gallery > div > img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}


.gallery-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #343a40;
    padding: 1rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.gallery-nav a {
    color: white;
    text-decoration: none;
}

.gallery-nav a.active {
    font-weight: bold;
}

.gallery-nav a:hover {
    text-decoration: underline;
}