@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@100;300;400;500&display=swap');


html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Oswald', sans-serif;
}

.bg-container {
    position: relative;
    overflow: hidden;
}

.bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: -1;
}

hr {
    border: none;
    height: 2px;
    background-color: #ccc;
    width:200px;
}

#scroll-container::-webkit-scrollbar {
    display: none;
}

#scroll-container {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.cursor-grabbing {
    cursor: grabbing !important;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}