:root {
    --primary-color: #000;
    --secondary-color: #F4F4F4;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: auto;
}

body {
    background-color: #fff;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: 'Manrope', sans-serif;
    color: var(--primary-color)
}

h1 {
    font-size: 5.2rem;
}

h1, h2, h3 {
    font-family: 'Vollkorn', serif;
    color: var(--primary-color);
}

a {
    transition: all 0.3s ease;
}

a {
    opacity: 0.8;
}

.btn-outline {
    border-radius: 18px;
    border: 2px solid #ff9100;
    border-bottom: 2px solid #ff9100;
    background: #FFF;
    font-size: 20px;
    padding: 15px 55px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: #fff;
    border: 2px solid #ff9100a6;
}

.btn-orange {
    border-radius: 18px;
    border: 2px solid #ff9100;
    background: #ff9100;
    font-size: 20px;
    padding: 15px 55px;
    transition: all 0.3s ease;
    color: #fff;
}

.btn-orange:hover {
    background-color: #ff9100;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1500;
    padding: 25px 0px;
    border-bottom: 1px solid #333;
    background-color: #fff;
}

.navbar .btn-outline, .navbar .btn-orange {
    padding: 8px 20px;
}

.hero-section {
    position: relative;
    height: calc(100vh - 100px);
    max-height: 850px;
    overflow: hidden;
    margin-top: 100px;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100vh - 100px);
    max-height: 850px;
    object-fit: cover;
    z-index: 0;
}

/* Vertical white gradient overlay: transparent at top -> white at bottom */
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 65%);
    pointer-events: none;
    z-index: 2;
}

.hero-section .container {
    position: relative;
    z-index: 3;
}

.hero-section p {
    font-size: 1.2rem;
    position: relative;
    padding-left: 40px;
}

.hero-section p::after {
    content: '';
    top: -6px;
    left: 0px;
    display: block;
    width: 30px;
    height: 2.5px;
    background-color: var(--primary-color);
    margin-top: 20px;
    position: absolute;
}

.container {
    position: relative;
    z-index: 2;
    overflow: hidden;
}

#schedule {
    font-size: 18px;
}

.dashboard h4 {
    font-size: 2.4rem;
    font-weight: 300;
    line-height: 3.5rem;
    position: relative;
    padding-top: 50px;
}

.dashboard h4::before {
    content: '';
    top: -6px;
    left: 0px;
    display: block;
    width: 60px;
    height: 2.5px;
    background-color: var(--primary-color);
    margin-top: 20px;
    position: absolute;
    
}

.connect .container {
    border-bottom: 1px solid #333;
}

.connect p {
    font-size: 1.4rem;
    position: relative;
}

.connect p::before {
    content: '';
    top: -40px;
    left: 0px;
    display: block;
    width: 37px;
    height: 2.5px;
    background-color: var(--primary-color);
    margin-top: 20px;
    position: absolute;    
}

.three-features .container {
    border-bottom: 1px solid #333;
}

.three-features h4 {
    border-bottom: 2px solid #333;
    padding-bottom: 30px;
    font-weight: 600;
}

.three-features p {
    font-size: 1.2rem;
}

.data p {
    font-size: 2rem;
    position: relative;
}

.data p::before {
    content: '';
    top: -40px;
    left: 0px;
    display: block;
    width: 37px;
    height: 2.5px;
    background-color: var(--primary-color);
    margin-top: 20px;
    position: absolute;    
}

footer {
    background-color: var(--primary-color);
    color: #fff;
}

footer .investors {
    padding-bottom: 40px;
    border-bottom: 1px solid #fff;
    font-weight: 300;
}

footer .small {
    font-size: 12px;
}

@media (max-width: 768px) {
    h1 {
        font-size: 3.5rem;
    }

    .dashboard h4 {
        font-size: 1.2rem;
        line-height: 2.5rem;
    }
    .navbar-nav {
        margin-top: 20px;
    }

    .navbar .btn-outline, .navbar .btn-orange {
        padding: 6px 0px;
        background-color: transparent;
        border: none;
        border-bottom: #ff9100 2px solid;
        margin: 5px;
        color: var(--primary-color);
        border-radius: 0px;
    }
    
}

.bg-overlay {
    position: relative;
}

.bg-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.bg-overlay .container {
    position: relative;
    z-index: 2;
}

.py-6 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")
}