/********** Template CSS **********/
:root {
    --primary: #4272bb;
    --light: #F6F7F8;
    --dark: #1A2A36;
}

body {
    /* padding: 0; */
    margin: 0;
    box-sizing: border-box;
    padding-top: 0px; /* Ajusta este valor según la altura del navbar */
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-black {
    font-weight: 900 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


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

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

/* From uiverse.io by @harman-kanda */
/* From cssbuttons.io by @harmankanda.github.io/New */

.pl {
    width: 5em;
    height: 5em;
   }
   
   .pl circle {
    transform-box: fill-box;
    transform-origin: 50% 50%;
   }
   
   .pl__ring1 {
    animation: ring1 4s 0s ease-in-out infinite;
   }
   
   .pl__ring2 {
    animation: ring2 4s 0.04s ease-in-out infinite;
   }
   
   .pl__ring3 {
    animation: ring3 4s 0.08s ease-in-out infinite;
   }
   
   .pl__ring4 {
    animation: ring4 4s 0.12s ease-in-out infinite;
   }
   
   .pl__ring5 {
    animation: ring5 4s 0.16s ease-in-out infinite;
   }
   
   .pl__ring6 {
    animation: ring6 4s 0.2s ease-in-out infinite;
   }
   
   /* Animations */
   @keyframes ring1 {
    from {
     stroke-dashoffset: -376.237129776;
     transform: rotate(-0.25turn);
     animation-timing-function: ease-in;
    }
   
    23% {
     stroke-dashoffset: -94.247778;
     transform: rotate(1turn);
     animation-timing-function: ease-out;
    }
   
    46%, 50% {
     stroke-dashoffset: -376.237129776;
     transform: rotate(2.25turn);
     animation-timing-function: ease-in;
    }
   
    73% {
     stroke-dashoffset: -94.247778;
     transform: rotate(3.5turn);
     animation-timing-function: ease-out;
    }
   
    96%, to {
     stroke-dashoffset: -376.237129776;
     transform: rotate(4.75turn);
    }
   }
   
   @keyframes ring2 {
    from {
     stroke-dashoffset: -329.207488554;
     transform: rotate(-0.25turn);
     animation-timing-function: ease-in;
    }
   
    23% {
     stroke-dashoffset: -82.46680575;
     transform: rotate(1turn);
     animation-timing-function: ease-out;
    }
   
    46%, 50% {
     stroke-dashoffset: -329.207488554;
     transform: rotate(2.25turn);
     animation-timing-function: ease-in;
    }
   
    73% {
     stroke-dashoffset: -82.46680575;
     transform: rotate(3.5turn);
     animation-timing-function: ease-out;
    }
   
    96%, to {
     stroke-dashoffset: -329.207488554;
     transform: rotate(4.75turn);
    }
   }
   
   @keyframes ring3 {
    from {
     stroke-dashoffset: -288.4484661616;
     transform: rotate(-0.25turn);
     animation-timing-function: ease-in;
    }
   
    23% {
     stroke-dashoffset: -72.2566298;
     transform: rotate(1turn);
     animation-timing-function: ease-out;
    }
   
    46%, 50% {
     stroke-dashoffset: -288.4484661616;
     transform: rotate(2.25turn);
     animation-timing-function: ease-in;
    }
   
    73% {
     stroke-dashoffset: -72.2566298;
     transform: rotate(3.5turn);
     animation-timing-function: ease-out;
    }
   
    96%, to {
     stroke-dashoffset: -288.4484661616;
     transform: rotate(4.75turn);
    }
   }
   
   @keyframes ring4 {
    from {
     stroke-dashoffset: -253.9600625988;
     transform: rotate(-0.25turn);
     animation-timing-function: ease-in;
    }
   
    23% {
     stroke-dashoffset: -63.61725015;
     transform: rotate(1turn);
     animation-timing-function: ease-out;
    }
   
    46%, 50% {
     stroke-dashoffset: -253.9600625988;
     transform: rotate(2.25turn);
     animation-timing-function: ease-in;
    }
   
    73% {
     stroke-dashoffset: -63.61725015;
     transform: rotate(3.5turn);
     animation-timing-function: ease-out;
    }
   
    96%, to {
     stroke-dashoffset: -253.9600625988;
     transform: rotate(4.75turn);
    }
   }
   
   @keyframes ring5 {
    from {
     stroke-dashoffset: -225.7422778656;
     transform: rotate(-0.25turn);
     animation-timing-function: ease-in;
    }
   
    23% {
     stroke-dashoffset: -56.5486668;
     transform: rotate(1turn);
     animation-timing-function: ease-out;
    }
   
    46%, 50% {
     stroke-dashoffset: -225.7422778656;
     transform: rotate(2.25turn);
     animation-timing-function: ease-in;
    }
   
    73% {
     stroke-dashoffset: -56.5486668;
     transform: rotate(3.5turn);
     animation-timing-function: ease-out;
    }
   
    96%, to {
     stroke-dashoffset: -225.7422778656;
     transform: rotate(4.75turn);
    }
   }
   
   @keyframes ring6 {
    from {
     stroke-dashoffset: -203.795111962;
     transform: rotate(-0.25turn);
     animation-timing-function: ease-in;
    }
   
    23% {
     stroke-dashoffset: -51.05087975;
     transform: rotate(1turn);
     animation-timing-function: ease-out;
    }
   
    46%, 50% {
     stroke-dashoffset: -203.795111962;
     transform: rotate(2.25turn);
     animation-timing-function: ease-in;
    }
   
    73% {
     stroke-dashoffset: -51.05087975;
     transform: rotate(3.5turn);
     animation-timing-function: ease-out;
    }
   
    96%, to {
     stroke-dashoffset: -203.795111962;
     transform: rotate(4.75turn);
    }
   }



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

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    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 ***/

#navSuperior {
    /* background-color: #4272bb;
    color: #FFFFFF; */

    position: relative;
    z-index: 1020; /* Asegura que el Topbar esté por encima del Navbar */
    background-color: #4272bb; /* Color de fondo */
    color: #FFFFFF;
    transition: all 0.3s ease-in-out;
}

#mainNavbar {
    z-index: 1010; /* Un valor menor para que quede debajo del Topbar */
    transition: top 0.3s ease-in-out;
}

#marcaAzul {
    color: #4272bb;
}

#marcaAzul:hover {
    color: #d5247a;
}

#iconitos {
    color: #ffffff;
}

#iconitos:hover {
    color: #d5247a;
}

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

.navbar .navbar-brand,
.navbar a.btn {
    height: 75px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: var(--dark);
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #d5247a;
}

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

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #4272bb;
    }
}

@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 ***/
.owl-carousel-inner {
    position: absolute;
    width: 40vw;
    height: 100%;
    top: 0;
    left: 5%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* .header-carousel .owl-carousel-item p {
        font-size: 5px;
    } */
}

.header-carousel .owl-dots {
    position: absolute;
    width: 60px;
    height: 100%;
    top: 0;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dots .owl-dot {
    position: relative;
    width: 45px;
    height: 45px;
    margin: 5px 0;
    background: #d5247a;
    box-shadow: 0 0 30px rgba(255, 255, 255, .9);
    border-radius: 45px;
    transition: .5s;
}

.header-carousel .owl-dots .owl-dot.active {
    width: 60px;
    height: 60px;
}

.header-carousel .owl-dots .owl-dot img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 2px;
    border-radius: 45px;
    transition: .5s;
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/portadas/portada-conoceme.webp) center center no-repeat;
    background-size: cover;
    height: 90vh;
}

#page-header-blog{
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/portadas/portada-blog.webp) center center no-repeat;
    background-size: cover;
    height: 90vh;
}

#page-header-multimedia{
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/portadas/PortadaMultimedia.webp) center center no-repeat;
    background-size: cover;
    height: 90vh;
}

#page-header-caja{
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/portadas/portada-cajaHerramientas.webp) center center no-repeat;
    background-size: cover;
    height: 90vh;
}

#page-header-novedades{
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/portadas/portadaNovedades.webp) center center no-repeat;
    background-size: cover;
    height: 90vh;
}

#page-header-contacto{
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/portadas/portadaContacto.webp) center center no-repeat;
    background-size: cover;
    height: 90vh;
}

/* ---------------- REPONSIVIDADES DE LAS PORTADAS---------------- */

@media screen and (max-width: 576px) {
    .page-header {
        background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/portadas/portada-conoceme.webp) center center no-repeat;
        background-size: cover;
        height: 40vh;
    }
}

@media screen and (max-width: 576px) {
    #page-header-blog{
        background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/portadas/portada-blog.webp) center center no-repeat;
        background-size: cover;
        height: 40vh;
    }
}

@media screen and (max-width: 576px) {
    #page-header-multimedia{
        background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/portadas/PortadaMultimedia.webp) center center no-repeat;
        background-size: cover;
        height: 40vh;
    }
}

@media screen and (max-width: 576px) {
    #page-header-caja{
        background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/portadas/portada-cajaHerramientas.webp) center center no-repeat;
        background-size: cover;
        height: 40vh;
    }
}

@media screen and (max-width: 576px) {
    #page-header-novedades{
        background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/portadas/portadaNovedades.webp) center center no-repeat;
        background-size: cover;
        height: 40vh;
    }
}

@media screen and (max-width: 576px) {
    #page-header-contacto{
        background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/portadas/portadaContacto.webp) center center no-repeat;
        background-size: cover;
        height: 40vh;
    }
}


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

#texto-carruel {
  
    color: white;
    text-align: justify;
    
}

#boton-carrusel {
    background-color: #F6F7F8;
    color: #4272bb;
    padding-top: 0.2rem !important;
    padding-bottom: 0.2rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;    
}

#boton-carrusel:hover {
    background-color: #4272bb;
    color: #F6F7F8;
    
}

#boton-carrusel-fin{
    color: #ffffff;
    background-color: #4272bb;
}

#boton-carrusel-fin:hover{
    background-color: #d5247a;
}




/* Responsividades del texto y del boton del carrusel de portada */

@media screen and (max-width: 576px) {
    #boton-carrusel-fin {
       justify-content: center;
       align-items: center;

    }
}


@media screen and (max-width: 576px) {
    #texto-carruel {
        display: none;
    }
}

@media screen and (max-width: 576px) {
    .owl-carousel-inner {
        position: absolute;
        width: 30vw;
        height: 100%;
        top: 100px;
        left: 20%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
    }
}

@media screen and (min-width: 576px) {
    #texto-carruel {
        /* background-color: #4272bbac; */
        width: 30vw;
        font-size: 14px;
    }
}

@media screen and (min-width: 992px) {
    #texto-carruel {
        /* background-color: #4272bbac; */
        width: 30vw;
        font-size: 20px;
    }
}


@media screen and (max-width: 576px) {
    #boton-carrusel {
        display: none;
        font-size: small;
    }
}

/*--------------------------------------------------------------
# Values
--------------------------------------------------------------*/

/* #values {
    background-image: url(../img/fondo-values.png);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size:100%;
    background-position: center top;
    height: 100vh;
  }
  .values .box {
    padding: 30px; */
    /* box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08); */
    /* text-align: center;
    transition: 0.3s;
    height: 100%;
    border-radius: 50%;
  }
  
  .values .box img {
    padding: 30px 50px;
    transition: 0.5s;
    transform: scale(1.1);
    border-radius: 50%;
  
  }
  
  .values .box h3 {
    font-size: 24px;
    color: #4272bb;
    font-weight: 700;
    margin-bottom: 18px;
  }
  
  .values .box:hover {
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
  } */
  
  /* .values .box:hover img {
    transform: scale(1);
  } */

  /* Imagenes de los valores */

  /* #imagen-valores {
    width: 100%;
    object-fit: cover;
    transition: all 300ms;
  }


#imagen-valores:hover{
    transform: scale(1.10);
    border-radius: 5%;
    border: solid #d5247a 1px;
} */



/*--------------------------------------------------------------
#Pilares
--------------------------------------------------------------*/

#img-pilar {
    width: 70%;
    object-fit: cover;
    transition: all 300ms;
  }


#img-pilar:hover{
    transform: scale(1.10);
}

#titulo-pilares{
    color: #051d40;
    font-size: 25px;
    font-weight: bold;
    line-height: 1.2;
}
  
  /*--------------------------------------------------------------
# Separador caja de herramientas
--------------------------------------------------------------*/

.page-section h1 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
  }
  
  .page-section h2 {
    font-size: 60px;
    font-weight: 700;
    color: #ffffff;
  }
  
  .page-section p {
    font-size: 30px;
    font-weight: 250;
    color: #ffffff;
  }
  
  hr.divider-light {
    background-color: #fff;
  }
  
 
  .fondo-fijo {
    background: url(../img/fondo-fijo.png) no-repeat fixed; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center 85px;
    height: 100vh;    
  }

  #sombralogo {
    background-color: #341e2989;
    border-radius: 30%;
    margin-right: 20px;
    margin-left: 20px;
  }
  
  #tituloh2 {
    font-size: 60px;
    font-weight: 700;
    color:#ffffff;
    text-shadow: 4px 4px 8px black;
  }

  /* Responsividades del texto de caja de herramientas con fondo fijo */

@media screen and (max-width: 576px) {
    #tituloh2 {
        font-size: 30px;
        /* font-weight: 100; */
        color:#ffffff;
        text-shadow: 4px 4px 8px black;
    }
}

#titulo-ciu-dig{
    font-size: 67px;
    font-weight: 700;
    color:#ffff;
    text-shadow: 4px 4px 8px black;
}

  /* Responsividades del texto de caja de herramientas con fondo fijo */

  @media screen and (max-width: 576px) {
    #titulo-ciu-dig {
        font-size: 30px;
        /* font-weight: 100; */
        color:#ffffff;
        text-shadow: 4px 4px 8px black;
    }
}


  
  #psubtitulo {
    color:#ffffff;
    text-shadow: 6px 6px 10px black;
    font-size: 24px;
    font-weight: 700;
  }

   /* Responsividades del texto del subtitulo de caja de herramientas con fondo fijo */

@media screen and (max-width: 576px) {
    #psubtitulo {
        font-size: 20px;
        /* font-weight: 100; */
        color:#ffffff;
        text-shadow: 4px 4px 8px black;
    }
}

  #logos {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  #logo-img{
    width: 100px;
    height: 100px;
    margin: 10px;
    transition: all 300ms;
  }

  #logo-img:hover{
    transform: scale(1.10);

  }


#img-caja {
    overflow: hidden; 
    /* border-right: 1px solid #fff;
    border-bottom: 1px solid #fff; */
    box-shadow: 0px 15px 25px rgba(0, 0, 0, 0.50);
    cursor: pointer;
    transition: all ease-in-out 1s;
}

#img-caja img {
    transition: all ease-in-out 0.3s;
  }

  #img-caja img:hover {
    transform: scale(1.1);
  }

  



/*** Boton color **/

#btnazulrosa {
    color: #ffffff;
    background-color: #4272bb;
}

#btnazulrosa:hover {
    background-color: #d5247a;
}
@media screen and (max-width: 576px) {
    #btnazulrosa {
        width: 50%;

    }
}

@media screen and (max-width: 996px) {
    #btnazulrosa {
       display: flex;
       text-align: center;
       justify-content: center;
       align-items: center;

    }
}





/*** About ***/






@media (min-width: 992px) {
    .container.about {
        max-width: 100% !important;
    }

    .about-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .about-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .about-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}





/*** Service ***/
.service-item {
    box-shadow: 0 0 2px #d5247a;
}

.service-icon {
    position: relative;
    margin: -50px 0 25px 0;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4272bb;
    background: #FFFFFF;
    border-radius: 100px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover .service-icon {
    color: #FFFFFF;
    background: #4272bb;
}


/*** Feature ***/
@media (min-width: 992px) {
    .container.feature {
        max-width: 100% !important;
    }

    .feature-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .feature-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .feature-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}

#texto-justificado{
    text-align: justify;
}


/*** Project Portfolio ***/
#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: #4272bb;
    border-color: #4272bb;
}

.portfolio-img {
    position: relative;
}




.portfolio-img::before {
    left: 50%;
}

.portfolio-img::after {
    right: 50%;
}

.portfolio-item:hover .portfolio-img::before {
    width: 51%;
    left: 0;
}

.portfolio-item:hover .portfolio-img::after {
    width: 51%;
    right: 0;
}

.portfolio-btn {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    z-index: 1;
    transition: .5s;
}

.portfolio-item:hover .portfolio-btn {
    opacity: 1;
    transition-delay: .3s;
}

.img-audiovisual {
    position: relative;
    width: 100%px;
}

.img-audiovisual-img {
    display: block;
    width: 100%;
    border-radius: 25px;
}


.texto-imagen {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #4171ba5e;
    color: #ffffff;
    font-family: 'Qucksand', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s;
    border-radius: 25px;

}

.texto-imagen-desenfocado {
    backdrop-filter: blur(5px);
}

.texto-imagen > * {
    transform: translateY(20px);
    transition: transform 0.25s;
}

.texto-imagen:hover {
    opacity: 1;
}

.texto-imagen:hover > * {
    transform: translateY(0);
}

.titulo-imagen {
    font-size: 2em;
    font-weight: bold;
}

.descripcion-imagen {
    font-size: 1.25em;
    margin-top: 0.25em;
}




/*** Quote ***/
@media (min-width: 992px) {
    .container.quote {
        max-width: 100% !important;
    }

    .quote-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .quote-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .quote-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.team-item img {
    border-radius: 8px 60px 0 0;
}

.team-item .team-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    background: #FFFFFF;
    transition: .5s;
}


/*** 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-nav {
    position: absolute;
    width: 350px;
    top: 20px;
    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: #0656e0;
    font-size: 45px;
    transition: .5s;
}

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

.testimonial-carousel .testimonial-img img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .testimonial-img .btn-square {
    position: absolute;
    bottom: -19px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-carousel .owl-item .testimonial-text {
    margin-bottom: 30px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transform: scale(.8);
    transition: .5s;
}

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


/*** Contact ***/
@media (min-width: 992px) {
    .container.contact {
        max-width: 100% !important;
    }

    .contact-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .contact-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .contact-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    color: #9B9B9B;
    border: 1px solid #9B9B9B;
    border-radius: 38px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: #4272bb;
    border-color: var(--light);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #9B9B9B;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: #FFFFFF;
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    border-top: 1px solid rgba(256, 256, 256, .1);
    
}



.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}



.contenedor-mio {
    overflow: hidden;

}

#h1-animado {
    animation-duration: 3s;
  animation-name: slidein;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

@keyframes slidein {
    from {
      margin-left: 100%;
      width: 300%
    }
  
    to {
      margin-left: 0%;
      width: 100%;
    }
  }


  #texto-justificado {
    text-align: justify;
  }







  /* Responsividades del titulo de las portadas de las distintas paginas */

  #texto-portada-seccion {
    font-size: 60px;
    font-weight: 700;
    color:#ffffff;
    text-shadow: 4px 4px 8px black;
  }




  #texto-portada-caja{
    font-size: 60px;
    font-weight: 700;
    color:#ffffff;
    text-shadow: 4px 4px 8px black;
  }

  @media screen and (max-width: 576px) {
    #texto-portada-caja {
        margin-top: 50px;
        font-size: 50px;
        color:#ffffff;
        text-shadow: 4px 4px 8px black;
    }
}

#texto-portada-part-ciud{
    font-size: 60px;
    font-weight: 700;
    color:#ffffff;
    text-shadow: 4px 4px 8px black;
  }

  @media screen and (max-width: 576px) {
    #texto-portada-part-ciud {
        margin-top: 380px;
        font-size: 50px;
        color:#ffffff;
        text-shadow: 4px 4px 8px black;
    }
}

#texto-portada-inno-pol{
    font-size: 60px;
    font-weight: 700;
    color:#ffffff;
    text-shadow: 4px 4px 8px black;
}

@media screen and (max-width: 576px) {
    #texto-portada-inno-pol {
        margin-top: 380px;
        font-size: 50px;
        color:#ffffff;
        text-shadow: 4px 4px 8px black;
    }
}

#texto-portada-inno-pub{
    font-size: 60px;
    font-weight: 700;
    color:#ffffff;
    text-shadow: 4px 4px 8px black;
}

@media screen and (max-width: 576px) {
    #texto-portada-inno-pub {
        margin-top: 380px;
        font-size: 50px;
        color:#ffffff;
        text-shadow: 4px 4px 8px black;
    }
}

#texto-portada-just-soc{
    font-size: 60px;
    font-weight: 700;
    color:#ffffff;
    text-shadow: 4px 4px 8px black;
}

@media screen and (max-width: 576px) {
    #texto-portada-just-soc {
        margin-top: 380px;
        font-size: 50px;
        color:#ffffff;
        text-shadow: 4px 4px 8px black;
    }
}

  @media screen and (max-width: 576px) {
    #texto-portada-seccion {
        font-size: 50px;
        color:#ffffff;
        text-shadow: 4px 4px 8px black;
    }
}

#texto-portada-multimedia{
    font-size: 50px;
    color:#ffffff;
    text-shadow: 4px 4px 8px black;
}

@media screen and (max-width: 576px) {
    #texto-portada-multimedia {
        margin-top: 80px;
        font-size: 50px;
        color:#ffffff;
        text-shadow: 4px 4px 8px black;
    }
}

#page-header-innov-ciud{
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/portadas/innov-ciud.jpg) center bottom no-repeat;
    background-size: cover;
    height: 90vh;
}

#page-header-inno-pub{
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/portadas/inno-publica.jpg) center top no-repeat;
    background-size: cover;
    height: 90vh;
}

#page-header-inno-pol{
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/portadas/inno-pol-2.png) center top no-repeat;
    background-size: cover;
    height: 90vh;
}

#page-header-part-ciud{
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/portadas/part-ciud.png) center center no-repeat;
    background-size: cover;
    height: 90vh;
}

#page-header-just-soc{
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/portadas/just-soc.png) center center no-repeat;
    background-size: cover;
    height: 90vh;
}

#page-header-int-col{
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/portadas/int-col.png) center center no-repeat;
    background-size: cover;
    height: 90vh;
}

#img-int-col{
    max-width: 100%;
    height: 100vh;
}

@media screen and (max-width: 576px) {
    #img-int-col {
        max-width: 100%;
        height: 40vh;
    }
}


#contenedor-video{
    background-color: red;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    height: 60vh;
}

#descripcion-video{
    background-color: #d5247a;
}

#video-video{
    background-color: #0656e0;
}

/* Start: Video Responsive */
.video-responsive {
    overflow:hidden;
    padding-bottom:400px; /* Adecua este valor para controlar la altura del video */
    position:relative;
    height:0;
}

.video-responsive iframe{
    left:0;
    top:0;
    height:100%;
    width:100%;
    position:absolute;
}
/* End: Video Responsive */

/* BLOQUE VIDEO */
#bloque-video{
    background-color: #4272bb1e;
}

#portada-art1{
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/articulos/art1.png) center bottom no-repeat;
    background-size: cover;
    height: 90vh;
}

#portada-art2{
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/articulos/art2.png) center bottom no-repeat;
    background-size: cover;
    height: 90vh;
}

#portada-art3{
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/articulos/art3.png) center bottom no-repeat;
    background-size: cover;
    height: 90vh;
}

#portada-art4{
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(https://miro.medium.com/v2/resize:fit:640/format:webp/1*F6E4w-uShnuSLPDVlnkesw.jpeg) center bottom no-repeat;
    background-size: cover;
    height: 90vh;
}

#portada-art5{
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/articulos/art5.jpg) center bottom no-repeat;
    background-size: cover;
    height: 90vh;
}

#ico-valor{
    object-fit: cover;
    width: 150px;
    height: 150px;
}

.contact-floating {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #d5247a;
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    text-decoration: none;
  }
  
  .contact-floating:hover {
    background-color: #4272bb;
    color: white;
  }
  
  .contact-floating.show {
    opacity: 1;
    visibility: visible;
  }
  