﻿
/*                          Video                  */     

.hero-video-section{
    position:relative;
    height: 50vh;
    overflow: hidden; 
}

.hero-video{
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    object-position: center 35%;
    z-index: 1; 
}

.hero-video-overlay{
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5)); 
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    
    opacity: 0;
    animation: fadeIn 2.5s ease-in-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-title{
    font-size: 3.3rem;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .hero-title {
        padding-top: 12rem;
        font-size: 2rem;
    }
}

/*              Segunda Sección             */

.hero-video-second {
    background-image: url('/dgmoss/assets/img/backs/3.png');
    animation: fadeIn 2.2s ease-in-out forwards;
    opacity: 0;
}

.btn-second h5{
  color: black;
  font-weight: 300;
  text-decoration: none;
  padding: 10px 20px;
  border: 1px solid black;
  border-radius: 10px;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-second:hover h5{ 
  background-color: #a57f2c;
  color: white;
  text-decoration: none;
  border-color: white;
}

.hero-video-second p {
  color: black;
}
