.hero-section {
    background-image: url('../images/hero/banner_serlog.jpg');
    background-size: cover;
    position: relative;
    z-index: 10;
    min-height: 100vh;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    background-color: #f5f5f5;
}

::-webkit-scrollbar {
    width: 12px;
    background-color: #f5f5f5;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #555;
}

.cookieContainer {
    /* height: 100vh; */
    width: 100vw;
    /* background-color: rgba(0, 0, 0, 0.7); */
    position: fixed;
    z-index: 1000;
    bottom: 0;
    left: 0;
}

.cookieNotice {
    /* position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100vw; */
}