body
{
    font-family: "Bebas Neue", sans-serif;
}

.video-container {
    position: relative;
    overflow: hidden;
    height: 80vh; /* Full screen height */
}

.video-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;

}

.fade-in {
    opacity: 0;
    transition: opacity 1s ease; 
}

.fade-in.visible {
    opacity: 1; 
}

.jumbotron-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: white;
    text-align: center;
}

.jumbotron-content h1 {
    font-size: 10rem;
    font-weight: bold;
}

.jumbotron-content p {
    font-size: 2rem;
}

.nav-item{
margin: 2rem;
font-size: 5rem;
margin-top: none !important;
}

.card {
    border: none;
}

.col-md-4{
    padding-top: 50px;
}

.card img {
    transition: ease-in-out 1s;
    border-radius: 6.5em;
}

.card img:hover {
    transition: ease-in-out 1s;
    border-radius: 4em;
}

.text-head {
    font-size: 10rem;
    padding-bottom: 100px;
    text-align: center;
    color: #ffffff;
}

/* h3 {
    font-size: 5rem;
}

.row {
    padding-bottom: 50px;
/* } */

.card-title {
    text-align: center;
}

h5 {
    font-size: 3em;
    font-weight: 600;
}

.card-text {
text-align: center;
padding: 50px;
font-family: "Open Sans", sans-serif;
} 

.card-link {
    text-decoration: none;
    text-align: center;
    color: black;
    font-size: 3em;
    box-shadow: inset 0 0 0 0 #aed5e3;
    color: #000000;
    margin: 0 -.25rem;
    padding: 0 .80rem;
    transition: color .5s ease-in-out, box-shadow .5s ease-in-out;
    border-radius: 0.5em;
}

.card-link:hover {
    box-shadow: inset 350px 0 0 0 #aed5e3;
    color: white;
    /* border-radius: 0.5em; */
}


.card-img {
    max-height: 50vh;
}

.navbar .container-fluid {
    justify-content: center !important;
}



@media only screen and (max-width: 983px) {
    .nav-item{
        margin: 1rem;
        font-size: 3rem;
        }

        .navbar-nav {
            display: flex;
            flex-direction: row !important;
        }
  }
  

  @media only screen and (max-width: 951px) {
    .nav-item{
        margin: 1rem;
        font-size: 2rem;
        }

        .navbar-nav {
            display: flex;
            flex-direction: row !important;
        }
  }
  


  @media only screen and (max-width: 432px) {
    .nav-item{
        margin: 1rem;
        font-size: 1rem;
        }

        .navbar-nav {
            display: flex;
            flex-direction: row !important;
        }
        h1{
            font-size: 5em !important;
        }

        .jumbotron-content p  {
            font-size: 2em !important;
        }
  }
  

