html,
body {
    font-size: 18px;
    color: var(--bs-primary);
    vertical-align: baseline;
    line-height: 26px;
    font-weight: 400;
    overflow-x: hidden;
    font-family: Arial, Helvetica, sans-serif
}

/* Estilos para la clase fixed-modal */
.fixed-modal {
    display: none;
    position: fixed;
    z-index: 1050;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
    background: rgba(0, 0, 0, 0.5);
    /* Fondo oscuro */
}

.fixed-modal.show {
    display: block;
}

/* Estilos personalizados para el botón de cerrar */
.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 2rem;
    color: white;
}

/****end styles modal***/





/******* Spinner Styles *******/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/***** Spinner Styles End *****/


/*****************************/


/******* Button Styles ********/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
    font-size: 15px;
    font-weight: bold;
}

.btn.btn-primary:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}

.btn.btn-light {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-light:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-primary);
    color: var(--bs-light) !important;
}

.btn-hover {
    transition: 0.5s;
}

.btn-hover:hover {
    color: var(--bs-secondary) !important;
}

/***** Button Styles End ******/


/*****************************/


/** Section Title Styles **/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.section-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-primary) !important;
}

.section-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-left: -50px;
    border: 1px solid var(--bs-primary) !important;
}

/** Section Title Styles End **/

/***** Navbar Styles ******/
.navbar-light .navbar-nav .nav-link {
    font-family: 'Roboto', sans-serif;
    position: relative;
    padding: 15px 15px;
    color: var(--bs-white) !important;
    font-size: 15px;
    font-weight: bold;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 10px 15px;
    color: var(--bs-primary) !important;
    font-weight: bold;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-white) !important;
}

.navbar-light .navbar-brand h1 {
    color: var(--bs-white);
    font-size: 15px;
    font-weight: bold;
}

.sticky-top.navbar-light .navbar-brand h1 {
    color: var(--bs-primary);
    font-weight: bold;
}

.navbar-light .navbar-brand img {
    max-height: 40px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 37px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: var(--bs-white);
    }

    .navbar-light .navbar-brand h1 {
        color: var(--bs-primary);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--bs-dark) !important;
    }

    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active {
        color: var(--bs-primary) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        z-index: 999;
    }

    .sticky-top.navbar-light {
        position: fixed;
        background: var(--bs-light);
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 0;
        bottom: -1px;
        left: 0;
        background: var(--bs-primary);
        transition: .5s;
        z-index: -1;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        height: calc(100% + 1px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}

/***** Navbar Styles End ******/

/********************************************************************************************************/

/*** Single Page Hero Header End ***/
.bg-breadcrumb {
    background: linear-gradient(rgba(19, 53, 123, 0.5), rgba(19, 53, 123, 0.5)), url(../img/Logo&Fondo/fondo-bg.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 150px 0 50px 0;
}

.bg-breadcrumb .breadcrumb-item a {
    color: var(--bs-white) !important;
}

/*** Single Page Hero Header End ***/

.column-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.column {
    width: 45%;
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    margin-bottom: 10px;
}

/* Media query for tablets and smaller devices */
@media (max-width: 768px) {
    .column {
        width: 100%;
        margin-bottom: 20px;
    }
}

/* Media query for larger devices */
@media (min-width: 1200px) {
    .column-container {
        justify-content: space-around;
    }
    .column {
        width: 40%;
    }
}



/* Modal styles 
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease;
}

.modal-content {
    width: 100%;
    max-width: 300px;
    overflow: hidden;
    padding: 10px 30px;
    border-radius: 5%;
    border: 1px solid #fff;
    transition: all 0.4s ease-in-out;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    text-align: center;
    background: linear-gradient(-135deg, #13357b, #13357b);
}

.modal.show {
    display: flex;
    opacity: 1;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
*/

        /* Estilos de la tarjeta */
        .modal-content {
            width: 100%;
            max-width: 400px;
            overflow: hidden;
            padding: 10px 30px;
            border-radius: 5%;
            border: 1px solid #fff;
            transition: all 0.4s ease-in-out;
            box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
            text-align: center;
            background: linear-gradient(-135deg, #13357b, #13357b);
        }
  
        /* Estilos del encabezado de la tarjeta */
        .modal-content-encabezado {
            position: relative;
        }
  
        .modal-content-encabezado::before,
        .modal-content-encabezado::after {
            content: '';
            position: absolute;
            opacity: .7;
        }
  
        /* Estilos de la animación de elementos */
        .Estructura-desplazar {
            opacity: 0;
            transition: all .5s ease;
            transform: translateY(-45px);
        }
  
        .Estructura-agrandar {
            transform: scale(0);
            opacity: 0;
            transition: all .4s ease;
        }
  
        .Estructura-card:hover .Estructura-agrandar {
            opacity: 1;
            transform: scale(1);
        }
  
        .Estructura-card:hover .Estructura-desplazar {
            transform: translateY(0px);
            opacity: 1;
        }
  
        .Estructura-desplazar:nth-child(1) {
            transition-delay: 0.1s;
        }
  
        .Estructura-desplazar:nth-child(2) {
            transition-delay: 0.2s;
        }
  
        .Estructura-desplazar:nth-child(3) {
            transition-delay: 0.4s;
        }
  
        /* Estilos de la información personal */
        .Estructura-info-personal:nth-child(1) {
            font-size: 25px;
            font-weight: bold;
            padding: 10px;
            line-height: 25px;
        }
  
        .Estructura-info-personal:nth-child(3) {
            margin: 15px 0;
        }
  
        .Estructura-info-personal {
            color: #fff;
        }
  
        .modal-content-acciones {
            text-align: center;
            margin-top: 25px;
        }
  
        .botones {
            color: #13357b;
            border: none;
            border-radius: 30px;
            box-shadow: 0 0 4px rgba(0, 0, 0, .2);
            padding: 8px 15px;
            font-size: 16px;
            width: 80%;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(90deg, #fff, #fff);
            transition: width 1.1s;
        }
  
        .botones:hover {
            cursor: pointer;
            width: 100%;
        }
  
        .botones span {
            margin-right: 10px;
            font-size: 20px;
        }
  
        .modal {
            display: none;
            position: fixed;
            z-index: 1;
            left: 0;
            top: 0;
            width: 100%;
            overflow: auto;
            background-color: rgb(0, 0, 0);
            background-color: rgba(0, 0, 0, 0.4);
        }
  
        .modal-content {
            background-color: #fff;
            margin: auto;
            padding: 20px;
            border: 3px solid #fff;
            width: 30%;
        }
  
        .modal-content img {
            position: relative;
            border-radius: 10px;
            display: block;
            height: 100px;
            width: 100px;
            border: 2px solid #000000;
            object-fit: cover;
            margin: 20px auto;
            transition: all 0.3s ease;
        }
  
        .close {
            color: #fff;
            float: right;
            font-size: 28px;
            font-weight: bold;
        }
  
        .close:hover,
        .close:focus {
            color: #fff;
            text-decoration: none;
            cursor: pointer;
        }

        /* Media Queries para diferentes tamaños de pantalla */
@media (max-width: 1200px) {
    .modal-content {
        width: 50%;
    }
}

@media (max-width: 768px) {
    .modal-content {
        width: 70%;
    }
}

@media (max-width: 576px) {
    .modal-content {
        width: 90%;
        padding: 15px 20px;
    }

    .modal-content img {
        height: 80px;
        width: 80px;
    }

    .close {
        font-size: 24px;
    }
}

/*boton back-to-top */
.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px; 
    height: 45px;
    background-color: #13357b; 
    color: #fff; 
    border-radius: 50%; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
    transition: opacity 0.3s, transform 0.3s; 
    z-index: 99;
    cursor: pointer; 
    opacity: 0; 
}

.back-to-top.show {
    opacity: 1; 
    transform: translateY(0); 
}

.back-to-top:hover {
    background-color: #fff; 
    color: #13357b; 
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); 
    transform: scale(1.1); 
}

.back-to-top i {
    font-size: 18px; 
    transition: color 0.3s; 
}

.back-to-top:hover i {
    color: #13357b; 
}
/*boton back-to-top end*/

/***Informacion map***/
.sec-title h2 {
    font-size: 2rem;
    color: var(--bs-primary);
    margin-bottom: 15px;
}

.sec-title p {
    font-size: 1rem;
    color: var(--bs-primary);
    font-size: 17px;
}

.sec-title ul {
    list-style: none;
    padding: 0;
}

.sec-title ul li {
    margin-top: 10px;
}

.sec-title ul li a {
    text-decoration: none;
    color: var(--bs-primary);
    font-weight: bold;
    transition: color 0.3s;
}

.sec-title ul li a:hover {
    color: var(--bs-primary);
}

.title {
    font-size: 1.5rem;
    margin-top: 20px;
    color: var(--bs-primary);
}

.mobile-mb-50 {
    margin-bottom: 50px;
}

.mobile-mb-50 i {
    color: var(--bs-primary);
    margin-right: 10px;
}

iframe {
    width: 100%;
    height: 450px;
    border: 0;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.rs-vertical-middle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.sec-spacer {
    padding: 60px 0;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-lg-4,
.col-lg-8 {
    padding: 0 15px;
}

@media (max-width: 768px) {

    .col-lg-4,
    .col-lg-8 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/***Informacion map End***/



/*** img icon ***/
.img-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: #fff;
    /* Color de fondo claro */
}

.img-icon img {
    max-width: 50%;
    height: auto;
}

/*** img icon End ***/

/*** Footer Start ***/
.footer {
    background: linear-gradient(rgba(19, 53, 123, .8), rgba(19, 53, 123, .8)), url(../img/Logo&Fondo/fondo.jpg);
    background-attachment: scroll;
    background-clip: initial;
    background-color: rgba(0, 0, 0, 0);
    background-origin: initial;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    max-height: 100%;
}

.footer .footer-item a {
    line-height: 30px;
    color: var(--bs-white);
    transition: 0.5s;
    font-size: 14px;
}

.footer .footer-item a:hover {
    letter-spacing: 1px;
    color: var(--bs-white);

}

/*** Footer End ***/