/********** Template CSS **********/
@font-face{ font-family:'Poppins-Regular'; src:url('../fonts/Poppins-Regular.ttf'); }/*Usado*/
@font-face{ font-family:'Poppins-Medium'; src:url('../fonts/Poppins-Medium.ttf'); }/*Usado*/
@font-face{ font-family:'Poppins-Bold'; src:url('../fonts/Poppins-Bold.ttf'); }/*Usado*/
/*@font-face{ font-family:'Poppins-Black'; src:url('../fonts/Poppins-Black.ttf'); }*/
/*@font-face{ font-family:'Poppins-SemiBold'; src:url('../fonts/Poppins-SemiBold.ttf'); }*/
@font-face{ font-family:'Poppins-Light'; src:url('../fonts/Poppins-Light.ttf'); }
@font-face{ font-family:'Poppins-LightItalic'; src:url('../fonts/Poppins-LightItalic.ttf'); }
/*@font-face{ font-family:'Poppins-Thin'; src:url('../fonts/Poppins-Thin.ttf'); }*/
/*@font-face{ font-family:'Poppins-Italic'; src:url('../fonts/Poppins-Italic.ttf'); }*/
@font-face{ font-family:'OrelegaOne'; src:url('../fonts/OrelegaOne-Regular.ttf'); }/*Usado*/
:root {
    --primary: #ea0029;
    --light: #F3F4F5;
    --dark: #4A4F54;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 28px;
    bottom: 120px;
    z-index: 99;
}
.back-to-top:hover {
    -webkit-border-radius: 20px 20px 0 0;
    border-radius: 20px 20px 0 0;
}

/*.menufloat{*/
/*    position: fixed;*/
/*    display: none;*/
/*    right: 45px;*/
/*    bottom: 45px;*/
/*    z-index: 99;*/
/*}*/

body{
    font-family: "Poppins-Bold", sans-serif;
}
.bg-primary {
    background-color: var(--primary) !important;
}
.text-primary{
    color: var(--primary) !important;
}
.bg-blur {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(3px);
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 102;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.top-items{
    position: relative;
    z-index: 105;
}

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

#spinner img{height: 150px}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/***** Menu Mini ******/
.menufloat{
    display: none;
    position: fixed;
    right:0;
    top: 78px;
    z-index: 99;
    width: 80px;
    height:450px;
    overflow:hidden;
}
.menufloat .menufloat-left hr{margin:0;border:0;}
.menufloat .menufloat-left{background:#e6e6e6;height:550px;}
.btnmenuleft i{font-size:22px;font-weight:bold;}
.btnmenuleft{
    font-size:14px;
    font-family: "Poppins-Medium", sans-serif;
    width:100%;
    text-align:center;
}
.btnmenuleft p{margin-top: 0.60rem;margin-bottom:0;}
.btnmenuleft:hover{background:#d2d0d0;cursor:pointer;}
.menufloat .card .card-body .card-title{
    font-weight:bold;
    text-align:center;
    font-family:"Poppins-Bold",sans-serif;
    font-size:14px;
    color:var(--primary) ;
}
.menufloat .menufloat-right .card .list-group .list-group-item{transition:background-color 0.5s ease;background:#db0e2d;color:white;margin-bottom:1px;}
.menufloat .menufloat-right .list-group-item:hover{cursor:pointer;}
.menufloat .menufloat-right .card .list-group .list-group-item:hover{
    background-color: #9b0c23;
    .icono{color:white;}
}
.menufloat .menufloat-right .card .list-group .icono{
    background: #f70c35;
    padding:17px 18px;
    margin-top: -16px;
    margin-bottom: -16px;
    margin-right: -17px;
}
.menufloat .menulinkfloat a {
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
    padding: .2em;
    margin-left: -.5em;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    &:before, &:after {
        position: absolute;
        content: '';
        border-bottom: 3px solid var(--dark);
        border-radius: 1em;
        bottom: .3em;
        transition: transform .5s cubic-bezier(0.075, 0.82, 0.165, 1);
    }
    &:before {
        width: 1em;
        transform-origin: left;
    }
    &:after {
        width: 82%;
        left: 1em;
        transform: translateX(110%);
    }
    &:hover:before {
        transform: scaleX(0.3);
    }
    &:hover:after {
        transform: translateX(0);
    }
}
.menufloat .btnshowMenu{
    position: absolute;
    bottom:0;
    color: white;
    background:#555555;
    -webkit-border-radius: 0 30px 0 0;
    border-radius: 0 30px 0 0;
}
.menufloat .btnshowMenu i{
    cursor:pointer;
    font-weight:bold;
    font-size:30px;
    padding:20px;
    position: relative;
    transition: .5s;
    z-index: 3;
}
.menufloat .btnshowMenu:hover i{
    transform: rotateY(180deg);
}
.menufloat-right{
    opacity: 1;
}
.menufloat-right .d-none{
    transition: opacity 1s ease-out;
    opacity: 0;
    height: 0;
    overflow: hidden;
}
/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

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

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

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

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


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand {
    display: flex;
    align-items: center;
}

/*.navbar .navbar-brand img {*/
/*    max-height: 50px;*/
/*}*/

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

.navbar .navbar-nav .nav-link {
    /*margin-right: 30px;*/
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

/*.navbar .navbar-nav .nav-link:hover,*/
/*.navbar .navbar-nav .nav-link.active {*/
/*    color: var(--primary);*/
/*}*/

/*@media (max-width: 991.98px) {*/
/*    .navbar .navbar-nav .nav-link  {*/
/*        margin-right: 0;*/
/*        padding: 10px 0;*/
/*    }*/
/*    .navbar .navbar-nav {*/
/*        border-top: 1px solid #EEEEEE;*/
/*    }*/
/*}*/

/*.navbar .navbar-nav .nav-link {*/
/*    color: var(--dark);*/
/*    font-weight: 500;*/
/*}*/

/*@media (min-width: 992px) {*/
/*    .navbar .nav-item .dropdown-menu {*/
/*        display: block;*/
/*        border: none;*/
/*        margin-top: 0;*/
/*        top: 150%;*/
/*        opacity: 0;*/
/*        visibility: hidden;*/
/*        transition: .5s;*/
/*    }*/
/*    .navbar .nav-item:hover .dropdown-menu {*/
/*        top: 100%;*/
/*        visibility: visible;*/
/*        transition: .5s;*/
/*        opacity: 1;*/
/*    }*/
/*}*/


/*** Header ***/
/*.header-bg {*/
/*    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/bg-1.jpg) center center no-repeat;*/
/*    background-size: cover;*/
/*}*/
.modal-video .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}
.modal-video .modal-body {
    position: relative;
    padding: 0px;
}

.modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}

/*.header-carousel .owl-nav {*/
/*    position: absolute;*/
/*    width: 200px;*/
/*    height: 40px;*/
/*    bottom: 30px;*/
/*    left: 50%;*/
/*    transform: translateX(-50%);*/
/*    display: flex;*/
/*    justify-content: space-between;*/
/*}*/

/*.header-carousel .owl-nav .owl-prev,*/
/*.header-carousel .owl-nav .owl-next {*/
/*    width: 40px;*/
/*    height: 40px;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    color: #FFFFFF;*/
/*    background: transparent;*/
/*    border: 1px solid #FFFFFF;*/
/*    font-size: 22px;*/
/*    transition: .5s;*/
/*}*/

/*.header-carousel .owl-nav .owl-prev:hover,*/
/*.header-carousel .owl-nav .owl-next:hover {*/
/*    background: var(--primary);*/
/*    border-color: var(--primary);*/
/*}*/

/*.header-carousel .owl-dots {*/
/*    position: absolute;*/
/*    height: 45px;*/
/*    bottom: 30px;*/
/*    left: 50%;*/
/*    transform: translateX(-50%);*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*}*/

/*.header-carousel .owl-dot {*/
/*    position: relative;*/
/*    display: inline-block;*/
/*    margin: 0 5px;*/
/*    width: 15px;*/
/*    height: 15px;*/
/*    background: transparent;*/
/*    border: 1px solid #FFFFFF;*/
/*    transition: .5s;*/
/*}*/

/*.header-carousel .owl-dot::after {*/
/*    position: absolute;*/
/*    content: "";*/
/*    width: 5px;*/
/*    height: 5px;*/
/*    top: 4px;*/
/*    left: 4px;*/
/*    background: #FFFFFF;*/
/*    border-radius: 5px;*/
/*}*/

/*.header-carousel .owl-dot.active {*/
/*    background: var(--primary);*/
/*    border-color: var(--primary);*/
/*}*/

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** Img Border ***/
.img-border {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.img-border::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 3rem;
    bottom: 3rem;
    border: 5px solid var(--primary);
}

.img-border img {
    position: absolute;
    top: 3rem;
    left: 3rem;
    width: calc(100% - 3rem);
    height: calc(100% - 3rem);
    object-fit: cover;
}


/*** Facts & Visiting Hours ***/
.facts {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/bg-1.jpg) center center no-repeat;
    background-size: cover;
}

.visiting-hours {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/bg-2.jpg) center center no-repeat;
    background-size: cover;
}

.visiting-hours .list-group-item {
    display: flex;
    justify-content: space-between;
    color: var(--light);
    background: rgba(0, 0, 0, .15);
    border-color: rgba(255, 255, 255, .15);
}

.visiting-hours .table {
    color: var(--light);
    background: rgba(0, 0, 0, .15);
}

.visiting-hours .table td {
    padding: .5rem 1rem;
    border-color: rgba(255, 255, 255, .15);
}

.visiting-hours .table tr:last-child td {
    border: none;
}


/*** Animal ***/
.animal-item {
    position: relative;
    display: block;
}

.animal-item .animal-text {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .7);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 100px !important;
    opacity: 0;
    transition: .5s;
}

.animal-item:hover .animal-text {
    opacity: 1;
    padding-bottom: 20px !important;
}


/*** Membership ***/
.membership-item {
    padding: 45px 30px;
    color: #FFFFFF;
    background: rgba(0, 0, 0, .7);
}

.membership-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.membership-item .display-1 {
    color: transparent;
    -webkit-text-stroke: 2px var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-text {
    background: var(--light);
    transform: scale(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--primary);
    transform: scale(1);
}

.testimonial-carousel .owl-item .testimonial-text *,
.testimonial-carousel .owl-item .testimonial-item img {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: var(--light) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item img {
    border-color: var(--primary) !important;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}


/*** Footer ***/


.form-check-label,
.form-check-input{
    cursor:pointer;
}
.cursor:hover{
    cursor:pointer;
}
/********** Politicas Modal *************/
#PoliticasTab .nav-link{
    font-family: "Poppins-Regular", sans-serif;
    font-size:16px;
    color:var(--dark);
}
#PoliticasTab .active{
    color:var(--primary);
}
#PoliticasTabContent .texto{
    font-family: "Poppins-Regular", sans-serif;
    font-size:14px;
    font-weight:400;
}
#PoliticasTabContent .texto a{
    color:var(--primary);
}
#PoliticasTabContent .tab-pane{min-height:350px;}
/************ Cabecera ***************/
.btn-header .fas,
.btn-header .fa,
.btn-header small{padding:5px;color:white!important;}
.btn-header .fas,
.btn-header .fa{
    padding:5px;
    border-radius:30px;
    -moz-transition:color .2s ease-in;
    -o-transition:color .2s ease-in;
    -webkit-transition:color .2s ease-in;
    background:var(--dark);
}
.btn-header:hover .fas,
.btn-header:hover .fa{ background:#972525;}
.nav-bar{
    position: relative;
    padding: 0 3rem;
    transition: .5s;
    border-bottom:5px solid var(--primary);
    z-index:99;
}
.nav-bar.sticky-top {
    position: sticky;
    padding: 0;
    background:white;
    z-index: 103;
}
.sticky-top .container-xxl .navbar .icon{display: block !important;}
.navbar { box-shadow: 0 0 30px rgba(0, 0, 0, .08);}
.has-megamenu div {
    animation: fadeInAnimation ease 0.8s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}
.has-megamenu .show div {opacity:1;}
@keyframes fadeInAnimation {
    0% { opacity:0;}
    100% {opacity: 1;}
}
.navbar .dropdown-toggle::after{border:none;content:"";}
.navbar .dropdown-toggle[aria-expanded=true]::after{ transform:rotate(-180deg);}
.navbar-light .navbar-nav .nav-link {
    margin-right:30px;
    padding:8px 0;
    color:#FFFFFF;
    font-size:15px;
    text-transform:uppercase;
    outline:none;
}
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active{color: var(--dark);}
.navbar .megamenu{ padding: 1rem; }
.megamenuUBE #mega_nav .nav-link{color: var(--dark);}
.navbar-toggler-icon .fas{margin-top:5px;}
#mega_nav .navbar-nav .megamenu{border-radius:0;border-bottom:5px solid var(--secondary);}
#mega_nav .dropdown-menu[data-bs-popper]{margin-top:4px!important;}
@media (max-width: 991.98px) {
    .nav-bar {margin: 0;padding: 0;}
    .navbar-light .navbar-nav .nav-link {margin-right: 0;padding: 10px 0;}
    .navbar-light .navbar-nav {border-top: 1px solid #EEEEEE;}
    .navbar.fixed-top .navbar-collapse,
    .navbar.sticky-top .navbar-collapse{
        overflow-y: auto;
        max-height: 90vh;
        margin-top:10px;
    }
}
.navbar-light .navbar-nav .nav-link {color: var(--dark);font-weight: 500;}
@media all and (min-width: 992px) {
    .navbar .has-megamenu{position:static!important;}
    .navbar .megamenu{left:0; right:0; width:100%; margin-top:0; }
}
@media (min-width: 992px) {
    .navbar .nav-item:hover .dropdown-menu{
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

.icon img{max-height:45px;}
.navbar-nav .has-megamenu .nav-link span{ padding:7px 30px;}
.navbar-nav .has-megamenu .nav-link span{ border-left:2px solid #c7c7c7; }
.navbar-nav .has-megamenu:last-child .nav-link span{ border-right:2px solid #c7c7c7; }
.has-megamenu .dropdown-toggle[aria-expanded=true] span::before{
    content:'';
    width: 100%;
    height: 8px;
    bottom:-5px;
    left: 0;
    background: var(--primary);
    position: absolute;
}
.lista-menu{border-right:1px solid #e7e7e7;min-height:290px;}
.menucrai .dropdown-item {font-family:"Poppins-Light", sans-serif;font-size:14px;}
.lista-menu a{font-family: "Poppins-Medium", sans-serif;color: var(--dark);}
.lista-menu .menuactivo .fas{color: var(--primary);}
.lista-menu .menuactivo{color: var(--primary);}
.menucontenoferta .row .menuoferta{transition:1s;}
.ocultar { display: none; animation: fade_in_show 0.5s}
@keyframes fade_in_show {
    0% {opacity: 0;transform: scale(0)}
    100% { opacity:1;transform: scale(1)}
}
.lista-menu li > a {
    font-family:"Poppins-Light", sans-serif;
    font-size:14px;
    position: relative;
    -webkit-transition: color 1s ease-out;
    -moz-transition: color 1s ease-out;
    -o-transition: color 1s ease-out;
    transition: color 1s ease-out;
    &:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 2px;
        bottom: 0;
        margin: -5px 0;
        background-color: var(--primary);
        visibility: hidden;
        transform: scaleX(0);
        transition: all 0.4s ease-in-out 0s;
    }
    &:hover:before {
        visibility: visible;
        transform: scaleX(1);
    }
}
.lista-menu li > a:hover {color: var(--primary);}
.modelosferta h5,
.menuconve h5,
.cursoferta h5,
.menuoproy h5,
.menuoferta h5{
    font-family:"Poppins-Bold",sans-serif;
    font-size:16px;
    color: var(--primary);
    margin-left:40px ;
}
.megamenu .row .col-md-3{min-height:300px;}
.megamenuUBE .has-megamenu .active span{color:var(--primary);}

/**** Mega menu ******/
/********** Modal***************/
#contactoModal .modal-footer a{
    background-color: #ea0029;
    font-size: 24px;
    color: white;
    border-radius: 40px;
}
#contactoModal .modal-footer i{
    padding: 5px;
}
#contactoModal .modal-header{
    background:var(--primary);
    .modal-title{color:white;text-align:center;font-family: "Poppins-Regular";}
}
#contactoModal label{font-size: 15px; font-family: "Poppins-Medium", sans-serif}
#contactoModal input{font-size: 15px; font-family: "Poppins-Regular", sans-serif}
#contactoModal input:focus{box-shadow: 0 0 0 0.25rem rgba(234, 0, 41, 0.35); border-color: transparent}
#contactoModal .form-check-input:checked{background-color: var(--dark); border-color: #4A4F54;}
#contactoModal button{font-family: "Poppins-Medium", sans-serif}
#contactoModal .bootstrap-select>.dropdown-toggle {
    font-family: "Poppins-Medium", sans-serif;
    font-size:15px;
    background-color: white;
    border: 1px solid #ced4da;
}
#contactoModal .bootstrap-select .dropdown-menu li a span.text {
    font-family: "Poppins-Regular", sans-serif;
    font-size:14px;
}
#contactoModal .bootstrap-select .dropdown-item.active, .bootstrap-select .dropdown-item:active {
    color: #fff;
    background-color: #4a4f54;
}
/*********Menu discapacidad*************/
.discapacidad-icono{
    /*display: none;*/
    position: fixed;
    left: 28px;
    top: 160px;
    z-index: 98;
    font-size:24px;
    color: #ffffffa6;
    background:#ffffffa6;
    border:1px solid #ffffffa6;
    border-radius:100px;
    cursor:pointer;
}
.discapacidad-icono img{
    height:40px;
    width:40px;
}
.content-menu-discapacidad{
    position: fixed;
    left: calc(4.4%);
    top: 125px;
    z-index: 201;
    border-radius: 10px;
    display: none;
}
.content-menu-discapacidad .card{
    border-radius: 10px;
    width: 100%;
}
.content-menu-discapacidad .card .card-header{
    border-radius: 10px;
    background: hsla(186, 33%, 94%, 1);
    background: linear-gradient(90deg, hsla(186, 33%, 94%, 1) 0%, hsla(216, 41%, 79%, 1) 100%);
    background: -moz-linear-gradient(90deg, hsla(186, 33%, 94%, 1) 0%, hsla(216, 41%, 79%, 1) 100%);
    background: -webkit-linear-gradient(90deg, hsla(186, 33%, 94%, 1) 0%, hsla(216, 41%, 79%, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#EBF4F5", endColorstr="#B5C6E0", GradientType=1 );
}
.content-menu-discapacidad .card .card-header img{
    width: 32px;
}
.content-menu-discapacidad .card .card-header span{
    color: #282F34;
    padding-left: 3px;
}
.content-menu-discapacidad .card .card-header i:last-child{
    cursor:pointer;
    font-size:19px;
    color: grey;
    padding-left: 3px;
}
.content-menu-discapacidad .card #tblMenuDisc{
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding-left: 5px;
}
.content-menu-discapacidad .card .list-group li{
    font-size:15px;
    cursor: pointer;
    font-family: "Poppins-Medium", sans-serif;
    border: none;
}
#menuSpeackBtn{
    margin-bottom: 8px;
}
.content-menu-discapacidad .card .list-group li i{
    padding-left: 5px;
}
.content-menu-discapacidad .card .list-group li span{
    padding-left: 10px;
}
.content-menu-discapacidad .card .card-header i#btnclosemenu:hover{
    color:#0a53be;
}
#tblMenuDisc{
    padding-bottom: 10px;
}
#tblMenuDisc li i:first-child{
    background: hsla(212, 35%, 58%, 1);
    background: linear-gradient(90deg, hsla(212, 35%, 58%, 1) 0%, hsla(218, 32%, 80%, 1) 100%);
    background: -moz-linear-gradient(90deg, hsla(212, 35%, 58%, 1) 0%, hsla(218, 32%, 80%, 1) 100%);
    background: -webkit-linear-gradient(90deg, hsla(212, 35%, 58%, 1) 0%, hsla(218, 32%, 80%, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#6D90B9", endColorstr="#BBC7DC", GradientType=1 );
    border-radius: 20px;
    font-size: 19px;
    padding-right: 5px;
}
#tblMenuDisc li:hover{
    background: rgb(215, 215, 215);
    border-left: #0a53be 3px solid;
}
#tblMenuDisc  a{
    background-color: rgba(10, 83, 190, 0.73);
    width: 150px;
    margin-left: 18%;
    font-size: 15px;
    color:#282F34;
}
#tblMenuDisc  a:hover{
    color: white;
}
.discapacidad-icono:hover{
    color: #0a53be;
    background:#FFFFFF;
    border:1px solid #FFFFFF;
}
/***********Boton whatsapp***********/
.whatsapp {
    position: fixed;
    right: 28px;
    top: 160px;
    z-index: 98;
}

.whatsapp i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    width: 50px;
    height: 50px;
    border-radius: 40px;
    background: #25d366;
    color: #fff;
    transition: all 0.4s;
}

.whatsapp .text-hover {
    display: none;
    font-size: 13px;
    font-family:"Poppins-Regular", sans-serif; /* Fuente para el texto adicional */
    color: #fff;
    transition: opacity 0.4s;
}

.whatsapp:hover i {
    width: 190px; /* Ampliar el tamaño del icono al hacer hover */
    font-size: 20px;
}
.whatsapp:hover .text-hover {
    display: flex; /* Mostrar el texto adicional al hacer hover */
}
/*Btn chatbot*/
/* Estilos del botón del chatbot */
.btn-bot {
    position: fixed;
    right: 10px;
    bottom: 10px;
    z-index: 101;
    cursor: pointer;
    transition: visibility 0.5s ease, z-index 0.5s ease;
}

/* Estilo de la imagen dentro del botón */
.btn-bot img {
    height: 100px;
    width: 85px;
    transition: visibility 0.5s ease;
}
@keyframes jumpAndSpin {
    0% {
        transform: translateY(0) rotateY(0deg);
    }
    30% {
        transform: translateY(-40px) rotateY(180deg);
    }
    50% {
        transform: translateY(0) rotateY(360deg);
    }
    100% {
        transform: translateY(0) rotateY(360deg);
    }
}

@keyframes bounce {
    0%{
        transform: translateY(40px);
    }
    30% {
        transform: translateY(20px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(40px);
    }
}
.animate {animation: jumpAndSpin 2s ease-out;}
.bounce {animation: bounce 1s ease-in; animation-delay: 0.2s}

/*Footer*/
.footer .btn.btn-social{
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-border-radius: 5px 5px 5px 5px;
    border-radius: 5px 5px 5px 5px;
    color: var(--light);
    border: 1px solid #FFFFFF;
    transition: .3s;
}
.footer .btn.btn-social:hover {
    color: var(--primary);
    -webkit-border-radius:5px 0;
    border-radius:5px 0;
}
.footer .btn.btn-link:hover::before {
    position: relative;
    content: "\f0a4";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right:5px;
}
.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}
.footer .btn.btn-link {
    font-family: "Poppins-Regular", sans-serif;
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}
.footer h5 {
    font-family: "Poppins-Bold", sans-serif;
    font-size:16px;
    color:white;
    margin-bottom:10px;
}
.footer p {
    font-family: "Poppins-Light", sans-serif;
    font-size:14px;
    color:white;
    margin-bottom:10px;
}
.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}
.footer .copyright a {
    color: var(--light);
}
.footer .copyright a:hover {
    color: var(--primary);
}
.cajamapa{
    margin-top:15px;
    text-align: center;
    color:black!important;
    background:#b3b3b3;
    padding:10px 20px;
    border:1px solid #ececec;
}

#footerFinal{background:#7b7a7a}
.text-danger { color: var(--primary); !important; }

/*Efecto snow*/
.tpl-snow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 1000;
    overflow: hidden;
}
.snowflake {
    position: absolute;
    top: -50px;
    opacity: 0.8;
    pointer-events: none;
    animation: fall linear infinite;
}
@keyframes fall {
    to {
        transform: translateY(150vh);
    }
}
/*Cookies*/
.content-cookies{
    background-color: #1f2020;
}
.content-cookies p{
    color: white;
    font-size: 14px;
    font-family: "Poppins-Regular", sans-serif ;
}
.content-cookies a{
    background-color: var(--primary);
    color: white;
    border: 1px solid var(--primary);
    font-family: "Poppins-Regular", Sans-serif;
    font-size: 14px;
}
.content-cookies a:hover{color: black}
