/* FONTS */
@font-face {
    font-family: 'Lufga';
    src: url('../fonts/Lufga-Italic.woff2') format('woff2'),
        url('../fonts/Lufga-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}
/* LIGHT: 300 */
@font-face {
    font-family: 'Lufga';
    src: url('../fonts/Lufga-Light.woff2') format('woff2'),
        url('../fonts/Lufga-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
/* NORMAL */
@font-face {
    font-family: 'Lufga';
    src: url('../fonts/Lufga-Regular.woff2') format('woff2'),
        url('../fonts/Lufga-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
/* MEDIUM: 500 */
@font-face {
    font-family: 'Lufga';
    src: url('../fonts/Lufga-Medium.woff2') format('woff2'),
        url('../fonts/Lufga-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
/* BOLD */
@font-face {
    font-family: 'Lufga';
    src: url('../fonts/Lufga-Bold.woff2') format('woff2'),
        url('../fonts/Lufga-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
/* SEMIBOLD: 600 */
@font-face {
    font-family: 'Lufga';
    src: url('../fonts/Lufga-SemiBold.woff2') format('woff2'),
        url('../fonts/Lufga-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
/* EXTRABOLD */
@font-face {
    font-family: 'Lufga';
    src: url('../fonts/Lufga-ExtraBold.woff2') format('woff2'),
        url('../fonts/Lufga-ExtraBold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
/* BLACK: 900 */
@font-face {
    font-family: 'Lufga';
    src: url('../fonts/Lufga-Black.woff2') format('woff2'),
        url('../fonts/Lufga-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}






body{
    font-family: 'Lufga', sans-serif;
}
.backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    backdrop-filter: blur(5px);
}

.no-scroll {
    overflow: hidden;
}
header.sticky-top{
    z-index: 1050;
}
header nav{
    background: #008df7;
    box-shadow: 0 0px 10px 5px rgba(0, 0, 0, 0.2);
    border-radius: 0 0 0 0;
    transition: border-radius .3s ease-in-out;
}
@media (min-width: 992px){
    header nav.navbar{
        padding-top: 25px;
        padding-bottom: 25px;
    }
}
header nav .container-fluid{
    max-width: 1060px;
}
header nav.menu-abierto{
    border-radius: 0 0 40px 0;
    transition: border-radius .3s ease-in-out;
}
header nav .navbar-brand{
    opacity: 1;
    transition: opacity .3s ease-in-out;
}
header nav.menu-abierto .navbar-brand{
    opacity: 0;
    transition: opacity .3s ease-in-out;
}

header nav .btn-clientes{
    opacity: 1;
    transition: opacity .3s ease-in-out;
    pointer-events: initial;
}
header nav.menu-abierto .btn-clientes{
    opacity: 0;
    transition: opacity .3s ease-in-out;
    pointer-events: none;
}

.btn-clientes-desk{
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    background: #353538;
    padding: 15px 17px 16px 27px;
    border-radius: 30px;
    margin-left: 17px;
}
.btn-clientes-desk svg{
    margin-left: 3px;
}


header nav .navbar-brand img{
    width: 85px;
}
@media (min-width: 992px){
    header nav .navbar-brand{
        padding-right: 90px;
    }
    header nav .navbar-brand img{
        width: 140px;
    }
}
header nav .navbar-toggler{
    width: 25px;
    height: 20px;
    border: none;
    padding: 0;
    position: relative;
}
header nav .navbar-toggler span{
    display: block;
    width: 25px;
    height: 4px;
    margin-bottom: 4px;
    position: relative;
    
    background: #ffffff;
    border-radius: 3px;
    
    z-index: 1;
    
    transform-origin: 4px 0px;
    
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                opacity 0.55s ease;
}
header nav .navbar-toggler:focus,
header nav .navbar-toggler:focus-visible{
    outline: none;
    box-shadow: none;
}
header nav .navbar-toggler span:first-child{
  transform-origin: 0% 0%;
}

header nav .navbar-toggler span:nth-child(2){
  transform-origin: 0% 100%;
}
header nav .navbar-toggler[aria-expanded=true] span:nth-child(1){
  opacity: 1;
  transform: rotate(45deg) translate(2px, -2px);
}
header nav .navbar-toggler[aria-expanded=true] span:nth-child(2){
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}
header nav .navbar-toggler[aria-expanded=true] span:nth-child(3){
  transform: rotate(-45deg) translate(0, -1px);
}
header nav .navbar-collapsed{
    padding-bottom: 45px;
}


@media (min-width: 992px){
    header nav .navbar-collapse{
        flex-direction: column;
        align-items: flex-end;
    }
    header nav .navbar-collapse .navbar-nav{
        width: 100% !important;
        padding-bottom: 0;
        justify-content: flex-end;
    }
}


header nav a.nav-link{
    color: #ffffff;
}
header nav .navbar-nav{
    width: 90%;
    margin: 0 auto;
}
header .navbar-nav{
    font-size: 22px;
    font-weight: 200;
}
header .nav-bigger a.nav-link{
    font-size: 22px;
    font-weight: 600;
}
header .nav-bigger a.nav-link img{
    width: 20px;
    height: 20px;
    object-fit: contain;
    object-position: center bottom;
    margin-right: 8px;
    opacity: .5;
    transform: scale(1);
    transition: transform .3s ease-in-out;
}
header .nav-bigger a.nav-link:hover img{
    transform: scale(1.3);
    transition: transform .3s ease-in-out;
}
@media (min-width: 992px){
    header a.nav-link{
        font-size: 14px;
    }
    header .nav-bigger a.nav-link{
        font-size: 14px;
    }
    
}
@media (min-width: 1200px){
    header .nav-bigger{
        gap: 5px;
    }
}
header .navbar-nav:last-child{
    padding-bottom: 45px;
}
@media (min-width: 992px){
    header .navbar-nav:last-child{
        border-top: 1px solid #ffffff30;
        position: relative;
        top: 16px;
        gap: 30px;
    }
}
@media (min-width: 1200px){
    header .navbar-nav:last-child{
        gap: 35px;
    }
}
.dropdown-toggle::after{
    background-image: url("data:image/svg+xml,%3Csvg fill='%23ffffff' width='10' height='10' version='1.1' id='lni_lni-chevron-down' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 64 64' style='enable-background:new 0 0 64 64;' xml:space='preserve'%3E%3Cg%3E%3Cpath d='M32,45.6c-0.6,0-1.1-0.2-1.6-0.6l-23-22.6c-0.9-0.9-0.9-2.3,0-3.2c0.9-0.9,2.3-0.9,3.2,0L32,40.1l21.4-21.1c0.9-0.9,2.3-0.9,3.2,0c0.9,0.9,0.9,2.3,0,3.2l-23,22.6C33.1,45.3,32.6,45.6,32,45.6z'/%3E%3C/g%3E%3C/svg%3E");
    background-position: center bottom;
    border: none;
    display: inline-block;
    width: 10px;
    height: 10px;
    position: relative;
    top: 3px;
}
/*BTN ZONA DE CLIENTES*/
.btn-clientes{
    background: #353538;
    color: #fff;
    border-radius: 40px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    padding: 10px 12px;
}
.btn-clientes svg{
    margin-left: 3px;
}
/* SLIDER */
.slide-home{
    margin-top: -30px;
}
@media (min-width: 992px){
    .slide-home{
        margin-top: 0px;
    }
    .slide-home img{
        width: 100%;
        height: 460px;
        object-fit: cover;
    }
}
@media (min-width: 1600px){
    .slide-home img{
        height: auto;
    }
}
.slide-home .owl-dots{
    display: flex;
    justify-content: center;
    bottom: 30px;
    position: absolute;
    width: 100%;
    gap: 5px;
}
@media (min-width: 992px){
    .slide-home .owl-dots{
        gap: 12px;
    }
}
.slide-home .owl-dot span{
    width: 6px;
    height: 6px;
    display: block;
    border-radius: 50%;
    background: #acd8ff;
}
@media (min-width: 992px){
    .slide-home .owl-dot span{
        width: 10px;
        height: 10px;
    }
}
.slide-home .owl-dot.active span{
    background: #0b85d9;
}
@media (min-width: 992px){
    .slide-home .owl-nav .owl-prev,
    .slide-home .owl-nav .owl-next{
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        position: absolute;
    }
    .slide-home .owl-nav img{
        width: 20px;
        height: 35px;
        opacity: .5;
    }
    .slide-home .owl-nav .owl-prev{
        margin-left: -480px;
    }
    .slide-home .owl-nav .owl-next{
        margin-left: 480px;
    }
}
@media (min-width: 1200px){
    .slide-home .owl-nav .owl-prev{
        margin-left: -530px;
    }
    .slide-home .owl-nav .owl-next{
        margin-left: 530px;
    }
}
@media (min-width: 1400px){
    .slide-home .owl-nav .owl-prev{
        margin-left: -600px;
    }
    .slide-home .owl-nav .owl-next{
        margin-left: 600px;
    }
}

.slide-mobile{
    height: 450px;
    object-fit: cover;
}
/*ACCESOS DIRECTOS*/
.accesos-directos{
    background: #dee4eb;
    padding-top: 30px;
    padding-bottom: 20px;
    position: relative;
}
.accesos-directos a img{
    transform: scale(1);
    transition: transform 0.5s ease-in-out;
}
.accesos-directos a:hover img{
    transform: scale(1.2);
    transition: transform 0.5s ease-in-out;
}
.accesos-directos a span{
    transform: scale(1);
    transition: transform 0.5s ease-in-out;
}
.accesos-directos a:hover span{
    transform: scale(.9);
    transition: transform 0.5s ease-in-out;
}

@media (max-width: 767px){
    .accesos-directos:before,
    .accesos-directos:after{
        content: "";
        width: 50px;
        height: 115.5px;
        display: block;
        position: absolute;
        top: 0;
        z-index: 10;

    }
    .accesos-directos:before{
        left: 0;
        background: linear-gradient(to right, rgba(0,0,0, .3), rgba(0,0,0, 0));
    }
    .accesos-directos:after{
        right: 0;
        background: linear-gradient(to left, rgba(0,0,0, .3), rgba(0,0,0, 0));
    }
}

.accesos-directos .owl-carousel .owl-item img.ico-acceso{
    width: 25px;
    height: 25px;
    margin: 0 auto 10px;
}
@media (min-width: 992px){
    .accesos-directos .owl-carousel .owl-item img.ico-acceso{
        width: 35px;
        max-width: 35px;
        height: 38px;
        object-fit: contain;
        object-position: center center;
    }
    .accesos-directos .owl-item{
        border-right: 1px solid #008df7;
        padding-top: 5px;
        padding-bottom: 5px;
    }
    .accesos-directos .owl-item:last-child{
        border-right: none;
    }
}
.accesos-directos .item{
    text-align: center;
}
.accesos-directos .item span{
    font-size: 10px;
    line-height: 14px;
    display: inline-block;
    color: #353538;
}
@media (min-width: 992px){
    .accesos-directos .item span{
        font-size: 15px;
        line-height: 18px;
        font-weight: 500;
    }
}
/* SECCIONES DESTACADOS */
.secciones-destacadas{
    background: #c5cfdb;
}
.secciones-destacadas .col-6:nth-child(2),
.secciones-destacadas .col-6:nth-child(4){
    background-color: #eaedf2;
}
.secciones-destacadas .container-fluid{
    max-width: 1440px;
}
.card-destacados img{
    width: 100%;
    min-width: 100%;
    text-decoration: none;
}
.card-destacados:not(.bg-full){
    display: block;
    padding: 40px 30px;
    background-size: cover;
    background-position: center bottom;
}
.card-destacados{
    text-decoration: none;
}
@media (min-width: 767px){
    .card-destacados:not(.bg-full){
        padding: 20px 30px;
    }
}
@media (min-width: 992px){
    .card-destacados:not(.bg-full){
        padding: 40px 50px;
        display: block;
    }
}
@media (min-width: 1200px){
    .card-destacados:not(.bg-full){
        padding: 60px 50px;
    }
}
.card-destacados h2{
    font-size: 12px;
    font-weight: 700;
    color: #353538;
}

.card-destacados p{
    font-size: 10px;
    color: #353538;
}
@media (max-width: 991px){
    .card-destacados p{
        margin: 0;
    }
}
.card-destacados span{
    font-size: 9px;
    font-weight: 900;
    color: #008df7;
}
.card-destacados span svg{
    width: 15px;
}
.card-destacados span svg polygon{
    fill: #008df7;
}
@media (min-width: 576px){
    .card-destacados h2{
        font-size: 16px;
    }
    .card-destacados p{
        font-size: 14px;
    }
    .card-destacados span{
        font-size: 12px;
    }
}

@media (min-width: 768px){
    .card-destacados h2{
        font-size: 12px;
    }
    .card-destacados p{
        font-size: 10px;
    }
    .card-destacados span{
        font-size: 9px;
    }
}

@media (min-width: 992px){
    .card-destacados h2{
        font-size: 20px;
        font-weight: 600;
    }
    .card-destacados p{
        font-size: 15px;
    }
    .card-destacados span{
        font-size: 12px;
    }
}




.red{
    padding-top: 30px;
    padding-bottom: 30px;
    background: #dee2e8;
}
@media (min-width: 992px){
    .red{
        padding-top: 80px;
        padding-bottom: 40px;
    }
}
.red h2{
    font-size: 14px;
    font-weight: 200;
    margin-bottom: 15px;
    color: #474646
}
@media (min-width: 576px){
    .red h2{
        font-size: 18px;
    }
}
@media (min-width: 768px){
    .red h2{
        font-size: 22px;
    }
}
@media (min-width: 992px){
    .red h2{
        width: 610px;
        margin: 0 auto;
        margin-bottom: 40px;
    }
}
@media (min-width: 1200px){
    .red h2{
        width: 820px;
        font-size: 25px;
        line-height: 33px;
        
    }
}
.red h2 b{
    font-weight: 600;
}
.red h2 span{
    color: #008df7;
}
.red .logo-autopista{
    height: 20px;
}
.red .logo-autopista:nth-child(5){
    height: 15px;
}
@media (min-width: 768px){
    .red .logo-autopista{
        height: 25px;
    }
    .red .logo-autopista:nth-child(5){
        height: 20px;
    }
}
@media (min-width: 992px){
    .red .logo-autopista{
        height: 30px;
    }
    .red .logo-autopista:nth-child(5){
        height: 25px;
    }
}
@media (min-width: 1200px){
    .red .logo-autopista{
        height: 35px;
    }
    .red .logo-autopista:nth-child(5){
        height: 30px;
    }
}


footer{
    background-color: #353538;
    padding-top: 20px;
}
@media (max-width: 991px){
    footer .container{
        width: 320px;
    }
}
@media (min-width: 1200px){
    footer{
        padding-top: 50px;
        padding-bottom: 85px;
    }
}
footer .logo-footer{
    margin-bottom: 25px;
    width: 85px;
}
@media (min-width: 992px){
    footer .logo-footer{
        margin-bottom: 0px;
        width: 140px;
    }
}
footer hr{
    border-color: #fff;
    margin: 0;
}
footer ul.footer-menu{
    list-style: none;
    padding: 15px 0 5px;
}
footer ul.footer-menu li{
    margin-bottom: 5px;
}
footer ul.footer-menu a{
    color: #fff;
    font-size: 12px;
    text-decoration: none;
}
footer .footer-callcenter{
    font-size: 24px;
    color: #fff;
    font-weight: 100;
    text-decoration: none;
    padding-top: 10px;
    padding-bottom: 10px;
    display: block;
}
footer .footer-callcenter b{
    font-weight: 900;
    color: #008df7;
}
footer .redes-sociales{
    padding: 0 !important;
}
@media (min-width: 1200px){
    footer .redes-sociales{
        display: flex;
        justify-content: center;
        gap: 20px;
        align-items: center;
    }
}
footer .redes-sociales p{
    color: #fff;
    font-size: 10px;
}
footer .redes-sociales ul{
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 30px;
}
@media (min-width: 1200px){
    footer .redes-sociales p{
        margin: 0;
    }
    footer .redes-sociales ul{
        margin: 0;
    }
}
footer .redes-sociales ul a{
    color: #fff;
    text-decoration: none;
}

footer .link-footer{
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 0;
    margin: 0;
}
footer .border-left{
    border-left: .5px solid rgba(255, 255, 255, 0.2);
}
@media (min-width: 992px){
    footer .row div{
        padding-top: 25px;
        padding-bottom: 35px;
    }
}
footer small{
    font-size: 12px;
    font-weight: 300;
}


/* MODAL LOGIN */
.modal .modal-dialog{
    margin-top: 30px;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
}
@media (min-width: 992px){
    .modal .modal-dialog{
        max-width: 970px;
    }
    .modal .modal-content{
        border-radius: 40px;
    }
}
.modal .modal-header{
    border: none;
    padding-top: 15px;
    padding-bottom: 0;
}
.modal .modal-header .btn-close{
    margin: 0;
    background: url(../../img/btn-close.svg);
    background-size: 15px;
    background-repeat: no-repeat;
    background-position: center center;
    opacity: 1;
}
@media (min-width: 992px){
    .modal .modal-header .btn-close{
        margin-top: 10px;
        margin-left: 10px;
    }
}
.modal .logo-modal{
    margin-top: -38px;
    margin-bottom: 40px;
}
.modal .modal-body{
    padding-bottom: 40px;
}
@media (min-width: 992px){
    .modal .modal-body{
        padding: 60px 60px 40px 60px;
    }
    .modal .logo-modal{
        position: absolute;
        right: 50px;
        top: 20px;
    }
}
.login-clientes{
    position: relative;
}
.login-clientes .ingreso{
    display: none;
    position: absolute;
    top: 130%;
    right: 0;
    background: #fff;
    border-radius: 30px;
    width: 600px;
    height: 335px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    padding: 45px;
}
.login-clientes .ingreso p{
    font-size: 16px;
    line-height: 25px;
    margin-top: 10px;
}


.navbar-nav .nav-link:hover{
    color: #ffffff;
}
.navbar-nav .nav-link.active, 
.navbar-nav .nav-link.show{
    color: #fff;
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show:after{
    transform: rotate(180deg);
}
.dropdown-menu{
    background: rgba(53, 53, 56, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px 10px;
}
.dropdown-menu .dropdown-item{
    color: #fff;
    font-weight: 200;
    font-size: 20px;
}
@media (min-width: 992px){
    .dropdown-menu .dropdown-item{
        font-weight: 500;
        font-size: 14px;
    }
}
.dropdown-menu .dropdown-item:hover{
    background: transparent;
}
/* FORM */
.login-form label{
    width: 100%;
}
.login-form label span{
    font-size: 14px;
    font-weight: 400;
    display: block;
    margin-bottom: 10px
}

.login-form label input{
    display: block;
    background: #dee4eb;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    padding: 10px;
    width: 100%;
}
.login-form .boton input{
    background: #008df7;
    display: block;
    width: 100%;
    color: #fff;
    font-weight: 600;
    margin-top: 15px;
    font-size: 14px
}
.login-form .ejemplo{
    font-size: 11px;
}
.login-form span.error{
    font-size: 10px;
    position: absolute;
    top: 17px;
    color: red;
    font-weight: 400;
}
.login-form{
    position: relative;
}
.login-form .restaurar a{
    font-size: 12px;
    color: #353538;
    text-decoration: none;
}

.highlight-text{
    color: #008df7;
    font-weight: bold;
}
.btn{
    border: none;
    border-radius: 30px;
    padding-left: 40px;
    padding-right: 40px;
    font-weight: 500;
    background: #008df7;
}

.modal-backdrop.show{
    --bs-backdrop-bg: #008df7;
    --bs-backdrop-opacity: .7;
}

/*MODAL IMAGEN*/
.modal-imagen .modal-content{
    background-color: transparent;
    border: none;
    position: relative;
}
.modal-imagen .modal-content a{
    width: 100%;
}
.modal-imagen .modal-content a img{
    width: 100%;
}
.modal-imagen .modal-content button{
    position: absolute;
    top: 15px;
    right: 20px;
    background-color: #008df7;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
    background-size: 10px 10px;
}

@media (min-width: 992px){
    .modal-imagen .modal-dialog{
        width: 800px;
    }
    .modal-imagen .modal-content button{
        position: absolute;
        top: 15px;
        left: 20px;
        right: initial;
        width: 40px;
        height: 40px;
    }
}