/*============ FONTS ============*/
@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Public+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/*============ VARIABLES ============*/
:root {
    --black: #222222;
    --white: #FFFFFF;
    --color-1: #19323C;
    --color-2: #DBBEA1;

    --fw-xthinner: 100;
    --fw-thinner: 200;
    --fw-thin: 300;
    --fw-normal: 400;
    --fw-bold: 500;
    --fw-bolder: 600;
    --fw-xbolder: 700;
    --fw-xxbolder: 800;
    --fw-xxxbolder: 900;

    --heading-gigant: 120px;
    --heading-1: 60px;
    --heading-2: 48px;
    --heading-3: 40px;
    --heading-4: 36px;
    --heading-5: 28px;
    --heading-6: 24px;
    --heading-7: 20px;
    --heading-8: 18px;
    --heading-9: 16px;
    --heading-10: 14px;
    --heading-11: 12px;

    --xs: 5px;
    --s: 10px;
    --md: 20px;
    --x-md: 30px;
    --lg: 40px;
    --x-lg: 60px;
    --xx-lg: 80px;
    --xxx-lg: 160px;

    --font-1: 'Public Sans', sans-serif;
    --font-2: 'Roboto', sans-serif;
}

/*============ GENERAL START ============*/
*,
*::before,
*::after {
    box-sizing: border-box;
    -webkit-transition: background-color 0.4s ease-in-out;
    -moz-transition: background-color 0.4s ease-in-out;
    transition: background-color 0.4s ease-in-out;
}

@media (prefers-reduced-motion: no-preference) {
    :root {
        scroll-behavior: smooth;
    }
}

body {
    margin: 0;
    font-family: var(--bs-body-font-family);
    font-size: var(--bs-body-font-size);
    font-weight: var(--bs-body-font-weight);
    line-height: var(--bs-body-line-height);
    color: var(--bs-body-color);
    text-align: var(--bs-body-text-align);
    background-color: var(--bs-body-bg);
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    font-variant-numeric: normal;
    -moz-transition: padding-top 0.5s ease;
    -o-transition: padding-top 0.5s ease;
    -webkit-transition: padding-top 0.5s ease;
    transition: padding-top 0.5s ease;
    position: relative;
    background: var(--color-1);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-1);
    color: var(--black);
    font-weight: var(--fw-xbolder);
}

span,
p,
label,
input,
input::placeholder,
select,
button,
a {
    font-family: var(--font-2);
    color: var(--black);
    font-weight: var(--fw-thin);
}

.btn-check:focus+.btn, .btn:focus {
    outline: 0 !important;
    box-shadow: 0 0 0 0 rgb(0 0 0 / 0%) !important;
}

::-webkit-scrollbar {
    display: none;
}

.form-control {
    font-variant-numeric: lining-nums;
}

.form-control:focus {
    background-color: transparent;
    border-color: transparent;
    outline: 0;
    box-shadow: 0 0 0 0.0rem rgba(0, 0, 0, 0.0);
}

.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: 0 0 0 0 !important;
}

.btn-close:focus {
    outline: 0;
    box-shadow: 0 0 0 0.0rem rgb(0 0 0 / 0%) !important;
    opacity: 1;
}

.form-check-input:checked {
    background-color: var(--color-1) !important;
    border-color: transparent !important;
}

.navbar-toggler {
    background-color: transparent !important;
    border-color: rgba(0, 0, 0, 0) !important;
    outline: 0 !important;
}

.navbar-toggler .navbar-toggler-icon {
    background-image: none !important;
}

.nav-mobile .btn-close {
    background-image: none !important;
    background: transparent !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 1 !important;
}

.nav-mobile .btn-close i {
    font-size: 25px;
    color: var(--white) !important;
}

.custom-tooltip {
    --bs-tooltip-bg: var(--color-1) !important;
    color: var(--white) !important;
    font-family: var(--font-2) !important;
    font-weight: var(--fw-thin);
}

button:focus-visible {
    outline: none !important;
    border: 0 !important;
}

/*============ GENERAL END ============*/

/*============ KEYFRAMES START ============*/
@-webkit-keyframes reveal {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes reveal {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes expandirNav {
    0% {
        top: -200px;
    }

    100% {
        top: 0;
    }
}

@keyframes expandirNav {
    0% {
        top: -200px;
    }

    100% {
        top: 0;
    }
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

@-webkit-keyframes marquee {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/*============ KEYFRAMES END ============*/

/*============ PRELOADER START ============*/
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    display: table;
    height: 100%;
    width: 100%;
    z-index: 99999;
    background: rgb(25 50 60 / 95%);
    opacity: 1;
    backdrop-filter: blur(30px);
    -webkit-transition: background-color 0s ease-in-out !important;
    -moz-transition: background-color 0s ease-in-out !important;
    transition: background-color 0s ease-in-out !important;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#102a63", endColorstr="#384d7a", GradientType=1);
}

.page-loader .txt {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

/*.page-loader .txt svg{
    width: 365px;
    height: 96px;
}*/

/* ANIMATION */

/* Aplica la animación a cada path del SVG */
.page-loader .txt svg {
    opacity: 0;
    animation: reveal 1s forwards;
    animation-delay: 0.3s;
    max-width: 350px;
}

/*============ PRELOADER END ============*/

/*============ NAVBAR START ============*/

nav {
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    background-color: var(--color-1);
    padding: var(--md) 0px;
    padding-bottom: 0px !important;
    min-height: 120px;
    flex-direction: column;
}

nav .navbar-title {
    color: var(--color-2);
    font-family: var(--font-1);
    font-size: 32px;
    font-style: normal;
    font-weight: var(--fw-thin);
    line-height: normal;
    letter-spacing: -2.56px;
}

nav .navbar-collapse {
    flex-grow: unset;
}

nav .collapse .navbar-nav {
    gap: 27px;
    align-items: center;
}

nav .collapse .navbar-nav .nav-item .nav-link {
    color: var(--white);
    font-family: var(--font-2);
    font-size: var(--heading-9);
    font-style: normal;
    font-weight: var(--fw-normal);
    line-height: normal;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

nav .collapse .navbar-nav .nav-item .nav-link:hover {
    cursor: pointer;
    opacity: 0.8;
    position: relative;
    transform: translateY(-3px);
    -webkit-transform: translateY(-3px);
}

nav .collapse .navbar-nav .nav-item .lang li {
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

nav .collapse .navbar-nav .nav-item .lang li:hover {
    position: relative;
    transform: translateY(-3px);
    -webkit-transform: translateY(-3px);
}

nav .collapse .navbar-nav .nav-item .nav-link.active {
    color: var(--color-1);
}

nav .collapse .navbar-nav .nav-item .btn {
    display: flex;
    padding: 8px;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    background: var(--white);
    border: solid 1px var(--white);
    color: var(--black);
    font-family: var(--font-2);
    font-size: var(--heading-9);
    font-style: normal;
    font-weight: var(--fw-xbolder);
    line-height: normal;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

nav .collapse .navbar-nav .nav-item .btn:hover {
    cursor: pointer;
    border: solid 1px var(--white);
    background-color: transparent;
    color: var(--white);
    position: relative;
    transform: translateY(-3px);
    -webkit-transform: translateY(-3px);
}

nav .collapse .navbar-nav .nav-item .lang li {
    width: 25px;
    height: 25px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

nav .collapse .navbar-nav .nav-item .lang li.active {
    padding: 5px;
    border: solid 2px var(--color-2);
}

nav .collapse .navbar-nav .nav-item .lang li.active a,
nav .collapse .navbar-nav .nav-item .lang li a {
    width: 25px;
    height: 25px;
    border-radius: 25px;
}

nav .collapse .navbar-nav .nav-item .lang li.active a img {
    padding: 2px;
}

nav .navbar-brand img {
    max-width: 200px;
}

nav .navbar-toggler .navbar-toggler-icon {
    width: 40px;
    height: 50px;
    padding: 0;
}

nav.fix {
    position: fixed;
    top: 0;
    min-height: 1px;
    -moz-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    animation: expandirNav .9s forwards;
    box-shadow: 0px 5px 20px rgb(0 0 0 / 30%);
    width: 100%;
    z-index: 1030;
    background: var(--color-1);
    padding-top: var(--md);
}

nav.fix .navbar-brand {
    position: unset;
    -moz-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

nav.fix .navbar-brand img {
    position: unset;
    -moz-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

nav.fix .navbar-brand img {
    max-width: 120px;
}

nav .offcanvas {
    display: none;
    width: 100%;
    min-width: 100%;
    margin: 0;
    border: 0;
}

nav .offcanvas {
    background: var(--color-1);
}

nav .offcanvas .lang li {
    width: 25px;
    height: 25px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

nav .offcanvas .lang li.active {
    padding: 5px;
    border: solid 2px var(--white);
}

nav .offcanvas .lang li.active a img {
    padding: 2px;
}

nav .offcanvas .btn-close {
    --bs-btn-close-bg: none !important;
    opacity: 1;
}

nav .offcanvas .btn-close i {
    color: var(--white);
    font-size: var(--heading-6);
}

nav .offcanvas .offcanvas-body {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

nav .offcanvas .offcanvas-body ul.first-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

nav .offcanvas .offcanvas-body ul.first-list li{
    width: 100%;
    text-align: center;
    padding: 5px 0px;
}

nav .offcanvas .offcanvas-body ul.first-list li a,
nav .offcanvas .offcanvas-body ul.first-list li button{
    color: var(--white);
    font-family: var(--font-1);
    font-size: var(--heading-3);
    font-style: normal;
    font-weight: var(--fw-normal);
    line-height: normal;
    border: 0;
    background: transparent;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

nav .offcanvas .offcanvas-body ul.first-list li button{
    margin: auto;
}

nav .offcanvas .offcanvas-body ul.first-list li a.active {
    color: var(--color-2);
}

nav .offcanvas .offcanvas-body ul.first-list li .dropdown .dropdown-menu{
    padding: 20px;
    background: var(--color-2);
    border-radius: 0;
    width: 100%;
}

nav .offcanvas .offcanvas-body ul.first-list li .dropdown .dropdown-menu li a{
    color: var(--color-1);
    font-size: var(--heading-6);
}

nav #sub-navbar {
    width: 100%;
    background-color: var(--color-2);
    padding: var(--s) 0px;
    margin-top: var(--md);
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    overflow: unset;
}

nav #sub-navbar .dropdown-menu{
    background: var(--color-2);
    border: none;
    border-radius: 0;
}

nav #sub-navbar ul li a {
    color: var(--color-1);
    font-family: var(--font-1);
    font-size: var(--heading-6);
    font-style: normal;
    font-weight: var(--fw-normal);
    line-height: normal;
    letter-spacing: -2.56px;
    opacity: 0.8;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

nav #sub-navbar ul li a.active {
    font-weight: var(--fw-bold);
    opacity: 1;
}

/*============ NAVBAR END ============*/

/*============ HEADER START ============*/
header {
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    background: url('../img/library/bg-cabecero.jpg'), lightgray 50% / cover no-repeat;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 220px 0px;
    min-height: 1000px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

header .contenedor-txt {
    gap: 50px;
    max-width: 500px;
    margin: auto;
    z-index: 1;
}

header .contenedor-txt img {
    max-width: 456px;
    margin: 0 auto;
}

header .contenedor-txt .separator {
    width: 100%;
    max-width: 100%;
    background-color: var(--white);
    height: 3px;
}

header .contenedor-txt .txt {
    color: var(--white);
    text-align: center;
    font-family: var(--font-1);
    font-size: 32px;
    font-style: normal;
    font-weight: var(--fw-thin);
    line-height: normal;
    letter-spacing: -2.56px;
}

/*============ HEADER END ============*/

/*============ PAGE LOCALIZACIÓN START ============*/
#localizacion {
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;


    min-height: 300px;
    position: relative;
    overflow: hidden;
}

#localizacion .fila-1 .columna_1 {
    margin-bottom: var(--x-lg);
}

#localizacion .fila-1 .columna_1 .title {
    color: var(--color-2);
    font-family: var(--font-1);
    font-size: var(--heading-1);
    font-style: normal;
    font-weight: var(--fw-thin);
    line-height: 100%;
    letter-spacing: -5.12px;
    max-width: 600px;
    margin-right: auto;
}

#localizacion .ubicacion #map {
    min-height: 400px;
    z-index: 0;
    width: 100% !important;
}

#localizacion .ubicacion .leaflet-tile-loaded {
    filter: brightness(1) invert(1) grayscale(10) !important;
}

#localizacion .ubicacion .leaflet-container a {
    color: var(--white) !important;
}

#localizacion .ubicacion .leaflet-container .leaflet-control-attribution {
    background: none !important;
    background-color: var(--white) !important;
}

#localizacion .ubicacion .ul-leaflet {
    font-size: 16px;
    line-height: 20px;
    font-family: var(--font-2);
    font-weight: var(--fw-normal);
    text-align: center;
    color: var(--white);
    margin-top: var(--md);
}

#localizacion .ubicacion .leaflet-popup-content-wrapper,
#localizacion .ubicacion .leaflet-popup-tip {
    background: var(--color-1);
}

#localizacion .ubicacion .img {
    height: 400px;
}

#localizacion .ubicacion .img img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    object-position: center;
}

#localizacion .ubicacion .txt-2 {
    color: var(--white);
    font-family: var(--font-1);
    font-size: 32px;
    font-style: normal;
    font-weight: var(--fw-thin);
    line-height: 100%;
    letter-spacing: -2.56px;
}

#localizacion .ubicacion .txt-2 span {
    color: var(--color-2);
}

#localizacion .ubicacion .columna-mapa{
    width: 60%;
}

#localizacion .ubicacion .columna-datos{
    width: 40%;
}

#localizacion .ubicacion .columna-datos .txt{
    color: var(--white);
    font-family: var(--font-2);
    font-size: var(--heading-9);
    font-style: normal;
    font-weight: var(--fw-normal);
    line-height: normal;
}

#localizacion .ubicacion .columna-datos .btn{
    display: flex;
    padding: 10px 30px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background-color: var(--color-2);
    color: var(--color-1);
    font-family: var(--font-1);
    font-size: 18px;
    font-style: normal;
    font-weight: var(--fw-normal);
    line-height: 100%;
    letter-spacing: 0px;
    opacity: 1;
    border-radius: 0;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    width: fit-content;
}

/*============ PAGE LOCALIZACIÓN END ============*/

/*============ PAGE SERVICIOS START ============*/

#servicios {
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    background-color: var(--color-1);
    padding: 75px 0px;
    padding-bottom: 150px;
    min-height: 300px;
    position: relative;
}

#servicios .fila-1 .columna_1 {
    margin-bottom: var(--lg);
}

#servicios .fila-1 .columna_1 h2 {
    color: var(--color-2);
    text-align: right;
    font-family: var(--font-1);
    font-size: var(--heading-1);
    font-style: normal;
    font-weight: 300;
    line-height: 100%;
    letter-spacing: -5.12px;
    max-width: 500px;
    margin-left: auto;
}

#servicios .fila-1 .columna_2 p {
    color: var(--white);
    font-family: var(--font-1);
    font-size: 32px;
    font-style: normal;
    font-weight: var(--fw-thin);
    line-height: 100%;
    letter-spacing: -2.56px;
    max-width: 650px;
    margin-right: auto;
}

#servicios .servicio .columna_2 {
    padding-bottom: 50px;
}

#servicios .servicio .columna_2 {
    padding-bottom: 50px;
}

#servicios .fila-1 .columna_2 p span {
    color: var(--color-2);
}

#servicios .servicio {
    margin-top: 70px;
}

#servicios .servicio .accordion-item{
    position: relative;
    overflow: hidden;
    border: 0;
    width: calc(33% - 10px);
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
}

#servicios .servicio .accordion-item .title {
    color: var(--color-1);
    font-family: var(--font-1);
    font-size: 32px;
    font-style: normal;
    font-weight: var(--fw-thin);
    line-height: normal;
    letter-spacing: -2.56px;
    text-align: left;
}

#servicios .servicio .accordion-item .txt {
    color: var(--color-1);
    font-family: var(--font-2);
    font-size: var(--heading-9);
    font-style: normal;
    font-weight: var(--fw-normal);
    line-height: normal;
    text-align: left;
}

#servicios .servicio .contenedor{
    position: relative;
    z-index: 1;
    padding: 75px 20px;
}

#servicios .servicio .accordion-item .contenedor .titulo{
    color: var(--white);
    font-family: var(--font-1);
    font-size: 32px;
    font-style: normal;
    font-weight: var(--fw-thin);
    line-height: 100%;
    letter-spacing: -2.56px;
    text-align: center;
    min-height: 64px;
}

#servicios .servicio .accordion-item .contenedor .entradilla{
    color: var(--white);
    font-family: var(--font-2);
    font-size: var(--heading-9);
    font-style: normal;
    font-weight: var(--fw-normal);
    line-height: normal;
    text-align: center;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 58px;
}

#servicios .servicio .accordion-item .contenedor .btn{
    display: flex;
    padding: 10px 30px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background-color: var(--color-2);
    color: var(--color-1);
    font-family: var(--font-1);
    font-size: 24px;
    font-style: normal;
    font-weight: var(--fw-normal);
    line-height: 100%;
    letter-spacing: -2.56px;
    opacity: 0.8;
    border-radius: 0;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    width: fit-content;
}

#servicios .servicio .accordion-item img {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

#servicios .servicio .accordion-item:hover img {
    transform: scale(1.2);
}

#servicios .servicio .contenedor::before{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(25 50 60 / 50%);
    z-index: -1;
}

#servicios .servicio .accordion-item .accordion-button::after{
    display: none;
}

#servicios .servicio .accordion-body{
    width: 100%;
    padding: 50px;
    background: var(--white);
}

#servicios .servicio .accordion-body div{
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    flex-shrink: 0;
}

#servicios .servicio .accordion-body div h2{
    color: var(--color-1);
    font-family: var(--font-1);
    font-size: var(--heading-5);
    font-style: normal;
    font-weight: var(--fw-normal);
    line-height: 100%;
    letter-spacing: -2.56px;
}

#servicios .servicio .accordion-body div p,
#servicios .servicio .accordion-body div ul li{
    color: var(--color-1);
    font-family: var(--font-2);
    font-size: var(--heading-9);
    font-style: normal;
    font-weight: var(--fw-normal);
    line-height: normal;
}

#servicios .servicio .accordion-flush .accordion-collapse{
    margin-bottom: 15px;
    padding-right: 15px;
}

/*#servicios .estilos .title h2{
    color: var(--white);
    font-family: var(--font-1);
    font-size: var(--heading-6);
    font-style: normal;
    font-weight: var(--fw-normal);
    line-height: normal;
    margin-bottom: var(--x-md);
}

#servicios .estilos .columna_1 #pills-tab .nav-item{
    margin: 5px;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

#servicios .estilos .columna_1 #pills-tab .nav-item:hover{
    cursor: pointer;
    opacity: 0.7;
    position: relative;
    transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
}

#servicios .estilos .columna_1 #pills-tab .nav-item .nav-link{
    display: flex;
    padding: 10px;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    background: transparent;
    color: var(--white);
    font-family: var(--font-2);
    font-size: var(--heading-9);
    font-style: normal;
    font-weight: var(--fw-xbolder);
    line-height: normal;
    border: solid 1px var(--white);
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

#servicios .estilos .columna_1 #pills-tab .nav-item .nav-link.active{
    border: solid 1px var(--white);
    color: var(--color-1);
    background-color: var(--white);
}

#servicios .estilos .columna_2 .tab-content .tab-pane .contenedor-img{
    width: 300px;
    height: 300px;
    padding: 12px;
    border: 2px solid var(--color-1);
    overflow: hidden;
    display: inline-block;
    margin: 10px;
}

#servicios .estilos .columna_2 .tab-content .tab-pane .contenedor-img a{
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#servicios .estilos .columna_2 .tab-content .tab-pane .contenedor-img a img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

#servicios .estilos .columna_2 .tab-content .tab-pane .contenedor-img a img:hover{
    cursor: pointer;
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
}

#servicios .estilos .columna_3{
    display: flex;
    align-items: end;
    justify-content: flex-end;
}

#servicios .estilos .columna_3 .btn{
    display: inline-flex;
    padding: 10px;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    border: 1px solid var(--white);
    background: var(--white);
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

#servicios .estilos .columna_3 .btn a{
    color: var(--color-1);   
    font-family: var(--font-2);
    font-size: var(--heading-9);
    font-style: normal;
    font-weight: var(--fw-normal);
    line-height: normal;
    text-decoration: none;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

#servicios .estilos .columna_3 .btn:hover{
    cursor: pointer;
    border: 1px solid var(--white);
    background: transparent;
    margin-right: 5px;
}

#servicios .estilos .columna_3 .btn:hover a{
    color: var(--white);
}*/

/* Servicio */
#servicio {
    padding-top: 60px;
    padding-bottom: 60px;
}

#servicio .servicio-title p {
    text-align: center;
    color: var(--white);
    font-family: var(--font-1);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 20px */
    margin-bottom: 10px;
}

#servicio .servicio-title h2 {
    text-align: center;
    color: var(--color-2);
    font-family: var(--font-1);
    font-size: 64px;
    font-style: normal;
    font-weight: 300;
    line-height: 100%;
    margin-bottom: 50px;
}

#servicio .servicio-title hr {
    margin: 0;
    margin-bottom: 100px;
    color: inherit;
    border: 0;
    border-top: 1px solid var(--color-2);
    opacity: 1;
}

#servicio .servicio-entradilla-row {
    position: relative;
}

#servicio .servicio-entradilla-row .servicio-entradilla-img {
    margin-bottom: 60px;
}

#servicio .servicio-entradilla-row .servicio-entradilla-img img {
    object-fit: cover;
    object-position: center;
    max-width: 600px;
    height: 700px;
}

#servicio .servicio-entradilla-row .servicio-entradilla-card .card {
    padding: 50px;
    border-radius: 0;
    margin-left: 60px;
    margin-right: 60px;
    max-width: 600px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

#servicio .servicio-entradilla-row .servicio-entradilla-card .card .card-body {
    padding: 0;
    color: var(--black);
    font-family: var(--font-1);
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 120%;
    text-align: center!important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#servicio .servicio-listado-row {
    position: relative;
}


#servicio .servicio-listado-row .servicio-listado-card .card {
    background-color: var(--color-2);
    padding: 50px;
    border-radius: 0;
    margin-left: 60px;
    margin-right: 60px;
    max-width: 600px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

#servicio .servicio-listado-row .servicio-listado-card .card .card-body {
    padding: 0;
    color: var(--black);
    font-family: var(--font-1);
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 120%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#servicio .servicio-listado-row .servicio-listado-card .card .card-body ul li {
    color: var(--color-1);
    font-family: var(--font-1);
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 120%;
    text-align: start;
}

#servicio .servicio-listado-row .servicio-listado-img {
    text-align: end;
}

#servicio .servicio-listado-row .servicio-listado-img img {
    object-fit: cover;
    object-position: center;
    max-width: 900px;
    height: 610px;
}
/*============ PAGE SERVICIOS END ============*/

/*============ PAGE COMPROMISO START ============*/

#compromiso {
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.40) 0%, rgba(0, 0, 0, 0.40) 100%), url('../img/library/bg-compromiso.jpg'), lightgray 50% / cover no-repeat;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /*mix-blend-mode: luminosity;*/
    padding: 75px 0px;
    min-height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

#compromiso .columna_1 h2 {
    color: var(--white);
    font-family: var(--font-1);
    font-size: var(--heading-1);
    font-style: normal;
    font-weight: var(--fw-thin);
    line-height: 100%;
    letter-spacing: -5.12px;
}

#compromiso .columna_2 div {
    background: var(--white);
    padding: 30px;
    max-width: 430px;
    margin-top: 20px;
    margin-left: auto;
}

#compromiso .columna_2 h3 {
    color: var(--color-1);
    font-family: var(--font-1);
    font-size: var(--heading-5);
    font-style: normal;
    font-weight: var(--fw-thin);
    line-height: 100%;
    letter-spacing: -2.56px;
}

#compromiso .columna_2 p {
    color: var(--color-1);
    font-family: var(--font-2);
    font-size: var(--heading-9);
    font-style: normal;
    font-weight: var(--fw-normal);
    line-height: normal;
    letter-spacing: 0;
    text-align: end;
}

/*============ PAGE COMPROMISO END ============*/

/*============ FOOTER START ============*/
footer {
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    background-color: var(--color-1);

    padding-bottom: 75px;
}

footer .columna_1 {
    margin-bottom: 50px;
}

footer .columna_1 h2 {
    color: var(--color-2);
    font-family: var(--font-1);
    font-size: var(--heading-1);
    font-style: normal;
    font-weight: 300;
    line-height: 100%;
    letter-spacing: -5.12px;
    max-width: 730px;
    margin-right: auto;
}

footer .columna_1 ul li,
footer .columna_1 ul li a{
    color: white!important;
}

footer .columna_2 {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

footer .columna_2 .separator {
    width: 100%;
    height: 1px;
    background-color: var(--white);
}

footer .columna_2 ul li,
footer .columna_2 ul li a {
    color: var(--color-2);
    font-family: var(--font-1);
    font-size: 32px;
    font-style: normal;
    font-weight: var(--fw-thin);
    line-height: normal;
    letter-spacing: -2.56px;
    text-decoration: none;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

footer .politicas li {
    display: inline-block;
    cursor: pointer;
}

footer .zocalo p {
    color: var(--color-2);
    font-family: var(--font-2);
    font-size: var(--heading-7);
    font-style: normal;
    font-weight: var(--fw-normal);
    line-height: normal;
}

footer .zocalo p a {
    color: var(--color-2);
    font-family: var(--font-2);
    font-size: var(--heading-7);
    font-style: normal;
    font-weight: var(--fw-normal);
    line-height: normal;
    text-decoration: none;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    position: relative;
}

footer .zocalo p a:hover {
    cursor: pointer;
    opacity: 0.8;
}

/*============ FOOTER END ============*/

/*============ FANCYBOX START ============*/

.fancybox__counter span {
    color: var(--white);
}

.fancybox__counter span:nth-of-type(1) {
    color: var(--color-2);
}

.fancybox__thumbs .carousel__slide .fancybox__thumb::after {
    border-color: var(--color-2) !important;
}

/*============ FANCYBOX END ============*/

/*============ BLOQUE KIT DIGITAL START ============*/

#bloque-kit-digital {
    height: 135px;
    background: linear-gradient(151.48deg, #040404 -2.4%, #280D12 22.18%, #4F101E 45.75%, #831626 67.31%, #C52B2D 93.89%);
    overflow: hidden;
}

#bloque-kit-digital .columna_1 {
    height: 135px;
    left: 0
}

#bloque-kit-digital .columna_1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    left: -35%;
    position: absolute;
}

#bloque-kit-digital .columna_3 {
    height: 135px;
    right: 0
}

#bloque-kit-digital .columna_3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    right: -35%;
    position: absolute;
}

/*============ BLOQUE KIT DIGITAL END ============*/

/*============ MODALS START ============*/

.modal_politicas .modal-dialog-scrollable .modal-content {
    border-radius: 0;
}

.modal_politicas .modal-header .modal-title {
    font-family: var(--font-1);
    font-style: normal;
    font-weight: var(--fw-xbolder);
    font-size: var(--heading-6);
    line-height: normal;
    leading-trim: both;
    text-edge: cap;
    letter-spacing: 0.6px;
    color: var(--color-1);
}

.modal_politicas .modal-body {
    font-family: var(--font-2);
    font-style: normal;
    font-weight: var(--fw-normal);
    font-size: var(--heading-9);
    line-height: normal;
    text-align: left;
    color: var(--black);
}

.modal_politicas .modal-body span {
    font-family: var(--font-2);
    font-style: normal;
    font-weight: var(--fw-bold);
}

.modal_politicas .modal-footer {
    justify-content: center;
}

.modal_politicas .modal-footer button {
    background: var(--color-2);
    border: solid 1px var(--color-2);
    border-radius: 0px;
    -moz-transition: background-color 0.5s ease;
    -o-transition: background-color 0.5s ease;
    -webkit-transition: background-color 0.5s ease;
    transition: background-color 0.5s ease;
    width: 100%;
    max-width: 270px;
    height: 33px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.modal_politicas .modal-footer button span {
    font-family: var(--font-2);
    font-style: normal;
    font-weight: var(--fw-normal);
    font-size: var(--heading-9);
    line-height: normal;
    text-align: center;
    letter-spacing: 0px;
    text-transform: uppercase;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    color: var(--color-1);
}

.modal_politicas .modal-footer button:hover {
    background: transparent;
    border: solid 1px var(--color-1);
}

.modal_politicas .modal-footer button:hover span {
    color: var(--color-1);
}

.modal_politicas .modal-header .btn-close {
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: 0.25em 0.25em;
    color: var(--color-1);
    background-image: none;
    border: 0;
    border-radius: 0.375rem;
    opacity: 1;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: var(--heading-6);
}

/*============ MODALS END ============*/

/*============ FORM START ============*/

#formulario-contacto {
    display: flex;
    width: 100%;
    max-width: 450px;
    padding: 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    flex-shrink: 0;
    background-color: var(--white);
}

#formulario-contacto .title-formulario h3 {
    color: var(--color-1);
    font-family: var(--font-1);
    font-size: 32px;
    font-style: normal;
    font-weight: var(--fw-thin);
    line-height: 100%;
    letter-spacing: -2.56px;
}

#formulario-contacto input {
    background-color: var(--color-1);
    color: var(--white);
    font-family: var(--font-2);
    font-size: var(--heading-9);
    font-style: normal;
    font-weight: var(--fw-normal);
    line-height: normal;
    border-radius: 0;
    display: flex;
    padding: 10px 20px;
    align-items: center;
    gap: 10px;
    align-self: stretch;
}

#formulario-contacto input::placeholder {
    background-color: var(--color-1);
    color: var(--white);
    font-family: var(--font-2);
    font-size: var(--heading-9);
    font-style: normal;
    font-weight: var(--fw-normal);
    line-height: normal;
}

#formulario-contacto .btn {
    display: flex;
    padding: 10px 30px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background-color: var(--color-2);
    color: var(--color-1);
    font-family: var(--font-1);
    font-size: 24px;
    font-style: normal;
    font-weight: var(--fw-thin);
    line-height: 100%;
    letter-spacing: -2.56px;
    opacity: 0.8;
    border-radius: 0;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

#formulario-contacto .btn:hover {
    cursor: pointer;
    opacity: 1;
}

/*============ FORM END ============*/
/* pagina contacto */
.pagina-contacto {
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.40) 0%, rgba(0, 0, 0, 0.40) 100%), url('../img/library/bg-compromiso.jpg'), lightgray 50% / cover no-repeat;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    mix-blend-mode: luminosity;
    padding: 75px 0px;
    min-height: 500px;
}

/* pagina contacto */

/* Sobre nosotros */
#sobre_nosotros {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.40) 0%, rgba(0, 0, 0, 0.40) 100%), url('../img/library/img-sobrenosotros.jpg'), lightgray 50% / cover no-repeat;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /*mix-blend-mode: luminosity;*/
    padding: 75px 0;
}

#sobre_nosotros h2 {
    color: var(--color-2);
    font-family: var(--font-1);
    font-size: var(--heading-1);
    font-style: normal;
    font-weight: 300;
    line-height: 100%;
    letter-spacing: -5.12px;
    margin-right: auto;
}

.h3-nosotros {
    color: var(--color-2);
    font-family: var(--font-1);
    font-size: var(--heading-7);
    font-style: normal;
    font-weight: 300;
    line-height: 100%;
    text-align: center;
}

.p-nosotros {
    color: white;
    font-family: var(--font-1);
    font-size: var(--heading-9);
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    text-align: center;
    margin-top: 15px;
}

.list-style-guion {
    list-style: none;
    padding-left: 0;
}

/* Sobre nosotros */
/*============ SWEET ALERT ============*/

div:where(.swal2-container) h2:where(.swal2-title) {
    font-family: var(--font-1) !important;
    color: var(--color-1) !important;
}

div:where(.swal2-container) .swal2-html-container {
    font-family: var(--font-2) !important;
    color: var(--black) !important;
}

div:where(.swal2-container) button:where(.swal2-styled).swal2-confirm {
    background-color: var(--color-2) !important;
    color: var(--color-1) !important;
    border-radius: 0 !important;
    font-family: var(--font-2) !important;
}

/*============ SWEET ALERT ============*/

/*============ BREACKPOINTS START ============*/

@media (max-width: 1399px) {
    /*#servicios .servicio .contenedor_btns_izq {
        max-width: 410px;
    }*/
}

@media (max-width: 1199px) {}

@media (max-width: 1099px) {}

@media (max-width: 991px) {
    #formulario-contacto {
        max-width: 100%;
        margin: 0 auto;
    }

    #servicios .servicio .contenedor_btns_izq {
        max-width: 100%;
    }

    #servicios .servicio .listado_ultimo_item {
        height: 100%;
        width: 100%;
    }

    #servicios .servicio .listado_ultimo_item li {
        width: 100%;
        margin: 0;
        padding-bottom: 0;
    }

    #servicios .servicio .listado_ultimo_item li button {
        width: 100%;
    }

    #servicios .servicio .listado_ultimo_item li button img {
        height: 150px;
    }

    #servicios .servicio .listado-btns {
        text-align: center;
    }

    #servicios .servicio .listado-btns .contenedor-btn button p {
        width: 100%;
        text-align: center;
    }
    #servicios .servicio .listado-btns .contenedor-btn, #servicios .servicio .contenedor-btn {
        min-width: calc(50% - 23px);
        max-width: calc(50% - 23px);
    }
    #servicios .servicio .accordion-item {
        position: relative;
        overflow: hidden;
        border: 0;
        width: calc(50% - 15px);
        display: inline-block;
        margin-right: 10px;
        margin-bottom: 10px;
    }
}

@media (max-width: 767px) {
    nav .collapse {
        display: none;
    }

    nav .offcanvas {
        display: flex;
    }

    nav {
        min-height: 100px;
        padding: var(--md) 0px !important;
    }

    nav .navbar-brand {
        position: unset;
    }

    nav .navbar-brand img {
        max-width: 150px;
    }

    #compromiso .columna_2 div {
        margin: auto;
        margin-top: 30px;
        max-width: 100%;
        align-items: flex-start !important;
    }

    #compromiso .columna_2 p {
        text-align: left;
    }

    #localizacion,
    #contacto {
        padding-top: 75px;
        padding-bottom: 36.5px;
    }

    #servicios {
        padding-top: 36.5px;
        padding-bottom: 36.5px;
    }

    #localizacion .fila-1 .columna_1 {
        margin-bottom: var(--lg);
    }

    .leaflet-popup {
        margin-bottom: 0px !important;
    }
    #servicios .servicio .listado-btns .contenedor-btn, #servicios .servicio .contenedor-btn {
        min-width: calc(100% - 23px);
        max-width: calc(100% - 23px);
    }
    #servicios .servicio .tab-content .tab-pane{
        padding: 30px;
    }
    #servicios .servicio .accordion-item {
        width: 100%;
        margin-right: 0;
    }
    #servicios .servicio .accordion-flush .accordion-collapse {
        padding-right: 0;
    }
    #servicios .servicio .accordion-body{
        padding: 25px;
    }
    #localizacion .ubicacion .columna-datos,
    #localizacion .ubicacion .columna-mapa{
        width: 100%;
    }
    .servicio-entradilla-img,
    .servicio-listado-img{
        display: none;
    }
    #servicio .servicio-entradilla-row .servicio-entradilla-card .card,
    #servicio .servicio-listado-row .servicio-listado-card .card{
        padding: 25px;
        border-radius: 0;
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
        position: relative;
        right: unset;
        top: unset;
        transform: unset;
        -o-transform: unset;
        -moz-transform: unset;
        -webkit-transform: unset;
        min-height: 1px;
    }
    #servicio .servicio-listado-row .servicio-listado-card .card .card-body{
        margin-right: auto;
    }
    #servicio {
        padding-bottom: 0px;
    }
}

@media (max-width: 576px) {

    span,
    p,
    label,
    input,
    input::placeholder,
    select,
    button,
    a,
    li,
    h1, h2, h3, h4, h5, h6 {
        letter-spacing: 0 !important;
    }

    #localizacion .fila-1 .columna_1 .title,
    #servicios .fila-1 .columna_1 h2,
    #compromiso .columna_1 h2,
    footer .columna_1 h2 {
        font-size: var(--heading-3);
    }

    header .contenedor-txt .txt {
        font-size: var(--heading-6);
    }

    #localizacion .ubicacion .txt-2,
    #servicios .fila-1 .columna_2 p,
    footer .columna_2 ul li,
    footer .columna_2 ul li a {
        font-size: var(--heading-6);
    }

    #servicios .fila-1 .columna_1 h2 {
        text-align: left;
    }

    #servicios .servicio .listado-btns .contenedor-btn button p {
        font-size: var(--heading-10);
    }

    #formulario-contacto .title-formulario h3 {
        font-size: var(--heading-6);
    }

    #formulario-contacto .btn {
        min-width: 100%;
        font-size: var(--heading-8);
        font-weight: var(--fw-bold);
    }

    footer .columna_2 ul li,
    footer .columna_2 ul li a {
        font-size: var(--heading-7);
    }

    footer .politicas li {
        width: 95%;
        margin-bottom: 10px !important;
    }
}

@media (max-width: 550px) {
    header {
        min-height: calc(100vh - 104px);
        padding: var(--s) 0px;
    }

    header .contenedor-txt img {
        max-width: 350px;
    }
}

@media (max-width: 450px) {
    #servicios .servicio .listado-btns .contenedor-btn, #servicios .servicio .contenedor-btn {
        margin-right: 5px;
    }
}