body {
    background-color: rgba(0, 0, 0, 1);
    margin:0;
    padding: 0;
    height: 100%;
}
/*
.background-image {
    background-image: url('../images/background.jpg');
    background-size: 100%;
    background-position: top center;
    width: 100%;
    background-repeat: no-repeat;

}*/

.background-image {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: 100%;
    background-position: top center;
    background-repeat: no-repeat;
}

.background-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/background.jpg);
    background-size: 100%;
    background-position: top center;
    background-repeat: no-repeat;
    opacity: 0.4; /* Ajusta el nivel de opacidad */
    z-index: -1; /* Coloca la imagen detrás del contenido */
}

@media (max-width: 768px) { /* Adjust the max-width as needed */
    .background-image {
        background-size: 125%; /* Show 80% of the image width */
    }
}

/* Navbars  */

nav.bg-dark{
    background-color: rgba(0, 0, 0, 1) !important;
}

.social img {
    height:30px !important;
}

.carousel-caption{
    top: 1.25rem !important;
}

.nav-link {
    color: white;
    font-size: 0.9em;
}

.nav-link:hover, .nav-link:active {
    background-color: #D32027 !important;
    color: white;
}

.btn-primary {
    background-color:  #346C86 !important;
    border-color: #346C86 !important;
}

/* Elements */

.fw-divider-short-line .short_line {
    width: 25%;
    height: 5px;
    margin-top: 20px;
    margin-bottom: 24px;
    background-color: #EDAD19;
    opacity: 1;
    border: 0;
}

.fw-divider-short-line .divider_left {
    margin-left: 0;
    text-align: left;
}

#footer {
    /* background-color: #222222; */
}
/*
.form-control {
    color: #F5F5F5;
    background-color: black;
    border: 0;
}*/

h1, h2, h3, h4, h5, h6 {
    font-family: "Rajdhani", sans-serif;
    font-weight: 600;
    font-style: normal;
}

/* Listas */

.list-group-item {
    background-color: transparent !important;
    font-family: Rajdhani, Roboto ;
    color:#BCBCBC;
    border: 0;
}

.list-group-item-action {
    transition: all 0.3s ease-in-out;
}

.list-group-item-action:hover {
    color:white;
    background-color: #222222 !important;
    transform: scale(1.05);
}

.list-group-item  h1, h2, h3, h4, h5 {
    color: white !important;
}

.list-group-item.active {
    font-weight: normal;
    color:white;
    background-color: #222222 !important;
    border: 0;
}

.list-group-item  p, small {
    color: #666 !important;
}

/** forms */

.form-control, .form-select {
    color: white;
    background-color: black;
    border: 1px solid #333333;
}

/* Buttons  */

button {
    font-family: "Rajdhani", sans-serif !important;
}

.swal2-modal{
    border: 1px solid #666 !important;
}

.btn-success{
    background-color: #038900;
}

/*
div:where(.swal2-container) button:where(.swal2-styled).swal2-confirm{
    background-color: #038900 !important;
}
*/

/* Card overlay */

.gallery-thumb {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.card-img-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    background-color: rgba(0, 0, 0, 0.6); /* Oscurece la imagen */
}
.card:hover .card-img-overlay {
    opacity: 1;
}
.card-img {
    transition: transform 0.3s ease-in-out;
}
.card:hover .card-img {
    /* transform: scale(1.05); */
}