.landing-container {
display: flex;
justify-content: center;
align-items: center;
height:90vh;
}
.landing-video {
position: absolute;
top:0;
left:0;
width: 100vw;
height: 90vh;
object-fit: cover;
z-index: -1;
}
.owl-carousel {
width: 50%;
backdrop-filter: blur(8px);
border-radius: 10px;
padding: 40px;
background-color: rgba(0, 0, 0, 0.7);
text-align: center;
z-index:0 !important;
}
.owl-carousel .item {
color: white;
font-weight: 600;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
gap: 20px;
}
.owl-carousel .item h5 {
font-size: 24px;
font-weight: 300;
}
.owl-carousel .item h3 {
font-size: 36px;
}
.owl-carousel .item a {
display: inline-block;
padding: 10px 20px;
background-color: #003092;
color: white;
text-decoration: none;
border-radius: 10px;
transition: 0.3s;
}
.owl-carousel .item a:hover {
background-color: #0056b3;
}
.landing-line {
width: 30%;
height: 3px;
background-color: #ffab5b;
border-radius: 50%;
}

@media screen and (max-width: 768px) {
.owl-carousel {
padding: 20px;
width: 80%;
}
.owl-carousel .item h5 {
font-size: 20px;
}
.owl-carousel .item h3 {
font-size: 30px;
}
.owl-carousel .item p {
font-size: 16px;
}
}