body {
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
}

.hero {
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .hero {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 768px) {
    .hero {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .hero-content {
        flex-direction: row;
    }

    .text-block {
        text-align: left;
    }
}

.hero-content img {
    width: 100%;
    max-width: 32rem;
    border-radius: 0.5rem;
    filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15));
}

.text-block {
    text-align: center;
}

h1 {
    font-size: 1.875rem;
    font-weight: bold;
}

@media (min-width: 640px) {
    h1 {
        font-size: 2.25rem;
    }
}

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

.paragraph {
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-size: 1rem;
}

@media (min-width: 640px) {
    .paragraph {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
        font-size: 1.125rem;
    }
}

@media (min-width: 768px) {
    .paragraph {
        font-size: 1.25rem;
    }
}

.small-text {
    padding-bottom: 1rem;
    font-size: 0.875rem;
}

@media (min-width: 640px) {
    .small-text {
        font-size: 1rem;
    }
}

@media (min-width: 768px) {
    .small-text {
        font-size: 1.125rem;
    }
}

.text-primary {
    color: #0d6efd;
    /* Bootstrap primary */
    font-weight: bold;
    text-decoration: none;
}

.text-secondary {
    color: #6c757d;
    /* Bootstrap secondary */
    font-weight: 500;
    text-decoration: none;
}

.navbar_new.scrolled {
    background: #455de6;
    background: linear-gradient(60deg, rgb(195, 199, 220) 0%, rgba(56, 88, 148, 1) 45%, rgba(60, 62, 194, 1) 100%);
    transition: background-color 0.6s ease-in-out;
}

/* .navbar_new {
    background: #485eb8;
    background: radial-gradient(circle, rgba(72, 94, 184, 1) 0%, rgba(56, 92, 235, 1) 45%, rgba(117, 142, 240, 1) 100%);
} */



.nav-link {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;

}

.footer {
    background-color: #333c4dd8;
    padding: 20px;
    text-align: center;
}


.footer a {
    color: rgb(255, 255, 255);
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.card p {
    font-size: 20px;
}

#tesla {
    background: linear-gradient(90deg,
            rgba(79, 69, 35, 0.8) 0%,
            /* 0.8 = 80% opaque */
            rgba(59, 48, 33, 0.8) 46%,
            rgba(82, 72, 51, 0.8) 100%);
    color: white;
}


#tesla video {
    background-color: #465e5a;
}


#lynb {
    background: #597891;
    background: linear-gradient(90deg, rgba(89, 120, 145, 1) 0%, rgba(108, 141, 171, 1) 46%, rgba(63, 91, 102, 1) 100%);
    color: white;
}

#lynb video {
    background-color: #f3f0ee;
}

#gwc {
    background: linear-gradient(90deg,
            rgba(191, 137, 42, 0.8) 0%,
            rgba(173, 143, 94, 0.8) 46%,
            rgba(138, 98, 34, 0.8) 100%);
    color: white;
}

#gwc video {
    background-color: #73512e;
}

.card-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 60px;
}

.video-container,
.text-container {
    flex: 1 1 350px;
    max-width: 500px;
}

.video-container video {
    width: 90%;
    height: 300px;
    object-fit: contain;
    object-position: center top;
    border-radius: 8px;
}

.alert {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid transparent;
    border-radius: 4px;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert-error,
.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}