html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
}

:root {
    --bg-default: #142436;
}

body {
    color: white;
    margin: 0;
    padding: 0;
    scrollbar-width: none; /* Firefox 64+ */
    -ms-overflow-style: none; /* IE 10+ */
    background: var(--bg-default);
}

@media (min-width: 1200px) {
    .pr-xl-8,
    .px-xl-8 {
        padding-right: 8rem !important;
    }

    .pl-xl-8,
    .px-xl-8 {
        padding-left: 8rem !important;
    }

    .pr-xl-10,
    .px-xl-10 {
        padding-right: 10rem !important;
    }

    .pl-xl-10,
    .px-xl-10 {
        padding-left: 10rem !important;
    }

    .pr-xl-18,
    .px-xl-18 {
        padding-right: 11.7857rem !important;
    }

    .pl-xl-18,
    .px-xl-18 {
        padding-left: 11.7857rem !important;
    }


    .pr-xl-24,
    .px-xl-24 {
        padding-right: 15rem !important;
    }

    .pl-xl-24,
    .px-xl-24 {
        padding-left: 15rem !important;
    }
}


.header-container {
    position: relative;
    z-index: 10;
    width: 100vw;
    height: 100vh;
    padding-top: 71px;
    padding-bottom: 20vh;
}

.header-content {
    color: white;
}

.header-title {
    font-size: clamp(2.5rem, 10vw, 4rem);
    margin-bottom: 3px;
}


.pointer {
    cursor: pointer;
}

.color-white {
    color: white;
}

.bg-default {
    background: var(--bg-default);
}

.cover-background {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
