@media (max-width: 600px){
.logo-btnMenu {
    width: 100%;
    gap: 10px;
}
.logo-btnMenu .logo{
    margin-right: auto;
}
#mobile-search-toggle .inc-ui-icon{
    font-size: 20px;
    color: #0C26A3;

}
   footer .info-footer .enlaces-footer li {
            margin-bottom: 20px;
        line-height: 1.2;
}
footer .info-footer .enlaces-footer li.font-weight-bold {
    margin-bottom: 25px;
}
footer .info-footer li a {
    font-size: 14px;
}
footer #ubica li {
    margin-bottom: 15px;
    font-size: 14px;
}
footer .txt-red {
margin-right: auto;
}
ul.list-unstyled.redes1 {
    border-bottom: none;
    padding-bottom: 1rem;
    margin-bottom: 0.5rem;
}
.ico-red {
    display: flex;
    flex-direction: inherit;
    align-items: flex-start;
    gap: 0px;
}
.redes::after{
        content: "";
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 0;
        width: 90%;
        height: 1px;
        background: white;
}
.ico-red ul li a {
    padding: 0px 8px;
}
.ico-red ul li a img {
    width: 35px;
    height: auto;
}
.txt-red p {
    font-size: 1.3rem !important;
    font-weight: 500;
}
.div-ubica h5 {
    margin-top: 5px;
    display: inline-block;
    margin-bottom: 20px;
}
ul#menu-enlaces-de-interes-4 {
           gap: 10px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
ul#menu-enlaces-de-interes-4 .menu-item:nth-child(1),
ul#menu-enlaces-de-interes-4 .menu-item:nth-child(3)  {
      border-right: solid 1px white;
}
ul#menu-enlaces-de-interes-4 .menu-item {
  
    padding: 0 6px;
    line-height: 1;
}
ul#menu-enlaces-de-interes-4 .menu-item:nth-child(4) a,
ul#menu-enlaces-de-interes-4 .menu-item:nth-child(3) a {
    font-weight: 500;
    text-decoration: underline;
}
.copyrights>a{
        flex-direction: column;
}
.copyrights>a img {
    width: 35%;
}
.div-banner img {
    object-fit: cover;
}

section.banner-inicio h1 {
    font-size: 25px;
    line-height: 1.3;
    text-shadow: 3px -1px 10px #575757;
    text-align: left;
    margin-right: auto;
}
.div-banner .div-content.w-50 {
    width: 100% !important;
}
.banner-inicio .card-img-overlay p{
    text-align: left;
    font-size: 12px;
    margin: 0;
            text-shadow: 3px -1px 10px #575757;
}
.menu-vertical{
    padding: 0 30px;    
    padding-top: 5.7rem;
}
.menu-vertical .navbar-nav a {
    font-size: 15px;
}
.menu-vertical .menu-item-has-children > a, .menu-vertical .menu-item > a.nav-link {
    font-size: 22px;
}
}



@media (max-width: 575.98px) {
	#menuPrincipal #header-search-form {
		width: 100%;
		margin-top: 12px;
	}

	#menuPrincipal #header-search-form.is-open {
		display: flex !important;
	}

	#menuPrincipal #header-search-form .input-group {
		width: 100%;
	}
}


/* ==========================================
   BUSCADOR MÓVIL A PANTALLA COMPLETA
========================================== */

.mobile-search-overlay {
	position: fixed;
	inset: 0;
	z-index: 99999;
	width: 100%;
	height: 100vh;
	height: 100dvh;
	overflow-y: auto;
	background: rgba(3, 9, 24, 0.88);
	-webkit-backdrop-filter: blur(2px);
	backdrop-filter: blur(2px);

	opacity: 0;
	visibility: hidden;
	pointer-events: none;

	transition:
		opacity 0.25s ease,
		visibility 0.25s ease;
}

.mobile-search-overlay.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.mobile-search-overlay__inner {
	width: 100%;
	padding:
		calc(env(safe-area-inset-top) + 160px)
		16px
		40px;
}

.mobile-search-overlay__close {
	position: absolute;
	top: calc(env(safe-area-inset-top) + 86px);
	left: 16px;

	display: inline-flex;
	align-items: center;
	justify-content: center;

	width: 44px;
	height: 44px;
	padding: 0;

	color: #1234b5;
	background-color: #fff;
	border: 0;
	border-radius: 50%;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);

	font-size: 25px;
	line-height: 1;
	cursor: pointer;
}

.mobile-search-overlay__close:hover,
.mobile-search-overlay__close:focus {
	color: #fff;
	background-color: #1234b5;
	outline: none;
}

.mobile-search-overlay__title {
	margin: 0 0 15px;
	color: #fff;
	font-size: 21px;
	font-weight: 700;
	line-height: 1.2;
}

/* Formulario */

.mobile-search-form {
	width: 100%;
	margin: 0;
}

.mobile-search-form__group {
	display: flex;
	width: 100%;
}

.mobile-search-form__input {
	display: block;
	flex: 1 1 auto;
	min-width: 0;
	height: 44px;
	padding: 8px 12px;

	color: #222;
	background-color: #fff;
	border: 1px solid #e5e5e5;
	border-right: 0;
	border-radius: 4px 0 0 4px;

	font-size: 13px;
	line-height: 1.4;
	outline: none;
}

.mobile-search-form__input::placeholder {
	color: #a8a8a8;
	opacity: 1;
}

.mobile-search-form__input:focus {
	border-color: #1234b5;
	box-shadow: inset 0 0 0 1px #1234b5;
}

.mobile-search-form__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 5px;

	flex: 0 0 auto;
	height: 44px;
	padding: 0 13px;

	color: #fff;
	background-color: #1234b5;
	border: 1px solid #1234b5;
	border-radius: 0 4px 4px 0;

	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
}

.mobile-search-form__submit:hover,
.mobile-search-form__submit:focus {
	color: #1234b5;
	background-color: #fff;
	outline: none;
}

/* Búsquedas frecuentes */

.mobile-search-frequent {
	margin-top: 27px;
}

.mobile-search-frequent__title {
	margin: 0 0 13px;
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.4;
}

.mobile-search-frequent__items {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 12px;
}

.mobile-search-frequent__item {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	min-height: 31px;
	padding: 6px 14px;

	color: #fff;
	background: rgba(255, 255, 255, 0.46);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 3px;

	font-size: 13px;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;

	transition:
		background-color 0.2s ease,
		color 0.2s ease;
}

.mobile-search-frequent__item:hover,
.mobile-search-frequent__item:focus {
	color: #1234b5;
	background-color: #fff;
	text-decoration: none;
	outline: none;
}

/* Evita desplazamiento de la página al abrir el buscador */

body.mobile-search-open {
	overflow: hidden;
	touch-action: none;
}

/* El overlay solamente debe funcionar en móvil */

@media (min-width: 576px) {
	/* .mobile-search-overlay {
		display: none !important;
	} */
}

@media (max-width: 359.98px) {
	.mobile-search-form__submit {
		padding-right: 10px;
		padding-left: 10px;
	}

	.mobile-search-form__submit span {
		font-size: 12px;
	}
}