/* --------------------------
ESTILOS GENERALES 
-------------------------- */
ol{
    list-style-type: decimal-leading-zero;
}

.franja-cielo-100{
    width: 100%;
    border-top: 2px solid rgb(114, 184, 231);
}
.franja-cielo-10{
    width: 10%;
    border-top: 2px solid rgb(114, 184, 231);
}
.franja-cielo-30{
    width: 30%;
    border-top: 2px solid rgb(114, 184, 231);
}
.border-left-cielo{
    border-left: 4px solid rgb(114, 184, 231);
}
.text-cielo{
    color: rgb(114, 184, 231);
}

.bg-indigo{
    background-color: rgb(1, 56, 118);
}

.text-indigo{
    color: rgb(1, 56, 118);
}

.text-cloud{
    color: rgb(156, 156, 156);
}

.display-5{
    font-size: 2.5rem;
    font-weight: 100;
    line-height: 1.2;
}

.nounderline{
    text-decoration: none !important;
}

/* --------------------------
ESTILOS PARA EL HEADER 
-------------------------- */

header{
    background-image: url("../img/dc.jpg");
    background-repeat: no-repeat;
    background-position-y: 50%;
    background-position-x: 50%;
    background-size: cover;
    background-attachment: fixed !important;
}
.contenido-header{
    background-color:rgba(255,255,255,0.65); /* rgbA */
}
.texto-encabezado{
    flex: 1 1 auto;
}
.container{
    padding-top: 5vh;
    padding-bottom: 5vh;
}
.alto{
    height: 100vh;
    display: flex;
    flex-direction: column;
}
.flecha-bajar a{
    display: inline-block;
    animation: flecha-animada 2s ease-in-out infinite;
}

.flecha-bajar a:hover{
    color: black;
}

/* --------------------------
ESTILOS PARA EL SECTION ESPECIALIDADES 
-------------------------- */

.especialidades .item-especialidades > img, .servicios .item-servicios > img{
    transition: all 1s ease;
}

.especialidades .item-especialidades:hover > img, .servicios .item-servicios:hover > img{
    transform: rotateY(360deg);
    transform-style: preserve-3d;
}

/* --------------------------
ESTILOS PARA EL SECTION PLANES 
-------------------------- */

.planes .fas {
    font-weight: 900;
    font-size: 2.3rem;
    background: white;
    border-radius: 50%;
    width: 4.7rem;
    height: 4.7rem;
    line-height: 4.7rem;
    color:  rgb(1, 56, 118);
    flex: 0 0 4.7rem;
    overflow: hidden;
    margin-right: 1rem;
}

.planes article{
    display: flex;
    align-items: center;
    margin: 1rem 0;
    text-align: center;
}

.planes h4{
    margin: 0;
    flex: 1 1 auto;
}

.planes h4 a{
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
}

.planes h4 a::after{
    content: "\f054";
    font-family: FontAwesome;
    font-size: 2rem;
    margin-left: 1rem;
    opacity: .5;
    position: relative;
    left: 0;
}

.planes h4 a:hover::after{
    left: -.5rem;
    opacity: 1;
    color:rgb(114, 184, 231);;
    transition: all .8s ease;
}



/* --------------------------
ESTILOS PARA EL PIE DE PÁGINA 
-------------------------- */

.contenido-footer{
    background-color:rgba(255,255,255,0.5); /* rgbA */
}


/* --------------------------
ESTILOS PARA EL ENLACE TOP 
-------------------------- */

.ir-arriba{
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    font-size: 3rem;
    color: black;
    text-decoration: none;
    z-index: 99999;
    line-height: 0;
    transition: all .8s ease;
}

.ir-arriba:hover, .ir-arriba:focus{
    outline: 0;
    text-decoration: none;
    color: grey;
}

/* --------------------------
MEDIA QUERYES CSS3 
--------------------------*/

@media only screen and (max-width: 576px) {
    .img-fluid{
        width: 30%;
    }
    .container{
        padding-top: 5vh;
        padding-bottom: 5vh;
    }
    .display-6{
        font-size: 2.5rem;
    }
    .titulo-solutions{
        font-size: 2.6rem;
    }
}

/* --------------------------
COMIENZO DE LAS MEDIAS QUERYES 
-------------------------- */

@media (min-width:992px){
    .planes article{
        flex-direction: column;
    }

    .planes .fas{
        margin-bottom: 1rem;
        margin-right: 0;
    }

    .planes h4 a::after{
        content: "";
    }
}
@media (max-width:991px){
    .planes article h4{
        text-align: left;
    }
}

/* --------------------------
KEYFRAMES CSS3 
-------------------------- */

@keyframes flecha-animada{
    from{
        transform: translateY(0);
    }
    50%{
        transform: translateY(6px);
    }
    to{
        transform: translateY(0);
    }
}