/* CONFIGURACIONES GENERALES */
@font-face {
    font-family: 'Roboto';
    src: url("../css/fonts/Roboto/Roboto-Regular.ttf");
}
*::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge */
}

* {
    scrollbar-width: none; /* Firefox */
}
*{
    text-decoration: none;
    margin: 0;
    padding: 0;
    border: 0;
    font-family: 'Roboto';
    --fondo: linear-gradient(90deg, rgba(187,154,76,1) 0%, rgba(251,241,146,1) 30%, rgba(163,127,43,1) 100%);   
    --red: #C4014B;
    --verde: #004136;
    --resalte: linear-gradient(90deg, rgba(187,154,76,1) 0%, rgba(251,241,146,1) 30%, rgba(163,127,43,1) 100%);
}


#header{
    background: var(--fondo);
    width: 100%;
    position:fixed;
    z-index: 2;
    /* height: 80px; */
}

.header{
    width: auto;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
}

.link{
    a{
        display: block;
        color: black;
        font-size: 18px;
        padding: 15px;
        transition: all 300ms;
        text-decoration: none;
    }
}

.link a:hover{
    color: var(--red);
    transform: scale(1.1, 1.2);
}

.activo_menu{
    color: var(--red) !important;
}

main{
    background: black;
    padding-top: 80px;
}

/* body */
.img-radius{
    border-radius: 1.25rem;
    padding: 0.375rem;
}

.fondo {
    width: 100%;
    min-height: calc(100vh - 80px);
    position: relative;
    overflow: hidden;
}

.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.background img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    object-position: center; 
    opacity: 0.8; 
}

.banner {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;
    width: 100%;
    min-height: calc(100vh - 80px) ;
    background-color: rgba(0, 0, 0, 0.5);
    /* padding: 20px; */
    text-align: center;
}


#footer{
    background: var(--fondo);
    height: auto;
    align-items: center;
    width: 100%;
}

.footer{
    align-items: center;
}
.frase p{
        text-align: justify;
        margin-top: 20px;
        color: black;
    }

#menu_footer h5{
    font-size: 30px;
    color: black;
}
#menu_footer>ul>li>a{
    color: black;
}

.contactos{
    color: black;
    h5{
        font-size: 30px;
        text-align: center;
    }
    .contacto{
        display: flex;
        padding-left: 10px;
        img{
            width: 30px;
        }
        .direccion,
        .telefono,
        .email{
            height: 30px;
        }
        
        p{
            font-size: 12px;
            line-height: 30px;
            padding-left: 10px;
        }
    }
} 

.siguenos{
    color: black;
    text-align: center;
    h5{
        font-size: 30px;
    }
    img{
        margin-top: 15px;
    }
}
hr{
    color: black;
}
.copy{
    color: black;
} 
.text-justify {
    text-align: justify;
}
/* 
@media (min-width: 576px) {

}

@media (min-width: 768px) {

}

@media (min-width: 992px) {

}

@media (min-width: 1200px) {  

}

@media (min-width: 1400px) { 

} 
*/