@media (max-width: 768px) {
    html {
        font-size: 0.5em;
    }
}

@media (max-width: 992px) {
    .navbar-expand-md .navbar-collapse {
        display: flex !important;
        flex-basis: auto !important;
    }
}

.navbar-nav-scroll {
    flex-direction: row;
    gap: 10px; /* Adjust this gap as needed */
}

.navbar-nav-scroll .nav-item {
    display: flex;
    align-items: center;
}

h3 {
    font-size: 1.5em;
}

.video-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%;
}
  
.responsive-iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

h1, h2, h3, h4, h5, h6, p {
    font-family: 'Oswald Regular', sans-serif;
}

p {
    font-size: 1.2em;
}

a {
    color: #dc3545;
}

.gradient-text {
    background-image: linear-gradient(#f6bd31, #ac9400); 
    -webkit-background-clip: text; 
    background-clip: text;
    color: transparent;
}

.truncate {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}